diff --git a/latest/.doctrees/environment.pickle b/latest/.doctrees/environment.pickle index ee7c66d3..55d664b5 100644 Binary files a/latest/.doctrees/environment.pickle and b/latest/.doctrees/environment.pickle differ diff --git a/latest/.doctrees/examples/02_gui.doctree b/latest/.doctrees/examples/02_gui.doctree index be3b437c..c94fb910 100644 Binary files a/latest/.doctrees/examples/02_gui.doctree and b/latest/.doctrees/examples/02_gui.doctree differ diff --git a/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree b/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree index 3df0a384..7f11a92b 100644 Binary files a/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree and b/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree differ diff --git a/latest/_sources/examples/02_gui.rst.txt b/latest/_sources/examples/02_gui.rst.txt index 2d3178eb..3f7e185e 100644 --- a/latest/_sources/examples/02_gui.rst.txt +++ b/latest/_sources/examples/02_gui.rst.txt @@ -29,7 +29,6 @@ Examples of basic GUI elements that we can create, read from, and write to. initial_value=0, disabled=True, ) - gui_slider = server.gui.add_slider( "Slider", min=0, @@ -38,6 +37,7 @@ Examples of basic GUI elements that we can create, read from, and write to. initial_value=0, disabled=True, ) + gui_progress = server.gui.add_progress_bar(25, animated=True) with server.gui.add_folder("Editable"): gui_vector2 = server.gui.add_vector2( @@ -119,6 +119,8 @@ Examples of basic GUI elements that we can create, read from, and write to. point_shape="circle", ) + gui_progress.value = float((counter % 100)) + # We can use `.visible` and `.disabled` to toggle GUI elements. gui_text.visible = not gui_checkbox_hide.value gui_button.visible = not gui_checkbox_hide.value diff --git a/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt b/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt index bed4961b..9650659c 100644 --- a/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt +++ b/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt @@ -139,8 +139,6 @@ See here for download instructions: # Match transform control gizmos to joint positions. for i, control in enumerate(gui_elements.transform_controls): control.position = smpl_outputs.T_parent_joint[i, :3, 3] - print(control.position) - skinned_handle.bones[i].wxyz = tf.SO3.from_matrix( smpl_outputs.T_world_joint[i, :3, :3] ).wxyz diff --git a/latest/examples/02_gui/index.html b/latest/examples/02_gui/index.html index 700ed43a..3a265343 100644 --- a/latest/examples/02_gui/index.html +++ b/latest/examples/02_gui/index.html @@ -355,15 +355,15 @@

GUI basics 14 initial_value=0, 15 disabled=True, 16 ) - 17 - 18 gui_slider = server.gui.add_slider( - 19 "Slider", - 20 min=0, - 21 max=100, - 22 step=1, - 23 initial_value=0, - 24 disabled=True, - 25 ) + 17 gui_slider = server.gui.add_slider( + 18 "Slider", + 19 min=0, + 20 max=100, + 21 step=1, + 22 initial_value=0, + 23 disabled=True, + 24 ) + 25 gui_progress = server.gui.add_progress_bar(25, animated=True) 26 27 with server.gui.add_folder("Editable"): 28 gui_vector2 = server.gui.add_vector2( @@ -445,25 +445,27 @@

GUI basics104 point_shape="circle", 105 ) 106 -107 # We can use `.visible` and `.disabled` to toggle GUI elements. -108 gui_text.visible = not gui_checkbox_hide.value -109 gui_button.visible = not gui_checkbox_hide.value -110 gui_rgb.disabled = gui_checkbox_disable.value -111 gui_button.disabled = gui_checkbox_disable.value -112 gui_upload_button.disabled = gui_checkbox_disable.value -113 -114 # Update the number of handles in the multi-slider. -115 if gui_slider_positions.value != len(gui_multi_slider.value): -116 gui_multi_slider.value = onp.linspace( -117 0, 100, gui_slider_positions.value, dtype=onp.int64 -118 ) -119 -120 counter += 1 -121 time.sleep(0.01) -122 -123 -124if __name__ == "__main__": -125 main() +107 gui_progress.value = float((counter % 100)) +108 +109 # We can use `.visible` and `.disabled` to toggle GUI elements. +110 gui_text.visible = not gui_checkbox_hide.value +111 gui_button.visible = not gui_checkbox_hide.value +112 gui_rgb.disabled = gui_checkbox_disable.value +113 gui_button.disabled = gui_checkbox_disable.value +114 gui_upload_button.disabled = gui_checkbox_disable.value +115 +116 # Update the number of handles in the multi-slider. +117 if gui_slider_positions.value != len(gui_multi_slider.value): +118 gui_multi_slider.value = onp.linspace( +119 0, 100, gui_slider_positions.value, dtype=onp.int64 +120 ) +121 +122 counter += 1 +123 time.sleep(0.01) +124 +125 +126if __name__ == "__main__": +127 main() diff --git a/latest/examples/23_smpl_visualizer_skinned/index.html b/latest/examples/23_smpl_visualizer_skinned/index.html index 7db97276..75187520 100644 --- a/latest/examples/23_smpl_visualizer_skinned/index.html +++ b/latest/examples/23_smpl_visualizer_skinned/index.html @@ -467,157 +467,155 @@

Visualizer for SMPL human body models. Requires a .npz model file.123 # Match transform control gizmos to joint positions. 124 for i, control in enumerate(gui_elements.transform_controls): 125 control.position = smpl_outputs.T_parent_joint[i, :3, 3] -126 print(control.position) -127 -128 skinned_handle.bones[i].wxyz = tf.SO3.from_matrix( -129 smpl_outputs.T_world_joint[i, :3, :3] -130 ).wxyz -131 skinned_handle.bones[i].position = smpl_outputs.T_world_joint[i, :3, 3] -132 -133 -134@dataclass -135class GuiElements: -136 """Structure containing handles for reading from GUI elements.""" -137 -138 gui_rgb: viser.GuiInputHandle[Tuple[int, int, int]] -139 gui_wireframe: viser.GuiInputHandle[bool] -140 gui_betas: List[viser.GuiInputHandle[float]] -141 gui_joints: List[viser.GuiInputHandle[Tuple[float, float, float]]] -142 transform_controls: List[viser.TransformControlsHandle] -143 -144 changed: bool -145 """This flag will be flipped to True whenever the mesh needs to be re-generated.""" -146 -147 -148def make_gui_elements( -149 server: viser.ViserServer, -150 num_betas: int, -151 num_joints: int, -152 parent_idx: np.ndarray, -153) -> GuiElements: -154 """Make GUI elements for interacting with the model.""" +126 skinned_handle.bones[i].wxyz = tf.SO3.from_matrix( +127 smpl_outputs.T_world_joint[i, :3, :3] +128 ).wxyz +129 skinned_handle.bones[i].position = smpl_outputs.T_world_joint[i, :3, 3] +130 +131 +132@dataclass +133class GuiElements: +134 """Structure containing handles for reading from GUI elements.""" +135 +136 gui_rgb: viser.GuiInputHandle[Tuple[int, int, int]] +137 gui_wireframe: viser.GuiInputHandle[bool] +138 gui_betas: List[viser.GuiInputHandle[float]] +139 gui_joints: List[viser.GuiInputHandle[Tuple[float, float, float]]] +140 transform_controls: List[viser.TransformControlsHandle] +141 +142 changed: bool +143 """This flag will be flipped to True whenever the mesh needs to be re-generated.""" +144 +145 +146def make_gui_elements( +147 server: viser.ViserServer, +148 num_betas: int, +149 num_joints: int, +150 parent_idx: np.ndarray, +151) -> GuiElements: +152 """Make GUI elements for interacting with the model.""" +153 +154 tab_group = server.gui.add_tab_group() 155 -156 tab_group = server.gui.add_tab_group() -157 -158 def set_changed(_) -> None: -159 out.changed = True # out is define later! -160 -161 # GUI elements: mesh settings + visibility. -162 with tab_group.add_tab("View", viser.Icon.VIEWFINDER): -163 gui_rgb = server.gui.add_rgb("Color", initial_value=(90, 200, 255)) -164 gui_wireframe = server.gui.add_checkbox("Wireframe", initial_value=False) -165 gui_show_controls = server.gui.add_checkbox("Handles", initial_value=True) -166 -167 gui_rgb.on_update(set_changed) -168 gui_wireframe.on_update(set_changed) -169 -170 @gui_show_controls.on_update -171 def _(_): -172 for control in transform_controls: -173 control.visible = gui_show_controls.value -174 -175 # GUI elements: shape parameters. -176 with tab_group.add_tab("Shape", viser.Icon.BOX): -177 gui_reset_shape = server.gui.add_button("Reset Shape") -178 gui_random_shape = server.gui.add_button("Random Shape") -179 -180 @gui_reset_shape.on_click -181 def _(_): -182 for beta in gui_betas: -183 beta.value = 0.0 -184 -185 @gui_random_shape.on_click -186 def _(_): -187 for beta in gui_betas: -188 beta.value = onp.random.normal(loc=0.0, scale=1.0) -189 -190 gui_betas = [] -191 for i in range(num_betas): -192 beta = server.gui.add_slider( -193 f"beta{i}", min=-5.0, max=5.0, step=0.01, initial_value=0.0 -194 ) -195 gui_betas.append(beta) -196 beta.on_update(set_changed) -197 -198 # GUI elements: joint angles. -199 with tab_group.add_tab("Joints", viser.Icon.ANGLE): -200 gui_reset_joints = server.gui.add_button("Reset Joints") -201 gui_random_joints = server.gui.add_button("Random Joints") -202 -203 @gui_reset_joints.on_click -204 def _(_): -205 for joint in gui_joints: -206 joint.value = (0.0, 0.0, 0.0) -207 -208 @gui_random_joints.on_click -209 def _(_): -210 for joint in gui_joints: -211 # It's hard to uniformly sample orientations directly in so(3), so we -212 # first sample on S^3 and then convert. -213 quat = onp.random.normal(loc=0.0, scale=1.0, size=(4,)) -214 quat /= onp.linalg.norm(quat) -215 joint.value = tf.SO3(wxyz=quat).log() -216 -217 gui_joints: List[viser.GuiInputHandle[Tuple[float, float, float]]] = [] -218 for i in range(num_joints): -219 gui_joint = server.gui.add_vector3( -220 label=f"Joint {i}", -221 initial_value=(0.0, 0.0, 0.0), -222 step=0.05, -223 ) -224 gui_joints.append(gui_joint) -225 -226 def set_callback_in_closure(i: int) -> None: -227 @gui_joint.on_update -228 def _(_): -229 transform_controls[i].wxyz = tf.SO3.exp( -230 np.array(gui_joints[i].value) -231 ).wxyz -232 out.changed = True +156 def set_changed(_) -> None: +157 out.changed = True # out is define later! +158 +159 # GUI elements: mesh settings + visibility. +160 with tab_group.add_tab("View", viser.Icon.VIEWFINDER): +161 gui_rgb = server.gui.add_rgb("Color", initial_value=(90, 200, 255)) +162 gui_wireframe = server.gui.add_checkbox("Wireframe", initial_value=False) +163 gui_show_controls = server.gui.add_checkbox("Handles", initial_value=True) +164 +165 gui_rgb.on_update(set_changed) +166 gui_wireframe.on_update(set_changed) +167 +168 @gui_show_controls.on_update +169 def _(_): +170 for control in transform_controls: +171 control.visible = gui_show_controls.value +172 +173 # GUI elements: shape parameters. +174 with tab_group.add_tab("Shape", viser.Icon.BOX): +175 gui_reset_shape = server.gui.add_button("Reset Shape") +176 gui_random_shape = server.gui.add_button("Random Shape") +177 +178 @gui_reset_shape.on_click +179 def _(_): +180 for beta in gui_betas: +181 beta.value = 0.0 +182 +183 @gui_random_shape.on_click +184 def _(_): +185 for beta in gui_betas: +186 beta.value = onp.random.normal(loc=0.0, scale=1.0) +187 +188 gui_betas = [] +189 for i in range(num_betas): +190 beta = server.gui.add_slider( +191 f"beta{i}", min=-5.0, max=5.0, step=0.01, initial_value=0.0 +192 ) +193 gui_betas.append(beta) +194 beta.on_update(set_changed) +195 +196 # GUI elements: joint angles. +197 with tab_group.add_tab("Joints", viser.Icon.ANGLE): +198 gui_reset_joints = server.gui.add_button("Reset Joints") +199 gui_random_joints = server.gui.add_button("Random Joints") +200 +201 @gui_reset_joints.on_click +202 def _(_): +203 for joint in gui_joints: +204 joint.value = (0.0, 0.0, 0.0) +205 +206 @gui_random_joints.on_click +207 def _(_): +208 for joint in gui_joints: +209 # It's hard to uniformly sample orientations directly in so(3), so we +210 # first sample on S^3 and then convert. +211 quat = onp.random.normal(loc=0.0, scale=1.0, size=(4,)) +212 quat /= onp.linalg.norm(quat) +213 joint.value = tf.SO3(wxyz=quat).log() +214 +215 gui_joints: List[viser.GuiInputHandle[Tuple[float, float, float]]] = [] +216 for i in range(num_joints): +217 gui_joint = server.gui.add_vector3( +218 label=f"Joint {i}", +219 initial_value=(0.0, 0.0, 0.0), +220 step=0.05, +221 ) +222 gui_joints.append(gui_joint) +223 +224 def set_callback_in_closure(i: int) -> None: +225 @gui_joint.on_update +226 def _(_): +227 transform_controls[i].wxyz = tf.SO3.exp( +228 np.array(gui_joints[i].value) +229 ).wxyz +230 out.changed = True +231 +232 set_callback_in_closure(i) 233 -234 set_callback_in_closure(i) -235 -236 # Transform control gizmos on joints. -237 transform_controls: List[viser.TransformControlsHandle] = [] -238 prefixed_joint_names = [] # Joint names, but prefixed with parents. -239 for i in range(num_joints): -240 prefixed_joint_name = f"joint_{i}" -241 if i > 0: -242 prefixed_joint_name = ( -243 prefixed_joint_names[parent_idx[i]] + "/" + prefixed_joint_name -244 ) -245 prefixed_joint_names.append(prefixed_joint_name) -246 controls = server.scene.add_transform_controls( -247 f"/smpl/{prefixed_joint_name}", -248 depth_test=False, -249 scale=0.2 * (0.75 ** prefixed_joint_name.count("/")), -250 disable_axes=True, -251 disable_sliders=True, -252 visible=gui_show_controls.value, -253 ) -254 transform_controls.append(controls) -255 -256 def set_callback_in_closure(i: int) -> None: -257 @controls.on_update -258 def _(_) -> None: -259 axisangle = tf.SO3(transform_controls[i].wxyz).log() -260 gui_joints[i].value = (axisangle[0], axisangle[1], axisangle[2]) +234 # Transform control gizmos on joints. +235 transform_controls: List[viser.TransformControlsHandle] = [] +236 prefixed_joint_names = [] # Joint names, but prefixed with parents. +237 for i in range(num_joints): +238 prefixed_joint_name = f"joint_{i}" +239 if i > 0: +240 prefixed_joint_name = ( +241 prefixed_joint_names[parent_idx[i]] + "/" + prefixed_joint_name +242 ) +243 prefixed_joint_names.append(prefixed_joint_name) +244 controls = server.scene.add_transform_controls( +245 f"/smpl/{prefixed_joint_name}", +246 depth_test=False, +247 scale=0.2 * (0.75 ** prefixed_joint_name.count("/")), +248 disable_axes=True, +249 disable_sliders=True, +250 visible=gui_show_controls.value, +251 ) +252 transform_controls.append(controls) +253 +254 def set_callback_in_closure(i: int) -> None: +255 @controls.on_update +256 def _(_) -> None: +257 axisangle = tf.SO3(transform_controls[i].wxyz).log() +258 gui_joints[i].value = (axisangle[0], axisangle[1], axisangle[2]) +259 +260 set_callback_in_closure(i) 261 -262 set_callback_in_closure(i) -263 -264 out = GuiElements( -265 gui_rgb, -266 gui_wireframe, -267 gui_betas, -268 gui_joints, -269 transform_controls=transform_controls, -270 changed=True, -271 ) -272 return out -273 -274 -275if __name__ == "__main__": -276 tyro.cli(main, description=__doc__) +262 out = GuiElements( +263 gui_rgb, +264 gui_wireframe, +265 gui_betas, +266 gui_joints, +267 transform_controls=transform_controls, +268 changed=True, +269 ) +270 return out +271 +272 +273if __name__ == "__main__": +274 tyro.cli(main, description=__doc__) diff --git a/latest/searchindex.js b/latest/searchindex.js index 6c7f310d..f1a1f2d1 100644 --- a/latest/searchindex.js +++ b/latest/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["camera_handles", "client_handles", "conventions", "development", "events", "examples/00_coordinate_frames", "examples/01_image", "examples/02_gui", "examples/03_gui_callbacks", "examples/04_camera_poses", "examples/05_camera_commands", "examples/06_mesh", "examples/07_record3d_visualizer", "examples/08_smpl_visualizer", "examples/09_urdf_visualizer", "examples/10_realsense", "examples/11_colmap_visualizer", "examples/12_click_meshes", "examples/13_theming", "examples/14_markdown", "examples/15_gui_in_scene", "examples/16_modal", "examples/17_background_composite", "examples/18_splines", "examples/19_get_renders", "examples/20_scene_pointer", "examples/21_set_up_direction", "examples/22_games", "examples/23_plotly", "examples/23_smpl_visualizer_skinned", "extras", "gui_api", "gui_handles", "icons", "index", "infrastructure", "scene_api", "scene_handles", "server", "transforms"], "filenames": ["camera_handles.md", "client_handles.md", "conventions.md", "development.md", "events.md", "examples/00_coordinate_frames.rst", "examples/01_image.rst", "examples/02_gui.rst", "examples/03_gui_callbacks.rst", "examples/04_camera_poses.rst", "examples/05_camera_commands.rst", "examples/06_mesh.rst", "examples/07_record3d_visualizer.rst", "examples/08_smpl_visualizer.rst", "examples/09_urdf_visualizer.rst", "examples/10_realsense.rst", "examples/11_colmap_visualizer.rst", "examples/12_click_meshes.rst", "examples/13_theming.rst", "examples/14_markdown.rst", "examples/15_gui_in_scene.rst", "examples/16_modal.rst", "examples/17_background_composite.rst", "examples/18_splines.rst", "examples/19_get_renders.rst", "examples/20_scene_pointer.rst", "examples/21_set_up_direction.rst", "examples/22_games.rst", "examples/23_plotly.rst", "examples/23_smpl_visualizer_skinned.rst", "extras.md", "gui_api.md", "gui_handles.md", "icons.md", "index.md", "infrastructure.md", "scene_api.md", "scene_handles.md", "server.md", "transforms.md"], "titles": ["Camera Handles", "Client Handles", "Frame Conventions", "Development", "Events", "Coordinate frames", "Images", "GUI basics", "GUI callbacks", "Camera poses", "Camera commands", "Meshes", "Record3D visualizer", "SMPL model visualizer", "Robot URDF visualizer", "RealSense visualizer", "COLMAP visualizer", "Mesh click events", "Theming", "Markdown Demonstration", "3D GUI Elements", "Modal basics", "Depth compositing", "Splines", "Get Renders", "Scene pointer events.", "Set Up Direction", "Games", "Plotly.", "Visualizer for SMPL human body models. Requires a .npz model file.", "Record3D + URDF Helpers", "GUI API", "GUI Handles", "Icons", "viser", "Communication", "Scene API", "Scene Handles", "Viser Server", "Transforms"], "terms": {"class": [0, 1, 4, 13, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39], "viser": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 39], "camerahandl": [0, 1, 9], "sourc": [0, 1, 3, 4, 30, 31, 32, 33, 35, 36, 37, 38, 39], "A": [0, 1, 3, 14, 15, 30, 31, 32, 36, 37], "read": [0, 1, 7, 9, 10, 13, 15, 29, 32, 36, 37], "write": [0, 1, 3, 7, 10, 32, 33, 37], "state": [0, 1, 31, 32, 36, 37, 38], "particular": [0, 7, 35], "client": [0, 4, 7, 9, 10, 16, 20, 21, 24, 25, 31, 32, 34, 35, 36, 37, 38], "typic": [0, 3, 36, 39], "access": [0, 33, 38], "via": [0, 1, 3, 18, 32, 33, 36, 37, 38, 39], "clienthandl": [0, 1, 4, 9, 10, 20, 21, 25, 30, 32, 37, 38], "properti": [0, 4, 32, 37], "thi": [0, 1, 2, 3, 4, 5, 9, 13, 14, 16, 20, 21, 22, 25, 28, 29, 31, 32, 35, 36, 37, 38, 39], "correspond": [0, 2, 3, 4, 10, 35], "wxyz": [0, 2, 5, 6, 8, 9, 10, 11, 12, 13, 16, 20, 25, 27, 29, 36, 37, 39], "ndarrai": [0, 13, 15, 25, 29, 30, 31, 36, 37, 39], "ani": [0, 1, 3, 8, 14, 30, 35, 36, 38, 39], "dtype": [0, 6, 7, 15, 22, 30, 39], "float64": 0, "r": [0, 2, 15, 28, 29, 33, 37], "p_world": 0, "t": [0, 2, 12, 15, 16, 25, 28, 32, 33, 35, 37, 38], "p_camera": 0, "synchron": [0, 1, 3, 18, 32, 35, 37, 38], "automat": [0, 3, 7, 10, 31, 32, 35, 36, 37, 38], "when": [0, 1, 3, 4, 7, 8, 10, 12, 13, 14, 15, 20, 22, 29, 32, 35, 36, 37, 38], "assign": [0, 2, 32, 37], "posit": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 20, 22, 23, 24, 25, 27, 29, 30, 32, 35, 36, 37, 38], "The": [0, 2, 3, 14, 17, 21, 31, 33, 35, 36], "look_at": [0, 10, 20], "point": [0, 2, 7, 8, 12, 15, 16, 33, 36, 37, 39], "up_direct": [0, 16], "vector": [0, 7, 31, 33, 36, 39], "ar": [0, 1, 2, 3, 4, 5, 7, 8, 10, 13, 17, 25, 29, 31, 32, 33, 35, 36, 37, 38, 39], "maintain": 0, "updat": [0, 1, 4, 7, 8, 9, 12, 13, 14, 25, 28, 29, 30, 32, 35, 38], "which": [0, 2, 3, 4, 31, 32, 36, 37, 38, 39], "mean": [0, 36], "often": [0, 36], "also": [0, 1, 3, 8, 10, 14, 15, 36], "affect": [0, 4, 36], "fov": [0, 9, 12, 16, 25, 36], "float": [0, 4, 13, 14, 18, 28, 29, 30, 31, 32, 33, 36, 37, 39], "vertic": [0, 11, 13, 25, 27, 29, 33, 36], "field": [0, 2, 33, 35, 36, 39], "view": [0, 13, 15, 25, 29, 33, 36], "radian": [0, 36, 39], "aspect": [0, 9, 12, 16, 25, 28, 31, 32, 33, 36], "canva": 0, "width": [0, 8, 16, 18, 24, 31, 33, 36], "divid": [0, 33, 36], "height": [0, 8, 16, 24, 27, 31, 33, 36], "Not": 0, "update_timestamp": [0, 9, 32, 37], "look": [0, 33], "set": [0, 2, 3, 4, 5, 7, 10, 12, 13, 14, 16, 20, 25, 28, 29, 31, 32, 33, 35, 36, 37, 39], "up": [0, 2, 16, 25, 33, 36], "direct": [0, 4, 16, 25, 33, 36], "on_upd": [0, 8, 9, 12, 13, 14, 16, 19, 26, 29, 32, 37], "callback": [0, 4, 7, 17, 25, 32, 35, 36, 37, 38], "callabl": [0, 32, 35, 36, 37, 38], "none": [0, 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38], "attach": [0, 8, 32, 35, 36, 37, 38], "run": [0, 3, 9, 33, 34, 35, 36, 38], "new": [0, 9, 17, 31, 33, 35, 36], "messag": [0, 1, 25, 31, 33, 35, 38], "i": [0, 1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 21, 23, 24, 25, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39], "receiv": [0, 35], "paramet": [0, 1, 2, 10, 13, 29, 30, 31, 32, 35, 36, 37, 38, 39], "return": [0, 1, 13, 15, 20, 25, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39], "type": [0, 1, 3, 4, 15, 20, 25, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39], "get_rend": [0, 24], "int": [0, 1, 4, 10, 12, 13, 15, 16, 17, 20, 27, 29, 30, 31, 35, 36, 38, 39], "transport_format": 0, "liter": [0, 4, 27, 31, 32, 36], "png": [0, 6, 18, 28, 33, 36], "jpeg": [0, 6, 36], "request": [0, 33, 38], "render": [0, 6, 22, 30, 34, 36, 37], "from": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 24, 25, 27, 28, 29, 30, 32, 35, 36, 37, 38, 39], "block": [0, 15, 33, 34, 38], "until": [0, 38], "": [0, 1, 8, 13, 16, 24, 25, 29, 30, 33, 35, 36, 38, 39], "done": [0, 3, 15, 24, 36], "numpi": [0, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 20, 22, 23, 24, 25, 27, 28, 29, 36, 39], "arrai": [0, 7, 10, 12, 13, 14, 15, 16, 20, 25, 29, 36, 39], "imag": [0, 4, 12, 16, 18, 22, 24, 25, 28, 31, 36, 37], "should": [0, 1, 2, 3, 10, 13, 14, 20, 29, 31, 32, 33, 35, 36, 38, 39], "browser": [0, 3, 33, 38], "transport": [0, 36], "format": [0, 3, 6, 15, 33, 36], "lossi": 0, "h": [0, 16, 33, 36], "w": [0, 3, 16, 33, 36, 39], "3": [0, 2, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 22, 23, 24, 25, 27, 28, 29, 31, 33, 36, 39], "rgb": [0, 12, 15, 16, 30, 31, 36], "lossless": 0, "4": [0, 6, 7, 10, 12, 13, 17, 20, 27, 29, 33, 36, 39], "rgba": [0, 31], "can": [0, 1, 2, 3, 6, 7, 8, 9, 10, 14, 20, 22, 25, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39], "caus": 0, "memori": 0, "issu": 0, "frontend": [0, 3], "call": [0, 2, 8, 32, 33, 36, 38], "too": 0, "quickli": 0, "higher": 0, "resolut": 0, "creat": [1, 7, 10, 14, 20, 25, 27, 28, 32, 36, 37, 38], "each": [1, 2, 10, 20, 27, 31, 32, 36, 37, 39], "connect": [1, 3, 7, 9, 10, 15, 20, 27, 32, 33, 34, 35, 37, 38], "server": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36, 37], "us": [1, 2, 3, 4, 6, 7, 15, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "commun": [1, 3, 33], "just": [1, 8, 14, 15], "one": [1, 3, 10, 12, 17, 33, 36, 38], "well": [1, 37, 39], "camera": [1, 15, 16, 20, 24, 25, 33, 34, 36, 37], "similar": [1, 36], "viserserv": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 37, 38], "expos": [1, 2], "scene": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 27, 29, 30, 34, 38], "gui": [1, 4, 9, 12, 13, 14, 16, 17, 18, 19, 21, 24, 25, 26, 27, 28, 29, 33, 34, 35, 36, 37, 38], "interfac": [1, 3, 14, 31, 35, 36, 39], "If": [1, 2, 3, 36, 39], "exampl": [1, 3, 5, 6, 7, 9, 20, 21, 22, 24, 25, 28, 30, 34, 35, 37, 38, 39], "sceneapi": [1, 2, 36, 38], "add_point_cloud": [1, 7, 8, 12, 15, 16, 36, 38], "method": [1, 18, 35, 36, 38], "element": [1, 4, 7, 8, 13, 16, 18, 29, 31, 32, 33, 35, 36, 37, 38, 39], "local": [1, 2, 13, 14, 29, 32, 36, 37, 38], "onli": [1, 4, 7, 32, 35, 36], "specif": [1, 32, 35, 36, 37], "interact": [1, 10, 13, 20, 25, 29, 31, 32, 34, 36, 37, 38], "3d": [1, 2, 4, 6, 22, 28, 33, 34, 36, 37, 38, 39], "guiapi": [1, 31, 33, 38], "client_id": [1, 4, 9, 35], "uniqu": [1, 35], "id": [1, 4, 9, 16, 33, 38], "manipul": [1, 36], "viewport": [1, 24, 33], "flush": [1, 10, 12, 27, 35, 38], "outgo": [1, 33, 35, 38], "buffer": [1, 33, 35, 38], "immedi": [1, 35, 38], "sent": [1, 35, 38], "default": [1, 2, 31, 34, 35, 36, 38, 39], "thei": [1, 25, 35, 38], "window": [1, 31, 33, 35, 38], "atom": [1, 10, 12, 20, 33, 35, 38], "contextmanag": [1, 15, 38], "context": [1, 15, 31, 32, 35, 36, 37, 38], "where": [1, 2, 25, 31, 32, 35, 36, 38], "all": [1, 2, 5, 9, 12, 13, 16, 25, 29, 31, 32, 33, 35, 36, 37, 38], "group": [1, 31, 32, 33, 35, 38, 39], "appli": [1, 14, 18, 30, 35, 36, 38, 39], "treat": [1, 35, 38], "soft": [1, 35, 38], "constraint": [1, 35, 38], "help": [1, 14, 26, 33, 35, 36, 38], "thing": [1, 35, 38], "like": [1, 2, 3, 4, 33, 35, 36, 38], "anim": [1, 31, 35, 38], "we": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 22, 25, 29, 31, 32, 33, 35, 36, 38], "want": [1, 22, 35, 36, 38], "orient": [1, 2, 10, 13, 20, 29, 33, 35, 36, 37, 38], "happen": [1, 10, 32, 35, 38], "manag": [1, 15, 35, 38], "send_file_download": [1, 24, 38], "filenam": [1, 38], "str": [1, 9, 11, 14, 25, 30, 31, 32, 33, 35, 36, 38], "content": [1, 7, 18, 19, 21, 31, 32, 33, 36, 38], "byte": [1, 7, 24, 35, 36, 38], "chunk_siz": [1, 38], "1048576": [1, 38], "send": [1, 6, 7, 13, 16, 24, 29, 33, 35, 38], "file": [1, 3, 7, 13, 14, 30, 31, 33, 36, 38], "download": [1, 3, 13, 29, 33, 38], "name": [1, 5, 7, 11, 12, 13, 16, 17, 22, 25, 29, 30, 33, 35, 36, 38, 39], "infer": [1, 32, 38], "mime": [1, 31, 38], "number": [1, 7, 31, 33, 36, 38], "time": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 38], "In": [2, 3, 5, 10, 20, 22, 39], "note": [2, 3, 15, 25, 33, 39], "describ": 2, "object": [2, 30, 31, 35, 36, 37, 38, 39], "add": [2, 5, 6, 7, 8, 12, 14, 25, 30, 31, 32, 33, 36, 38], "instanti": [2, 32, 38], "node": [2, 4, 5, 7, 20, 36, 37], "structur": [2, 13, 27, 29], "determin": [2, 21, 36], "base_link": 2, "shoulder": 2, "wrist": 2, "signifi": 2, "three": [2, 33], "child": [2, 36], "transform": [2, 10, 11, 12, 13, 16, 20, 25, 27, 29, 33, 34, 36, 37], "given": [2, 27, 36], "both": [2, 20, 31, 33, 35, 36], "its": 2, "move": [2, 10, 14, 20, 25, 33, 37], "Its": 2, "parent": [2, 6, 11, 12, 13, 16, 19, 25, 29, 36], "unaffect": 2, "defin": [2, 3, 4, 5, 13, 29, 35, 36, 37], "pair": [2, 15], "unit": [2, 3], "quaternion": [2, 36, 37, 39], "term": [2, 36, 39], "alwai": 2, "4d": [2, 33], "translat": [2, 10, 16, 20, 35, 36, 39], "These": [2, 5, 10, 35, 37], "p_": 2, "mathrm": 2, "begin": 2, "bmatrix": 2, "end": [2, 31, 33], "1": [2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 16, 17, 19, 20, 22, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 39], "form": [2, 33, 36], "so": [2, 13, 25, 29, 33, 39], "matrix": [2, 33, 39], "mathbb": 2, "space": [2, 33, 36, 39], "z": [2, 8, 28, 33, 36, 39], "upward": 2, "overridden": [2, 36], "set_up_direct": [2, 13, 25, 26, 29, 36], "python": [2, 24, 33, 34, 35, 36], "api": [2, 24, 33, 34, 38], "colmap": 2, "opencv": [2, 4, 25, 36], "forward": [2, 13, 29, 33, 36], "y": [2, 8, 13, 17, 25, 28, 29, 33, 36, 39], "right": [2, 4, 33, 36], "x": [2, 8, 13, 17, 25, 27, 28, 29, 33, 36, 39], "confusingli": 2, "differ": [2, 31, 33, 36, 38, 39], "nerfstudio": [2, 18], "adopt": 2, "opengl": [2, 36], "blender": [2, 33, 36], "convers": [2, 36], "between": [2, 3, 14, 17, 31, 32, 37, 38, 39], "two": [2, 3, 15, 27, 31, 33, 38], "simpl": [2, 11, 17, 33], "180": [2, 18], "degre": 2, "rotat": [2, 10, 16, 20, 33, 36, 39], "around": [2, 10, 20, 28], "axi": [2, 8, 25, 29, 33, 36, 39], "outlin": [3, 33], "current": [3, 4, 9, 12, 15, 16, 18, 32, 33, 35, 36], "practic": 3, "tool": [3, 33, 34], "workflow": 3, "assum": 3, "repositori": 3, "clone": 3, "recommend": 3, "an": [3, 4, 7, 13, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39], "edit": [3, 7, 33], "ideal": 3, "virtual": 3, "environ": 3, "eg": 3, "conda": 3, "packag": [3, 14, 31, 33], "cd": 3, "pip": [3, 34], "e": [3, 25, 33, 36], "depend": [3, 34], "after": [3, 32, 34], "script": [3, 30, 33, 34], "runnabl": 3, "few": 3, "them": [3, 9, 17, 20, 36], "requir": [3, 13, 14, 15, 31, 35], "asset": [3, 6, 11, 12, 16, 19, 25, 28, 33, 36], "lint": 3, "check": [3, 18, 25, 33], "first": [3, 13, 25, 29, 31, 33, 38, 39], "dev": 3, "pre": [3, 7], "commit": [3, 33], "It": [3, 13, 14, 29, 36], "would": 3, "hard": [3, 13, 29], "test": [3, 25, 33, 36], "reli": [3, 38], "static": [3, 32, 39], "robust": 3, "To": [3, 11, 12, 16, 25, 34, 35, 38], "your": 3, "code": [3, 33], "you": [3, 34, 35], "follow": [3, 36, 39], "backend": 3, "share": [3, 12, 18, 31, 33, 35, 36, 38], "definit": [3, 35, 39], "On": [3, 38], "dataclass": [3, 13, 29, 35, 39], "src": 3, "_messag": [3, 4], "py": [3, 14], "typescript": [3, 33, 35], "websocketmessag": 3, "tsx": 3, "ones": [3, 13, 22, 25, 29], "manual": [3, 31, 33, 36], "modifi": [3, 25], "instead": [3, 4], "chang": [3, 7, 12, 13, 29, 33], "made": 3, "sync_message_def": 3, "For": [3, 4, 10, 16, 20, 32, 35, 36], "start": [3, 14, 15, 18, 28, 33, 35], "launch": [3, 35, 38], "relev": 3, "good": 3, "place": [3, 12, 32, 36, 37, 39], "05_camera_command": 3, "url": [3, 34, 38], "print": [3, 7, 9, 11, 12, 16, 24, 29, 34, 35], "http": [3, 13, 14, 18, 29, 33, 34, 35], "localhost": [3, 34], "8080": [3, 34], "open": [3, 20, 28, 31, 33], "built": 3, "version": [3, 33], "react": [3, 33], "websocket": [3, 35], "applic": [3, 35, 38], "detect": [3, 9, 31, 32, 35, 37], "startup": 3, "re": [3, 12, 13, 29, 35], "build": [3, 33, 34, 35], "okai": 3, "quick": 3, "faster": [3, 36], "iter": [3, 33], "reflect": [3, 7], "make": [3, 13, 22, 23, 25, 29], "without": 3, "full": [3, 25, 33], "more": [3, 21, 39], "step": [3, 7, 8, 12, 13, 14, 16, 26, 29, 31, 33], "nodej": [3, 33], "yarn": 3, "directori": [3, 16, 31], "web": [3, 34, 35, 38], "address": [3, 33, 38], "need": [3, 13, 25, 29, 32], "tab": [3, 13, 29, 31, 32], "prettier": 3, "npx": 3, "small": [4, 18, 31, 33], "pass": 4, "function": [4, 32, 33, 36], "click": [4, 8, 10, 12, 20, 25, 27, 31, 32, 33, 34, 36, 37], "trigger": [4, 36], "scenepointerev": [4, 25, 36], "pointer": [4, 33, 36], "event_typ": [4, 25, 36], "scenepointereventtyp": 4, "wa": [4, 10, 32], "support": [4, 10, 14, 18, 19, 36, 37], "box": [4, 13, 17, 22, 25, 29, 33, 36], "select": [4, 17, 25, 33, 34, 36], "ray_origin": [4, 25], "tupl": [4, 13, 15, 29, 30, 31, 32, 36, 37, 39], "origin": [4, 10, 20, 25, 36, 38], "rai": [4, 25], "world": [4, 7, 33, 36], "coordin": [4, 10, 15, 17, 20, 25, 36, 37, 39], "ray_direct": [4, 25], "screen_po": [4, 25], "list": [4, 12, 13, 14, 25, 28, 29, 33, 35], "screen": [4, 33], "0": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36], "upper": [4, 14, 25, 33], "left": [4, 25, 28, 33], "corner": [4, 25, 33], "bottom": [4, 33], "includ": [4, 18, 34], "min": [4, 7, 8, 12, 13, 14, 16, 25, 29, 31, 33], "max": [4, 7, 8, 12, 13, 14, 16, 29, 31, 33, 36], "deprec": 4, "scenenodepointerev": [4, 37], "target": [4, 30, 33, 39], "tscenenodehandl": [4, 37], "guievent": [4, 16, 24, 32], "inform": [4, 35, 36], "associ": [4, 32, 38], "input": [4, 7, 14, 21, 31, 32, 33, 34], "tguihandl": [4, 32], "basic": 5, "visual": [5, 6, 11, 25, 28, 30, 31, 32, 33, 34, 36, 37, 38], "hierarch": 5, "tree": [5, 30, 33, 36], "branch": [5, 33], "rel": [5, 31, 37], "import": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 33], "random": [5, 6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 29, 33], "while": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "true": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 36, 38], "some": [5, 7, 12, 23, 27], "viewer": [5, 6], "add_fram": [5, 8, 10, 12, 16, 20, 36, 37], "2": [5, 6, 9, 11, 12, 13, 14, 15, 16, 19, 23, 25, 27, 28, 29, 31, 33, 36, 39], "leaf": [5, 33], "sleep": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "5": [5, 7, 8, 10, 11, 13, 17, 20, 22, 23, 24, 25, 27, 29, 33, 36], "remov": [5, 14, 15, 19, 20, 25, 27, 32, 33, 36, 37], "backgrond": 6, "displai": [6, 17, 20, 31, 36], "behind": 6, "nerf": [6, 18, 22], "textur": [6, 15, 33], "pathlib": [6, 11, 12, 13, 16, 19, 25, 29], "path": [6, 11, 12, 13, 14, 16, 19, 25, 29, 30, 31, 35, 36], "imageio": [6, 16, 24], "v3": [6, 16, 24], "iio": [6, 16, 24], "onp": [6, 7, 8, 10, 11, 12, 13, 14, 16, 20, 22, 23, 24, 25, 27, 28, 29, 36, 39], "def": [6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29], "main": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 29, 31, 38], "background": [6, 22, 36], "set_background_imag": [6, 22, 36], "imread": [6, 16], "__file__": [6, 11, 12, 16, 19, 25], "cal_logo": [6, 28], "add_imag": [6, 36], "img": [6, 16, 18, 22], "nois": 6, "randint": [6, 8, 22], "256": [6, 8], "size": [6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 29, 31, 33, 36], "400": 6, "uint8": [6, 7, 15, 22, 30], "1e": [6, 14, 16], "__name__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 29], "__main__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 29], "common": [7, 33, 36], "slider": [7, 8, 12, 14, 31, 34, 36], "checkbox": [7, 19, 31, 33, 34], "add_fold": [7, 8, 12, 17, 31], "gui_count": 7, "add_numb": [7, 16, 17, 31], "counter": [7, 17, 19, 33], "initial_valu": [7, 8, 9, 12, 13, 14, 16, 17, 18, 19, 21, 26, 29, 31], "disabl": [7, 9, 12, 17, 25, 31, 32, 33, 36], "gui_slid": 7, "add_slid": [7, 8, 12, 13, 14, 16, 29, 31], "100": [7, 12, 16, 23, 31, 39], "gui_vector2": 7, "add_vector2": [7, 31], "gui_vector3": 7, "add_vector3": [7, 13, 26, 29, 31], "25": [7, 27], "text": [7, 10, 18, 31, 33, 34, 36], "toggl": [7, 12, 33, 35], "gui_checkbox_hid": 7, "add_checkbox": [7, 8, 12, 13, 18, 19, 29, 31], "hide": [7, 12, 32, 33, 36], "fals": [7, 12, 13, 16, 25, 29, 31, 36], "gui_text": 7, "add_text": [7, 9, 21, 31], "hello": 7, "gui_button": 7, "add_button": [7, 8, 12, 13, 14, 16, 18, 19, 20, 21, 24, 25, 27, 29, 31, 33, 38], "button": [7, 8, 12, 14, 18, 19, 24, 25, 31, 32, 34], "gui_checkbox_dis": 7, "gui_rgb": [7, 13, 29], "add_rgb": [7, 13, 18, 29, 31], "color": [7, 8, 12, 13, 15, 16, 17, 18, 23, 24, 25, 27, 28, 29, 30, 31, 33, 36], "255": [7, 13, 22, 27, 29, 36], "gui_multi_slid": 7, "add_multi_slid": [7, 31], "multi": [7, 31], "30": [7, 12, 15, 18, 23, 24, 27, 33], "mark": [7, 31, 33], "50": [7, 28, 33], "70": 7, "7": [7, 25, 27, 33, 39], "99": [7, 28], "gui_slider_posit": 7, "10": [7, 8, 11, 12, 14, 15, 17, 18, 22, 23, 24, 25, 27, 28, 33, 36], "gui_upload_button": 7, "add_upload_button": [7, 31], "upload": [7, 31, 33], "icon": [7, 13, 18, 25, 29, 31, 32], "on_upload": 7, "_": [7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 29], "valu": [7, 8, 12, 13, 14, 16, 17, 18, 19, 21, 26, 29, 31, 32, 35, 39], "len": [7, 16, 25], "gener": [7, 13, 24, 25, 29, 33, 35, 36, 39], "cloud": [7, 8, 12, 15, 16, 33, 36, 37], "point_posit": 7, "uniform": [7, 10, 20, 23, 24], "low": [7, 33], "high": [7, 33, 38], "5000": 7, "color_coeff": 7, "shape": [7, 11, 12, 13, 15, 16, 25, 29, 33, 36, 39], "point_cloud": [7, 8, 12, 15], "float32": [7, 15, 22, 30], "tile": 7, "reshap": [7, 15, 25], "astyp": [7, 15], "point_shap": [7, 12, 36], "circl": [7, 33, 36], "visibl": [7, 9, 12, 13, 19, 26, 29, 31, 32, 36, 37], "handl": [7, 13, 17, 25, 29, 31, 35, 36, 38], "linspac": [7, 27, 28], "int64": 7, "01": [7, 12, 13, 26, 27, 28, 29], "asynchron": [8, 35], "usag": 8, "soon": 8, "get": [8, 9, 11, 12, 13, 15, 16, 18, 25, 29, 32, 33, 35, 39], "typing_extens": [8, 27], "assert_nev": [8, 27], "gui_reset_scen": 8, "reset": [8, 13, 14, 16, 24, 25, 27, 29, 31, 33, 36], "gui_plan": 8, "add_dropdown": [8, 14, 18, 31], "grid": [8, 17, 33, 36], "plane": [8, 25, 33, 36], "xz": [8, 36], "xy": [8, 33, 36], "yx": [8, 36], "yz": [8, 36], "zx": [8, 36], "zy": [8, 36], "update_plan": 8, "add_grid": [8, 36], "20": [8, 10, 12, 20, 24, 28, 33, 36], "width_seg": [8, 36], "height_seg": [8, 36], "lambda": [8, 14, 18, 21, 25, 27, 33], "control": [8, 12, 13, 16, 18, 29, 31, 32, 33, 34, 36, 37], "gui_show_fram": 8, "show": [8, 9, 18, 20, 21, 22, 25, 31, 32, 33, 36, 38], "frame": [8, 10, 12, 15, 16, 20, 25, 27, 30, 33, 36, 37, 39], "gui_show_everyth": 8, "everyth": [8, 36], "gui_axi": 8, "gui_include_z": 8, "dropdown": [8, 31, 32], "option": [8, 10, 12, 15, 20, 30, 31, 32, 33, 35, 36], "els": [8, 14, 17, 18, 27], "gui_loc": 8, "locat": [8, 25, 33, 36], "05": [8, 11, 12, 13, 16, 25, 29], "gui_num_point": 8, "1000": [8, 22, 35, 36], "200_000": 8, "10_000": 8, "draw_fram": 8, "po": 8, "elif": [8, 27], "show_ax": [8, 12, 36], "axes_length": [8, 12, 16, 36], "draw_point": 8, "num_point": 8, "normal": [8, 10, 13, 20, 23, 24, 29, 39], "here": [8, 13, 19, 29], "whenev": [8, 9, 13, 29], "item": [8, 9, 14], "set_global_vis": [8, 36], "on_click": [8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 24, 25, 27, 29, 32, 37], "final": 8, "let": [8, 32], "initi": [8, 14, 31, 36], "loop": [8, 12, 13, 29, 33, 36], "infinit": 8, "how": [9, 22, 25], "world_ax": [9, 19, 26, 36], "on_client_connect": [9, 10, 20, 21, 25, 35, 38], "f": [9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 27, 29, 33, 36], "gui_info": 9, "get_client": [9, 16, 38], "kei": [9, 25, 33, 35, 36], "twxyz": 9, "tposit": 9, "tfov": 9, "taspect": 9, "tlast": 9, "addit": 10, "sync": 10, "tf": [10, 11, 12, 13, 16, 20, 25, 27, 29], "num_fram": [10, 12, 20, 30], "handler": [10, 20, 35], "rng": [10, 20], "default_rng": [10, 20], "make_fram": [10, 20], "sampl": [10, 13, 20, 29], "linalg": [10, 13, 20, 25, 29], "norm": [10, 13, 20, 25, 29], "label": [10, 13, 14, 17, 18, 20, 28, 29, 31, 32, 36, 37, 38], "frame_": [10, 16, 20], "add_label": [10, 36], "t_world_curr": [10, 20], "se3": [10, 16, 20, 25, 39], "from_rotation_and_transl": [10, 16, 20, 25, 39], "so3": [10, 11, 12, 13, 16, 20, 25, 27, 29, 39], "t_world_target": [10, 20], "from_transl": [10, 20, 39], "t_current_target": [10, 20], "invers": [10, 16, 20, 25, 39], "j": [10, 17, 20, 27, 33], "rang": [10, 12, 13, 15, 17, 20, 23, 24, 27, 29], "t_world_set": [10, 20], "exp": [10, 12, 13, 20, 29, 39], "log": [10, 13, 20, 29, 39], "19": [10, 20], "togeth": 10, "prevent": 10, "jitter": 10, "might": 10, "befor": 10, "other": [10, 35, 39], "60": [10, 12, 20, 33], "mous": [10, 20, 33], "orbit": [10, 20], "demo": [11, 12, 16, 25], "data": [11, 12, 16, 25, 28, 33], "see": [11, 12, 13, 14, 16, 25, 29, 38], "download_dragon_mesh": [11, 25], "sh": [11, 12, 16, 25], "trimesh": [11, 22, 25, 27, 36], "load_mesh": [11, 25], "dragon": [11, 25], "obj": [11, 25], "assert": [11, 13, 15, 16, 24, 29], "isinst": 11, "apply_scal": [11, 25], "face": [11, 13, 27, 29, 33, 36], "load": [11, 12, 13, 14, 16, 29, 30, 31, 33, 36], "add_mesh_simpl": [11, 13, 27, 36], "from_x_radian": [11, 39], "pi": [11, 12, 14, 27, 28, 33], "add_mesh_trimesh": [11, 22, 25, 27, 36], "smooth": [11, 36], "pars": 12, "stream": [12, 15], "captur": [12, 30, 33], "download_record3d_d": 12, "tyro": [12, 13, 14, 16, 29], "extra": [12, 14, 16, 30], "tqdm": [12, 15, 16], "auto": [12, 15, 16, 33], "data_path": 12, "record3d_d": 12, "downsample_factor": [12, 16, 30], "max_fram": 12, "bool": [12, 13, 29, 30, 31, 32, 35, 36, 37, 38], "request_share_url": [12, 38], "loader": [12, 14, 33], "record3dload": [12, 30], "playback": [12, 35], "ui": [12, 33], "gui_timestep": 12, "timestep": 12, "gui_next_fram": 12, "next": [12, 33], "gui_prev_fram": 12, "prev": [12, 33], "gui_plai": 12, "plai": [12, 27, 33], "gui_framer": 12, "fp": [12, 15], "gui_framerate_opt": 12, "add_button_group": [12, 31], "framer": [12, 33], "prev_timestep": 12, "nonloc": [12, 16, 20, 27], "current_timestep": 12, "frame_nod": 12, "framehandl": [12, 16, 36, 37], "get_fram": [12, 30], "get_point_cloud": [12, 30], "base": [12, 17, 25, 34, 35, 36, 37, 39], "append": [12, 13, 14, 24, 25, 29], "point_siz": [12, 15, 16, 36], "round": [12, 33, 36], "frustum": [12, 16, 33, 36, 37], "arctan2": [12, 16], "k": [12, 27, 30, 33], "add_camera_frustum": [12, 16, 36], "scale": [12, 13, 16, 25, 27, 29, 30, 33, 36], "15": [12, 16, 21, 33], "from_matrix": [12, 29, 39], "t_world_camera": [12, 16, 30], "ax": [12, 33, 36, 39], "axes_radiu": [12, 16, 36], "005": [12, 16], "enumer": [12, 13, 29], "cli": [12, 13, 14, 16, 29], "human": 13, "bodi": 13, "npz": 13, "instruct": [13, 29], "github": [13, 14, 18, 29, 33], "com": [13, 14, 18, 29], "vchouta": [13, 29], "smplx": [13, 29], "readm": [13, 29], "ov": [13, 29], "__future__": [13, 14, 15, 25, 29], "annot": [13, 14, 15, 25, 29, 35, 36], "np": [13, 15, 29], "frozen": [13, 29], "smploutput": [13, 29], "t_world_joint": [13, 29], "num_joint": [13, 29], "t_parent_joint": [13, 29], "smplhelper": [13, 29], "helper": [13, 14, 29], "famili": [13, 29], "implement": [13, 27, 29, 35, 39], "__init__": [13, 29], "self": [13, 29, 32, 36, 37, 39], "model_path": [13, 29], "suffix": [13, 29], "lower": [13, 14, 29, 33], "body_dict": [13, 29], "dict": [13, 28, 29, 30, 35, 38], "allow_pickl": [13, 29], "_j_regressor": [13, 29], "j_regressor": [13, 29], "_weight": [13, 29], "weight": [13, 29, 33, 36], "_v_templat": [13, 29], "v_templat": [13, 29], "_posedir": [13, 29], "posedir": [13, 29], "_shapedir": [13, 29], "shapedir": [13, 29], "_face": [13, 29], "num_beta": [13, 29], "parent_idx": [13, 29], "kintree_t": [13, 29], "get_output": [13, 29], "beta": [13, 29, 33], "joint_rotmat": [13, 29], "joint": [13, 14, 29, 30], "pose": [13, 29, 37, 39], "ident": [13, 29, 39], "v_tpose": [13, 29], "einsum": [13, 29], "vxb": [13, 29], "b": [13, 28, 29, 33, 36, 38], "vx": [13, 29, 39], "j_tpose": [13, 29], "jv": [13, 29], "jx": [13, 29], "se": [13, 29, 33, 39], "zero": [13, 29, 33], "ey": [13, 29, 33], "kinemat": [13, 29, 36], "copi": [13, 29, 33, 38], "linear": [13, 29], "blend": [13, 29], "skin": [13, 29, 36, 37], "pose_delta": [13, 29], "flatten": [13, 29], "v_blend": [13, 29], "byn": [13, 29], "n": [13, 15, 29, 33, 36, 39], "v_delta": [13, 29], "v_pose": [13, 29], "jxy": [13, 29], "vj": [13, 29], "vjy": [13, 29], "configure_them": [13, 16, 18, 20, 25, 27, 29, 31], "control_layout": [13, 16, 18, 29, 31], "collaps": [13, 16, 18, 29, 31, 33], "ll": [13, 29], "comput": [13, 15, 29, 31, 33, 39], "mesh": [13, 14, 22, 25, 27, 29, 30, 36, 37], "gui_el": [13, 29], "make_gui_el": [13, 29], "do": [13, 29, 36], "noth": [13, 29], "02": [13, 29], "continu": [13, 16, 29], "output": [13, 16, 29, 39], "smpl_output": [13, 29], "gui_beta": [13, 29], "gui_joint": [13, 14, 29], "as_matrix": [13, 25, 29, 39], "wirefram": [13, 29, 36], "gui_wirefram": [13, 29], "match": [13, 25, 29, 31], "gizmo": [13, 29, 33, 34, 36, 37], "transform_control": [13, 29], "guielement": [13, 29], "contain": [13, 29, 32, 33, 36, 37, 39], "guiinputhandl": [13, 14, 29, 31, 32], "transformcontrolshandl": [13, 29, 36, 37], "flag": [13, 29, 33, 35], "flip": [13, 29, 33], "tab_group": [13, 29], "add_tab_group": [13, 29, 31], "set_chang": [13, 29], "out": [13, 29, 33], "later": [13, 29], "add_tab": [13, 29, 32], "viewfind": [13, 29, 33], "90": [13, 29, 33, 36], "200": [13, 29, 36], "gui_show_control": [13, 29], "gui_reset_shap": [13, 29], "gui_random_shap": [13, 29], "loc": [13, 29], "angl": [13, 14, 29, 30, 33, 39], "gui_reset_joint": [13, 29], "gui_random_joint": [13, 29], "uniformli": [13, 29], "directli": [13, 20, 29, 38], "convert": [13, 29, 35], "quat": [13, 29], "set_callback_in_closur": [13, 29], "prefixed_joint_nam": [13, 29], "prefix": [13, 29], "joint_": [13, 29], "add_transform_control": [13, 29, 36], "depth_test": [13, 29, 36], "75": [13, 29], "count": [13, 29], "disable_ax": [13, 29, 36], "disable_slid": [13, 29, 36], "axisangl": [13, 29], "descript": [13, 14, 18, 29, 33], "__doc__": [13, 29], "yourdfpi": [14, 30], "robot_descript": 14, "work": [14, 31, 32, 37, 38], "clemens": 14, "viserurdf": [14, 30], "lightweight": 14, "take": [14, 39], "load_robot_descript": 14, "subset": 14, "avail": [14, 15], "robot_model_list": 14, "panda_descript": 14, "ur10_descript": 14, "ur3_descript": 14, "ur5_descript": 14, "cassie_descript": 14, "skydio_x2_descript": 14, "allegro_hand_descript": 14, "barrett_hand_descript": 14, "robotiq_2f85_descript": 14, "atlas_drc_descript": 14, "atlas_v4_descript": 14, "draco3_descript": 14, "g1_descript": 14, "h1_descript": 14, "anymal_c_descript": 14, "go2_descript": 14, "mini_cheetah_descript": 14, "logic": [14, 33], "initial_angl": 14, "update_robot_model": 14, "robot_nam": 14, "loading_mod": 14, "add_mod": [14, 21, 31], "add_markdown": [14, 18, 19, 21, 31], "termin": [14, 33], "progress": [14, 31, 33, 37], "ad": [14, 32, 33, 35, 36, 37, 38], "u": [14, 26, 32, 33], "etc": [14, 34, 36], "urdf_or_path": [14, 30], "close": [14, 15, 20, 21, 33, 36, 38], "clear": [14, 25, 33], "joint_nam": 14, "get_actuated_joint_limit": [14, 30], "configur": [14, 15, 30, 31], "update_cfg": [14, 30], "robot_model_nam": 14, "model": [14, 16, 33], "reset_button": 14, "g": [14, 25, 33, 36], "zip": [14, 33], "d": [15, 33], "pyrealsense2": 15, "contextlib": 15, "npt": 15, "ignor": [15, 25, 28, 36], "realsense_pipelin": 15, "yield": 15, "pipelin": 15, "depth": [15, 30, 36], "config": 15, "pipeline_wrapp": 15, "resolv": [15, 31], "enable_stream": 15, "z16": 15, "rgb8": 15, "point_cloud_arrays_from_fram": 15, "depth_fram": 15, "color_fram": 15, "map": [15, 30, 33, 38], "process": 15, "could": [15, 16, 38], "tune": 15, "pointcloud": 15, "decim": [15, 33], "decimation_filt": 15, "set_opt": 15, "filter_magnitud": 15, "downsampl": [15, 16], "calcul": [15, 33], "intrins": [15, 25], "map_to": 15, "texture_uv": 15, "asanyarrai": 15, "get_texture_coordin": 15, "color_imag": 15, "get_data": 15, "color_h": 15, "color_w": 15, "aren": 15, "our": [15, 31, 32, 36, 39], "clamp": 15, "pixel": 15, "clip": 15, "get_vertic": 15, "int32": 15, "10000000": 15, "wait": 15, "coher": 15, "wait_for_fram": 15, "get_depth_fram": 15, "get_color_fram": 15, "spars": 16, "reconstruct": 16, "download_colmap_garden": 16, "read_cameras_binari": 16, "read_images_binari": 16, "read_points3d_binari": 16, "colmap_path": 16, "colmap_garden": 16, "images_path": 16, "images_8": 16, "arg": 16, "factor": [16, 30, 36], "titlebar_cont": [16, 18, 25, 31], "info": [16, 33], "bin": 16, "points3d": 16, "gui_reset_up": 16, "hint": [16, 17, 31], "event": [16, 24, 27, 33, 35, 36, 37], "gui_point": 16, "50_000": 16, "gui_fram": 16, "gui_point_s": 16, "visualize_colmap": 16, "optim": 16, "ton": 16, "p_id": 16, "xyz": [16, 39], "points_select": 16, "choic": [16, 36], "replac": [16, 17, 33], "pcd": 16, "interpret": 16, "img_id": 16, "im": 16, "shuffl": [16, 33], "sort": [16, 33], "attach_callback": 16, "camerafrustumhandl": [16, 36, 37], "cam": 16, "camera_id": 16, "skip": [16, 33], "don": [16, 33, 35], "exist": 16, "image_filenam": 16, "qvec": 16, "tvec": 16, "pinhol": 16, "param": 16, "fx": 16, "fy": 16, "cx": 16, "cy": 16, "expect": 16, "got": 16, "need_upd": 16, "index": [17, 30, 33], "last": [17, 32, 33, 39], "matplotlib": 17, "grid_shap": 17, "x_valu": 17, "y_valu": 17, "add_swappable_mesh": 17, "swap": 17, "grai": [17, 31], "sphere": [17, 25, 27, 33, 36], "chosen": 17, "colormap": 17, "tab20": 17, "create_mesh": 17, "8": [17, 33], "add_box": [17, 27, 36], "sphere_": 17, "dimens": [17, 27, 33, 36, 39], "add_icospher": [17, 27, 36], "radiu": [17, 25, 27, 33, 36], "old": [17, 33], "becaus": 17, "same": [17, 31, 35, 36, 39], "light": [18, 33], "titlebarbutton": 18, "titlebarconfig": [18, 25, 31], "titlebarimag": 18, "href": 18, "studio": [18, 33], "project": [18, 25, 32, 39], "document": 18, "doc": 18, "image_url_light": 18, "_static": 18, "logo": [18, 31], "image_url_dark": 18, "dark": [18, 31], "image_alt": 18, "titlebar_them": 18, "gui_theme_cod": 18, "yet": 18, "titlebar": 18, "dark_mod": [18, 20, 27, 31], "mode": [18, 31], "show_logo": [18, 31], "show_share_button": [18, 31], "brand_color": [18, 25, 31], "brand": [18, 31, 33], "230": 18, "layout": [18, 28, 31, 33], "fix": [18, 31, 36], "control_width": [18, 31], "medium": [18, 31, 33], "larg": [18, 31, 33], "synchronize_them": 18, "ha": 19, "mdx": 19, "markdown_count": 19, "absolut": 19, "blurb": 19, "markdown_sourc": 19, "mdx_exampl": 19, "read_text": 19, "markdown_blurb": 19, "image_root": [19, 31], "add_3d_gui_contain": [20, 36], "allow": [20, 32, 36, 38], "standard": [20, 36, 39], "incorpor": 20, "action": [20, 39], "perform": [20, 33], "displayed_3d_contain": 20, "gui3dcontainerhandl": [20, 36, 37], "previous": [20, 35], "go_to": 20, "go": [20, 28, 31, 32, 33], "randomize_orient": 20, "bit": 20, "below": [21, 31], "titl": [21, 28, 31], "gui_titl": 21, "my": [21, 33], "modal_button": 21, "insid": [21, 25, 36], "2d": [22, 25, 31, 36, 37, 38, 39], "occlud": 22, "geometri": [22, 30, 33], "creation": [22, 25, 27, 36], "squar": [22, 33, 36, 39], "middl": [22, 33], "portal": 22, "250": 22, "750": 22, "cube": [22, 33], "ball": [23, 33], "add_spline_catmull_rom": [23, 24, 27, 36], "catmull_": [23, 24], "tension": [23, 24, 36], "line_width": [23, 24, 36], "segment": [23, 36], "control_point": [23, 36], "add_spline_cubic_bezi": [23, 36], "cubic_bezier_": 23, "gif": [24, 33], "720": 24, "1280": 24, "imwrit": 24, "extens": 24, "specifi": [25, 31, 33], "intersect": [25, 33], "cast": [25, 33], "theme": 25, "130": 25, "150": 25, "mesh_handl": 25, "hit_pos_handl": 25, "glbhandl": [25, 36, 37], "oper": [25, 39], "per": 25, "basi": 25, "global": [25, 26, 31, 36], "give": 25, "nice": 25, "click_button_handl": 25, "on_pointer_ev": [25, 36], "r_world_mesh": 25, "r_mesh_world": 25, "intersector": 25, "ray_triangl": 25, "raymeshintersector": 25, "hit_po": 25, "intersects_loc": 25, "remove_pointer_callback": [25, 36], "hit": 25, "distanc": 25, "hit_pos_mesh": 25, "icospher": [25, 36], "vertex_color": 25, "hit_pos_": 25, "on_pointer_callback_remov": [25, 36], "rect": [25, 36], "paint_button_handl": 25, "paint": [25, 33], "put": [25, 33], "r_camera_world": 25, "hstack": 25, "onto": [25, 35], "vertices_proj": 25, "tan": 25, "sure": 25, "lie": [25, 39], "onc": [25, 33, 36], "mask": [25, 30, 33], "whether": [25, 31, 36, 37], "9": [25, 33], "clear_button_handl": 25, "gui_up": 26, "player": [27, 33], "play_connect_4": 27, "tic": [27, 33], "tac": [27, 33], "toe": 27, "play_tic_tac_to": 27, "num_row": 27, "6": [27, 28, 33, 39], "num_col": 27, "whose_turn": 27, "red": [27, 31], "yellow": [27, 31], "pieces_in_col": 27, "board": [27, 33], "col": 27, "row": [27, 33], "annulu": 27, "45": [27, 33], "55": 27, "125": 27, "from_y_radian": [27, 39], "column": [27, 33], "setup_column": 27, "drop": [27, 33], "piec": 27, "cylind": [27, 33], "game_piec": 27, "row_anim": 27, "o": [27, 33], "gridlin": 27, "127": 27, "from_z_radian": [27, 39], "draw_symbol": 27, "symbol": [27, 33], "draw": [27, 36], "cell": [27, 33, 36], "35": 27, "setup_cel": 27, "clickabl": 27, "plot": [28, 31], "express": 28, "px": 28, "graph_object": 28, "pil": 28, "create_sinusoidal_wav": 28, "figur": [28, 31, 32], "sinusoid": 28, "wave": [28, 33], "x_data": 28, "y_data": 28, "sin": [28, 39], "fig": 28, "line": [28, 33, 36], "margin": [28, 33], "tight": [28, 36], "automargin": 28, "update_layout": 28, "l": [28, 33], "reduc": 28, "line_plot_tim": 28, "line_plot": 28, "add_plotli": [28, 31], "imshow": 28, "scatter": 28, "scatter_3d": 28, "iri": 28, "sepal_length": 28, "sepal_width": 28, "petal_width": 28, "speci": 28, "legend": 28, "yanchor": 28, "top": [28, 33, 36, 38], "xanchor": 28, "bone_wxyz": [29, 36], "bone_posit": [29, 36], "skinned_handl": 29, "add_mesh_skin": [29, 36], "skin_weight": [29, 36], "stack": [29, 33], "bone": [29, 33, 36, 37], "util": 30, "record3dfram": 30, "singl": [30, 35, 36, 38], "either": [30, 31, 36], "resiz": [30, 33, 36], "root_node_nam": 30, "root": [30, 31, 33, 35, 37], "mesh_color_overrid": 30, "overrid": [30, 35], "order": [30, 31, 32, 33], "actuat": 30, "limit": [30, 36], "get_actuated_joint_nam": 30, "individu": [31, 35, 36], "set_panel_label": 31, "appear": 31, "panel": [31, 32, 33, 38], "front": [31, 36], "bar": [31, 33], "boolean": [31, 36], "indic": [31, 36], "enabl": 31, "integ": [31, 38], "repres": [31, 36], "expand_by_default": 31, "guifolderhandl": [31, 32], "folder": [31, 32, 33], "popul": 31, "smallest": 31, "compon": [31, 33, 38], "guimodalhandl": 31, "modal": 31, "popup": 31, "guitabgrouphandl": [31, 32], "guimarkdownhandl": [31, 32], "markdown": [31, 32, 33], "guiplotlyhandl": [31, 32], "plotli": [31, 32], "instal": 31, "ratio": [31, 32, 33, 36], "pink": 31, "grape": 31, "violet": 31, "indigo": 31, "blue": 31, "cyan": 31, "green": [31, 33], "lime": 31, "orang": 31, "teal": 31, "iconnam": [31, 32, 33], "guibuttonhandl": [31, 32], "everi": 31, "back": [31, 33, 36], "hover": 31, "mime_typ": 31, "guiuploadbuttonhandl": 31, "filter": [31, 33, 35], "sequenc": 31, "tliteralstr": 31, "guibuttongrouphandl": [31, 32], "tstring": 31, "intorfloat": 31, "user": [31, 32, 33], "bound": 31, "precis": [31, 39], "minimum": 31, "maximum": 31, "length": [31, 36, 39], "guidropdownhandl": [31, 32], "add_progress_bar": 31, "guiprogressbarhandl": 31, "stripe": [31, 33], "numer": 31, "provid": [31, 35, 36, 38], "string": [31, 36, 38], "min_rang": 31, "fixed_endpoint": 31, "endpoint": 31, "picker": [31, 33], "add_rgba": 31, "func": [32, 36, 37], "thread": [32, 33, 38], "__post_init__": 32, "regist": [32, 33, 35], "ourself": 32, "construct": [32, 39], "disallow": 32, "dictat": 32, "perman": [32, 37], "timestamp": 32, "temporarili": 32, "press": [32, 33], "cannot": 32, "style": [32, 33], "stringtyp": 32, "care": 32, "about": [32, 36], "consist": 32, "possibl": 32, "most": [32, 36], "flexibl": 32, "declar": 32, "guitabhandl": 32, "enum": 33, "alia": 33, "__new__": 33, "kwarg": 33, "referenc": 33, "tabler": 33, "subclass": [33, 35], "reason": 33, "thousand": [33, 36], "result": 33, "hundr": 33, "millisecond": 33, "icon_123": 33, "123": 33, "icon_24_hour": 33, "24": 33, "hour": 33, "icon_2fa": 33, "2fa": 33, "icon_360": 33, "360": 33, "icon_360_view": 33, "icon_3d_cube_spher": 33, "icon_3d_cube_sphere_off": 33, "off": 33, "icon_3d_rot": 33, "a_b": 33, "a_b_2": 33, "a_b_off": 33, "abacu": 33, "abacus_off": 33, "abc": [33, 35, 39], "access_point": 33, "access_point_off": 33, "accessible_off": 33, "accessible_off_fil": 33, "fill": 33, "activ": [33, 36], "activity_heartbeat": 33, "heartbeat": 33, "ad_2": 33, "ad_circl": 33, "ad_circle_fil": 33, "ad_circle_off": 33, "ad_fil": 33, "ad_off": 33, "address_book": 33, "book": 33, "address_book_off": 33, "adjust": 33, "adjustments_alt": 33, "alt": 33, "adjustments_bolt": 33, "bolt": 33, "adjustments_cancel": 33, "cancel": 33, "adjustments_check": 33, "adjustments_cod": 33, "adjustments_cog": 33, "cog": 33, "adjustments_dollar": 33, "dollar": 33, "adjustments_down": 33, "down": [33, 36], "adjustments_exclam": 33, "exclam": 33, "adjustments_fil": 33, "adjustments_heart": 33, "heart": 33, "adjustments_horizont": 33, "horizont": 33, "adjustments_minu": 33, "minu": 33, "adjustments_off": 33, "adjustments_paus": 33, "paus": 33, "adjustments_pin": 33, "pin": 33, "adjustments_plu": 33, "plu": 33, "adjustments_quest": 33, "question": 33, "adjustments_search": 33, "search": 33, "adjustments_shar": 33, "adjustments_star": 33, "star": 33, "adjustments_up": 33, "adjustments_x": 33, "aerial_lift": 33, "aerial": 33, "lift": 33, "affili": 33, "affiliate_fil": 33, "air_balloon": 33, "air": 33, "balloon": 33, "air_condit": 33, "condit": 33, "air_conditioning_dis": 33, "alarm": 33, "alarm_fil": 33, "alarm_minu": 33, "alarm_minus_fil": 33, "alarm_off": 33, "alarm_plu": 33, "alarm_plus_fil": 33, "alarm_snooz": 33, "snooz": 33, "alarm_snooze_fil": 33, "album": 33, "album_off": 33, "alert_circl": 33, "alert": 33, "alert_circle_fil": 33, "alert_hexagon": 33, "hexagon": 33, "alert_hexagon_fil": 33, "alert_octagon": 33, "octagon": 33, "alert_octagon_fil": 33, "alert_smal": 33, "alert_squar": 33, "alert_square_fil": 33, "alert_square_round": 33, "alert_square_rounded_fil": 33, "alert_triangl": 33, "triangl": 33, "alert_triangle_fil": 33, "alien": 33, "alien_fil": 33, "align_box_bottom_cent": 33, "align": 33, "center": 33, "align_box_bottom_center_fil": 33, "align_box_bottom_left": 33, "align_box_bottom_left_fil": 33, "align_box_bottom_right": 33, "align_box_bottom_right_fil": 33, "align_box_center_bottom": 33, "align_box_center_middl": 33, "align_box_center_middle_fil": 33, "align_box_center_stretch": 33, "stretch": 33, "align_box_center_top": 33, "align_box_left_bottom": 33, "align_box_left_bottom_fil": 33, "align_box_left_middl": 33, "align_box_left_middle_fil": 33, "align_box_left_stretch": 33, "align_box_left_top": 33, "align_box_left_top_fil": 33, "align_box_right_bottom": 33, "align_box_right_bottom_fil": 33, "align_box_right_middl": 33, "align_box_right_middle_fil": 33, "align_box_right_stretch": 33, "align_box_right_top": 33, "align_box_right_top_fil": 33, "align_box_top_cent": 33, "align_box_top_center_fil": 33, "align_box_top_left": 33, "align_box_top_left_fil": 33, "align_box_top_right": 33, "align_box_top_right_fil": 33, "align_cent": 33, "align_justifi": 33, "justifi": 33, "align_left": 33, "align_right": 33, "alpha": 33, "alphabet_cyril": 33, "alphabet": 33, "cyril": 33, "alphabet_greek": 33, "greek": 33, "alphabet_latin": 33, "latin": 33, "ambul": 33, "ampersand": 33, "analyz": 33, "analyze_fil": 33, "analyze_off": 33, "anchor": 33, "anchor_off": 33, "ankh": 33, "antenna": 33, "antenna_bars_1": 33, "antenna_bars_2": 33, "antenna_bars_3": 33, "antenna_bars_4": 33, "antenna_bars_5": 33, "antenna_bars_off": 33, "antenna_off": 33, "apertur": 33, "aperture_off": 33, "api_app": 33, "app": 33, "api_app_off": 33, "api_off": 33, "app_window": 33, "app_window_fil": 33, "appl": 33, "apps_fil": 33, "apps_off": 33, "archiv": 33, "archive_fil": 33, "archive_off": 33, "armchair": 33, "armchair_2": 33, "armchair_2_off": 33, "armchair_off": 33, "arrow_autofit_cont": 33, "arrow": 33, "autofit": 33, "arrow_autofit_content_fil": 33, "arrow_autofit_down": 33, "arrow_autofit_height": 33, "arrow_autofit_left": 33, "arrow_autofit_right": 33, "arrow_autofit_up": 33, "arrow_autofit_width": 33, "arrow_back": 33, "arrow_back_up": 33, "arrow_back_up_doubl": 33, "doubl": [33, 36], "arrow_badge_down": 33, "badg": 33, "arrow_badge_down_fil": 33, "arrow_badge_left": 33, "arrow_badge_left_fil": 33, "arrow_badge_right": 33, "arrow_badge_right_fil": 33, "arrow_badge_up": 33, "arrow_badge_up_fil": 33, "arrow_bar_both": 33, "arrow_bar_down": 33, "arrow_bar_left": 33, "arrow_bar_right": 33, "arrow_bar_to_down": 33, "arrow_bar_to_left": 33, "arrow_bar_to_right": 33, "arrow_bar_to_up": 33, "arrow_bar_up": 33, "arrow_bear_left": 33, "bear": 33, "arrow_bear_left_2": 33, "arrow_bear_right": 33, "arrow_bear_right_2": 33, "arrow_big_down": 33, "big": 33, "arrow_big_down_fil": 33, "arrow_big_down_lin": 33, "arrow_big_down_line_fil": 33, "arrow_big_down_lines_fil": 33, "arrow_big_left": 33, "arrow_big_left_fil": 33, "arrow_big_left_lin": 33, "arrow_big_left_line_fil": 33, "arrow_big_left_lines_fil": 33, "arrow_big_right": 33, "arrow_big_right_fil": 33, "arrow_big_right_lin": 33, "arrow_big_right_line_fil": 33, "arrow_big_right_lines_fil": 33, "arrow_big_up": 33, "arrow_big_up_fil": 33, "arrow_big_up_lin": 33, "arrow_big_up_line_fil": 33, "arrow_big_up_lines_fil": 33, "arrow_bounc": 33, "bounc": 33, "arrow_capsul": 33, "capsul": 33, "arrow_curve_left": 33, "curv": [33, 36], "arrow_curve_right": 33, "arrow_down": 33, "arrow_down_bar": 33, "arrow_down_circl": 33, "arrow_down_left": 33, "arrow_down_left_circl": 33, "arrow_down_rhombu": 33, "rhombu": 33, "arrow_down_right": 33, "arrow_down_right_circl": 33, "arrow_down_squar": 33, "arrow_down_tail": 33, "tail": 33, "arrow_elbow_left": 33, "elbow": 33, "arrow_elbow_right": 33, "arrow_fork": 33, "fork": 33, "arrow_forward": 33, "arrow_forward_up": 33, "arrow_forward_up_doubl": 33, "arrow_guid": 33, "guid": 33, "arrow_iter": 33, "arrow_left": 33, "arrow_left_bar": 33, "arrow_left_circl": 33, "arrow_left_rhombu": 33, "arrow_left_right": 33, "arrow_left_squar": 33, "arrow_left_tail": 33, "arrow_loop_left": 33, "arrow_loop_left_2": 33, "arrow_loop_right": 33, "arrow_loop_right_2": 33, "arrow_merg": 33, "merg": 33, "arrow_merge_both": 33, "arrow_merge_left": 33, "arrow_merge_right": 33, "arrow_move_down": 33, "arrow_move_left": 33, "arrow_move_right": 33, "arrow_move_up": 33, "arrow_narrow_down": 33, "narrow": 33, "arrow_narrow_left": 33, "arrow_narrow_right": 33, "arrow_narrow_up": 33, "arrow_ramp_left": 33, "ramp": 33, "arrow_ramp_left_2": 33, "arrow_ramp_left_3": 33, "arrow_ramp_right": 33, "arrow_ramp_right_2": 33, "arrow_ramp_right_3": 33, "arrow_right": 33, "arrow_right_bar": 33, "arrow_right_circl": 33, "arrow_right_rhombu": 33, "arrow_right_squar": 33, "arrow_right_tail": 33, "arrow_rotary_first_left": 33, "rotari": 33, "arrow_rotary_first_right": 33, "arrow_rotary_last_left": 33, "arrow_rotary_last_right": 33, "arrow_rotary_left": 33, "arrow_rotary_right": 33, "arrow_rotary_straight": 33, "straight": 33, "arrow_roundabout_left": 33, "roundabout": 33, "arrow_roundabout_right": 33, "arrow_sharp_turn_left": 33, "sharp": 33, "turn": 33, "arrow_sharp_turn_right": 33, "arrow_up": 33, "arrow_up_bar": 33, "arrow_up_circl": 33, "arrow_up_left": 33, "arrow_up_left_circl": 33, "arrow_up_rhombu": 33, "arrow_up_right": 33, "arrow_up_right_circl": 33, "arrow_up_squar": 33, "arrow_up_tail": 33, "arrow_wave_left_down": 33, "arrow_wave_left_up": 33, "arrow_wave_right_down": 33, "arrow_wave_right_up": 33, "arrow_zig_zag": 33, "zig": 33, "zag": 33, "arrows_cross": 33, "cross": 33, "arrows_diagon": 33, "diagon": 33, "arrows_diagonal_2": 33, "arrows_diagonal_minim": 33, "minim": 33, "arrows_diagonal_minimize_2": 33, "arrows_diff": 33, "diff": 33, "arrows_double_ne_sw": 33, "ne": 33, "sw": 33, "arrows_double_nw_s": 33, "nw": 33, "arrows_double_se_nw": 33, "arrows_double_sw_n": 33, "arrows_down": 33, "arrows_down_up": 33, "arrows_exchang": 33, "exchang": 33, "arrows_exchange_2": 33, "arrows_horizont": 33, "arrows_join": 33, "join": 33, "arrows_join_2": 33, "arrows_left": 33, "arrows_left_down": 33, "arrows_left_right": 33, "arrows_maxim": 33, "maxim": 33, "arrows_minim": 33, "arrows_mov": 33, "arrows_move_horizont": 33, "arrows_move_vert": 33, "arrows_random": 33, "arrows_right": 33, "arrows_right_down": 33, "arrows_right_left": 33, "arrows_shuffl": 33, "arrows_shuffle_2": 33, "arrows_sort": 33, "arrows_split": 33, "split": 33, "arrows_split_2": 33, "arrows_transfer_down": 33, "transfer": 33, "arrows_transfer_up": 33, "arrows_up": 33, "arrows_up_down": 33, "arrows_up_left": 33, "arrows_up_right": 33, "arrows_vert": 33, "artboard": 33, "artboard_fil": 33, "artboard_off": 33, "articl": 33, "article_filled_fil": 33, "article_off": 33, "aspect_ratio": 33, "aspect_ratio_fil": 33, "aspect_ratio_off": 33, "assembli": 33, "assembly_off": 33, "asterisk": 33, "asterisk_simpl": 33, "AT": 33, "at_off": 33, "atom_2": 33, "atom_2_fil": 33, "atom_off": 33, "augmented_r": 33, "augment": 33, "realiti": 33, "augmented_reality_2": 33, "augmented_reality_off": 33, "award": 33, "award_fil": 33, "award_off": 33, "axis_x": 33, "axis_i": 33, "baby_bottl": 33, "babi": 33, "bottl": 33, "baby_carriag": 33, "carriag": 33, "backho": 33, "backpack": 33, "backpack_off": 33, "backslash": 33, "backspac": 33, "backspace_fil": 33, "badge_3d": 33, "badge_4k": 33, "4k": 33, "badge_8k": 33, "8k": 33, "badge_ad": 33, "badge_ar": 33, "badge_cc": 33, "cc": 33, "badge_fil": 33, "badge_hd": 33, "hd": 33, "badge_off": 33, "badge_sd": 33, "sd": 33, "badge_tm": 33, "tm": 33, "badge_vo": 33, "vo": 33, "badge_vr": 33, "vr": 33, "badge_wc": 33, "wc": 33, "badges_fil": 33, "badges_off": 33, "baguett": 33, "ball_american_footbal": 33, "american": 33, "footbal": 33, "ball_american_football_off": 33, "ball_basebal": 33, "basebal": 33, "ball_basketbal": 33, "basketbal": 33, "ball_bowl": 33, "bowl": 33, "ball_footbal": 33, "ball_football_off": 33, "ball_tenni": 33, "tenni": 33, "ball_volleybal": 33, "volleybal": 33, "balloon_fil": 33, "balloon_off": 33, "ballpen": 33, "ballpen_fil": 33, "ballpen_off": 33, "ban": 33, "bandag": 33, "bandage_fil": 33, "bandage_off": 33, "barbel": 33, "barbell_off": 33, "barcod": 33, "barcode_off": 33, "barrel": 33, "barrel_off": 33, "barrier_block": 33, "barrier": 33, "barrier_block_off": 33, "baselin": 33, "baseline_density_larg": 33, "densiti": 33, "baseline_density_medium": 33, "baseline_density_smal": 33, "basket": 33, "basket_fil": 33, "basket_off": 33, "bat": 33, "bath": 33, "bath_fil": 33, "bath_off": 33, "batteri": 33, "battery_1": 33, "battery_1_fil": 33, "battery_2": 33, "battery_2_fil": 33, "battery_3": 33, "battery_3_fil": 33, "battery_4": 33, "battery_4_fil": 33, "battery_automot": 33, "automot": 33, "battery_charg": 33, "charg": 33, "battery_charging_2": 33, "battery_eco": 33, "eco": 33, "battery_fil": 33, "battery_off": 33, "beach": 33, "beach_off": 33, "bed": 33, "bed_fil": 33, "bed_off": 33, "beer": 33, "beer_fil": 33, "beer_off": 33, "bell": 33, "bell_bolt": 33, "bell_cancel": 33, "bell_check": 33, "bell_cod": 33, "bell_cog": 33, "bell_dollar": 33, "bell_down": 33, "bell_exclam": 33, "bell_fil": 33, "bell_heart": 33, "bell_minu": 33, "bell_minus_fil": 33, "bell_off": 33, "bell_paus": 33, "bell_pin": 33, "bell_plu": 33, "bell_plus_fil": 33, "bell_quest": 33, "bell_ring": 33, "ring": 33, "bell_ringing_2": 33, "bell_ringing_2_fil": 33, "bell_ringing_fil": 33, "bell_school": 33, "school": 33, "bell_search": 33, "bell_shar": 33, "bell_star": 33, "bell_up": 33, "bell_x": 33, "bell_x_fil": 33, "bell_z": 33, "bell_z_fil": 33, "bibl": 33, "bike": 33, "bike_off": 33, "binari": [33, 36], "binary_off": 33, "binary_tre": 33, "binary_tree_2": 33, "biohazard": 33, "biohazard_off": 33, "blade": 33, "blade_fil": 33, "bleach": 33, "bleach_chlorin": 33, "chlorin": 33, "bleach_no_chlorin": 33, "bleach_off": 33, "blockquot": 33, "bluetooth": 33, "bluetooth_connect": 33, "bluetooth_off": 33, "bluetooth_x": 33, "blur": 33, "blur_off": 33, "bmp": 33, "bold": 33, "bold_off": 33, "bolt_off": 33, "bomb": 33, "bomb_fil": 33, "bone_off": 33, "bong": 33, "bong_off": 33, "book_2": 33, "book_download": 33, "book_fil": 33, "book_off": 33, "book_upload": 33, "bookmark": 33, "bookmark_edit": 33, "bookmark_fil": 33, "bookmark_minu": 33, "bookmark_off": 33, "bookmark_plu": 33, "bookmark_quest": 33, "bookmarks_off": 33, "books_off": 33, "border_al": 33, "border": 33, "border_bottom": 33, "border_corn": 33, "border_horizont": 33, "border_inn": 33, "inner": 33, "border_left": 33, "border_non": 33, "border_out": 33, "outer": 33, "border_radiu": 33, "border_right": 33, "border_sid": 33, "side": [33, 36], "border_styl": 33, "border_style_2": 33, "border_top": 33, "border_vert": 33, "bottle_fil": 33, "bottle_off": 33, "bounce_left": 33, "bounce_right": 33, "bow": 33, "box_align_bottom": 33, "box_align_bottom_fil": 33, "box_align_bottom_left": 33, "box_align_bottom_left_fil": 33, "box_align_bottom_right": 33, "box_align_bottom_right_fil": 33, "box_align_left": 33, "box_align_left_fil": 33, "box_align_right": 33, "box_align_right_fil": 33, "box_align_top": 33, "box_align_top_fil": 33, "box_align_top_left": 33, "box_align_top_left_fil": 33, "box_align_top_right": 33, "box_align_top_right_fil": 33, "box_margin": 33, "box_model": 33, "box_model_2": 33, "box_model_2_off": 33, "box_model_off": 33, "box_multipl": 33, "multipl": [33, 36, 39], "box_multiple_0": 33, "box_multiple_1": 33, "box_multiple_2": 33, "box_multiple_3": 33, "box_multiple_4": 33, "box_multiple_5": 33, "box_multiple_6": 33, "box_multiple_7": 33, "box_multiple_8": 33, "box_multiple_9": 33, "box_off": 33, "box_pad": 33, "pad": 33, "box_seam": 33, "seam": 33, "brace": 33, "braces_off": 33, "bracket": 33, "brackets_contain": 33, "brackets_contain_end": 33, "brackets_contain_start": 33, "brackets_off": 33, "braill": 33, "brain": 33, "brand_4chan": 33, "4chan": 33, "brand_abstract": 33, "abstract": [33, 35, 39], "brand_adob": 33, "adob": 33, "brand_adonis_j": 33, "adoni": 33, "brand_airbnb": 33, "airbnb": 33, "brand_airt": 33, "airtabl": 33, "brand_algolia": 33, "algolia": 33, "brand_alipai": 33, "alipai": 33, "brand_alpine_j": 33, "alpin": 33, "brand_amazon": 33, "amazon": 33, "brand_amd": 33, "amd": 33, "brand_amigo": 33, "amigo": 33, "brand_among_u": 33, "among": 33, "brand_android": 33, "android": 33, "brand_angular": 33, "angular": 33, "brand_ans": 33, "ansibl": 33, "brand_ao3": 33, "ao3": 33, "brand_appgalleri": 33, "appgalleri": 33, "brand_appl": 33, "brand_apple_arcad": 33, "arcad": 33, "brand_apple_podcast": 33, "podcast": 33, "brand_appstor": 33, "appstor": 33, "brand_asana": 33, "asana": 33, "brand_aw": 33, "aw": 33, "brand_azur": 33, "azur": 33, "brand_backbon": 33, "backbon": 33, "brand_badoo": 33, "badoo": 33, "brand_baidu": 33, "baidu": 33, "brand_bandcamp": 33, "bandcamp": 33, "brand_bandlab": 33, "bandlab": 33, "brand_beat": 33, "beat": 33, "brand_beh": 33, "behanc": 33, "brand_bilibili": 33, "bilibili": 33, "brand_bin": 33, "binanc": 33, "brand_b": 33, "bing": 33, "brand_bitbucket": 33, "bitbucket": 33, "brand_blackberri": 33, "blackberri": 33, "brand_blend": 33, "brand_blogg": 33, "blogger": 33, "brand_book": 33, "brand_bootstrap": 33, "bootstrap": 33, "brand_bulma": 33, "bulma": 33, "brand_bumbl": 33, "bumbl": 33, "brand_bunpo": 33, "bunpo": 33, "brand_c_sharp": 33, "c": 33, "brand_cak": 33, "cake": 33, "brand_cakephp": 33, "cakephp": 33, "brand_campaignmonitor": 33, "campaignmonitor": 33, "brand_carbon": 33, "carbon": 33, "brand_cashapp": 33, "cashapp": 33, "brand_chrom": 33, "chrome": 33, "brand_cinema_4d": 33, "cinema": 33, "brand_citymapp": 33, "citymapp": 33, "brand_cloudflar": 33, "cloudflar": 33, "brand_codecov": 33, "codecov": 33, "brand_codepen": 33, "codepen": 33, "brand_codesandbox": 33, "codesandbox": 33, "brand_cohost": 33, "cohost": 33, "brand_coinbas": 33, "coinbas": 33, "brand_comedy_centr": 33, "comedi": 33, "central": 33, "brand_coreo": 33, "coreo": 33, "brand_couchdb": 33, "couchdb": 33, "brand_couchsurf": 33, "couchsurf": 33, "brand_cpp": 33, "cpp": 33, "brand_craft": 33, "craft": 33, "brand_crunchbas": 33, "crunchbas": 33, "brand_css3": 33, "css3": 33, "brand_ctemplar": 33, "ctemplar": 33, "brand_cucumb": 33, "cucumb": 33, "brand_cupra": 33, "cupra": 33, "brand_cypress": 33, "cypress": 33, "brand_d3": 33, "d3": 33, "brand_days_count": 33, "dai": 33, "brand_dco": 33, "dco": 33, "brand_debian": 33, "debian": 33, "brand_deez": 33, "deezer": 33, "brand_deliveroo": 33, "deliveroo": 33, "brand_deno": 33, "deno": 33, "brand_denodo": 33, "denodo": 33, "brand_deviantart": 33, "deviantart": 33, "brand_digg": 33, "digg": 33, "brand_dingtalk": 33, "dingtalk": 33, "brand_discord": 33, "discord": 33, "brand_discord_fil": 33, "brand_disnei": 33, "disnei": 33, "brand_disqu": 33, "disqu": 33, "brand_django": 33, "django": 33, "brand_dock": 33, "docker": 33, "brand_doctrin": 33, "doctrin": 33, "brand_dolby_digit": 33, "dolbi": 33, "digit": 33, "brand_douban": 33, "douban": 33, "brand_dribbbl": 33, "dribbbl": 33, "brand_dribbble_fil": 33, "brand_drop": 33, "brand_drup": 33, "drupal": 33, "brand_edg": 33, "edg": 33, "brand_elast": 33, "elast": 33, "brand_electronic_art": 33, "electron": 33, "art": 33, "brand_emb": 33, "ember": 33, "brand_envato": 33, "envato": 33, "brand_etsi": 33, "etsi": 33, "brand_evernot": 33, "evernot": 33, "brand_facebook": 33, "facebook": 33, "brand_facebook_fil": 33, "brand_feedli": 33, "feedli": 33, "brand_figma": 33, "figma": 33, "brand_filezilla": 33, "filezilla": 33, "brand_find": 33, "finder": 33, "brand_firebas": 33, "firebas": 33, "brand_firefox": 33, "firefox": 33, "brand_fiverr": 33, "fiverr": 33, "brand_flickr": 33, "flickr": 33, "brand_flightradar24": 33, "flightradar24": 33, "brand_flipboard": 33, "flipboard": 33, "brand_flutt": 33, "flutter": 33, "brand_fortnit": 33, "fortnit": 33, "brand_foursquar": 33, "foursquar": 33, "brand_fram": 33, "brand_framer_mot": 33, "motion": 33, "brand_funim": 33, "funim": 33, "brand_gatsbi": 33, "gatsbi": 33, "brand_git": 33, "git": 33, "brand_github": 33, "brand_github_copilot": 33, "copilot": 33, "brand_github_fil": 33, "brand_gitlab": 33, "gitlab": 33, "brand_gmail": 33, "gmail": 33, "brand_golang": 33, "golang": 33, "brand_googl": 33, "googl": 33, "brand_google_analyt": 33, "analyt": 33, "brand_google_big_queri": 33, "queri": 33, "brand_google_dr": 33, "drive": 33, "brand_google_fit": 33, "fit": 33, "brand_google_hom": 33, "home": 33, "brand_google_map": 33, "brand_google_on": 33, "brand_google_photo": 33, "photo": 33, "brand_google_plai": 33, "brand_google_podcast": 33, "brand_grammarli": 33, "grammarli": 33, "brand_graphql": 33, "graphql": 33, "brand_gravatar": 33, "gravatar": 33, "brand_grindr": 33, "grindr": 33, "brand_guardian": 33, "guardian": 33, "brand_gumroad": 33, "gumroad": 33, "brand_hbo": 33, "hbo": 33, "brand_headlessui": 33, "headlessui": 33, "brand_hexo": 33, "hexo": 33, "brand_hipchat": 33, "hipchat": 33, "brand_html5": 33, "html5": 33, "brand_inertia": 33, "inertia": 33, "brand_instagram": 33, "instagram": 33, "brand_intercom": 33, "intercom": 33, "brand_itch": 33, "itch": 33, "brand_javascript": 33, "javascript": 33, "brand_juejin": 33, "juejin": 33, "brand_kbin": 33, "kbin": 33, "brand_kick": 33, "kick": 33, "brand_kickstart": 33, "kickstart": 33, "brand_kotlin": 33, "kotlin": 33, "brand_laravel": 33, "laravel": 33, "brand_lastfm": 33, "lastfm": 33, "brand_leetcod": 33, "leetcod": 33, "brand_letterboxd": 33, "letterboxd": 33, "brand_lin": 33, "brand_linkedin": 33, "linkedin": 33, "brand_linktre": 33, "linktre": 33, "brand_linqpad": 33, "linqpad": 33, "brand_loom": 33, "loom": 33, "brand_mailgun": 33, "mailgun": 33, "brand_mantin": 33, "mantin": 33, "brand_mastercard": 33, "mastercard": 33, "brand_mastodon": 33, "mastodon": 33, "brand_matrix": 33, "brand_mcdonald": 33, "mcdonald": 33, "brand_medium": 33, "brand_merced": 33, "merced": 33, "brand_messeng": 33, "messeng": 33, "brand_meta": 33, "meta": 33, "brand_microsoft_team": 33, "microsoft": 33, "team": 33, "brand_minecraft": 33, "minecraft": 33, "brand_miniprogram": 33, "miniprogram": 33, "brand_mixpanel": 33, "mixpanel": 33, "brand_mondai": 33, "mondai": 33, "brand_mongodb": 33, "mongodb": 33, "brand_my_oppo": 33, "oppo": 33, "brand_mysql": 33, "mysql": 33, "brand_national_geograph": 33, "nation": 33, "geograph": 33, "brand_nem": 33, "nem": 33, "brand_netbean": 33, "netbean": 33, "brand_netease_mus": 33, "neteas": 33, "music": 33, "brand_netflix": 33, "netflix": 33, "brand_nexo": 33, "nexo": 33, "brand_nextcloud": 33, "nextcloud": 33, "brand_nextj": 33, "nextj": 33, "brand_nodej": 33, "brand_nord_vpn": 33, "nord": 33, "vpn": 33, "brand_not": 33, "notion": 33, "brand_npm": 33, "npm": 33, "brand_nuxt": 33, "nuxt": 33, "brand_nytim": 33, "nytim": 33, "brand_oauth": 33, "oauth": 33, "brand_offic": 33, "offic": 33, "brand_ok_ru": 33, "ok": 33, "ru": 33, "brand_onedr": 33, "onedr": 33, "brand_onlyfan": 33, "onlyfan": 33, "brand_open_sourc": 33, "brand_openai": 33, "openai": 33, "brand_openvpn": 33, "openvpn": 33, "brand_opera": 33, "opera": 33, "brand_pagekit": 33, "pagekit": 33, "brand_patreon": 33, "patreon": 33, "brand_payp": 33, "paypal": 33, "brand_paypal_fil": 33, "brand_paypai": 33, "paypai": 33, "brand_peanut": 33, "peanut": 33, "brand_pepsi": 33, "pepsi": 33, "brand_php": 33, "php": 33, "brand_picsart": 33, "picsart": 33, "brand_pinterest": 33, "pinterest": 33, "brand_planetscal": 33, "planetscal": 33, "brand_pocket": 33, "pocket": 33, "brand_polym": 33, "polym": 33, "brand_powershel": 33, "powershel": 33, "brand_prisma": 33, "prisma": 33, "brand_producthunt": 33, "producthunt": 33, "brand_pushbullet": 33, "pushbullet": 33, "brand_pushov": 33, "pushov": 33, "brand_python": 33, "brand_qq": 33, "qq": 33, "brand_radix_ui": 33, "radix": 33, "brand_react": 33, "brand_react_n": 33, "nativ": 33, "brand_reason": 33, "brand_reddit": 33, "reddit": 33, "brand_redhat": 33, "redhat": 33, "brand_redux": 33, "redux": 33, "brand_revolut": 33, "revolut": 33, "brand_rumbl": 33, "rumbl": 33, "brand_rust": 33, "rust": 33, "brand_safari": 33, "safari": 33, "brand_samsungpass": 33, "samsungpass": 33, "brand_sass": 33, "sass": 33, "brand_sentri": 33, "sentri": 33, "brand_sharik": 33, "sharik": 33, "brand_shazam": 33, "shazam": 33, "brand_shope": 33, "shope": 33, "brand_sketch": 33, "sketch": 33, "brand_skyp": 33, "skype": 33, "brand_slack": 33, "slack": 33, "brand_snapchat": 33, "snapchat": 33, "brand_snapse": 33, "snapse": 33, "brand_snowflak": 33, "snowflak": 33, "brand_socket_io": 33, "socket": 33, "io": 33, "brand_solidj": 33, "solidj": 33, "brand_soundcloud": 33, "soundcloud": 33, "brand_spacehei": 33, "spacehei": 33, "brand_speedtest": 33, "speedtest": 33, "brand_spotifi": 33, "spotifi": 33, "brand_stackoverflow": 33, "stackoverflow": 33, "brand_stackshar": 33, "stackshar": 33, "brand_steam": 33, "steam": 33, "brand_storj": 33, "storj": 33, "brand_storybook": 33, "storybook": 33, "brand_storytel": 33, "storytel": 33, "brand_strava": 33, "strava": 33, "brand_strip": 33, "brand_sublime_text": 33, "sublim": 33, "brand_sugar": 33, "sugar": 33, "brand_supabas": 33, "supabas": 33, "brand_superhuman": 33, "superhuman": 33, "brand_supernova": 33, "supernova": 33, "brand_surfshark": 33, "surfshark": 33, "brand_svelt": 33, "svelt": 33, "brand_swift": 33, "swift": 33, "brand_symfoni": 33, "symfoni": 33, "brand_tabl": 33, "brand_tailwind": 33, "tailwind": 33, "brand_taobao": 33, "taobao": 33, "brand_t": 33, "ted": 33, "brand_telegram": 33, "telegram": 33, "brand_terraform": 33, "terraform": 33, "brand_teth": 33, "tether": 33, "brand_threej": 33, "threej": 33, "brand_tid": 33, "tidal": 33, "brand_tikto_fil": 33, "tikto": 33, "brand_tiktok": 33, "tiktok": 33, "brand_tind": 33, "tinder": 33, "brand_topbuzz": 33, "topbuzz": 33, "brand_torchain": 33, "torchain": 33, "brand_toyota": 33, "toyota": 33, "brand_trello": 33, "trello": 33, "brand_tripadvisor": 33, "tripadvisor": 33, "brand_tumblr": 33, "tumblr": 33, "brand_twilio": 33, "twilio": 33, "brand_twitch": 33, "twitch": 33, "brand_twitt": 33, "twitter": 33, "brand_twitter_fil": 33, "brand_typescript": 33, "brand_ub": 33, "uber": 33, "brand_ubuntu": 33, "ubuntu": 33, "brand_un": 33, "uniti": 33, "brand_unsplash": 33, "unsplash": 33, "brand_upwork": 33, "upwork": 33, "brand_valor": 33, "valor": 33, "brand_vercel": 33, "vercel": 33, "brand_vimeo": 33, "vimeo": 33, "brand_vint": 33, "vint": 33, "brand_visa": 33, "visa": 33, "brand_visual_studio": 33, "brand_vit": 33, "vite": 33, "brand_vivaldi": 33, "vivaldi": 33, "brand_vk": 33, "vk": 33, "brand_vlc": 33, "vlc": 33, "brand_volkswagen": 33, "volkswagen": 33, "brand_vsco": 33, "vsco": 33, "brand_vscod": 33, "vscode": 33, "brand_vu": 33, "vue": 33, "brand_walmart": 33, "walmart": 33, "brand_waz": 33, "waze": 33, "brand_webflow": 33, "webflow": 33, "brand_wechat": 33, "wechat": 33, "brand_weibo": 33, "weibo": 33, "brand_whatsapp": 33, "whatsapp": 33, "brand_wikipedia": 33, "wikipedia": 33, "brand_window": 33, "brand_windi": 33, "windi": 33, "brand_wish": 33, "wish": 33, "brand_wix": 33, "wix": 33, "brand_wordpress": 33, "wordpress": 33, "brand_xamarin": 33, "xamarin": 33, "brand_xbox": 33, "xbox": 33, "brand_x": 33, "xing": 33, "brand_yahoo": 33, "yahoo": 33, "brand_yandex": 33, "yandex": 33, "brand_yats": 33, "yats": 33, "brand_ycombin": 33, "ycombin": 33, "brand_youtub": 33, "youtub": 33, "brand_youtube_kid": 33, "kid": 33, "brand_zalando": 33, "zalando": 33, "brand_zapi": 33, "zapier": 33, "brand_zeit": 33, "zeit": 33, "brand_zhihu": 33, "zhihu": 33, "brand_zoom": 33, "zoom": 33, "brand_zulip": 33, "zulip": 33, "brand_zwift": 33, "zwift": 33, "bread": 33, "bread_off": 33, "briefcas": 33, "briefcase_off": 33, "bright": 33, "brightness_2": 33, "brightness_down": 33, "brightness_half": 33, "half": 33, "brightness_off": 33, "brightness_up": 33, "broadcast": [33, 35, 39], "broadcast_off": 33, "browser_check": 33, "browser_off": 33, "browser_plu": 33, "browser_x": 33, "brush": 33, "brush_off": 33, "bucket": 33, "bucket_droplet": 33, "droplet": 33, "bucket_off": 33, "bug": 33, "bug_off": 33, "building_arch": 33, "arch": 33, "building_bank": 33, "bank": 33, "building_bridg": 33, "bridg": 33, "building_bridge_2": 33, "building_broadcast_tow": 33, "tower": 33, "building_carousel": 33, "carousel": 33, "building_castl": 33, "castl": 33, "building_church": 33, "church": 33, "building_circu": 33, "circu": 33, "building_commun": 33, "building_cottag": 33, "cottag": 33, "building_est": 33, "estat": 33, "building_factori": 33, "factori": 33, "building_factory_2": 33, "building_fortress": 33, "fortress": 33, "building_hospit": 33, "hospit": 33, "building_lighthous": 33, "lighthous": 33, "building_monu": 33, "monument": 33, "building_mosqu": 33, "mosqu": 33, "building_pavilion": 33, "pavilion": 33, "building_skyscrap": 33, "skyscrap": 33, "building_stadium": 33, "stadium": 33, "building_stor": 33, "store": 33, "building_tunnel": 33, "tunnel": [33, 38], "building_warehous": 33, "warehous": 33, "building_wind_turbin": 33, "wind": 33, "turbin": 33, "bulb": 33, "bulb_fil": 33, "bulb_off": 33, "bulldoz": 33, "bu": 33, "bus_off": 33, "bus_stop": 33, "stop": [33, 35, 38], "businessplan": 33, "butterfli": 33, "cactu": 33, "cactus_off": 33, "cake_off": 33, "calculator_off": 33, "calendar": 33, "calendar_bolt": 33, "calendar_cancel": 33, "calendar_check": 33, "calendar_cod": 33, "calendar_cog": 33, "calendar_dollar": 33, "calendar_down": 33, "calendar_du": 33, "due": 33, "calendar_ev": 33, "calendar_exclam": 33, "calendar_heart": 33, "calendar_minu": 33, "calendar_off": 33, "calendar_paus": 33, "calendar_pin": 33, "calendar_plu": 33, "calendar_quest": 33, "calendar_repeat": 33, "repeat": 33, "calendar_search": 33, "calendar_shar": 33, "calendar_star": 33, "calendar_stat": 33, "stat": 33, "calendar_tim": 33, "calendar_up": 33, "calendar_x": 33, "camera_bolt": 33, "camera_cancel": 33, "camera_check": 33, "camera_cod": 33, "camera_cog": 33, "camera_dollar": 33, "camera_down": 33, "camera_exclam": 33, "camera_fil": 33, "camera_heart": 33, "camera_minu": 33, "camera_off": 33, "camera_paus": 33, "camera_pin": 33, "camera_plu": 33, "camera_quest": 33, "camera_rot": 33, "camera_search": 33, "camera_selfi": 33, "selfi": 33, "camera_shar": 33, "camera_star": 33, "camera_up": 33, "camera_x": 33, "camper": 33, "campfir": 33, "candl": 33, "candi": 33, "candy_off": 33, "cane": 33, "cannabi": 33, "capsule_horizont": 33, "capture_off": 33, "car": 33, "car_cran": 33, "crane": 33, "car_crash": 33, "crash": 33, "car_off": 33, "car_turbin": 33, "caravan": 33, "cardboard": 33, "cardboards_off": 33, "card": 33, "caret_down": 33, "caret": 33, "caret_left": 33, "caret_right": 33, "caret_up": 33, "carousel_horizont": 33, "carousel_horizontal_fil": 33, "carousel_vert": 33, "carousel_vertical_fil": 33, "carrot": 33, "carrot_off": 33, "cash": 33, "cash_banknot": 33, "banknot": 33, "cash_banknote_off": 33, "cash_off": 33, "cast_off": 33, "cat": 33, "categori": 33, "category_2": 33, "ce": 33, "ce_off": 33, "cell_signal_1": 33, "signal": 33, "cell_signal_2": 33, "cell_signal_3": 33, "cell_signal_4": 33, "cell_signal_5": 33, "cell_signal_off": 33, "certif": 33, "certificate_2": 33, "certificate_2_off": 33, "certificate_off": 33, "chair_director": 33, "chair": 33, "director": 33, "chalkboard": 33, "chalkboard_off": 33, "charging_pil": 33, "pile": 33, "chart_arc": 33, "chart": 33, "arc": 33, "chart_arcs_3": 33, "chart_area": 33, "area": 33, "chart_area_fil": 33, "chart_area_lin": 33, "chart_area_line_fil": 33, "chart_arrow": 33, "chart_arrows_vert": 33, "chart_bar": 33, "chart_bar_off": 33, "chart_bubbl": 33, "bubbl": 33, "chart_bubble_fil": 33, "chart_candl": 33, "chart_candle_fil": 33, "chart_circl": 33, "chart_donut": 33, "donut": 33, "chart_donut_2": 33, "chart_donut_3": 33, "chart_donut_4": 33, "chart_donut_fil": 33, "chart_dot": 33, "dot": 33, "chart_dots_2": 33, "chart_dots_3": 33, "chart_grid_dot": 33, "chart_histogram": 33, "histogram": 33, "chart_infograph": 33, "infograph": 33, "chart_lin": 33, "chart_pi": 33, "pie": 33, "chart_pie_2": 33, "chart_pie_3": 33, "chart_pie_4": 33, "chart_pie_fil": 33, "chart_pie_off": 33, "chart_ppf": 33, "ppf": 33, "chart_radar": 33, "radar": 33, "chart_sankei": 33, "sankei": 33, "chart_treemap": 33, "treemap": 33, "checklist": 33, "checkup_list": 33, "checkup": 33, "chees": 33, "chef_hat": 33, "chef": 33, "hat": 33, "chef_hat_off": 33, "cherri": 33, "cherry_fil": 33, "chess": 33, "chess_bishop": 33, "bishop": 33, "chess_bishop_fil": 33, "chess_fil": 33, "chess_k": 33, "king": 33, "chess_king_fil": 33, "chess_knight": 33, "knight": 33, "chess_knight_fil": 33, "chess_queen": 33, "queen": 33, "chess_queen_fil": 33, "chess_rook": 33, "rook": 33, "chess_rook_fil": 33, "chevron_compact_down": 33, "chevron": 33, "compact": 33, "chevron_compact_left": 33, "chevron_compact_right": 33, "chevron_compact_up": 33, "chevron_down": 33, "chevron_down_left": 33, "chevron_down_right": 33, "chevron_left": 33, "chevron_left_pip": 33, "pipe": 33, "chevron_right": 33, "chevron_right_pip": 33, "chevron_up": 33, "chevron_up_left": 33, "chevron_up_right": 33, "chevrons_down": 33, "chevrons_down_left": 33, "chevrons_down_right": 33, "chevrons_left": 33, "chevrons_right": 33, "chevrons_up": 33, "chevrons_up_left": 33, "chevrons_up_right": 33, "chisel": 33, "christmas_tre": 33, "christma": 33, "christmas_tree_off": 33, "circle_0_fil": 33, "circle_1_fil": 33, "circle_2_fil": 33, "circle_3_fil": 33, "circle_4_fil": 33, "circle_5_fil": 33, "circle_6_fil": 33, "circle_7_fil": 33, "circle_8_fil": 33, "circle_9_fil": 33, "circle_arrow_down": 33, "circle_arrow_down_fil": 33, "circle_arrow_down_left": 33, "circle_arrow_down_left_fil": 33, "circle_arrow_down_right": 33, "circle_arrow_down_right_fil": 33, "circle_arrow_left": 33, "circle_arrow_left_fil": 33, "circle_arrow_right": 33, "circle_arrow_right_fil": 33, "circle_arrow_up": 33, "circle_arrow_up_fil": 33, "circle_arrow_up_left": 33, "circle_arrow_up_left_fil": 33, "circle_arrow_up_right": 33, "circle_arrow_up_right_fil": 33, "circle_caret_down": 33, "circle_caret_left": 33, "circle_caret_right": 33, "circle_caret_up": 33, "circle_check": 33, "circle_check_fil": 33, "circle_chevron_down": 33, "circle_chevron_left": 33, "circle_chevron_right": 33, "circle_chevron_up": 33, "circle_chevrons_down": 33, "circle_chevrons_left": 33, "circle_chevrons_right": 33, "circle_chevrons_up": 33, "circle_dash": 33, "dash": 33, "circle_dot": 33, "circle_dot_fil": 33, "circle_fil": 33, "circle_half": 33, "circle_half_2": 33, "circle_half_vert": 33, "circle_kei": 33, "circle_key_fil": 33, "circle_letter_a": 33, "letter": 33, "circle_letter_b": 33, "circle_letter_c": 33, "circle_letter_d": 33, "circle_letter_": 33, "circle_letter_f": 33, "circle_letter_g": 33, "circle_letter_h": 33, "circle_letter_i": 33, "circle_letter_j": 33, "circle_letter_k": 33, "circle_letter_l": 33, "circle_letter_m": 33, "m": 33, "circle_letter_n": 33, "circle_letter_o": 33, "circle_letter_p": 33, "p": 33, "circle_letter_q": 33, "q": 33, "circle_letter_r": 33, "circle_letter_t": 33, "circle_letter_u": 33, "circle_letter_v": 33, "v": [33, 36], "circle_letter_w": 33, "circle_letter_x": 33, "circle_letter_z": 33, "circle_minu": 33, "circle_number_0": 33, "circle_number_1": 33, "circle_number_2": 33, "circle_number_3": 33, "circle_number_4": 33, "circle_number_5": 33, "circle_number_6": 33, "circle_number_7": 33, "circle_number_8": 33, "circle_number_9": 33, "circle_off": 33, "circle_plu": 33, "circle_rectangl": 33, "rectangl": 33, "circle_rectangle_off": 33, "circle_squar": 33, "circle_triangl": 33, "circle_x": 33, "circle_x_fil": 33, "circles_fil": 33, "circles_rel": 33, "relat": 33, "circuit_ammet": 33, "circuit": 33, "ammet": 33, "circuit_batteri": 33, "circuit_bulb": 33, "circuit_capacitor": 33, "capacitor": 33, "circuit_capacitor_polar": 33, "polar": 33, "circuit_cel": 33, "circuit_cell_plu": 33, "circuit_changeov": 33, "changeov": 33, "circuit_diod": 33, "diod": 33, "circuit_diode_zen": 33, "zener": 33, "circuit_ground": 33, "ground": [33, 36], "circuit_ground_digit": 33, "circuit_inductor": 33, "inductor": 33, "circuit_motor": 33, "motor": 33, "circuit_pushbutton": 33, "pushbutton": 33, "circuit_resistor": 33, "resistor": 33, "circuit_switch_clos": 33, "switch": [33, 39], "circuit_switch_open": 33, "circuit_voltmet": 33, "voltmet": 33, "clear_al": 33, "clear_format": 33, "clipboard": 33, "clipboard_check": 33, "clipboard_copi": 33, "clipboard_data": 33, "clipboard_heart": 33, "clipboard_list": 33, "clipboard_off": 33, "clipboard_plu": 33, "clipboard_text": 33, "clipboard_typographi": 33, "typographi": 33, "clipboard_x": 33, "clock": 33, "clock_2": 33, "clock_bolt": 33, "clock_cancel": 33, "clock_check": 33, "clock_cod": 33, "clock_cog": 33, "clock_dollar": 33, "clock_down": 33, "clock_edit": 33, "clock_exclam": 33, "clock_fil": 33, "clock_heart": 33, "clock_hour_1": 33, "clock_hour_10": 33, "clock_hour_11": 33, "11": 33, "clock_hour_12": 33, "12": 33, "clock_hour_2": 33, "clock_hour_3": 33, "clock_hour_4": 33, "clock_hour_5": 33, "clock_hour_6": 33, "clock_hour_7": 33, "clock_hour_8": 33, "clock_hour_9": 33, "clock_minu": 33, "clock_off": 33, "clock_paus": 33, "clock_pin": 33, "clock_plai": 33, "clock_plu": 33, "clock_quest": 33, "clock_record": 33, "record": [33, 35], "clock_search": 33, "clock_shar": 33, "clock_shield": 33, "shield": 33, "clock_star": 33, "clock_stop": 33, "clock_up": 33, "clock_x": 33, "clothes_rack": 33, "cloth": 33, "rack": 33, "clothes_rack_off": 33, "cloud_bolt": 33, "cloud_cancel": 33, "cloud_check": 33, "cloud_cod": 33, "cloud_cog": 33, "cloud_comput": 33, "cloud_data_connect": 33, "cloud_dollar": 33, "cloud_down": 33, "cloud_download": 33, "cloud_exclam": 33, "cloud_fil": 33, "cloud_fog": 33, "fog": 33, "cloud_heart": 33, "cloud_lock": 33, "lock": 33, "cloud_lock_open": 33, "cloud_minu": 33, "cloud_off": 33, "cloud_paus": 33, "cloud_pin": 33, "cloud_plu": 33, "cloud_quest": 33, "cloud_rain": 33, "rain": 33, "cloud_search": 33, "cloud_shar": 33, "cloud_snow": 33, "snow": 33, "cloud_star": 33, "cloud_storm": 33, "storm": 33, "cloud_up": 33, "cloud_upload": 33, "cloud_x": 33, "clover": 33, "clover_2": 33, "club": 33, "clubs_fil": 33, "code_asterix": 33, "asterix": 33, "code_circl": 33, "code_circle_2": 33, "code_dot": 33, "code_minu": 33, "code_off": 33, "code_plu": 33, "coffe": 33, "coffee_off": 33, "coffin": 33, "coin": 33, "coin_bitcoin": 33, "bitcoin": 33, "coin_euro": 33, "euro": 33, "coin_monero": 33, "monero": 33, "coin_off": 33, "coin_pound": 33, "pound": 33, "coin_rupe": 33, "rupe": 33, "coin_yen": 33, "yen": 33, "coin_yuan": 33, "yuan": 33, "color_filt": 33, "color_pick": 33, "color_picker_off": 33, "color_swatch": 33, "swatch": 33, "color_swatch_off": 33, "column_insert_left": 33, "insert": 33, "column_insert_right": 33, "column_remov": 33, "columns_1": 33, "columns_2": 33, "columns_3": 33, "columns_off": 33, "comet": 33, "command": 33, "command_off": 33, "compass": 33, "compass_off": 33, "components_off": 33, "cone": 33, "cone_2": 33, "cone_off": 33, "cone_plu": 33, "confetti": 33, "confetti_off": 33, "confuciu": 33, "container_off": 33, "contrast": 33, "contrast_2": 33, "contrast_2_off": 33, "contrast_off": 33, "cooker": 33, "cooki": 33, "cookie_man": 33, "man": 33, "cookie_off": 33, "copy_off": 33, "copyleft": 33, "copyleft_fil": 33, "copyleft_off": 33, "copyright": 33, "copyright_fil": 33, "copyright_off": 33, "corner_down_left": 33, "corner_down_left_doubl": 33, "corner_down_right": 33, "corner_down_right_doubl": 33, "corner_left_down": 33, "corner_left_down_doubl": 33, "corner_left_up": 33, "corner_left_up_doubl": 33, "corner_right_down": 33, "corner_right_down_doubl": 33, "corner_right_up": 33, "corner_right_up_doubl": 33, "corner_up_left": 33, "corner_up_left_doubl": 33, "corner_up_right": 33, "corner_up_right_doubl": 33, "cpu": 33, "cpu_2": 33, "cpu_off": 33, "crane_off": 33, "creative_common": 33, "creativ": 33, "creative_commons_bi": 33, "creative_commons_nc": 33, "nc": 33, "creative_commons_nd": 33, "nd": 33, "creative_commons_off": 33, "creative_commons_sa": 33, "sa": 33, "creative_commons_zero": 33, "credit_card": 33, "credit": 33, "credit_card_off": 33, "cricket": 33, "crop": 33, "cross_fil": 33, "cross_off": 33, "crosshair": 33, "crown": 33, "crown_off": 33, "crutch": 33, "crutches_off": 33, "crystal_bal": 33, "crystal": 33, "csv": 33, "cube_off": 33, "cube_plu": 33, "cube_send": 33, "cube_unfold": 33, "unfold": 33, "cup": 33, "cup_off": 33, "curl": 33, "curly_loop": 33, "curli": 33, "currenc": 33, "currency_afghani": 33, "afghani": 33, "currency_bahraini": 33, "bahraini": 33, "currency_baht": 33, "baht": 33, "currency_bitcoin": 33, "currency_c": 33, "cent": 33, "currency_dinar": 33, "dinar": 33, "currency_dirham": 33, "dirham": 33, "currency_dogecoin": 33, "dogecoin": 33, "currency_dollar": 33, "currency_dollar_australian": 33, "australian": 33, "currency_dollar_brunei": 33, "brunei": 33, "currency_dollar_canadian": 33, "canadian": 33, "currency_dollar_guyanes": 33, "guyanes": 33, "currency_dollar_off": 33, "currency_dollar_singapor": 33, "singapor": 33, "currency_dollar_zimbabwean": 33, "zimbabwean": 33, "currency_dong": 33, "dong": 33, "currency_dram": 33, "dram": 33, "currency_ethereum": 33, "ethereum": 33, "currency_euro": 33, "currency_euro_off": 33, "currency_florin": 33, "florin": 33, "currency_forint": 33, "forint": 33, "currency_frank": 33, "frank": 33, "currency_guarani": 33, "guarani": 33, "currency_hryvnia": 33, "hryvnia": 33, "currency_iranian_ri": 33, "iranian": 33, "rial": 33, "currency_kip": 33, "kip": 33, "currency_krone_czech": 33, "krone": 33, "czech": 33, "currency_krone_danish": 33, "danish": 33, "currency_krone_swedish": 33, "swedish": 33, "currency_lari": 33, "lari": 33, "currency_leu": 33, "leu": 33, "currency_lira": 33, "lira": 33, "currency_litecoin": 33, "litecoin": 33, "currency_lyd": 33, "lyd": 33, "currency_manat": 33, "manat": 33, "currency_monero": 33, "currency_naira": 33, "naira": 33, "currency_nano": 33, "nano": 33, "currency_off": 33, "currency_paanga": 33, "paanga": 33, "currency_peso": 33, "peso": 33, "currency_pound": 33, "currency_pound_off": 33, "currency_quetz": 33, "quetzal": 33, "currency_r": 33, "real": 33, "currency_renminbi": 33, "renminbi": 33, "currency_rippl": 33, "rippl": 33, "currency_riy": 33, "riyal": 33, "currency_rubel": 33, "rubel": 33, "currency_rufiyaa": 33, "rufiyaa": 33, "currency_rupe": 33, "currency_rupee_nepales": 33, "nepales": 33, "currency_shekel": 33, "shekel": 33, "currency_solana": 33, "solana": 33, "currency_som": 33, "som": 33, "currency_taka": 33, "taka": 33, "currency_teng": 33, "teng": 33, "currency_tugrik": 33, "tugrik": 33, "currency_won": 33, "won": [33, 35], "currency_yen": 33, "currency_yen_off": 33, "currency_yuan": 33, "currency_zloti": 33, "zloti": 33, "current_loc": 33, "current_location_off": 33, "cursor_off": 33, "cursor": 33, "cursor_text": 33, "cut": 33, "cylinder_off": 33, "cylinder_plu": 33, "dashboard": 33, "dashboard_off": 33, "databas": 33, "database_cog": 33, "database_dollar": 33, "database_edit": 33, "database_exclam": 33, "database_export": 33, "export": 33, "database_heart": 33, "database_import": 33, "database_leak": 33, "leak": 33, "database_minu": 33, "database_off": 33, "database_plu": 33, "database_search": 33, "database_shar": 33, "database_star": 33, "database_x": 33, "deer": 33, "delta": 33, "dental": 33, "dental_broken": 33, "broken": 33, "dental_off": 33, "deselect": 33, "detail": 33, "details_off": 33, "device_airpod": 33, "devic": 33, "airpod": 33, "device_airpods_cas": 33, "case": [33, 36], "device_airtag": 33, "airtag": 33, "device_analyt": 33, "device_audio_tap": 33, "audio": 33, "tape": 33, "device_camera_phon": 33, "phone": 33, "device_cctv": 33, "cctv": 33, "device_cctv_off": 33, "device_computer_camera": 33, "device_computer_camera_off": 33, "device_desktop": 33, "desktop": 33, "device_desktop_analyt": 33, "device_desktop_bolt": 33, "device_desktop_cancel": 33, "device_desktop_check": 33, "device_desktop_cod": 33, "device_desktop_cog": 33, "device_desktop_dollar": 33, "device_desktop_down": 33, "device_desktop_exclam": 33, "device_desktop_heart": 33, "device_desktop_minu": 33, "device_desktop_off": 33, "device_desktop_paus": 33, "device_desktop_pin": 33, "device_desktop_plu": 33, "device_desktop_quest": 33, "device_desktop_search": 33, "device_desktop_shar": 33, "device_desktop_star": 33, "device_desktop_up": 33, "device_desktop_x": 33, "device_floppi": 33, "floppi": 33, "device_gamepad": 33, "gamepad": 33, "device_gamepad_2": 33, "device_heart_monitor": 33, "monitor": 33, "device_heart_monitor_fil": 33, "device_imac": 33, "imac": 33, "device_imac_bolt": 33, "device_imac_cancel": 33, "device_imac_check": 33, "device_imac_cod": 33, "device_imac_cog": 33, "device_imac_dollar": 33, "device_imac_down": 33, "device_imac_exclam": 33, "device_imac_heart": 33, "device_imac_minu": 33, "device_imac_off": 33, "device_imac_paus": 33, "device_imac_pin": 33, "device_imac_plu": 33, "device_imac_quest": 33, "device_imac_search": 33, "device_imac_shar": 33, "device_imac_star": 33, "device_imac_up": 33, "device_imac_x": 33, "device_ipad": 33, "ipad": 33, "device_ipad_bolt": 33, "device_ipad_cancel": 33, "device_ipad_check": 33, "device_ipad_cod": 33, "device_ipad_cog": 33, "device_ipad_dollar": 33, "device_ipad_down": 33, "device_ipad_exclam": 33, "device_ipad_heart": 33, "device_ipad_horizont": 33, "device_ipad_horizontal_bolt": 33, "device_ipad_horizontal_cancel": 33, "device_ipad_horizontal_check": 33, "device_ipad_horizontal_cod": 33, "device_ipad_horizontal_cog": 33, "device_ipad_horizontal_dollar": 33, "device_ipad_horizontal_down": 33, "device_ipad_horizontal_exclam": 33, "device_ipad_horizontal_heart": 33, "device_ipad_horizontal_minu": 33, "device_ipad_horizontal_off": 33, "device_ipad_horizontal_paus": 33, "device_ipad_horizontal_pin": 33, "device_ipad_horizontal_plu": 33, "device_ipad_horizontal_quest": 33, "device_ipad_horizontal_search": 33, "device_ipad_horizontal_shar": 33, "device_ipad_horizontal_star": 33, "device_ipad_horizontal_up": 33, "device_ipad_horizontal_x": 33, "device_ipad_minu": 33, "device_ipad_off": 33, "device_ipad_paus": 33, "device_ipad_pin": 33, "device_ipad_plu": 33, "device_ipad_quest": 33, "device_ipad_search": 33, "device_ipad_shar": 33, "device_ipad_star": 33, "device_ipad_up": 33, "device_ipad_x": 33, "device_landline_phon": 33, "landlin": 33, "device_laptop": 33, "laptop": 33, "device_laptop_off": 33, "device_mobil": 33, "mobil": [33, 39], "device_mobile_bolt": 33, "device_mobile_cancel": 33, "device_mobile_charg": 33, "device_mobile_check": 33, "device_mobile_cod": 33, "device_mobile_cog": 33, "device_mobile_dollar": 33, "device_mobile_down": 33, "device_mobile_exclam": 33, "device_mobile_fil": 33, "device_mobile_heart": 33, "device_mobile_messag": 33, "device_mobile_minu": 33, "device_mobile_off": 33, "device_mobile_paus": 33, "device_mobile_pin": 33, "device_mobile_plu": 33, "device_mobile_quest": 33, "device_mobile_rot": 33, "device_mobile_search": 33, "device_mobile_shar": 33, "device_mobile_star": 33, "device_mobile_up": 33, "device_mobile_vibr": 33, "vibrat": 33, "device_mobile_x": 33, "device_nintendo": 33, "nintendo": 33, "device_nintendo_off": 33, "device_remot": 33, "remot": 33, "device_sd_card": 33, "device_sim": 33, "sim": 33, "device_sim_1": 33, "device_sim_2": 33, "device_sim_3": 33, "device_speak": 33, "speaker": 33, "device_speaker_off": 33, "device_tablet": 33, "tablet": 33, "device_tablet_bolt": 33, "device_tablet_cancel": 33, "device_tablet_check": 33, "device_tablet_cod": 33, "device_tablet_cog": 33, "device_tablet_dollar": 33, "device_tablet_down": 33, "device_tablet_exclam": 33, "device_tablet_fil": 33, "device_tablet_heart": 33, "device_tablet_minu": 33, "device_tablet_off": 33, "device_tablet_paus": 33, "device_tablet_pin": 33, "device_tablet_plu": 33, "device_tablet_quest": 33, "device_tablet_search": 33, "device_tablet_shar": 33, "device_tablet_star": 33, "device_tablet_up": 33, "device_tablet_x": 33, "device_tv": 33, "tv": 33, "device_tv_off": 33, "device_tv_old": 33, "device_vision_pro": 33, "vision": 33, "pro": 33, "device_watch": 33, "watch": 33, "device_watch_bolt": 33, "device_watch_cancel": 33, "device_watch_check": 33, "device_watch_cod": 33, "device_watch_cog": 33, "device_watch_dollar": 33, "device_watch_down": 33, "device_watch_exclam": 33, "device_watch_heart": 33, "device_watch_minu": 33, "device_watch_off": 33, "device_watch_paus": 33, "device_watch_pin": 33, "device_watch_plu": 33, "device_watch_quest": 33, "device_watch_search": 33, "device_watch_shar": 33, "device_watch_star": 33, "device_watch_stat": 33, "device_watch_stats_2": 33, "device_watch_up": 33, "device_watch_x": 33, "devices_2": 33, "devices_bolt": 33, "devices_cancel": 33, "devices_check": 33, "devices_cod": 33, "devices_cog": 33, "devices_dollar": 33, "devices_down": 33, "devices_exclam": 33, "devices_heart": 33, "devices_minu": 33, "devices_off": 33, "devices_paus": 33, "devices_pc": 33, "pc": 33, "devices_pc_off": 33, "devices_pin": 33, "devices_plu": 33, "devices_quest": 33, "devices_search": 33, "devices_shar": 33, "devices_star": 33, "devices_up": 33, "devices_x": 33, "diabolo": 33, "diabolo_off": 33, "diabolo_plu": 33, "dialpad": 33, "dialpad_fil": 33, "dialpad_off": 33, "diamond": [33, 36], "diamond_fil": 33, "diamond_off": 33, "diamonds_fil": 33, "dice": 33, "dice_1": 33, "dice_1_fil": 33, "dice_2": 33, "dice_2_fil": 33, "dice_3": 33, "dice_3_fil": 33, "dice_4": 33, "dice_4_fil": 33, "dice_5": 33, "dice_5_fil": 33, "dice_6": 33, "dice_6_fil": 33, "dice_fil": 33, "direction_horizont": 33, "direction_sign": 33, "sign": 33, "direction_sign_fil": 33, "direction_sign_off": 33, "directions_off": 33, "disabled_2": 33, "disabled_off": 33, "disc": 33, "disc_golf": 33, "golf": 33, "disc_off": 33, "discount": 33, "discount_2": 33, "discount_2_off": 33, "discount_check": 33, "discount_check_fil": 33, "discount_off": 33, "dna": 33, "dna_2": 33, "dna_2_off": 33, "dna_off": 33, "dog": 33, "dog_bowl": 33, "door": 33, "door_ent": 33, "enter": 33, "door_exit": 33, "exit": 33, "door_off": 33, "dots_circle_horizont": 33, "dots_diagon": 33, "dots_diagonal_2": 33, "dots_vert": 33, "download_off": 33, "drag_drop": 33, "drag": 33, "drag_drop_2": 33, "drone": 33, "drone_off": 33, "drop_circl": 33, "droplet_bolt": 33, "droplet_cancel": 33, "droplet_check": 33, "droplet_cod": 33, "droplet_cog": 33, "droplet_dollar": 33, "droplet_down": 33, "droplet_exclam": 33, "droplet_fil": 33, "droplet_filled_2": 33, "droplet_half": 33, "droplet_half_2": 33, "droplet_half_fil": 33, "droplet_heart": 33, "droplet_minu": 33, "droplet_off": 33, "droplet_paus": 33, "droplet_pin": 33, "droplet_plu": 33, "droplet_quest": 33, "droplet_search": 33, "droplet_shar": 33, "droplet_star": 33, "droplet_up": 33, "droplet_x": 33, "dual_screen": 33, "dual": 33, "e_passport": 33, "passport": 33, "ear": 33, "ear_off": 33, "ease_in": 33, "eas": 33, "ease_in_control_point": 33, "ease_in_out": 33, "ease_in_out_control_point": 33, "ease_out": 33, "ease_out_control_point": 33, "edit_circl": 33, "edit_circle_off": 33, "edit_off": 33, "egg": 33, "egg_crack": 33, "crack": 33, "egg_fil": 33, "egg_fri": 33, "fri": 33, "egg_off": 33, "elev": 33, "elevator_off": 33, "emergency_b": 33, "emerg": 33, "empath": 33, "empathize_off": 33, "emphasi": 33, "engin": 33, "engine_off": 33, "equal": 33, "equal_doubl": 33, "equal_not": 33, "eras": 33, "eraser_off": 33, "error_404": 33, "error": 33, "404": 33, "error_404_off": 33, "exchange_off": 33, "exclamation_circl": 33, "exclamation_mark": 33, "exclamation_mark_off": 33, "explicit": 33, "explicit_off": 33, "exposur": 33, "exposure_0": 33, "exposure_minus_1": 33, "exposure_minus_2": 33, "exposure_off": 33, "exposure_plus_1": 33, "exposure_plus_2": 33, "external_link": 33, "extern": [33, 38], "link": 33, "external_link_off": 33, "eye_check": 33, "eye_clos": 33, "eye_cog": 33, "eye_edit": 33, "eye_exclam": 33, "eye_fil": 33, "eye_heart": 33, "eye_off": 33, "eye_t": 33, "tabl": 33, "eye_x": 33, "eyeglass": 33, "eyeglass_2": 33, "eyeglass_off": 33, "face_id": 33, "face_id_error": 33, "face_mask": 33, "face_mask_off": 33, "fall": 33, "feather": 33, "feather_off": 33, "fenc": 33, "fence_off": 33, "fidget_spinn": 33, "fidget": 33, "spinner": 33, "file_3d": 33, "file_alert": 33, "file_analyt": 33, "file_arrow_left": 33, "file_arrow_right": 33, "file_barcod": 33, "file_broken": 33, "file_certif": 33, "file_chart": 33, "file_check": 33, "file_cod": 33, "file_code_2": 33, "file_cv": 33, "cv": 33, "file_databas": 33, "file_delta": 33, "file_descript": 33, "file_diff": 33, "file_digit": 33, "file_dislik": 33, "dislik": 33, "file_dollar": 33, "file_dot": 33, "file_download": 33, "file_euro": 33, "file_export": 33, "file_fil": 33, "file_funct": 33, "file_horizont": 33, "file_import": 33, "file_infin": 33, "infin": 33, "file_info": 33, "file_invoic": 33, "invoic": 33, "file_lambda": 33, "file_lik": 33, "file_minu": 33, "file_mus": 33, "file_off": 33, "file_orient": 33, "file_pencil": 33, "pencil": 33, "file_perc": 33, "percent": 33, "file_phon": 33, "file_plu": 33, "file_pow": 33, "power": 33, "file_report": 33, "report": 33, "file_rss": 33, "rss": 33, "file_scissor": 33, "scissor": 33, "file_search": 33, "file_set": 33, "file_shredd": 33, "shredder": 33, "file_sign": 33, "file_spreadsheet": 33, "spreadsheet": 33, "file_stack": 33, "file_star": 33, "file_symlink": 33, "symlink": 33, "file_text": 33, "file_text_ai": 33, "ai": 33, "file_tim": 33, "file_typographi": 33, "file_unknown": 33, "unknown": 33, "file_upload": 33, "file_vector": 33, "file_x": 33, "file_x_fil": 33, "file_zip": 33, "files_off": 33, "filter_cog": 33, "filter_dollar": 33, "filter_edit": 33, "filter_minu": 33, "filter_off": 33, "filter_plu": 33, "filter_star": 33, "filter_x": 33, "fingerprint": 33, "fingerprint_off": 33, "fire_extinguish": 33, "fire": 33, "extinguish": 33, "fire_hydr": 33, "hydrant": 33, "fire_hydrant_off": 33, "firetruck": 33, "first_aid_kit": 33, "aid": 33, "kit": 33, "first_aid_kit_off": 33, "fish": 33, "fish_bon": 33, "fish_christian": 33, "christian": 33, "fish_hook": 33, "hook": 33, "fish_hook_off": 33, "fish_off": 33, "flag_2": 33, "flag_2_fil": 33, "flag_2_off": 33, "flag_3": 33, "flag_3_fil": 33, "flag_fil": 33, "flag_off": 33, "flame": 33, "flame_off": 33, "flare": 33, "flask": 33, "flask_2": 33, "flask_2_off": 33, "flask_off": 33, "flip_flop": 33, "flop": 33, "flip_horizont": 33, "flip_vert": 33, "float_cent": 33, "float_left": 33, "float_non": 33, "float_right": 33, "flower": 33, "flower_off": 33, "focu": 33, "focus_2": 33, "focus_auto": 33, "focus_cent": 33, "fold": 33, "fold_down": 33, "fold_up": 33, "folder_bolt": 33, "folder_cancel": 33, "folder_check": 33, "folder_cod": 33, "folder_cog": 33, "folder_dollar": 33, "folder_down": 33, "folder_exclam": 33, "folder_fil": 33, "folder_heart": 33, "folder_minu": 33, "folder_off": 33, "folder_open": 33, "folder_paus": 33, "folder_pin": 33, "folder_plu": 33, "folder_quest": 33, "folder_search": 33, "folder_shar": 33, "folder_star": 33, "folder_symlink": 33, "folder_up": 33, "folder_x": 33, "folders_off": 33, "forbid": 33, "forbid_2": 33, "forklift": 33, "fountain": 33, "fountain_off": 33, "frame_off": 33, "free_right": 33, "free": 33, "freeze_column": 33, "freez": 33, "freeze_row": 33, "freeze_row_column": 33, "fridg": 33, "fridge_off": 33, "friend": 33, "friends_off": 33, "frustum_off": 33, "frustum_plu": 33, "function_off": 33, "garden_cart": 33, "garden": 33, "cart": 33, "garden_cart_off": 33, "gas_stat": 33, "ga": 33, "station": 33, "gas_station_off": 33, "gaug": 33, "gauge_off": 33, "gavel": 33, "gender_agend": 33, "gender": 33, "agend": 33, "gender_androgyn": 33, "androgyn": 33, "gender_bigend": 33, "bigend": 33, "gender_demiboi": 33, "demiboi": 33, "gender_demigirl": 33, "demigirl": 33, "gender_epicen": 33, "epicen": 33, "gender_femal": 33, "femal": 33, "gender_femm": 33, "femm": 33, "gender_genderfluid": 33, "genderfluid": 33, "gender_genderless": 33, "genderless": 33, "gender_genderqu": 33, "genderqu": 33, "gender_hermaphrodit": 33, "hermaphrodit": 33, "gender_intergend": 33, "intergend": 33, "gender_mal": 33, "male": 33, "gender_neutroi": 33, "neutroi": 33, "gender_third": 33, "third": 33, "gender_transgend": 33, "transgend": 33, "gender_trasvesti": 33, "trasvesti": 33, "ghost": 33, "ghost_2": 33, "ghost_2_fil": 33, "ghost_fil": 33, "ghost_off": 33, "gift": 33, "gift_card": 33, "gift_off": 33, "git_branch": 33, "git_branch_delet": 33, "delet": 33, "git_cherry_pick": 33, "pick": 33, "git_commit": 33, "git_compar": 33, "compar": 33, "git_fork": 33, "git_merg": 33, "git_pull_request": 33, "pull": 33, "git_pull_request_clos": 33, "git_pull_request_draft": 33, "draft": 33, "glass": 33, "glass_ful": 33, "glass_off": 33, "globe": 33, "globe_off": 33, "go_gam": 33, "game": 33, "golf_off": 33, "gp": 33, "gradient": 33, "grain": 33, "graph": 33, "graph_off": 33, "grave": 33, "grave_2": 33, "grid_dot": 33, "grid_pattern": 33, "pattern": 33, "grill": 33, "grill_fork": 33, "grill_off": 33, "grill_spatula": 33, "spatula": 33, "grip_horizont": 33, "grip": 33, "grip_vert": 33, "growth": 33, "guitar_pick": 33, "guitar": 33, "guitar_pick_fil": 33, "h_1": 33, "h_2": 33, "h_3": 33, "h_4": 33, "h_5": 33, "h_6": 33, "hammer": 33, "hammer_off": 33, "hand_click": 33, "hand": 33, "hand_fing": 33, "finger": 33, "hand_finger_off": 33, "hand_grab": 33, "grab": [33, 39], "hand_little_fing": 33, "littl": 33, "hand_middle_fing": 33, "hand_mov": 33, "hand_off": 33, "hand_ring_fing": 33, "hand_rock": 33, "rock": 33, "hand_sanit": 33, "sanit": 33, "hand_stop": 33, "hand_three_fing": 33, "hand_two_fing": 33, "hanger": 33, "hanger_2": 33, "hanger_off": 33, "hash": 33, "haze": 33, "haze_moon": 33, "moon": 33, "hdr": 33, "head": 33, "heading_off": 33, "headphon": 33, "headphones_fil": 33, "headphones_off": 33, "headset": 33, "headset_off": 33, "health_recognit": 33, "health": 33, "recognit": 33, "heart_broken": 33, "heart_fil": 33, "heart_handshak": 33, "handshak": 33, "heart_minu": 33, "heart_off": 33, "heart_plu": 33, "heart_rate_monitor": 33, "rate": 33, "hearts_off": 33, "helicopt": 33, "helicopter_land": 33, "land": 33, "helmet": 33, "helmet_off": 33, "help_circl": 33, "help_circle_fil": 33, "help_hexagon": 33, "help_hexagon_fil": 33, "help_octagon": 33, "help_octagon_fil": 33, "help_off": 33, "help_smal": 33, "help_squar": 33, "help_square_fil": 33, "help_square_round": 33, "help_square_rounded_fil": 33, "help_triangl": 33, "help_triangle_fil": 33, "hemispher": 33, "hemisphere_off": 33, "hemisphere_plu": 33, "hexagon_0_fil": 33, "hexagon_1_fil": 33, "hexagon_2_fil": 33, "hexagon_3_fil": 33, "hexagon_3d": 33, "hexagon_4_fil": 33, "hexagon_5_fil": 33, "hexagon_6_fil": 33, "hexagon_7_fil": 33, "hexagon_8_fil": 33, "hexagon_9_fil": 33, "hexagon_fil": 33, "hexagon_letter_a": 33, "hexagon_letter_b": 33, "hexagon_letter_c": 33, "hexagon_letter_d": 33, "hexagon_letter_": 33, "hexagon_letter_f": 33, "hexagon_letter_g": 33, "hexagon_letter_h": 33, "hexagon_letter_i": 33, "hexagon_letter_j": 33, "hexagon_letter_k": 33, "hexagon_letter_l": 33, "hexagon_letter_m": 33, "hexagon_letter_n": 33, "hexagon_letter_o": 33, "hexagon_letter_p": 33, "hexagon_letter_q": 33, "hexagon_letter_r": 33, "hexagon_letter_t": 33, "hexagon_letter_u": 33, "hexagon_letter_v": 33, "hexagon_letter_w": 33, "hexagon_letter_x": 33, "hexagon_letter_z": 33, "hexagon_number_0": 33, "hexagon_number_1": 33, "hexagon_number_2": 33, "hexagon_number_3": 33, "hexagon_number_4": 33, "hexagon_number_5": 33, "hexagon_number_6": 33, "hexagon_number_7": 33, "hexagon_number_8": 33, "hexagon_number_9": 33, "hexagon_off": 33, "hexagonal_pr": 33, "prism": 33, "hexagonal_prism_off": 33, "hexagonal_prism_plu": 33, "hexagonal_pyramid": 33, "pyramid": 33, "hexagonal_pyramid_off": 33, "hexagonal_pyramid_plu": 33, "hexagons_off": 33, "hierarchi": 33, "hierarchy_2": 33, "hierarchy_3": 33, "hierarchy_off": 33, "highlight": 33, "highlight_off": 33, "histori": 33, "history_off": 33, "history_toggl": 33, "home_2": 33, "home_bolt": 33, "home_cancel": 33, "home_check": 33, "home_cog": 33, "home_dollar": 33, "home_dot": 33, "home_down": 33, "home_eco": 33, "home_edit": 33, "home_exclam": 33, "home_hand": 33, "home_heart": 33, "home_infin": 33, "home_link": 33, "home_minu": 33, "home_mov": 33, "home_off": 33, "home_plu": 33, "home_quest": 33, "home_ribbon": 33, "ribbon": 33, "home_search": 33, "home_shar": 33, "home_shield": 33, "home_sign": 33, "home_star": 33, "home_stat": 33, "home_up": 33, "home_x": 33, "horse_toi": 33, "hors": 33, "toi": 33, "hotel_servic": 33, "hotel": 33, "servic": 33, "hourglass": 33, "hourglass_empti": 33, "empti": 33, "hourglass_fil": 33, "hourglass_high": 33, "hourglass_low": 33, "hourglass_off": 33, "html": 33, "http_connect": 33, "http_delet": 33, "http_get": 33, "http_head": 33, "http_option": 33, "http_patch": 33, "patch": 33, "http_post": 33, "post": 33, "http_put": 33, "http_que": 33, "que": 33, "http_trace": 33, "trace": 33, "ice_cream": 33, "ic": 33, "cream": 33, "ice_cream_2": 33, "ice_cream_off": 33, "ice_sk": 33, "skate": 33, "icons_off": 33, "id_badg": 33, "id_badge_2": 33, "id_badge_off": 33, "id_off": 33, "inbox": 33, "inbox_off": 33, "indent_decreas": 33, "indent": 33, "decreas": 33, "indent_increas": 33, "increas": 33, "infinity_off": 33, "info_circl": 33, "info_circle_fil": 33, "info_hexagon": 33, "info_hexagon_fil": 33, "info_octagon": 33, "info_octagon_fil": 33, "info_smal": 33, "info_squar": 33, "info_square_fil": 33, "info_square_round": 33, "info_square_rounded_fil": 33, "info_triangl": 33, "info_triangle_fil": 33, "inner_shadow_bottom": 33, "shadow": 33, "inner_shadow_bottom_fil": 33, "inner_shadow_bottom_left": 33, "inner_shadow_bottom_left_fil": 33, "inner_shadow_bottom_right": 33, "inner_shadow_bottom_right_fil": 33, "inner_shadow_left": 33, "inner_shadow_left_fil": 33, "inner_shadow_right": 33, "inner_shadow_right_fil": 33, "inner_shadow_top": 33, "inner_shadow_top_fil": 33, "inner_shadow_top_left": 33, "inner_shadow_top_left_fil": 33, "inner_shadow_top_right": 33, "inner_shadow_top_right_fil": 33, "input_search": 33, "iron": 33, "ironing_1": 33, "ironing_2": 33, "ironing_3": 33, "ironing_off": 33, "ironing_steam": 33, "ironing_steam_off": 33, "irregular_polyhedron": 33, "irregular": 33, "polyhedron": 33, "irregular_polyhedron_off": 33, "irregular_polyhedron_plu": 33, "ital": 33, "jacket": 33, "jetpack": 33, "jewish_star": 33, "jewish": 33, "jewish_star_fil": 33, "jpg": 33, "json": 33, "jump_rop": 33, "jump": 33, "rope": 33, "karat": 33, "kayak": 33, "kere": 33, "key_off": 33, "keyboard": 33, "keyboard_hid": 33, "keyboard_off": 33, "keyboard_show": 33, "keyfram": 33, "keyframe_align_cent": 33, "keyframe_align_horizont": 33, "keyframe_align_vert": 33, "ladder": 33, "ladder_off": 33, "lamp": 33, "lamp_2": 33, "lamp_off": 33, "lane": 33, "languag": 33, "language_hiragana": 33, "hiragana": 33, "language_katakana": 33, "katakana": 33, "language_off": 33, "lasso": 33, "lasso_off": 33, "lasso_polygon": 33, "polygon": 33, "layers_differ": 33, "layer": 33, "layers_intersect": 33, "layers_intersect_2": 33, "layers_link": 33, "layers_off": 33, "layers_subtract": 33, "subtract": 33, "layers_union": 33, "union": 33, "layout_2": 33, "layout_align_bottom": 33, "layout_align_cent": 33, "layout_align_left": 33, "layout_align_middl": 33, "layout_align_right": 33, "layout_align_top": 33, "layout_board": 33, "layout_board_split": 33, "layout_bottombar": 33, "bottombar": 33, "layout_bottombar_collaps": 33, "layout_bottombar_expand": 33, "expand": 33, "layout_card": 33, "layout_collag": 33, "collag": 33, "layout_column": 33, "layout_dashboard": 33, "layout_distribute_horizont": 33, "distribut": 33, "layout_distribute_vert": 33, "layout_grid": 33, "layout_grid_add": 33, "layout_grid_remov": 33, "layout_kanban": 33, "kanban": 33, "layout_list": 33, "layout_navbar": 33, "navbar": 33, "layout_navbar_collaps": 33, "layout_navbar_expand": 33, "layout_off": 33, "layout_row": 33, "layout_sidebar": 33, "sidebar": 33, "layout_sidebar_left_collaps": 33, "layout_sidebar_left_expand": 33, "layout_sidebar_right": 33, "layout_sidebar_right_collaps": 33, "layout_sidebar_right_expand": 33, "leaf_off": 33, "lego": 33, "lego_off": 33, "lemon": 33, "lemon_2": 33, "letter_a": 33, "letter_b": 33, "letter_c": 33, "letter_cas": 33, "letter_case_low": 33, "letter_case_toggl": 33, "letter_case_upp": 33, "letter_d": 33, "letter_": 33, "letter_f": 33, "letter_g": 33, "letter_h": 33, "letter_i": 33, "letter_j": 33, "letter_k": 33, "letter_l": 33, "letter_m": 33, "letter_n": 33, "letter_o": 33, "letter_p": 33, "letter_q": 33, "letter_r": 33, "letter_spac": 33, "letter_t": 33, "letter_u": 33, "letter_v": 33, "letter_w": 33, "letter_x": 33, "letter_z": 33, "licens": 33, "license_off": 33, "lifebuoi": 33, "lifebuoy_off": 33, "lighter": 33, "line_dash": 33, "line_dot": 33, "line_height": 33, "link_off": 33, "list_check": 33, "list_detail": 33, "list_numb": 33, "list_search": 33, "list_tre": 33, "live_photo": 33, "live": 33, "live_photo_off": 33, "live_view": 33, "load_balanc": 33, "balanc": 33, "loader_2": 33, "loader_3": 33, "loader_quart": 33, "quarter": 33, "location_broken": 33, "location_fil": 33, "location_off": 33, "lock_access": 33, "lock_access_off": 33, "lock_bolt": 33, "lock_cancel": 33, "lock_check": 33, "lock_cod": 33, "lock_cog": 33, "lock_dollar": 33, "lock_down": 33, "lock_exclam": 33, "lock_heart": 33, "lock_minu": 33, "lock_off": 33, "lock_open": 33, "lock_open_off": 33, "lock_paus": 33, "lock_pin": 33, "lock_plu": 33, "lock_quest": 33, "lock_search": 33, "lock_shar": 33, "lock_squar": 33, "lock_square_round": 33, "lock_square_rounded_fil": 33, "lock_star": 33, "lock_up": 33, "lock_x": 33, "logic_and": 33, "logic_buff": 33, "logic_nand": 33, "nand": 33, "logic_nor": 33, "nor": 33, "logic_not": 33, "logic_or": 33, "logic_xnor": 33, "xnor": 33, "logic_xor": 33, "xor": 33, "login": 33, "logout": 33, "logout_2": 33, "lollipop": 33, "lollipop_off": 33, "luggag": 33, "luggage_off": 33, "lung": 33, "lungs_off": 33, "macro": 33, "macro_off": 33, "magnet": 33, "magnet_off": 33, "mail": 33, "mail_ai": 33, "mail_bolt": 33, "mail_cancel": 33, "mail_check": 33, "mail_cod": 33, "mail_cog": 33, "mail_dollar": 33, "mail_down": 33, "mail_exclam": 33, "mail_fast": 33, "fast": 33, "mail_fil": 33, "mail_forward": 33, "mail_heart": 33, "mail_minu": 33, "mail_off": 33, "mail_open": 33, "mail_opened_fil": 33, "mail_paus": 33, "mail_pin": 33, "mail_plu": 33, "mail_quest": 33, "mail_search": 33, "mail_shar": 33, "mail_star": 33, "mail_up": 33, "mail_x": 33, "mailbox": 33, "mailbox_off": 33, "manual_gearbox": 33, "gearbox": 33, "map_2": 33, "map_off": 33, "map_pin": 33, "map_pin_bolt": 33, "map_pin_cancel": 33, "map_pin_check": 33, "map_pin_cod": 33, "map_pin_cog": 33, "map_pin_dollar": 33, "map_pin_down": 33, "map_pin_exclam": 33, "map_pin_fil": 33, "map_pin_heart": 33, "map_pin_minu": 33, "map_pin_off": 33, "map_pin_paus": 33, "map_pin_pin": 33, "map_pin_plu": 33, "map_pin_quest": 33, "map_pin_search": 33, "map_pin_shar": 33, "map_pin_star": 33, "map_pin_up": 33, "map_pin_x": 33, "map_search": 33, "markdown_off": 33, "marque": 33, "marquee_2": 33, "marquee_off": 33, "mar": 33, "mask_off": 33, "masks_theat": 33, "theater": 33, "masks_theater_off": 33, "massag": 33, "matchstick": 33, "math": 33, "math_1_divide_2": 33, "math_1_divide_3": 33, "math_avg": 33, "avg": 33, "math_equal_great": 33, "greater": 33, "math_equal_low": 33, "math_funct": 33, "math_function_off": 33, "math_function_i": 33, "math_great": 33, "math_integr": 33, "integr": [33, 39], "math_integral_x": 33, "math_low": 33, "math_max": 33, "math_min": 33, "math_not": 33, "math_off": 33, "math_pi": 33, "math_pi_divide_2": 33, "math_symbol": 33, "math_x_divide_2": 33, "math_x_divide_i": 33, "math_x_divide_y_2": 33, "math_x_minus_x": 33, "math_x_minus_i": 33, "math_x_plus_x": 33, "math_x_plus_i": 33, "math_xi": 33, "math_y_minus_i": 33, "math_y_plus_i": 33, "maximize_off": 33, "meat": 33, "meat_off": 33, "medal": 33, "medal_2": 33, "medical_cross": 33, "medic": 33, "medical_cross_circl": 33, "medical_cross_fil": 33, "medical_cross_off": 33, "medicine_syrup": 33, "medicin": 33, "syrup": 33, "meepl": 33, "menorah": 33, "menu": 33, "menu_2": 33, "menu_deep": 33, "deep": 33, "menu_ord": 33, "message_2": 33, "message_2_bolt": 33, "message_2_cancel": 33, "message_2_check": 33, "message_2_cod": 33, "message_2_cog": 33, "message_2_dollar": 33, "message_2_down": 33, "message_2_exclam": 33, "message_2_heart": 33, "message_2_minu": 33, "message_2_off": 33, "message_2_paus": 33, "message_2_pin": 33, "message_2_plu": 33, "message_2_quest": 33, "message_2_search": 33, "message_2_shar": 33, "message_2_star": 33, "message_2_up": 33, "message_2_x": 33, "message_bolt": 33, "message_cancel": 33, "message_chatbot": 33, "chatbot": 33, "message_check": 33, "message_circl": 33, "message_circle_2": 33, "message_circle_2_fil": 33, "message_circle_bolt": 33, "message_circle_cancel": 33, "message_circle_check": 33, "message_circle_cod": 33, "message_circle_cog": 33, "message_circle_dollar": 33, "message_circle_down": 33, "message_circle_exclam": 33, "message_circle_heart": 33, "message_circle_minu": 33, "message_circle_off": 33, "message_circle_paus": 33, "message_circle_pin": 33, "message_circle_plu": 33, "message_circle_quest": 33, "message_circle_search": 33, "message_circle_shar": 33, "message_circle_star": 33, "message_circle_up": 33, "message_circle_x": 33, "message_cod": 33, "message_cog": 33, "message_dollar": 33, "message_dot": 33, "message_down": 33, "message_exclam": 33, "message_forward": 33, "message_heart": 33, "message_languag": 33, "message_minu": 33, "message_off": 33, "message_paus": 33, "message_pin": 33, "message_plu": 33, "message_quest": 33, "message_report": 33, "message_search": 33, "message_shar": 33, "message_star": 33, "message_up": 33, "message_x": 33, "messages_off": 33, "meteor": 33, "meteor_off": 33, "michelin_bib_gourmand": 33, "michelin": 33, "bib": 33, "gourmand": 33, "michelin_star": 33, "michelin_star_green": 33, "mickei": 33, "mickey_fil": 33, "microphon": 33, "microphone_2": 33, "microphone_2_off": 33, "microphone_off": 33, "microscop": 33, "microscope_off": 33, "microwav": 33, "microwave_off": 33, "military_award": 33, "militari": 33, "military_rank": 33, "rank": 33, "milk": 33, "milk_off": 33, "milkshak": 33, "minus_vert": 33, "mist": 33, "mist_off": 33, "mobiledata": 33, "mobiledata_off": 33, "moneybag": 33, "mood_angri": 33, "mood": 33, "angri": 33, "mood_annoi": 33, "annoi": 33, "mood_annoyed_2": 33, "mood_boi": 33, "boi": 33, "mood_check": 33, "mood_cog": 33, "mood_confuz": 33, "confuz": 33, "mood_confuzed_fil": 33, "mood_crazy_happi": 33, "crazi": 33, "happi": 33, "mood_cri": 33, "cry": 33, "mood_dollar": 33, "mood_edit": 33, "mood_empti": 33, "mood_empty_fil": 33, "mood_happi": 33, "mood_happy_fil": 33, "mood_heart": 33, "mood_kid": 33, "mood_kid_fil": 33, "mood_look_left": 33, "mood_look_right": 33, "mood_minu": 33, "mood_nerd": 33, "nerd": 33, "mood_nerv": 33, "nervou": 33, "mood_neutr": 33, "neutral": 33, "mood_neutral_fil": 33, "mood_off": 33, "mood_pin": 33, "mood_plu": 33, "mood_sad": 33, "sad": 33, "mood_sad_2": 33, "mood_sad_dizzi": 33, "dizzi": 33, "mood_sad_fil": 33, "mood_sad_squint": 33, "squint": 33, "mood_search": 33, "mood_shar": 33, "mood_sick": 33, "sick": 33, "mood_sil": 33, "silenc": 33, "mood_s": 33, "sing": 33, "mood_smil": 33, "smile": 33, "mood_smile_beam": 33, "beam": 33, "mood_smile_dizzi": 33, "mood_smile_fil": 33, "mood_supris": 33, "supris": 33, "mood_tongu": 33, "tongu": 33, "mood_tongue_wink": 33, "wink": 33, "mood_tongue_wink_2": 33, "mood_unamus": 33, "unamus": 33, "mood_up": 33, "mood_wink": 33, "mood_wink_2": 33, "mood_wrrr": 33, "wrrr": 33, "mood_x": 33, "mood_xd": 33, "xd": 33, "moon_2": 33, "moon_fil": 33, "moon_off": 33, "moon_star": 33, "mope": 33, "motorbik": 33, "mountain": 33, "mountain_off": 33, "mouse_2": 33, "mouse_off": 33, "moustach": 33, "movi": 33, "movie_off": 33, "mug": 33, "mug_off": 33, "multiplier_0_5x": 33, "multipli": [33, 39], "5x": 33, "multiplier_1_5x": 33, "multiplier_1x": 33, "1x": 33, "multiplier_2x": 33, "2x": 33, "mushroom": 33, "mushroom_fil": 33, "mushroom_off": 33, "music_off": 33, "navig": [33, 34], "navigation_fil": 33, "navigation_north": 33, "north": 33, "navigation_off": 33, "needl": 33, "needle_thread": 33, "network": 33, "network_off": 33, "new_sect": 33, "section": [33, 36], "news_off": 33, "nfc": 33, "nfc_off": 33, "no_copyright": 33, "no_creative_common": 33, "no_deriv": 33, "deriv": 33, "north_star": 33, "note_off": 33, "notebook": 33, "notebook_off": 33, "notes_off": 33, "notif": 33, "notification_off": 33, "number_0": 33, "number_1": 33, "number_2": 33, "number_3": 33, "number_4": 33, "number_5": 33, "number_6": 33, "number_7": 33, "number_8": 33, "number_9": 33, "nurs": 33, "octagon_fil": 33, "octagon_off": 33, "octahedron": 33, "octahedron_off": 33, "octahedron_plu": 33, "olymp": 33, "olympics_off": 33, "om": 33, "omega": [33, 39], "outbound": 33, "outlet": 33, "oval": 33, "oval_fil": 33, "oval_vert": 33, "oval_vertical_fil": 33, "overlin": 33, "package_export": 33, "package_import": 33, "package_off": 33, "pacman": 33, "page_break": 33, "page": 33, "break": 33, "paint_fil": 33, "paint_off": 33, "palett": 33, "palette_off": 33, "panorama_horizont": 33, "panorama": 33, "panorama_horizontal_off": 33, "panorama_vert": 33, "panorama_vertical_off": 33, "paper_bag": 33, "paper": 33, "bag": 33, "paper_bag_off": 33, "paperclip": 33, "parachut": 33, "parachute_off": 33, "parenthes": 33, "parentheses_off": 33, "park": 33, "parking_off": 33, "password": 33, "paw": 33, "paw_fil": 33, "paw_off": 33, "pdf": 33, "peac": 33, "pencil_minu": 33, "pencil_off": 33, "pencil_plu": 33, "pennant": 33, "pennant_2": 33, "pennant_2_fil": 33, "pennant_fil": 33, "pennant_off": 33, "pentagon": 33, "pentagon_fil": 33, "pentagon_off": 33, "pentagram": 33, "pepper": 33, "pepper_off": 33, "percentag": 33, "perfum": 33, "perspect": [33, 36], "perspective_off": 33, "phone_cal": 33, "phone_check": 33, "phone_fil": 33, "phone_incom": 33, "incom": [33, 35], "phone_off": 33, "phone_outgo": 33, "phone_paus": 33, "phone_plu": 33, "phone_x": 33, "photo_ai": 33, "photo_bolt": 33, "photo_cancel": 33, "photo_check": 33, "photo_cod": 33, "photo_cog": 33, "photo_dollar": 33, "photo_down": 33, "photo_edit": 33, "photo_exclam": 33, "photo_fil": 33, "photo_heart": 33, "photo_minu": 33, "photo_off": 33, "photo_paus": 33, "photo_pin": 33, "photo_plu": 33, "photo_quest": 33, "photo_search": 33, "photo_sensor": 33, "sensor": 33, "photo_sensor_2": 33, "photo_sensor_3": 33, "photo_shar": 33, "photo_shield": 33, "photo_star": 33, "photo_up": 33, "photo_x": 33, "physotherapist": 33, "piano": 33, "picture_in_pictur": 33, "pictur": 33, "picture_in_picture_off": 33, "picture_in_picture_on": 33, "picture_in_picture_top": 33, "pig": 33, "pig_monei": 33, "monei": 33, "pig_off": 33, "pilcrow": 33, "pill": 33, "pill_off": 33, "pin_fil": 33, "ping_pong": 33, "ping": 33, "pong": 33, "pinned_fil": 33, "pinned_off": 33, "pizza": 33, "pizza_off": 33, "placehold": 33, "plane_arriv": 33, "arriv": 33, "plane_departur": 33, "departur": 33, "plane_inflight": 33, "inflight": 33, "plane_off": 33, "plane_tilt": 33, "tilt": 33, "planet": 33, "planet_off": 33, "plant": 33, "plant_2": 33, "plant_2_off": 33, "plant_off": 33, "play_basketbal": 33, "play_card": 33, "play_card_off": 33, "play_footbal": 33, "play_handbal": 33, "handbal": 33, "play_volleybal": 33, "player_eject": 33, "eject": 33, "player_eject_fil": 33, "player_paus": 33, "player_pause_fil": 33, "player_plai": 33, "player_play_fil": 33, "player_record": 33, "player_record_fil": 33, "player_skip_back": 33, "player_skip_back_fil": 33, "player_skip_forward": 33, "player_skip_forward_fil": 33, "player_stop": 33, "player_stop_fil": 33, "player_track_next": 33, "track": 33, "player_track_next_fil": 33, "player_track_prev": 33, "player_track_prev_fil": 33, "playlist": 33, "playlist_add": 33, "playlist_off": 33, "playlist_x": 33, "playstation_circl": 33, "playstat": 33, "playstation_squar": 33, "playstation_triangl": 33, "playstation_x": 33, "plug": 33, "plug_connect": 33, "plug_connected_x": 33, "plug_off": 33, "plug_x": 33, "plus_equ": 33, "plus_minu": 33, "podium": 33, "podium_off": 33, "point_fil": 33, "point_off": 33, "pointer_bolt": 33, "pointer_cancel": 33, "pointer_check": 33, "pointer_cod": 33, "pointer_cog": 33, "pointer_dollar": 33, "pointer_down": 33, "pointer_exclam": 33, "pointer_heart": 33, "pointer_minu": 33, "pointer_off": 33, "pointer_paus": 33, "pointer_pin": 33, "pointer_plu": 33, "pointer_quest": 33, "pointer_search": 33, "pointer_shar": 33, "pointer_star": 33, "pointer_up": 33, "pointer_x": 33, "pokebal": 33, "pokeball_off": 33, "poker_chip": 33, "poker": 33, "chip": 33, "polaroid": 33, "polaroid_fil": 33, "polygon_off": 33, "poo": 33, "pool": 33, "pool_off": 33, "prai": 33, "premium_right": 33, "premium": 33, "prescript": 33, "present": 33, "presentation_analyt": 33, "presentation_off": 33, "printer": 33, "printer_off": 33, "prism_off": 33, "prism_plu": 33, "prison": 33, "progress_alert": 33, "progress_bolt": 33, "progress_check": 33, "progress_down": 33, "progress_help": 33, "progress_x": 33, "prompt": 33, "propel": 33, "propeller_off": 33, "pumpkin_scari": 33, "pumpkin": 33, "scari": 33, "puzzl": 33, "puzzle_2": 33, "puzzle_fil": 33, "puzzle_off": 33, "pyramid_off": 33, "pyramid_plu": 33, "qrcode": 33, "qrcode_off": 33, "question_mark": 33, "quot": 33, "quote_off": 33, "radar_2": 33, "radar_off": 33, "radio": 33, "radio_off": 33, "radioact": 33, "radioactive_fil": 33, "radioactive_off": 33, "radius_bottom_left": 33, "radius_bottom_right": 33, "radius_top_left": 33, "radius_top_right": 33, "rainbow": 33, "rainbow_off": 33, "rating_12_plu": 33, "rating_14_plu": 33, "14": 33, "rating_16_plu": 33, "16": 33, "rating_18_plu": 33, "18": 33, "rating_21_plu": 33, "21": 33, "razor": 33, "razor_electr": 33, "electr": 33, "receipt": 33, "receipt_2": 33, "receipt_off": 33, "receipt_refund": 33, "refund": 33, "receipt_tax": 33, "tax": 33, "recharg": 33, "record_mail": 33, "record_mail_off": 33, "rectangle_fil": 33, "rectangle_rounded_bottom": 33, "rectangle_rounded_top": 33, "rectangle_vert": 33, "rectangle_vertical_fil": 33, "rectangular_pr": 33, "rectangular": 33, "rectangular_prism_off": 33, "rectangular_prism_plu": 33, "recycl": 33, "recycle_off": 33, "refresh": 33, "refresh_alert": 33, "refresh_dot": 33, "refresh_off": 33, "regex": 33, "regex_off": 33, "relation_many_to_mani": 33, "mani": [33, 36], "relation_one_to_mani": 33, "relation_one_to_on": 33, "reload": 33, "repeat_off": 33, "repeat_onc": 33, "replace_fil": 33, "replace_off": 33, "report_analyt": 33, "report_med": 33, "report_monei": 33, "report_off": 33, "report_search": 33, "reserved_lin": 33, "reserv": 33, "restor": 33, "rewind_backward_10": 33, "rewind": 33, "backward": [33, 35], "rewind_backward_15": 33, "rewind_backward_20": 33, "rewind_backward_30": 33, "rewind_backward_40": 33, "40": 33, "rewind_backward_5": 33, "rewind_backward_50": 33, "rewind_backward_60": 33, "rewind_forward_10": 33, "rewind_forward_15": 33, "rewind_forward_20": 33, "rewind_forward_30": 33, "rewind_forward_40": 33, "rewind_forward_5": 33, "rewind_forward_50": 33, "rewind_forward_60": 33, "ribbon_health": 33, "ripple_off": 33, "road": 33, "road_off": 33, "road_sign": 33, "robot": [33, 39], "robot_off": 33, "rocket": 33, "rocket_off": 33, "roller_sk": 33, "roller": 33, "rollercoast": 33, "rollercoaster_off": 33, "rosett": 33, "rosette_fil": 33, "rosette_number_0": 33, "rosette_number_1": 33, "rosette_number_2": 33, "rosette_number_3": 33, "rosette_number_4": 33, "rosette_number_5": 33, "rosette_number_6": 33, "rosette_number_7": 33, "rosette_number_8": 33, "rosette_number_9": 33, "rotate_2": 33, "rotate_360": 33, "rotate_clockwis": 33, "clockwis": 33, "rotate_clockwise_2": 33, "rotate_dot": 33, "rotate_rectangl": 33, "rout": 33, "route_2": 33, "route_off": 33, "router": 33, "router_off": 33, "row_insert_bottom": 33, "row_insert_top": 33, "row_remov": 33, "rubber_stamp": 33, "rubber": 33, "stamp": 33, "rubber_stamp_off": 33, "ruler": 33, "ruler_2": 33, "ruler_2_off": 33, "ruler_3": 33, "ruler_measur": 33, "measur": 33, "ruler_off": 33, "s_turn_down": 33, "s_turn_left": 33, "s_turn_right": 33, "s_turn_up": 33, "sailboat": 33, "sailboat_2": 33, "sailboat_off": 33, "salad": 33, "salt": 33, "satellit": 33, "satellite_off": 33, "sausag": 33, "scale_off": 33, "scale_outlin": 33, "scale_outline_off": 33, "scan": 33, "scan_ey": 33, "schema": 33, "schema_off": 33, "school_bel": 33, "school_off": 33, "scissors_off": 33, "scooter": 33, "scooter_electr": 33, "scoreboard": 33, "screen_shar": 33, "screen_share_off": 33, "screenshot": 33, "scribbl": 33, "scribble_off": 33, "script_minu": 33, "script_plu": 33, "script_x": 33, "scuba_mask": 33, "scuba": 33, "scuba_mask_off": 33, "sdk": 33, "search_off": 33, "section_sign": 33, "seed": 33, "seeding_off": 33, "select_al": 33, "selector": 33, "send_off": 33, "seo": 33, "separ": 33, "separator_horizont": 33, "separator_vert": 33, "server_2": 33, "server_bolt": 33, "server_cog": 33, "server_off": 33, "servicemark": 33, "settings_2": 33, "settings_autom": 33, "autom": 33, "settings_bolt": 33, "settings_cancel": 33, "settings_check": 33, "settings_cod": 33, "settings_cog": 33, "settings_dollar": 33, "settings_down": 33, "settings_exclam": 33, "settings_fil": 33, "settings_heart": 33, "settings_minu": 33, "settings_off": 33, "settings_paus": 33, "settings_pin": 33, "settings_plu": 33, "settings_quest": 33, "settings_search": 33, "settings_shar": 33, "settings_star": 33, "settings_up": 33, "settings_x": 33, "shadow_off": 33, "shape_2": 33, "shape_3": 33, "shape_off": 33, "share_2": 33, "share_3": 33, "share_off": 33, "shi_jump": 33, "shi": 33, "shield_bolt": 33, "shield_cancel": 33, "shield_check": 33, "shield_check_fil": 33, "checker": 33, "shield_checkered_fil": 33, "shield_chevron": 33, "shield_cod": 33, "shield_cog": 33, "shield_dollar": 33, "shield_down": 33, "shield_exclam": 33, "shield_fil": 33, "shield_half": 33, "shield_half_fil": 33, "shield_heart": 33, "shield_lock": 33, "shield_lock_fil": 33, "shield_minu": 33, "shield_off": 33, "shield_paus": 33, "shield_pin": 33, "shield_plu": 33, "shield_quest": 33, "shield_search": 33, "shield_shar": 33, "shield_star": 33, "shield_up": 33, "shield_x": 33, "ship": 33, "ship_off": 33, "shirt": 33, "shirt_fil": 33, "shirt_off": 33, "shirt_sport": 33, "sport": 33, "shoe": 33, "shoe_off": 33, "shopping_bag": 33, "shop": 33, "shopping_cart": 33, "shopping_cart_discount": 33, "shopping_cart_off": 33, "shopping_cart_plu": 33, "shopping_cart_x": 33, "shovel": 33, "sign_left": 33, "sign_left_fil": 33, "sign_right": 33, "sign_right_fil": 33, "signal_2g": 33, "2g": 33, "signal_3g": 33, "3g": 33, "signal_4g": 33, "4g": 33, "signal_4g_plu": 33, "signal_5g": 33, "5g": 33, "signal_6g": 33, "6g": 33, "signal_": 33, "signal_g": 33, "signal_h": 33, "signal_h_plu": 33, "signal_lt": 33, "lte": 33, "signatur": 33, "signature_off": 33, "sitemap": 33, "sitemap_off": 33, "skateboard": 33, "skateboard_off": 33, "skull": 33, "slash": 33, "sleigh": 33, "slice": 33, "slideshow": 33, "smart_hom": 33, "smart": 33, "smart_home_off": 33, "smoke": 33, "smoking_no": 33, "snowflake_off": 33, "snowman": 33, "soccer_field": 33, "soccer": 33, "social": 33, "social_off": 33, "sock": 33, "sofa": 33, "sofa_off": 33, "solar_panel": 33, "solar": 33, "solar_panel_2": 33, "sort_0_9": 33, "sort_9_0": 33, "sort_a_z": 33, "sort_ascend": 33, "ascend": 33, "sort_ascending_2": 33, "sort_ascending_lett": 33, "sort_ascending_numb": 33, "sort_descend": 33, "descend": 33, "sort_descending_2": 33, "sort_descending_lett": 33, "sort_descending_numb": 33, "sort_z_a": 33, "soup": 33, "soup_off": 33, "source_cod": 33, "space_off": 33, "spacing_horizont": 33, "spacing_vert": 33, "spade": 33, "spade_fil": 33, "sparkl": [33, 36], "speakerphon": 33, "speedboat": 33, "sphere_off": 33, "sphere_plu": 33, "spider": 33, "spiral": 33, "spiral_off": 33, "sport_billard": 33, "billard": 33, "sprai": 33, "spy": 33, "spy_off": 33, "sql": 33, "square_0_fil": 33, "square_1_fil": 33, "square_2_fil": 33, "square_3_fil": 33, "square_4_fil": 33, "square_5_fil": 33, "square_6_fil": 33, "square_7_fil": 33, "square_8_fil": 33, "square_9_fil": 33, "square_arrow_down": 33, "square_arrow_left": 33, "square_arrow_right": 33, "square_arrow_up": 33, "square_asterisk": 33, "square_check": 33, "square_check_fil": 33, "square_chevron_down": 33, "square_chevron_left": 33, "square_chevron_right": 33, "square_chevron_up": 33, "square_chevrons_down": 33, "square_chevrons_left": 33, "square_chevrons_right": 33, "square_chevrons_up": 33, "square_dot": 33, "square_f0": 33, "f0": 33, "square_f0_fil": 33, "square_f1": 33, "f1": 33, "square_f1_fil": 33, "square_f2": 33, "f2": 33, "square_f2_fil": 33, "square_f3": 33, "f3": 33, "square_f3_fil": 33, "square_f4": 33, "f4": 33, "square_f4_fil": 33, "square_f5": 33, "f5": 33, "square_f5_fil": 33, "square_f6": 33, "f6": 33, "square_f6_fil": 33, "square_f7": 33, "f7": 33, "square_f7_fil": 33, "square_f8": 33, "f8": 33, "square_f8_fil": 33, "square_f9": 33, "f9": 33, "square_f9_fil": 33, "square_forbid": 33, "square_forbid_2": 33, "square_half": 33, "square_kei": 33, "square_letter_a": 33, "square_letter_b": 33, "square_letter_c": 33, "square_letter_d": 33, "square_letter_": 33, "square_letter_f": 33, "square_letter_g": 33, "square_letter_h": 33, "square_letter_i": 33, "square_letter_j": 33, "square_letter_k": 33, "square_letter_l": 33, "square_letter_m": 33, "square_letter_n": 33, "square_letter_o": 33, "square_letter_p": 33, "square_letter_q": 33, "square_letter_r": 33, "square_letter_t": 33, "square_letter_u": 33, "square_letter_v": 33, "square_letter_w": 33, "square_letter_x": 33, "square_letter_z": 33, "square_minu": 33, "square_number_0": 33, "square_number_1": 33, "square_number_2": 33, "square_number_3": 33, "square_number_4": 33, "square_number_5": 33, "square_number_6": 33, "square_number_7": 33, "square_number_8": 33, "square_number_9": 33, "square_off": 33, "square_plu": 33, "square_root": 33, "square_root_2": 33, "square_rot": 33, "square_rotated_fil": 33, "square_rotated_forbid": 33, "square_rotated_forbid_2": 33, "square_rotated_off": 33, "square_round": 33, "square_rounded_arrow_down": 33, "square_rounded_arrow_down_fil": 33, "square_rounded_arrow_left": 33, "square_rounded_arrow_left_fil": 33, "square_rounded_arrow_right": 33, "square_rounded_arrow_right_fil": 33, "square_rounded_arrow_up": 33, "square_rounded_arrow_up_fil": 33, "square_rounded_check": 33, "square_rounded_check_fil": 33, "square_rounded_chevron_down": 33, "square_rounded_chevron_down_fil": 33, "square_rounded_chevron_left": 33, "square_rounded_chevron_left_fil": 33, "square_rounded_chevron_right": 33, "square_rounded_chevron_right_fil": 33, "square_rounded_chevron_up": 33, "square_rounded_chevron_up_fil": 33, "square_rounded_chevrons_down": 33, "square_rounded_chevrons_down_fil": 33, "square_rounded_chevrons_left": 33, "square_rounded_chevrons_left_fil": 33, "square_rounded_chevrons_right": 33, "square_rounded_chevrons_right_fil": 33, "square_rounded_chevrons_up": 33, "square_rounded_chevrons_up_fil": 33, "square_rounded_fil": 33, "square_rounded_letter_a": 33, "square_rounded_letter_b": 33, "square_rounded_letter_c": 33, "square_rounded_letter_d": 33, "square_rounded_letter_": 33, "square_rounded_letter_f": 33, "square_rounded_letter_g": 33, "square_rounded_letter_h": 33, "square_rounded_letter_i": 33, "square_rounded_letter_j": 33, "square_rounded_letter_k": 33, "square_rounded_letter_l": 33, "square_rounded_letter_m": 33, "square_rounded_letter_n": 33, "square_rounded_letter_o": 33, "square_rounded_letter_p": 33, "square_rounded_letter_q": 33, "square_rounded_letter_r": 33, "square_rounded_letter_t": 33, "square_rounded_letter_u": 33, "square_rounded_letter_v": 33, "square_rounded_letter_w": 33, "square_rounded_letter_x": 33, "square_rounded_letter_z": 33, "square_rounded_minu": 33, "square_rounded_number_0": 33, "square_rounded_number_0_fil": 33, "square_rounded_number_1": 33, "square_rounded_number_1_fil": 33, "square_rounded_number_2": 33, "square_rounded_number_2_fil": 33, "square_rounded_number_3": 33, "square_rounded_number_3_fil": 33, "square_rounded_number_4": 33, "square_rounded_number_4_fil": 33, "square_rounded_number_5": 33, "square_rounded_number_5_fil": 33, "square_rounded_number_6": 33, "square_rounded_number_6_fil": 33, "square_rounded_number_7": 33, "square_rounded_number_7_fil": 33, "square_rounded_number_8": 33, "square_rounded_number_8_fil": 33, "square_rounded_number_9": 33, "square_rounded_number_9_fil": 33, "square_rounded_plu": 33, "square_rounded_plus_fil": 33, "square_rounded_x": 33, "square_rounded_x_fil": 33, "square_toggl": 33, "square_toggle_horizont": 33, "square_x": 33, "squares_diagon": 33, "squares_fil": 33, "stack_2": 33, "stack_3": 33, "stack_pop": 33, "pop": 33, "stack_push": 33, "push": [33, 35], "stair": 33, "stairs_down": 33, "stairs_up": 33, "star_fil": 33, "star_half": 33, "star_half_fil": 33, "star_off": 33, "stars_fil": 33, "stars_off": 33, "status_chang": 33, "statu": 33, "steering_wheel": 33, "steer": 33, "wheel": 33, "steering_wheel_off": 33, "step_into": 33, "step_out": 33, "stereo_glass": 33, "stereo": 33, "stethoscop": 33, "stethoscope_off": 33, "sticker": 33, "storm_off": 33, "stretching_2": 33, "strikethrough": 33, "submarin": 33, "subscript": 33, "subtask": 33, "sum": 33, "sum_off": 33, "sun": 33, "sun_fil": 33, "sun_high": 33, "sun_low": 33, "sun_moon": 33, "sun_off": 33, "sun_wind": 33, "sunglass": 33, "sunris": 33, "sunset": 33, "sunset_2": 33, "superscript": 33, "svg": 33, "swim": 33, "swipe": 33, "switch_2": 33, "switch_3": 33, "switch_horizont": 33, "switch_vert": 33, "sword": 33, "sword_off": 33, "table_alia": 33, "table_column": 33, "table_down": 33, "table_export": 33, "table_fil": 33, "table_heart": 33, "table_import": 33, "table_minu": 33, "table_off": 33, "table_opt": 33, "table_plu": 33, "table_row": 33, "table_shar": 33, "table_shortcut": 33, "shortcut": 33, "tag": 33, "tag_off": 33, "tags_off": 33, "tallymark_1": 33, "tallymark": 33, "tallymark_2": 33, "tallymark_3": 33, "tallymark_4": 33, "tank": 33, "target_arrow": 33, "target_off": 33, "teapot": 33, "telescop": 33, "telescope_off": 33, "temperatur": 33, "temperature_celsiu": 33, "celsiu": 33, "temperature_fahrenheit": 33, "fahrenheit": 33, "temperature_minu": 33, "temperature_off": 33, "temperature_plu": 33, "templat": 33, "template_off": 33, "tent": 33, "tent_off": 33, "terminal_2": 33, "test_pip": 33, "test_pipe_2": 33, "test_pipe_off": 33, "tex": 33, "text_capt": 33, "caption": 33, "text_color": 33, "text_decreas": 33, "text_direction_ltr": 33, "ltr": 33, "text_direction_rtl": 33, "rtl": 33, "text_increas": 33, "text_orient": 33, "text_plu": 33, "text_recognit": 33, "text_res": 33, "text_siz": 33, "text_spellcheck": 33, "spellcheck": 33, "text_wrap": 33, "wrap": [33, 35], "text_wrap_dis": 33, "thermomet": 33, "thumb_down": 33, "thumb": 33, "thumb_down_fil": 33, "thumb_down_off": 33, "thumb_up": 33, "thumb_up_fil": 33, "thumb_up_off": 33, "tic_tac": 33, "ticket": 33, "ticket_off": 33, "tie": 33, "tild": 33, "tilt_shift": 33, "shift": 33, "tilt_shift_off": 33, "time_duration_0": 33, "durat": 33, "time_duration_10": 33, "time_duration_15": 33, "time_duration_30": 33, "time_duration_45": 33, "time_duration_5": 33, "time_duration_60": 33, "time_duration_90": 33, "time_duration_off": 33, "timelin": 33, "timeline_ev": 33, "timeline_event_exclam": 33, "timeline_event_minu": 33, "timeline_event_plu": 33, "timeline_event_text": 33, "timeline_event_x": 33, "tir": 33, "toggle_left": 33, "toggle_right": 33, "toilet_pap": 33, "toilet": 33, "toilet_paper_off": 33, "toml": 33, "tools_kitchen": 33, "kitchen": 33, "tools_kitchen_2": 33, "tools_kitchen_2_off": 33, "tools_kitchen_off": 33, "tools_off": 33, "tooltip": 33, "topology_bu": 33, "topologi": 33, "topology_complex": 33, "complex": [33, 36], "topology_ful": 33, "topology_full_hierarchi": 33, "topology_r": 33, "topology_ring_2": 33, "topology_ring_3": 33, "topology_star": 33, "topology_star_2": 33, "topology_star_3": 33, "topology_star_r": 33, "topology_star_ring_2": 33, "topology_star_ring_3": 33, "torii": 33, "tornado": 33, "tournament": 33, "tower_off": 33, "tractor": 33, "trademark": 33, "traffic_con": 33, "traffic": 33, "traffic_cone_off": 33, "traffic_light": 33, "traffic_lights_off": 33, "train": 33, "transfer_in": 33, "transfer_out": 33, "transform_fil": 33, "transition_bottom": 33, "transit": 33, "transition_left": 33, "transition_right": 33, "transition_top": 33, "trash": 33, "trash_fil": 33, "trash_off": 33, "trash_x": 33, "trash_x_fil": 33, "treadmil": 33, "trekk": 33, "trending_down": 33, "trend": 33, "trending_down_2": 33, "trending_down_3": 33, "trending_up": 33, "trending_up_2": 33, "trending_up_3": 33, "triangle_fil": 33, "triangle_invert": 33, "invert": 33, "triangle_inverted_fil": 33, "triangle_off": 33, "triangle_square_circl": 33, "trident": 33, "trollei": 33, "trophi": 33, "trophy_fil": 33, "trophy_off": 33, "trowel": 33, "truck": 33, "truck_deliveri": 33, "deliveri": 33, "truck_load": 33, "truck_off": 33, "truck_return": 33, "txt": 33, "typography_off": 33, "ufo": 33, "ufo_off": 33, "umbrella": 33, "umbrella_fil": 33, "umbrella_off": 33, "underlin": 33, "unlink": 33, "urgent": 33, "usb": 33, "user_bolt": 33, "user_cancel": 33, "user_check": 33, "user_circl": 33, "user_cod": 33, "user_cog": 33, "user_dollar": 33, "user_down": 33, "user_edit": 33, "user_exclam": 33, "user_heart": 33, "user_minu": 33, "user_off": 33, "user_paus": 33, "user_pin": 33, "user_plu": 33, "user_quest": 33, "user_search": 33, "user_shar": 33, "user_shield": 33, "user_star": 33, "user_up": 33, "user_x": 33, "users_group": 33, "users_minu": 33, "users_plu": 33, "uv_index": 33, "uv": 33, "ux_circl": 33, "ux": 33, "vaccin": 33, "vaccine_bottl": 33, "vaccine_bottle_off": 33, "vaccine_off": 33, "vacuum_clean": 33, "vacuum": 33, "cleaner": 33, "variabl": 33, "variable_minu": 33, "variable_off": 33, "variable_plu": 33, "vector_bezi": 33, "bezier": [33, 36], "vector_bezier_2": 33, "vector_bezier_arc": 33, "vector_bezier_circl": 33, "vector_off": 33, "vector_splin": 33, "spline": [33, 36], "vector_triangl": 33, "vector_triangle_off": 33, "venu": 33, "versions_fil": 33, "versions_off": 33, "video": 33, "video_minu": 33, "video_off": 33, "video_plu": 33, "view_360": 33, "view_360_off": 33, "viewfinder_off": 33, "viewport_narrow": 33, "viewport_wid": 33, "wide": 33, "vinyl": 33, "vip": 33, "vip_off": 33, "viru": 33, "virus_off": 33, "virus_search": 33, "vocabulari": 33, "vocabulary_off": 33, "volcano": 33, "volum": 33, "volume_2": 33, "volume_3": 33, "volume_off": 33, "walk": 33, "wall": 33, "wall_off": 33, "wallet": 33, "wallet_off": 33, "wallpap": 33, "wallpaper_off": 33, "wand": 33, "wand_off": 33, "wash": 33, "wash_dri": 33, "dry": 33, "wash_dry_1": 33, "wash_dry_2": 33, "wash_dry_3": 33, "wash_dry_a": 33, "wash_dry_dip": 33, "dip": 33, "wash_dry_f": 33, "wash_dry_flat": 33, "flat": [33, 36], "wash_dry_hang": 33, "hang": 33, "wash_dry_off": 33, "wash_dry_p": 33, "wash_dry_shad": 33, "shade": [33, 36], "wash_dry_w": 33, "wash_dryclean": 33, "dryclean": 33, "wash_dryclean_off": 33, "wash_eco": 33, "wash_gentl": 33, "gentl": 33, "wash_hand": 33, "wash_machin": 33, "machin": 33, "wash_off": 33, "wash_press": 33, "wash_temperature_1": 33, "wash_temperature_2": 33, "wash_temperature_3": 33, "wash_temperature_4": 33, "wash_temperature_5": 33, "wash_temperature_6": 33, "wash_tumble_dri": 33, "tumbl": 33, "wash_tumble_off": 33, "waterpolo": 33, "wave_saw_tool": 33, "saw": 33, "wave_sin": 33, "sine": 33, "wave_squar": 33, "webhook": 33, "webhook_off": 33, "wheelchair": 33, "wheelchair_off": 33, "whirl": 33, "wifi": 33, "wifi_0": 33, "wifi_1": 33, "wifi_2": 33, "wifi_off": 33, "wind_off": 33, "windmil": 33, "windmill_fil": 33, "windmill_off": 33, "window_maxim": 33, "window_minim": 33, "window_off": 33, "windsock": 33, "wiper": 33, "wiper_wash": 33, "woman": 33, "wood": 33, "world_bolt": 33, "world_cancel": 33, "world_check": 33, "world_cod": 33, "world_cog": 33, "world_dollar": 33, "world_down": 33, "world_download": 33, "world_exclam": 33, "world_heart": 33, "world_latitud": 33, "latitud": 33, "world_longitud": 33, "longitud": 33, "world_minu": 33, "world_off": 33, "world_paus": 33, "world_pin": 33, "world_plu": 33, "world_quest": 33, "world_search": 33, "world_shar": 33, "world_star": 33, "world_up": 33, "world_upload": 33, "world_www": 33, "www": 33, "world_x": 33, "wrecking_bal": 33, "wreck": 33, "writing_off": 33, "writing_sign": 33, "writing_sign_off": 33, "xbox_a": 33, "xbox_b": 33, "xbox_x": 33, "xbox_i": 33, "yin_yang": 33, "yin": 33, "yang": 33, "yin_yang_fil": 33, "yoga": 33, "zeppelin": 33, "zeppelin_off": 33, "zodiac_aquariu": 33, "zodiac": 33, "aquariu": 33, "zodiac_ari": 33, "ari": 33, "zodiac_canc": 33, "cancer": 33, "zodiac_capricorn": 33, "capricorn": 33, "zodiac_gemini": 33, "gemini": 33, "zodiac_leo": 33, "leo": 33, "zodiac_libra": 33, "libra": 33, "zodiac_pisc": 33, "pisc": 33, "zodiac_sagittariu": 33, "sagittariu": 33, "zodiac_scorpio": 33, "scorpio": 33, "zodiac_tauru": 33, "tauru": 33, "zodiac_virgo": 33, "virgo": 33, "zoom_cancel": 33, "zoom_check": 33, "zoom_check_fil": 33, "zoom_cod": 33, "zoom_exclam": 33, "zoom_fil": 33, "zoom_in": 33, "zoom_in_area": 33, "zoom_in_area_fil": 33, "zoom_in_fil": 33, "zoom_monei": 33, "zoom_out": 33, "zoom_out_area": 33, "zoom_out_fil": 33, "zoom_pan": 33, "pan": 33, "zoom_quest": 33, "zoom_replac": 33, "zoom_reset": 33, "zzz": 33, "zzz_off": 33, "librari": [34, 36], "featur": [34, 36, 38], "primit": [34, 36, 38], "programmat": 34, "entir": 34, "easi": 34, "over": [34, 36, 39], "ssh": 34, "infra": 35, "infrastructur": 35, "port": [35, 38, 39], "what": 35, "under": [35, 36, 37], "hood": [35, 36], "unless": 35, "scratch": 35, "websockclientconnect": 35, "websockmessagehandl": 35, "listen": [35, 36], "unsafe_send_messag": 35, "queue_messag": 35, "safe": 35, "register_handl": 35, "message_cl": 35, "tmessag": 35, "clientid": 35, "start_record": 35, "recordhandl": 35, "serial": 35, "unregister_handl": 35, "unregist": 35, "mix": 35, "websockserv": 35, "By": [35, 36], "retriev": 35, "host": [35, 38], "bind": [35, 38], "message_class": 35, "have": [35, 36, 38], "argument": [35, 36], "futur": 35, "http_server_root": 35, "verbos": [35, 38], "client_api_vers": 35, "compat": 35, "cb": [35, 38], "newli": [35, 38], "on_client_disconnect": [35, 38], "disconnect": [35, 38], "queue": 35, "persist": 35, "cull": 35, "redundancy_kei": 35, "flush_client": 35, "excluded_self_cli": 35, "as_serializable_dict": 35, "classmethod": [35, 39], "deseri": 35, "get_subclass": 35, "recurs": 35, "redund": 35, "keep": 35, "latest": 35, "typescriptannotationoverrid": 35, "generate_typescript_interfac": 35, "ro": 36, "altern": 36, "maya": 36, "hidden": 36, "ve": 36, "except": 36, "add_glb": 36, "glb_data": 36, "gltf": 36, "glb": [36, 37], "simpler": 36, "programat": 36, "pygltflib": 36, "payload": 36, "r_pl": 36, "t_pl": 36, "curve_typ": 36, "centripet": 36, "chordal": 36, "catmullrom": 36, "scenenodehandl": [36, 37], "catmul": 36, "rom": 36, "interpol": 36, "algorithm": 36, "cubic": 36, "jpeg_qual": 36, "represent": [36, 37, 39], "understand": 36, "coverag": 36, "convent": [36, 39], "qualiti": 36, "025": 36, "origin_radiu": 36, "trajectori": 36, "ten": 36, "batch": [36, 37, 39], "add_batched_ax": 36, "mai": 36, "better": 36, "than": 36, "batched_wxyz": 36, "batched_posit": 36, "batchedaxeshandl": [36, 37], "overlap": 36, "significantli": 36, "primari": 36, "wxyzs_batch": 36, "nx4": 36, "positions_batch": 36, "nx3": 36, "instanc": 36, "much": 36, "cell_color": 36, "cell_thick": 36, "cell_siz": 36, "section_color": 36, "140": 36, "section_thick": 36, "section_s": 36, "refer": [36, 39], "along": 36, "thick": 36, "labelhandl": [36, 37], "pointcloudhandl": [36, 37], "opac": 36, "materi": 36, "toon3": 36, "toon5": 36, "flat_shad": 36, "meshskinnedhandl": [36, 37], "deform": 36, "vertex": 36, "nest": 36, "opaqu": 36, "surfac": 36, "meshhandl": [36, 37], "intern": [36, 39], "subdivis": 36, "composit": 36, "render_width": 36, "render_height": 36, "imagehandl": [36, 37], "auto_transform": 36, "active_ax": 36, "disable_rot": 36, "translation_limit": 36, "rotation_limit": 36, "exactli": 36, "anoth": [36, 39], "on_scene_pointer_remov": 36, "p_parent": 37, "p_local": 37, "equival": 37, "doe": 37, "meshskinnedbonehandl": 37, "gaussiansplathandl": 37, "gaussian": 37, "splat": 37, "still": 37, "develop": 37, "level": 38, "core": 38, "shown": 38, "belong": 38, "get_host": 38, "get_port": 38, "public": 38, "establish": 38, "afterward": 38, "experiment": 38, "shouldn": 38, "critic": 38, "fail": 38, "disconnect_share_url": 38, "dictionari": 38, "rigid": 39, "jaxli": 39, "parameter": 39, "matrixliegroup": 39, "matrix_dim": 39, "classvar": 39, "parameters_dim": 39, "underli": 39, "tangent_dim": 39, "tangent": 39, "space_dim": 39, "__matmul__": 39, "overload": 39, "batch_ax": 39, "lead": 39, "member": 39, "representaiton": 39, "homogen": 39, "compos": 39, "expm": 39, "wedg": 39, "exponenti": 39, "vee": 39, "logm": 39, "adjoint": 39, "grouptyp": 39, "adj_t": 39, "twist": 39, "wrench": 39, "jacobian": 39, "across": 39, "get_batch_ax": 39, "sebas": 39, "containedsotyp": 39, "special": 39, "euclidean": 39, "dimension": 39, "from_rot": 39, "sobas": 39, "orthogon": 39, "se2": 39, "so2": 39, "proper": 39, "rule": 39, "co": 39, "vy": 39, "unit_complex_xi": 39, "from_xy_theta": 39, "theta": 39, "qw": 39, "qx": 39, "qy": 39, "qz": 39, "vz": 39, "omega_x": 39, "omega_i": 39, "omega_z": 39, "wxyz_xyz": 39, "onpt": 39, "unit_complex": 39, "from_radian": 39, "scalar": 39, "as_radian": 39, "from_rpy_radian": 39, "roll": 39, "pitch": 39, "yaw": 39, "euler": 39, "zyx": 39, "second": 39, "from_quaternion_xyzw": 39, "xyzw": 39, "constructor": 39, "as_quaternion_xyzw": 39, "as_rpy_radian": 39, "rollpitchyaw": 39, "compute_roll_radian": 39, "compute_pitch_radian": 39, "compute_yaw_radian": 39}, "objects": {"viser": [[37, 0, 1, "", "BatchedAxesHandle"], [37, 0, 1, "", "CameraFrustumHandle"], [0, 0, 1, "", "CameraHandle"], [1, 0, 1, "", "ClientHandle"], [37, 0, 1, "", "FrameHandle"], [37, 0, 1, "", "GaussianSplatHandle"], [37, 0, 1, "", "GlbHandle"], [37, 0, 1, "", "Gui3dContainerHandle"], [31, 0, 1, "", "GuiApi"], [32, 0, 1, "", "GuiButtonGroupHandle"], [32, 0, 1, "", "GuiButtonHandle"], [32, 0, 1, "", "GuiDropdownHandle"], [4, 0, 1, "", "GuiEvent"], [32, 0, 1, "", "GuiFolderHandle"], [32, 0, 1, "", "GuiInputHandle"], [32, 0, 1, "", "GuiMarkdownHandle"], [32, 0, 1, "", "GuiPlotlyHandle"], [32, 0, 1, "", "GuiTabGroupHandle"], [32, 0, 1, "", "GuiTabHandle"], [33, 0, 1, "", "Icon"], [33, 0, 1, "", "IconName"], [37, 0, 1, "", "ImageHandle"], [37, 0, 1, "", "LabelHandle"], [37, 0, 1, "", "MeshHandle"], [37, 0, 1, "", "MeshSkinnedBoneHandle"], [37, 0, 1, "", "MeshSkinnedHandle"], [37, 0, 1, "", "PointCloudHandle"], [36, 0, 1, "", "SceneApi"], [37, 0, 1, "", "SceneNodeHandle"], [4, 0, 1, "", "SceneNodePointerEvent"], [4, 0, 1, "", "ScenePointerEvent"], [37, 0, 1, "", "TransformControlsHandle"], [38, 0, 1, "", "ViserServer"], [30, 4, 0, "-", "extras"], [35, 4, 0, "-", "infra"], [39, 4, 0, "-", "transforms"]], "viser.BatchedAxesHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.CameraFrustumHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.CameraHandle": [[0, 2, 1, "", "aspect"], [0, 2, 1, "", "client"], [0, 2, 1, "", "fov"], [0, 1, 1, "", "get_render"], [0, 2, 1, "", "look_at"], [0, 1, 1, "", "on_update"], [0, 2, 1, "", "position"], [0, 2, 1, "", "up_direction"], [0, 2, 1, "", "update_timestamp"], [0, 2, 1, "", "wxyz"]], "viser.ClientHandle": [[1, 1, 1, "", "atomic"], [1, 3, 1, "", "camera"], [1, 3, 1, "", "client_id"], [1, 1, 1, "", "flush"], [1, 3, 1, "", "gui"], [1, 3, 1, "", "scene"], [1, 1, 1, "", "send_file_download"]], "viser.FrameHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.GaussianSplatHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.GlbHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.Gui3dContainerHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.GuiApi": [[31, 1, 1, "", "add_button"], [31, 1, 1, "", "add_button_group"], [31, 1, 1, "", "add_checkbox"], [31, 1, 1, "", "add_dropdown"], [31, 1, 1, "", "add_folder"], [31, 1, 1, "", "add_markdown"], [31, 1, 1, "", "add_modal"], [31, 1, 1, "", "add_multi_slider"], [31, 1, 1, "", "add_number"], [31, 1, 1, "", "add_plotly"], [31, 1, 1, "", "add_progress_bar"], [31, 1, 1, "", "add_rgb"], [31, 1, 1, "", "add_rgba"], [31, 1, 1, "", "add_slider"], [31, 1, 1, "", "add_tab_group"], [31, 1, 1, "", "add_text"], [31, 1, 1, "", "add_upload_button"], [31, 1, 1, "", "add_vector2"], [31, 1, 1, "", "add_vector3"], [31, 1, 1, "", "configure_theme"], [31, 1, 1, "", "reset"], [31, 1, 1, "", "set_panel_label"]], "viser.GuiButtonGroupHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_click"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiButtonHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_click"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiDropdownHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_update"], [32, 2, 1, "", "options"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "target"]], "viser.GuiFolderHandle": [[32, 2, 1, "", "order"], [32, 1, 1, "", "remove"]], "viser.GuiInputHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_update"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiMarkdownHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "content"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "visible"]], "viser.GuiPlotlyHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "aspect"], [32, 2, 1, "", "figure"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "visible"]], "viser.GuiTabGroupHandle": [[32, 1, 1, "", "add_tab"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"]], "viser.GuiTabHandle": [[32, 1, 1, "", "remove"]], "viser.Icon": [[33, 3, 1, "", "ABACUS"], [33, 3, 1, "", "ABACUS_OFF"], [33, 3, 1, "", "ABC"], [33, 3, 1, "", "ACCESSIBLE"], [33, 3, 1, "", "ACCESSIBLE_OFF"], [33, 3, 1, "", "ACCESSIBLE_OFF_FILLED"], [33, 3, 1, "", "ACCESS_POINT"], [33, 3, 1, "", "ACCESS_POINT_OFF"], [33, 3, 1, "", "ACTIVITY"], [33, 3, 1, "", "ACTIVITY_HEARTBEAT"], [33, 3, 1, "", "AD"], [33, 3, 1, "", "ADDRESS_BOOK"], [33, 3, 1, "", "ADDRESS_BOOK_OFF"], [33, 3, 1, "", "ADJUSTMENTS"], [33, 3, 1, "", "ADJUSTMENTS_ALT"], [33, 3, 1, "", "ADJUSTMENTS_BOLT"], [33, 3, 1, "", "ADJUSTMENTS_CANCEL"], [33, 3, 1, "", "ADJUSTMENTS_CHECK"], [33, 3, 1, "", "ADJUSTMENTS_CODE"], [33, 3, 1, "", "ADJUSTMENTS_COG"], [33, 3, 1, "", "ADJUSTMENTS_DOLLAR"], [33, 3, 1, "", "ADJUSTMENTS_DOWN"], [33, 3, 1, "", "ADJUSTMENTS_EXCLAMATION"], [33, 3, 1, "", "ADJUSTMENTS_FILLED"], [33, 3, 1, "", "ADJUSTMENTS_HEART"], [33, 3, 1, "", "ADJUSTMENTS_HORIZONTAL"], [33, 3, 1, "", "ADJUSTMENTS_MINUS"], [33, 3, 1, "", "ADJUSTMENTS_OFF"], [33, 3, 1, "", "ADJUSTMENTS_PAUSE"], [33, 3, 1, "", "ADJUSTMENTS_PIN"], [33, 3, 1, "", "ADJUSTMENTS_PLUS"], [33, 3, 1, "", "ADJUSTMENTS_QUESTION"], [33, 3, 1, "", "ADJUSTMENTS_SEARCH"], [33, 3, 1, "", "ADJUSTMENTS_SHARE"], [33, 3, 1, "", "ADJUSTMENTS_STAR"], [33, 3, 1, "", "ADJUSTMENTS_UP"], [33, 3, 1, "", "ADJUSTMENTS_X"], [33, 3, 1, "", "AD_2"], [33, 3, 1, "", "AD_CIRCLE"], [33, 3, 1, "", "AD_CIRCLE_FILLED"], [33, 3, 1, "", "AD_CIRCLE_OFF"], [33, 3, 1, "", "AD_FILLED"], [33, 3, 1, "", "AD_OFF"], [33, 3, 1, "", "AERIAL_LIFT"], [33, 3, 1, "", "AFFILIATE"], [33, 3, 1, "", "AFFILIATE_FILLED"], [33, 3, 1, "", "AIR_BALLOON"], [33, 3, 1, "", "AIR_CONDITIONING"], [33, 3, 1, "", "AIR_CONDITIONING_DISABLED"], [33, 3, 1, "", "ALARM"], [33, 3, 1, "", "ALARM_FILLED"], [33, 3, 1, "", "ALARM_MINUS"], [33, 3, 1, "", "ALARM_MINUS_FILLED"], [33, 3, 1, "", "ALARM_OFF"], [33, 3, 1, "", "ALARM_PLUS"], [33, 3, 1, "", "ALARM_PLUS_FILLED"], [33, 3, 1, "", "ALARM_SNOOZE"], [33, 3, 1, "", "ALARM_SNOOZE_FILLED"], [33, 3, 1, "", "ALBUM"], [33, 3, 1, "", "ALBUM_OFF"], [33, 3, 1, "", "ALERT_CIRCLE"], [33, 3, 1, "", "ALERT_CIRCLE_FILLED"], [33, 3, 1, "", "ALERT_HEXAGON"], [33, 3, 1, "", "ALERT_HEXAGON_FILLED"], [33, 3, 1, "", "ALERT_OCTAGON"], [33, 3, 1, "", "ALERT_OCTAGON_FILLED"], [33, 3, 1, "", "ALERT_SMALL"], [33, 3, 1, "", "ALERT_SQUARE"], [33, 3, 1, "", "ALERT_SQUARE_FILLED"], [33, 3, 1, "", "ALERT_SQUARE_ROUNDED"], [33, 3, 1, "", "ALERT_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "ALERT_TRIANGLE"], [33, 3, 1, "", "ALERT_TRIANGLE_FILLED"], [33, 3, 1, "", "ALIEN"], [33, 3, 1, "", "ALIEN_FILLED"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER_FILLED"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT_FILLED"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT_FILLED"], [33, 3, 1, "", "ALIGN_BOX_CENTER_BOTTOM"], [33, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE"], [33, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE_FILLED"], [33, 3, 1, "", "ALIGN_BOX_CENTER_STRETCH"], [33, 3, 1, "", "ALIGN_BOX_CENTER_TOP"], [33, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM"], [33, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM_FILLED"], [33, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE"], [33, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE_FILLED"], [33, 3, 1, "", "ALIGN_BOX_LEFT_STRETCH"], [33, 3, 1, "", "ALIGN_BOX_LEFT_TOP"], [33, 3, 1, "", "ALIGN_BOX_LEFT_TOP_FILLED"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM_FILLED"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE_FILLED"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_STRETCH"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_TOP"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_TOP_FILLED"], [33, 3, 1, "", "ALIGN_BOX_TOP_CENTER"], [33, 3, 1, "", "ALIGN_BOX_TOP_CENTER_FILLED"], [33, 3, 1, "", "ALIGN_BOX_TOP_LEFT"], [33, 3, 1, "", "ALIGN_BOX_TOP_LEFT_FILLED"], [33, 3, 1, "", "ALIGN_BOX_TOP_RIGHT"], [33, 3, 1, "", "ALIGN_BOX_TOP_RIGHT_FILLED"], [33, 3, 1, "", "ALIGN_CENTER"], [33, 3, 1, "", "ALIGN_JUSTIFIED"], [33, 3, 1, "", "ALIGN_LEFT"], [33, 3, 1, "", "ALIGN_RIGHT"], [33, 3, 1, "", "ALPHA"], [33, 3, 1, "", "ALPHABET_CYRILLIC"], [33, 3, 1, "", "ALPHABET_GREEK"], [33, 3, 1, "", "ALPHABET_LATIN"], [33, 3, 1, "", "AMBULANCE"], [33, 3, 1, "", "AMPERSAND"], [33, 3, 1, "", "ANALYZE"], [33, 3, 1, "", "ANALYZE_FILLED"], [33, 3, 1, "", "ANALYZE_OFF"], [33, 3, 1, "", "ANCHOR"], [33, 3, 1, "", "ANCHOR_OFF"], [33, 3, 1, "", "ANGLE"], [33, 3, 1, "", "ANKH"], [33, 3, 1, "", "ANTENNA"], [33, 3, 1, "", "ANTENNA_BARS_1"], [33, 3, 1, "", "ANTENNA_BARS_2"], [33, 3, 1, "", "ANTENNA_BARS_3"], [33, 3, 1, "", "ANTENNA_BARS_4"], [33, 3, 1, "", "ANTENNA_BARS_5"], [33, 3, 1, "", "ANTENNA_BARS_OFF"], [33, 3, 1, "", "ANTENNA_OFF"], [33, 3, 1, "", "APERTURE"], [33, 3, 1, "", "APERTURE_OFF"], [33, 3, 1, "", "API"], [33, 3, 1, "", "API_APP"], [33, 3, 1, "", "API_APP_OFF"], [33, 3, 1, "", "API_OFF"], [33, 3, 1, "", "APPLE"], [33, 3, 1, "", "APPS"], [33, 3, 1, "", "APPS_FILLED"], [33, 3, 1, "", "APPS_OFF"], [33, 3, 1, "", "APP_WINDOW"], [33, 3, 1, "", "APP_WINDOW_FILLED"], [33, 3, 1, "", "ARCHIVE"], [33, 3, 1, "", "ARCHIVE_FILLED"], [33, 3, 1, "", "ARCHIVE_OFF"], [33, 3, 1, "", "ARMCHAIR"], [33, 3, 1, "", "ARMCHAIR_2"], [33, 3, 1, "", "ARMCHAIR_2_OFF"], [33, 3, 1, "", "ARMCHAIR_OFF"], [33, 3, 1, "", "ARROWS_CROSS"], [33, 3, 1, "", "ARROWS_DIAGONAL"], [33, 3, 1, "", "ARROWS_DIAGONAL_2"], [33, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE"], [33, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE_2"], [33, 3, 1, "", "ARROWS_DIFF"], [33, 3, 1, "", "ARROWS_DOUBLE_NE_SW"], [33, 3, 1, "", "ARROWS_DOUBLE_NW_SE"], [33, 3, 1, "", "ARROWS_DOUBLE_SE_NW"], [33, 3, 1, "", "ARROWS_DOUBLE_SW_NE"], [33, 3, 1, "", "ARROWS_DOWN"], [33, 3, 1, "", "ARROWS_DOWN_UP"], [33, 3, 1, "", "ARROWS_EXCHANGE"], [33, 3, 1, "", "ARROWS_EXCHANGE_2"], [33, 3, 1, "", "ARROWS_HORIZONTAL"], [33, 3, 1, "", "ARROWS_JOIN"], [33, 3, 1, "", "ARROWS_JOIN_2"], [33, 3, 1, "", "ARROWS_LEFT"], [33, 3, 1, "", "ARROWS_LEFT_DOWN"], [33, 3, 1, "", "ARROWS_LEFT_RIGHT"], [33, 3, 1, "", "ARROWS_MAXIMIZE"], [33, 3, 1, "", "ARROWS_MINIMIZE"], [33, 3, 1, "", "ARROWS_MOVE"], [33, 3, 1, "", "ARROWS_MOVE_HORIZONTAL"], [33, 3, 1, "", "ARROWS_MOVE_VERTICAL"], [33, 3, 1, "", "ARROWS_RANDOM"], [33, 3, 1, "", "ARROWS_RIGHT"], [33, 3, 1, "", "ARROWS_RIGHT_DOWN"], [33, 3, 1, "", "ARROWS_RIGHT_LEFT"], [33, 3, 1, "", "ARROWS_SHUFFLE"], [33, 3, 1, "", "ARROWS_SHUFFLE_2"], [33, 3, 1, "", "ARROWS_SORT"], [33, 3, 1, "", "ARROWS_SPLIT"], [33, 3, 1, "", "ARROWS_SPLIT_2"], [33, 3, 1, "", "ARROWS_TRANSFER_DOWN"], [33, 3, 1, "", "ARROWS_TRANSFER_UP"], [33, 3, 1, "", "ARROWS_UP"], [33, 3, 1, "", "ARROWS_UP_DOWN"], [33, 3, 1, "", "ARROWS_UP_LEFT"], [33, 3, 1, "", "ARROWS_UP_RIGHT"], [33, 3, 1, "", "ARROWS_VERTICAL"], [33, 3, 1, "", "ARROW_AUTOFIT_CONTENT"], [33, 3, 1, "", "ARROW_AUTOFIT_CONTENT_FILLED"], [33, 3, 1, "", "ARROW_AUTOFIT_DOWN"], [33, 3, 1, "", "ARROW_AUTOFIT_HEIGHT"], [33, 3, 1, "", "ARROW_AUTOFIT_LEFT"], [33, 3, 1, "", "ARROW_AUTOFIT_RIGHT"], [33, 3, 1, "", "ARROW_AUTOFIT_UP"], [33, 3, 1, "", "ARROW_AUTOFIT_WIDTH"], [33, 3, 1, "", "ARROW_BACK"], [33, 3, 1, "", "ARROW_BACK_UP"], [33, 3, 1, "", "ARROW_BACK_UP_DOUBLE"], [33, 3, 1, "", "ARROW_BADGE_DOWN"], [33, 3, 1, "", "ARROW_BADGE_DOWN_FILLED"], [33, 3, 1, "", "ARROW_BADGE_LEFT"], [33, 3, 1, "", "ARROW_BADGE_LEFT_FILLED"], [33, 3, 1, "", "ARROW_BADGE_RIGHT"], [33, 3, 1, "", "ARROW_BADGE_RIGHT_FILLED"], [33, 3, 1, "", "ARROW_BADGE_UP"], [33, 3, 1, "", "ARROW_BADGE_UP_FILLED"], [33, 3, 1, "", "ARROW_BAR_BOTH"], [33, 3, 1, "", "ARROW_BAR_DOWN"], [33, 3, 1, "", "ARROW_BAR_LEFT"], [33, 3, 1, "", "ARROW_BAR_RIGHT"], [33, 3, 1, "", "ARROW_BAR_TO_DOWN"], [33, 3, 1, "", "ARROW_BAR_TO_LEFT"], [33, 3, 1, "", "ARROW_BAR_TO_RIGHT"], [33, 3, 1, "", "ARROW_BAR_TO_UP"], [33, 3, 1, "", "ARROW_BAR_UP"], [33, 3, 1, "", "ARROW_BEAR_LEFT"], [33, 3, 1, "", "ARROW_BEAR_LEFT_2"], [33, 3, 1, "", "ARROW_BEAR_RIGHT"], [33, 3, 1, "", "ARROW_BEAR_RIGHT_2"], [33, 3, 1, "", "ARROW_BIG_DOWN"], [33, 3, 1, "", "ARROW_BIG_DOWN_FILLED"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINE"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINES"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINE_FILLED"], [33, 3, 1, "", "ARROW_BIG_LEFT"], [33, 3, 1, "", "ARROW_BIG_LEFT_FILLED"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINE"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINES"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINE_FILLED"], [33, 3, 1, "", "ARROW_BIG_RIGHT"], [33, 3, 1, "", "ARROW_BIG_RIGHT_FILLED"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINE"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINES"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINE_FILLED"], [33, 3, 1, "", "ARROW_BIG_UP"], [33, 3, 1, "", "ARROW_BIG_UP_FILLED"], [33, 3, 1, "", "ARROW_BIG_UP_LINE"], [33, 3, 1, "", "ARROW_BIG_UP_LINES"], [33, 3, 1, "", "ARROW_BIG_UP_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_UP_LINE_FILLED"], [33, 3, 1, "", "ARROW_BOUNCE"], [33, 3, 1, "", "ARROW_CAPSULE"], [33, 3, 1, "", "ARROW_CURVE_LEFT"], [33, 3, 1, "", "ARROW_CURVE_RIGHT"], [33, 3, 1, "", "ARROW_DOWN"], [33, 3, 1, "", "ARROW_DOWN_BAR"], [33, 3, 1, "", "ARROW_DOWN_CIRCLE"], [33, 3, 1, "", "ARROW_DOWN_LEFT"], [33, 3, 1, "", "ARROW_DOWN_LEFT_CIRCLE"], [33, 3, 1, "", "ARROW_DOWN_RHOMBUS"], [33, 3, 1, "", "ARROW_DOWN_RIGHT"], [33, 3, 1, "", "ARROW_DOWN_RIGHT_CIRCLE"], [33, 3, 1, "", "ARROW_DOWN_SQUARE"], [33, 3, 1, "", "ARROW_DOWN_TAIL"], [33, 3, 1, "", "ARROW_ELBOW_LEFT"], [33, 3, 1, "", "ARROW_ELBOW_RIGHT"], [33, 3, 1, "", "ARROW_FORK"], [33, 3, 1, "", "ARROW_FORWARD"], [33, 3, 1, "", "ARROW_FORWARD_UP"], [33, 3, 1, "", "ARROW_FORWARD_UP_DOUBLE"], [33, 3, 1, "", "ARROW_GUIDE"], [33, 3, 1, "", "ARROW_ITERATION"], [33, 3, 1, "", "ARROW_LEFT"], [33, 3, 1, "", "ARROW_LEFT_BAR"], [33, 3, 1, "", "ARROW_LEFT_CIRCLE"], [33, 3, 1, "", "ARROW_LEFT_RHOMBUS"], [33, 3, 1, "", "ARROW_LEFT_RIGHT"], [33, 3, 1, "", "ARROW_LEFT_SQUARE"], [33, 3, 1, "", "ARROW_LEFT_TAIL"], [33, 3, 1, "", "ARROW_LOOP_LEFT"], [33, 3, 1, "", "ARROW_LOOP_LEFT_2"], [33, 3, 1, "", "ARROW_LOOP_RIGHT"], [33, 3, 1, "", "ARROW_LOOP_RIGHT_2"], [33, 3, 1, "", "ARROW_MERGE"], [33, 3, 1, "", "ARROW_MERGE_BOTH"], [33, 3, 1, "", "ARROW_MERGE_LEFT"], [33, 3, 1, "", "ARROW_MERGE_RIGHT"], [33, 3, 1, "", "ARROW_MOVE_DOWN"], [33, 3, 1, "", "ARROW_MOVE_LEFT"], [33, 3, 1, "", "ARROW_MOVE_RIGHT"], [33, 3, 1, "", "ARROW_MOVE_UP"], [33, 3, 1, "", "ARROW_NARROW_DOWN"], [33, 3, 1, "", "ARROW_NARROW_LEFT"], [33, 3, 1, "", "ARROW_NARROW_RIGHT"], [33, 3, 1, "", "ARROW_NARROW_UP"], [33, 3, 1, "", "ARROW_RAMP_LEFT"], [33, 3, 1, "", "ARROW_RAMP_LEFT_2"], [33, 3, 1, "", "ARROW_RAMP_LEFT_3"], [33, 3, 1, "", "ARROW_RAMP_RIGHT"], [33, 3, 1, "", "ARROW_RAMP_RIGHT_2"], [33, 3, 1, "", "ARROW_RAMP_RIGHT_3"], [33, 3, 1, "", "ARROW_RIGHT"], [33, 3, 1, "", "ARROW_RIGHT_BAR"], [33, 3, 1, "", "ARROW_RIGHT_CIRCLE"], [33, 3, 1, "", "ARROW_RIGHT_RHOMBUS"], [33, 3, 1, "", "ARROW_RIGHT_SQUARE"], [33, 3, 1, "", "ARROW_RIGHT_TAIL"], [33, 3, 1, "", "ARROW_ROTARY_FIRST_LEFT"], [33, 3, 1, "", "ARROW_ROTARY_FIRST_RIGHT"], [33, 3, 1, "", "ARROW_ROTARY_LAST_LEFT"], [33, 3, 1, "", "ARROW_ROTARY_LAST_RIGHT"], [33, 3, 1, "", "ARROW_ROTARY_LEFT"], [33, 3, 1, "", "ARROW_ROTARY_RIGHT"], [33, 3, 1, "", "ARROW_ROTARY_STRAIGHT"], [33, 3, 1, "", "ARROW_ROUNDABOUT_LEFT"], [33, 3, 1, "", "ARROW_ROUNDABOUT_RIGHT"], [33, 3, 1, "", "ARROW_SHARP_TURN_LEFT"], [33, 3, 1, "", "ARROW_SHARP_TURN_RIGHT"], [33, 3, 1, "", "ARROW_UP"], [33, 3, 1, "", "ARROW_UP_BAR"], [33, 3, 1, "", "ARROW_UP_CIRCLE"], [33, 3, 1, "", "ARROW_UP_LEFT"], [33, 3, 1, "", "ARROW_UP_LEFT_CIRCLE"], [33, 3, 1, "", "ARROW_UP_RHOMBUS"], [33, 3, 1, "", "ARROW_UP_RIGHT"], [33, 3, 1, "", "ARROW_UP_RIGHT_CIRCLE"], [33, 3, 1, "", "ARROW_UP_SQUARE"], [33, 3, 1, "", "ARROW_UP_TAIL"], [33, 3, 1, "", "ARROW_WAVE_LEFT_DOWN"], [33, 3, 1, "", "ARROW_WAVE_LEFT_UP"], [33, 3, 1, "", "ARROW_WAVE_RIGHT_DOWN"], [33, 3, 1, "", "ARROW_WAVE_RIGHT_UP"], [33, 3, 1, "", "ARROW_ZIG_ZAG"], [33, 3, 1, "", "ARTBOARD"], [33, 3, 1, "", "ARTBOARD_FILLED"], [33, 3, 1, "", "ARTBOARD_OFF"], [33, 3, 1, "", "ARTICLE"], [33, 3, 1, "", "ARTICLE_FILLED_FILLED"], [33, 3, 1, "", "ARTICLE_OFF"], [33, 3, 1, "", "ASPECT_RATIO"], [33, 3, 1, "", "ASPECT_RATIO_FILLED"], [33, 3, 1, "", "ASPECT_RATIO_OFF"], [33, 3, 1, "", "ASSEMBLY"], [33, 3, 1, "", "ASSEMBLY_OFF"], [33, 3, 1, "", "ASSET"], [33, 3, 1, "", "ASTERISK"], [33, 3, 1, "", "ASTERISK_SIMPLE"], [33, 3, 1, "", "AT"], [33, 3, 1, "", "ATOM"], [33, 3, 1, "", "ATOM_2"], [33, 3, 1, "", "ATOM_2_FILLED"], [33, 3, 1, "", "ATOM_OFF"], [33, 3, 1, "", "AT_OFF"], [33, 3, 1, "", "AUGMENTED_REALITY"], [33, 3, 1, "", "AUGMENTED_REALITY_2"], [33, 3, 1, "", "AUGMENTED_REALITY_OFF"], [33, 3, 1, "", "AWARD"], [33, 3, 1, "", "AWARD_FILLED"], [33, 3, 1, "", "AWARD_OFF"], [33, 3, 1, "", "AXE"], [33, 3, 1, "", "AXIS_X"], [33, 3, 1, "", "AXIS_Y"], [33, 3, 1, "", "A_B"], [33, 3, 1, "", "A_B_2"], [33, 3, 1, "", "A_B_OFF"], [33, 3, 1, "", "BABY_BOTTLE"], [33, 3, 1, "", "BABY_CARRIAGE"], [33, 3, 1, "", "BACKHOE"], [33, 3, 1, "", "BACKPACK"], [33, 3, 1, "", "BACKPACK_OFF"], [33, 3, 1, "", "BACKSLASH"], [33, 3, 1, "", "BACKSPACE"], [33, 3, 1, "", "BACKSPACE_FILLED"], [33, 3, 1, "", "BADGE"], [33, 3, 1, "", "BADGES"], [33, 3, 1, "", "BADGES_FILLED"], [33, 3, 1, "", "BADGES_OFF"], [33, 3, 1, "", "BADGE_3D"], [33, 3, 1, "", "BADGE_4K"], [33, 3, 1, "", "BADGE_8K"], [33, 3, 1, "", "BADGE_AD"], [33, 3, 1, "", "BADGE_AR"], [33, 3, 1, "", "BADGE_CC"], [33, 3, 1, "", "BADGE_FILLED"], [33, 3, 1, "", "BADGE_HD"], [33, 3, 1, "", "BADGE_OFF"], [33, 3, 1, "", "BADGE_SD"], [33, 3, 1, "", "BADGE_TM"], [33, 3, 1, "", "BADGE_VO"], [33, 3, 1, "", "BADGE_VR"], [33, 3, 1, "", "BADGE_WC"], [33, 3, 1, "", "BAGUETTE"], [33, 3, 1, "", "BALLOON"], [33, 3, 1, "", "BALLOON_FILLED"], [33, 3, 1, "", "BALLOON_OFF"], [33, 3, 1, "", "BALLPEN"], [33, 3, 1, "", "BALLPEN_FILLED"], [33, 3, 1, "", "BALLPEN_OFF"], [33, 3, 1, "", "BALL_AMERICAN_FOOTBALL"], [33, 3, 1, "", "BALL_AMERICAN_FOOTBALL_OFF"], [33, 3, 1, "", "BALL_BASEBALL"], [33, 3, 1, "", "BALL_BASKETBALL"], [33, 3, 1, "", "BALL_BOWLING"], [33, 3, 1, "", "BALL_FOOTBALL"], [33, 3, 1, "", "BALL_FOOTBALL_OFF"], [33, 3, 1, "", "BALL_TENNIS"], [33, 3, 1, "", "BALL_VOLLEYBALL"], [33, 3, 1, "", "BAN"], [33, 3, 1, "", "BANDAGE"], [33, 3, 1, "", "BANDAGE_FILLED"], [33, 3, 1, "", "BANDAGE_OFF"], [33, 3, 1, "", "BARBELL"], [33, 3, 1, "", "BARBELL_OFF"], [33, 3, 1, "", "BARCODE"], [33, 3, 1, "", "BARCODE_OFF"], [33, 3, 1, "", "BARREL"], [33, 3, 1, "", "BARREL_OFF"], [33, 3, 1, "", "BARRIER_BLOCK"], [33, 3, 1, "", "BARRIER_BLOCK_OFF"], [33, 3, 1, "", "BASELINE"], [33, 3, 1, "", "BASELINE_DENSITY_LARGE"], [33, 3, 1, "", "BASELINE_DENSITY_MEDIUM"], [33, 3, 1, "", "BASELINE_DENSITY_SMALL"], [33, 3, 1, "", "BASKET"], [33, 3, 1, "", "BASKET_FILLED"], [33, 3, 1, "", "BASKET_OFF"], [33, 3, 1, "", "BAT"], [33, 3, 1, "", "BATH"], [33, 3, 1, "", "BATH_FILLED"], [33, 3, 1, "", "BATH_OFF"], [33, 3, 1, "", "BATTERY"], [33, 3, 1, "", "BATTERY_1"], [33, 3, 1, "", "BATTERY_1_FILLED"], [33, 3, 1, "", "BATTERY_2"], [33, 3, 1, "", "BATTERY_2_FILLED"], [33, 3, 1, "", "BATTERY_3"], [33, 3, 1, "", "BATTERY_3_FILLED"], [33, 3, 1, "", "BATTERY_4"], [33, 3, 1, "", "BATTERY_4_FILLED"], [33, 3, 1, "", "BATTERY_AUTOMOTIVE"], [33, 3, 1, "", "BATTERY_CHARGING"], [33, 3, 1, "", "BATTERY_CHARGING_2"], [33, 3, 1, "", "BATTERY_ECO"], [33, 3, 1, "", "BATTERY_FILLED"], [33, 3, 1, "", "BATTERY_OFF"], [33, 3, 1, "", "BEACH"], [33, 3, 1, "", "BEACH_OFF"], [33, 3, 1, "", "BED"], [33, 3, 1, "", "BED_FILLED"], [33, 3, 1, "", "BED_OFF"], [33, 3, 1, "", "BEER"], [33, 3, 1, "", "BEER_FILLED"], [33, 3, 1, "", "BEER_OFF"], [33, 3, 1, "", "BELL"], [33, 3, 1, "", "BELL_BOLT"], [33, 3, 1, "", "BELL_CANCEL"], [33, 3, 1, "", "BELL_CHECK"], [33, 3, 1, "", "BELL_CODE"], [33, 3, 1, "", "BELL_COG"], [33, 3, 1, "", "BELL_DOLLAR"], [33, 3, 1, "", "BELL_DOWN"], [33, 3, 1, "", "BELL_EXCLAMATION"], [33, 3, 1, "", "BELL_FILLED"], [33, 3, 1, "", "BELL_HEART"], [33, 3, 1, "", "BELL_MINUS"], [33, 3, 1, "", "BELL_MINUS_FILLED"], [33, 3, 1, "", "BELL_OFF"], [33, 3, 1, "", "BELL_PAUSE"], [33, 3, 1, "", "BELL_PIN"], [33, 3, 1, "", "BELL_PLUS"], [33, 3, 1, "", "BELL_PLUS_FILLED"], [33, 3, 1, "", "BELL_QUESTION"], [33, 3, 1, "", "BELL_RINGING"], [33, 3, 1, "", "BELL_RINGING_2"], [33, 3, 1, "", "BELL_RINGING_2_FILLED"], [33, 3, 1, "", "BELL_RINGING_FILLED"], [33, 3, 1, "", "BELL_SCHOOL"], [33, 3, 1, "", "BELL_SEARCH"], [33, 3, 1, "", "BELL_SHARE"], [33, 3, 1, "", "BELL_STAR"], [33, 3, 1, "", "BELL_UP"], [33, 3, 1, "", "BELL_X"], [33, 3, 1, "", "BELL_X_FILLED"], [33, 3, 1, "", "BELL_Z"], [33, 3, 1, "", "BELL_Z_FILLED"], [33, 3, 1, "", "BETA"], [33, 3, 1, "", "BIBLE"], [33, 3, 1, "", "BIKE"], [33, 3, 1, "", "BIKE_OFF"], [33, 3, 1, "", "BINARY"], [33, 3, 1, "", "BINARY_OFF"], [33, 3, 1, "", "BINARY_TREE"], [33, 3, 1, "", "BINARY_TREE_2"], [33, 3, 1, "", "BIOHAZARD"], [33, 3, 1, "", "BIOHAZARD_OFF"], [33, 3, 1, "", "BLADE"], [33, 3, 1, "", "BLADE_FILLED"], [33, 3, 1, "", "BLEACH"], [33, 3, 1, "", "BLEACH_CHLORINE"], [33, 3, 1, "", "BLEACH_NO_CHLORINE"], [33, 3, 1, "", "BLEACH_OFF"], [33, 3, 1, "", "BLOCKQUOTE"], [33, 3, 1, "", "BLUETOOTH"], [33, 3, 1, "", "BLUETOOTH_CONNECTED"], [33, 3, 1, "", "BLUETOOTH_OFF"], [33, 3, 1, "", "BLUETOOTH_X"], [33, 3, 1, "", "BLUR"], [33, 3, 1, "", "BLUR_OFF"], [33, 3, 1, "", "BMP"], [33, 3, 1, "", "BOLD"], [33, 3, 1, "", "BOLD_OFF"], [33, 3, 1, "", "BOLT"], [33, 3, 1, "", "BOLT_OFF"], [33, 3, 1, "", "BOMB"], [33, 3, 1, "", "BOMB_FILLED"], [33, 3, 1, "", "BONE"], [33, 3, 1, "", "BONE_OFF"], [33, 3, 1, "", "BONG"], [33, 3, 1, "", "BONG_OFF"], [33, 3, 1, "", "BOOK"], [33, 3, 1, "", "BOOKMARK"], [33, 3, 1, "", "BOOKMARKS"], [33, 3, 1, "", "BOOKMARKS_OFF"], [33, 3, 1, "", "BOOKMARK_EDIT"], [33, 3, 1, "", "BOOKMARK_FILLED"], [33, 3, 1, "", "BOOKMARK_MINUS"], [33, 3, 1, "", "BOOKMARK_OFF"], [33, 3, 1, "", "BOOKMARK_PLUS"], [33, 3, 1, "", "BOOKMARK_QUESTION"], [33, 3, 1, "", "BOOKS"], [33, 3, 1, "", "BOOKS_OFF"], [33, 3, 1, "", "BOOK_2"], [33, 3, 1, "", "BOOK_DOWNLOAD"], [33, 3, 1, "", "BOOK_FILLED"], [33, 3, 1, "", "BOOK_OFF"], [33, 3, 1, "", "BOOK_UPLOAD"], [33, 3, 1, "", "BORDER_ALL"], [33, 3, 1, "", "BORDER_BOTTOM"], [33, 3, 1, "", "BORDER_CORNERS"], [33, 3, 1, "", "BORDER_HORIZONTAL"], [33, 3, 1, "", "BORDER_INNER"], [33, 3, 1, "", "BORDER_LEFT"], [33, 3, 1, "", "BORDER_NONE"], [33, 3, 1, "", "BORDER_OUTER"], [33, 3, 1, "", "BORDER_RADIUS"], [33, 3, 1, "", "BORDER_RIGHT"], [33, 3, 1, "", "BORDER_SIDES"], [33, 3, 1, "", "BORDER_STYLE"], [33, 3, 1, "", "BORDER_STYLE_2"], [33, 3, 1, "", "BORDER_TOP"], [33, 3, 1, "", "BORDER_VERTICAL"], [33, 3, 1, "", "BOTTLE"], [33, 3, 1, "", "BOTTLE_FILLED"], [33, 3, 1, "", "BOTTLE_OFF"], [33, 3, 1, "", "BOUNCE_LEFT"], [33, 3, 1, "", "BOUNCE_RIGHT"], [33, 3, 1, "", "BOW"], [33, 3, 1, "", "BOWL"], [33, 3, 1, "", "BOX"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_FILLED"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_LEFT"], [33, 3, 1, "", "BOX_ALIGN_LEFT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_RIGHT"], [33, 3, 1, "", "BOX_ALIGN_RIGHT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_TOP"], [33, 3, 1, "", "BOX_ALIGN_TOP_FILLED"], [33, 3, 1, "", "BOX_ALIGN_TOP_LEFT"], [33, 3, 1, "", "BOX_ALIGN_TOP_LEFT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_TOP_RIGHT"], [33, 3, 1, "", "BOX_ALIGN_TOP_RIGHT_FILLED"], [33, 3, 1, "", "BOX_MARGIN"], [33, 3, 1, "", "BOX_MODEL"], [33, 3, 1, "", "BOX_MODEL_2"], [33, 3, 1, "", "BOX_MODEL_2_OFF"], [33, 3, 1, "", "BOX_MODEL_OFF"], [33, 3, 1, "", "BOX_MULTIPLE"], [33, 3, 1, "", "BOX_MULTIPLE_0"], [33, 3, 1, "", "BOX_MULTIPLE_1"], [33, 3, 1, "", "BOX_MULTIPLE_2"], [33, 3, 1, "", "BOX_MULTIPLE_3"], [33, 3, 1, "", "BOX_MULTIPLE_4"], [33, 3, 1, "", "BOX_MULTIPLE_5"], [33, 3, 1, "", "BOX_MULTIPLE_6"], [33, 3, 1, "", "BOX_MULTIPLE_7"], [33, 3, 1, "", "BOX_MULTIPLE_8"], [33, 3, 1, "", "BOX_MULTIPLE_9"], [33, 3, 1, "", "BOX_OFF"], [33, 3, 1, "", "BOX_PADDING"], [33, 3, 1, "", "BOX_SEAM"], [33, 3, 1, "", "BRACES"], [33, 3, 1, "", "BRACES_OFF"], [33, 3, 1, "", "BRACKETS"], [33, 3, 1, "", "BRACKETS_CONTAIN"], [33, 3, 1, "", "BRACKETS_CONTAIN_END"], [33, 3, 1, "", "BRACKETS_CONTAIN_START"], [33, 3, 1, "", "BRACKETS_OFF"], [33, 3, 1, "", "BRAILLE"], [33, 3, 1, "", "BRAIN"], [33, 3, 1, "", "BRAND_4CHAN"], [33, 3, 1, "", "BRAND_ABSTRACT"], [33, 3, 1, "", "BRAND_ADOBE"], [33, 3, 1, "", "BRAND_ADONIS_JS"], [33, 3, 1, "", "BRAND_AIRBNB"], [33, 3, 1, "", "BRAND_AIRTABLE"], [33, 3, 1, "", "BRAND_ALGOLIA"], [33, 3, 1, "", "BRAND_ALIPAY"], [33, 3, 1, "", "BRAND_ALPINE_JS"], [33, 3, 1, "", "BRAND_AMAZON"], [33, 3, 1, "", "BRAND_AMD"], [33, 3, 1, "", "BRAND_AMIGO"], [33, 3, 1, "", "BRAND_AMONG_US"], [33, 3, 1, "", "BRAND_ANDROID"], [33, 3, 1, "", "BRAND_ANGULAR"], [33, 3, 1, "", "BRAND_ANSIBLE"], [33, 3, 1, "", "BRAND_AO3"], [33, 3, 1, "", "BRAND_APPGALLERY"], [33, 3, 1, "", "BRAND_APPLE"], [33, 3, 1, "", "BRAND_APPLE_ARCADE"], [33, 3, 1, "", "BRAND_APPLE_PODCAST"], [33, 3, 1, "", "BRAND_APPSTORE"], [33, 3, 1, "", "BRAND_ASANA"], [33, 3, 1, "", "BRAND_AWS"], [33, 3, 1, "", "BRAND_AZURE"], [33, 3, 1, "", "BRAND_BACKBONE"], [33, 3, 1, "", "BRAND_BADOO"], [33, 3, 1, "", "BRAND_BAIDU"], [33, 3, 1, "", "BRAND_BANDCAMP"], [33, 3, 1, "", "BRAND_BANDLAB"], [33, 3, 1, "", "BRAND_BEATS"], [33, 3, 1, "", "BRAND_BEHANCE"], [33, 3, 1, "", "BRAND_BILIBILI"], [33, 3, 1, "", "BRAND_BINANCE"], [33, 3, 1, "", "BRAND_BING"], [33, 3, 1, "", "BRAND_BITBUCKET"], [33, 3, 1, "", "BRAND_BLACKBERRY"], [33, 3, 1, "", "BRAND_BLENDER"], [33, 3, 1, "", "BRAND_BLOGGER"], [33, 3, 1, "", "BRAND_BOOKING"], [33, 3, 1, "", "BRAND_BOOTSTRAP"], [33, 3, 1, "", "BRAND_BULMA"], [33, 3, 1, "", "BRAND_BUMBLE"], [33, 3, 1, "", "BRAND_BUNPO"], [33, 3, 1, "", "BRAND_CAKE"], [33, 3, 1, "", "BRAND_CAKEPHP"], [33, 3, 1, "", "BRAND_CAMPAIGNMONITOR"], [33, 3, 1, "", "BRAND_CARBON"], [33, 3, 1, "", "BRAND_CASHAPP"], [33, 3, 1, "", "BRAND_CHROME"], [33, 3, 1, "", "BRAND_CINEMA_4D"], [33, 3, 1, "", "BRAND_CITYMAPPER"], [33, 3, 1, "", "BRAND_CLOUDFLARE"], [33, 3, 1, "", "BRAND_CODECOV"], [33, 3, 1, "", "BRAND_CODEPEN"], [33, 3, 1, "", "BRAND_CODESANDBOX"], [33, 3, 1, "", "BRAND_COHOST"], [33, 3, 1, "", "BRAND_COINBASE"], [33, 3, 1, "", "BRAND_COMEDY_CENTRAL"], [33, 3, 1, "", "BRAND_COREOS"], [33, 3, 1, "", "BRAND_COUCHDB"], [33, 3, 1, "", "BRAND_COUCHSURFING"], [33, 3, 1, "", "BRAND_CPP"], [33, 3, 1, "", "BRAND_CRAFT"], [33, 3, 1, "", "BRAND_CRUNCHBASE"], [33, 3, 1, "", "BRAND_CSS3"], [33, 3, 1, "", "BRAND_CTEMPLAR"], [33, 3, 1, "", "BRAND_CUCUMBER"], [33, 3, 1, "", "BRAND_CUPRA"], [33, 3, 1, "", "BRAND_CYPRESS"], [33, 3, 1, "", "BRAND_C_SHARP"], [33, 3, 1, "", "BRAND_D3"], [33, 3, 1, "", "BRAND_DAYS_COUNTER"], [33, 3, 1, "", "BRAND_DCOS"], [33, 3, 1, "", "BRAND_DEBIAN"], [33, 3, 1, "", "BRAND_DEEZER"], [33, 3, 1, "", "BRAND_DELIVEROO"], [33, 3, 1, "", "BRAND_DENO"], [33, 3, 1, "", "BRAND_DENODO"], [33, 3, 1, "", "BRAND_DEVIANTART"], [33, 3, 1, "", "BRAND_DIGG"], [33, 3, 1, "", "BRAND_DINGTALK"], [33, 3, 1, "", "BRAND_DISCORD"], [33, 3, 1, "", "BRAND_DISCORD_FILLED"], [33, 3, 1, "", "BRAND_DISNEY"], [33, 3, 1, "", "BRAND_DISQUS"], [33, 3, 1, "", "BRAND_DJANGO"], [33, 3, 1, "", "BRAND_DOCKER"], [33, 3, 1, "", "BRAND_DOCTRINE"], [33, 3, 1, "", "BRAND_DOLBY_DIGITAL"], [33, 3, 1, "", "BRAND_DOUBAN"], [33, 3, 1, "", "BRAND_DRIBBBLE"], [33, 3, 1, "", "BRAND_DRIBBBLE_FILLED"], [33, 3, 1, "", "BRAND_DROPS"], [33, 3, 1, "", "BRAND_DRUPAL"], [33, 3, 1, "", "BRAND_EDGE"], [33, 3, 1, "", "BRAND_ELASTIC"], [33, 3, 1, "", "BRAND_ELECTRONIC_ARTS"], [33, 3, 1, "", "BRAND_EMBER"], [33, 3, 1, "", "BRAND_ENVATO"], [33, 3, 1, "", "BRAND_ETSY"], [33, 3, 1, "", "BRAND_EVERNOTE"], [33, 3, 1, "", "BRAND_FACEBOOK"], [33, 3, 1, "", "BRAND_FACEBOOK_FILLED"], [33, 3, 1, "", "BRAND_FEEDLY"], [33, 3, 1, "", "BRAND_FIGMA"], [33, 3, 1, "", "BRAND_FILEZILLA"], [33, 3, 1, "", "BRAND_FINDER"], [33, 3, 1, "", "BRAND_FIREBASE"], [33, 3, 1, "", "BRAND_FIREFOX"], [33, 3, 1, "", "BRAND_FIVERR"], [33, 3, 1, "", "BRAND_FLICKR"], [33, 3, 1, "", "BRAND_FLIGHTRADAR24"], [33, 3, 1, "", "BRAND_FLIPBOARD"], [33, 3, 1, "", "BRAND_FLUTTER"], [33, 3, 1, "", "BRAND_FORTNITE"], [33, 3, 1, "", "BRAND_FOURSQUARE"], [33, 3, 1, "", "BRAND_FRAMER"], [33, 3, 1, "", "BRAND_FRAMER_MOTION"], [33, 3, 1, "", "BRAND_FUNIMATION"], [33, 3, 1, "", "BRAND_GATSBY"], [33, 3, 1, "", "BRAND_GIT"], [33, 3, 1, "", "BRAND_GITHUB"], [33, 3, 1, "", "BRAND_GITHUB_COPILOT"], [33, 3, 1, "", "BRAND_GITHUB_FILLED"], [33, 3, 1, "", "BRAND_GITLAB"], [33, 3, 1, "", "BRAND_GMAIL"], [33, 3, 1, "", "BRAND_GOLANG"], [33, 3, 1, "", "BRAND_GOOGLE"], [33, 3, 1, "", "BRAND_GOOGLE_ANALYTICS"], [33, 3, 1, "", "BRAND_GOOGLE_BIG_QUERY"], [33, 3, 1, "", "BRAND_GOOGLE_DRIVE"], [33, 3, 1, "", "BRAND_GOOGLE_FIT"], [33, 3, 1, "", "BRAND_GOOGLE_HOME"], [33, 3, 1, "", "BRAND_GOOGLE_MAPS"], [33, 3, 1, "", "BRAND_GOOGLE_ONE"], [33, 3, 1, "", "BRAND_GOOGLE_PHOTOS"], [33, 3, 1, "", "BRAND_GOOGLE_PLAY"], [33, 3, 1, "", "BRAND_GOOGLE_PODCASTS"], [33, 3, 1, "", "BRAND_GRAMMARLY"], [33, 3, 1, "", "BRAND_GRAPHQL"], [33, 3, 1, "", "BRAND_GRAVATAR"], [33, 3, 1, "", "BRAND_GRINDR"], [33, 3, 1, "", "BRAND_GUARDIAN"], [33, 3, 1, "", "BRAND_GUMROAD"], [33, 3, 1, "", "BRAND_HBO"], [33, 3, 1, "", "BRAND_HEADLESSUI"], [33, 3, 1, "", "BRAND_HEXO"], [33, 3, 1, "", "BRAND_HIPCHAT"], [33, 3, 1, "", "BRAND_HTML5"], [33, 3, 1, "", "BRAND_INERTIA"], [33, 3, 1, "", "BRAND_INSTAGRAM"], [33, 3, 1, "", "BRAND_INTERCOM"], [33, 3, 1, "", "BRAND_ITCH"], [33, 3, 1, "", "BRAND_JAVASCRIPT"], [33, 3, 1, "", "BRAND_JUEJIN"], [33, 3, 1, "", "BRAND_KBIN"], [33, 3, 1, "", "BRAND_KICK"], [33, 3, 1, "", "BRAND_KICKSTARTER"], [33, 3, 1, "", "BRAND_KOTLIN"], [33, 3, 1, "", "BRAND_LARAVEL"], [33, 3, 1, "", "BRAND_LASTFM"], [33, 3, 1, "", "BRAND_LEETCODE"], [33, 3, 1, "", "BRAND_LETTERBOXD"], [33, 3, 1, "", "BRAND_LINE"], [33, 3, 1, "", "BRAND_LINKEDIN"], [33, 3, 1, "", "BRAND_LINKTREE"], [33, 3, 1, "", "BRAND_LINQPAD"], [33, 3, 1, "", "BRAND_LOOM"], [33, 3, 1, "", "BRAND_MAILGUN"], [33, 3, 1, "", "BRAND_MANTINE"], [33, 3, 1, "", "BRAND_MASTERCARD"], [33, 3, 1, "", "BRAND_MASTODON"], [33, 3, 1, "", "BRAND_MATRIX"], [33, 3, 1, "", "BRAND_MCDONALDS"], [33, 3, 1, "", "BRAND_MEDIUM"], [33, 3, 1, "", "BRAND_MERCEDES"], [33, 3, 1, "", "BRAND_MESSENGER"], [33, 3, 1, "", "BRAND_META"], [33, 3, 1, "", "BRAND_MICROSOFT_TEAMS"], [33, 3, 1, "", "BRAND_MINECRAFT"], [33, 3, 1, "", "BRAND_MINIPROGRAM"], [33, 3, 1, "", "BRAND_MIXPANEL"], [33, 3, 1, "", "BRAND_MONDAY"], [33, 3, 1, "", "BRAND_MONGODB"], [33, 3, 1, "", "BRAND_MYSQL"], [33, 3, 1, "", "BRAND_MY_OPPO"], [33, 3, 1, "", "BRAND_NATIONAL_GEOGRAPHIC"], [33, 3, 1, "", "BRAND_NEM"], [33, 3, 1, "", "BRAND_NETBEANS"], [33, 3, 1, "", "BRAND_NETEASE_MUSIC"], [33, 3, 1, "", "BRAND_NETFLIX"], [33, 3, 1, "", "BRAND_NEXO"], [33, 3, 1, "", "BRAND_NEXTCLOUD"], [33, 3, 1, "", "BRAND_NEXTJS"], [33, 3, 1, "", "BRAND_NODEJS"], [33, 3, 1, "", "BRAND_NORD_VPN"], [33, 3, 1, "", "BRAND_NOTION"], [33, 3, 1, "", "BRAND_NPM"], [33, 3, 1, "", "BRAND_NUXT"], [33, 3, 1, "", "BRAND_NYTIMES"], [33, 3, 1, "", "BRAND_OAUTH"], [33, 3, 1, "", "BRAND_OFFICE"], [33, 3, 1, "", "BRAND_OK_RU"], [33, 3, 1, "", "BRAND_ONEDRIVE"], [33, 3, 1, "", "BRAND_ONLYFANS"], [33, 3, 1, "", "BRAND_OPENAI"], [33, 3, 1, "", "BRAND_OPENVPN"], [33, 3, 1, "", "BRAND_OPEN_SOURCE"], [33, 3, 1, "", "BRAND_OPERA"], [33, 3, 1, "", "BRAND_PAGEKIT"], [33, 3, 1, "", "BRAND_PATREON"], [33, 3, 1, "", "BRAND_PAYPAL"], [33, 3, 1, "", "BRAND_PAYPAL_FILLED"], [33, 3, 1, "", "BRAND_PAYPAY"], [33, 3, 1, "", "BRAND_PEANUT"], [33, 3, 1, "", "BRAND_PEPSI"], [33, 3, 1, "", "BRAND_PHP"], [33, 3, 1, "", "BRAND_PICSART"], [33, 3, 1, "", "BRAND_PINTEREST"], [33, 3, 1, "", "BRAND_PLANETSCALE"], [33, 3, 1, "", "BRAND_POCKET"], [33, 3, 1, "", "BRAND_POLYMER"], [33, 3, 1, "", "BRAND_POWERSHELL"], [33, 3, 1, "", "BRAND_PRISMA"], [33, 3, 1, "", "BRAND_PRODUCTHUNT"], [33, 3, 1, "", "BRAND_PUSHBULLET"], [33, 3, 1, "", "BRAND_PUSHOVER"], [33, 3, 1, "", "BRAND_PYTHON"], [33, 3, 1, "", "BRAND_QQ"], [33, 3, 1, "", "BRAND_RADIX_UI"], [33, 3, 1, "", "BRAND_REACT"], [33, 3, 1, "", "BRAND_REACT_NATIVE"], [33, 3, 1, "", "BRAND_REASON"], [33, 3, 1, "", "BRAND_REDDIT"], [33, 3, 1, "", "BRAND_REDHAT"], [33, 3, 1, "", "BRAND_REDUX"], [33, 3, 1, "", "BRAND_REVOLUT"], [33, 3, 1, "", "BRAND_RUMBLE"], [33, 3, 1, "", "BRAND_RUST"], [33, 3, 1, "", "BRAND_SAFARI"], [33, 3, 1, "", "BRAND_SAMSUNGPASS"], [33, 3, 1, "", "BRAND_SASS"], [33, 3, 1, "", "BRAND_SENTRY"], [33, 3, 1, "", "BRAND_SHARIK"], [33, 3, 1, "", "BRAND_SHAZAM"], [33, 3, 1, "", "BRAND_SHOPEE"], [33, 3, 1, "", "BRAND_SKETCH"], [33, 3, 1, "", "BRAND_SKYPE"], [33, 3, 1, "", "BRAND_SLACK"], [33, 3, 1, "", "BRAND_SNAPCHAT"], [33, 3, 1, "", "BRAND_SNAPSEED"], [33, 3, 1, "", "BRAND_SNOWFLAKE"], [33, 3, 1, "", "BRAND_SOCKET_IO"], [33, 3, 1, "", "BRAND_SOLIDJS"], [33, 3, 1, "", "BRAND_SOUNDCLOUD"], [33, 3, 1, "", "BRAND_SPACEHEY"], [33, 3, 1, "", "BRAND_SPEEDTEST"], [33, 3, 1, "", "BRAND_SPOTIFY"], [33, 3, 1, "", "BRAND_STACKOVERFLOW"], [33, 3, 1, "", "BRAND_STACKSHARE"], [33, 3, 1, "", "BRAND_STEAM"], [33, 3, 1, "", "BRAND_STORJ"], [33, 3, 1, "", "BRAND_STORYBOOK"], [33, 3, 1, "", "BRAND_STORYTEL"], [33, 3, 1, "", "BRAND_STRAVA"], [33, 3, 1, "", "BRAND_STRIPE"], [33, 3, 1, "", "BRAND_SUBLIME_TEXT"], [33, 3, 1, "", "BRAND_SUGARIZER"], [33, 3, 1, "", "BRAND_SUPABASE"], [33, 3, 1, "", "BRAND_SUPERHUMAN"], [33, 3, 1, "", "BRAND_SUPERNOVA"], [33, 3, 1, "", "BRAND_SURFSHARK"], [33, 3, 1, "", "BRAND_SVELTE"], [33, 3, 1, "", "BRAND_SWIFT"], [33, 3, 1, "", "BRAND_SYMFONY"], [33, 3, 1, "", "BRAND_TABLER"], [33, 3, 1, "", "BRAND_TAILWIND"], [33, 3, 1, "", "BRAND_TAOBAO"], [33, 3, 1, "", "BRAND_TED"], [33, 3, 1, "", "BRAND_TELEGRAM"], [33, 3, 1, "", "BRAND_TERRAFORM"], [33, 3, 1, "", "BRAND_TETHER"], [33, 3, 1, "", "BRAND_THREEJS"], [33, 3, 1, "", "BRAND_TIDAL"], [33, 3, 1, "", "BRAND_TIKTOK"], [33, 3, 1, "", "BRAND_TIKTO_FILLED"], [33, 3, 1, "", "BRAND_TINDER"], [33, 3, 1, "", "BRAND_TOPBUZZ"], [33, 3, 1, "", "BRAND_TORCHAIN"], [33, 3, 1, "", "BRAND_TOYOTA"], [33, 3, 1, "", "BRAND_TRELLO"], [33, 3, 1, "", "BRAND_TRIPADVISOR"], [33, 3, 1, "", "BRAND_TUMBLR"], [33, 3, 1, "", "BRAND_TWILIO"], [33, 3, 1, "", "BRAND_TWITCH"], [33, 3, 1, "", "BRAND_TWITTER"], [33, 3, 1, "", "BRAND_TWITTER_FILLED"], [33, 3, 1, "", "BRAND_TYPESCRIPT"], [33, 3, 1, "", "BRAND_UBER"], [33, 3, 1, "", "BRAND_UBUNTU"], [33, 3, 1, "", "BRAND_UNITY"], [33, 3, 1, "", "BRAND_UNSPLASH"], [33, 3, 1, "", "BRAND_UPWORK"], [33, 3, 1, "", "BRAND_VALORANT"], [33, 3, 1, "", "BRAND_VERCEL"], [33, 3, 1, "", "BRAND_VIMEO"], [33, 3, 1, "", "BRAND_VINTED"], [33, 3, 1, "", "BRAND_VISA"], [33, 3, 1, "", "BRAND_VISUAL_STUDIO"], [33, 3, 1, "", "BRAND_VITE"], [33, 3, 1, "", "BRAND_VIVALDI"], [33, 3, 1, "", "BRAND_VK"], [33, 3, 1, "", "BRAND_VLC"], [33, 3, 1, "", "BRAND_VOLKSWAGEN"], [33, 3, 1, "", "BRAND_VSCO"], [33, 3, 1, "", "BRAND_VSCODE"], [33, 3, 1, "", "BRAND_VUE"], [33, 3, 1, "", "BRAND_WALMART"], [33, 3, 1, "", "BRAND_WAZE"], [33, 3, 1, "", "BRAND_WEBFLOW"], [33, 3, 1, "", "BRAND_WECHAT"], [33, 3, 1, "", "BRAND_WEIBO"], [33, 3, 1, "", "BRAND_WHATSAPP"], [33, 3, 1, "", "BRAND_WIKIPEDIA"], [33, 3, 1, "", "BRAND_WINDOWS"], [33, 3, 1, "", "BRAND_WINDY"], [33, 3, 1, "", "BRAND_WISH"], [33, 3, 1, "", "BRAND_WIX"], [33, 3, 1, "", "BRAND_WORDPRESS"], [33, 3, 1, "", "BRAND_XAMARIN"], [33, 3, 1, "", "BRAND_XBOX"], [33, 3, 1, "", "BRAND_XING"], [33, 3, 1, "", "BRAND_YAHOO"], [33, 3, 1, "", "BRAND_YANDEX"], [33, 3, 1, "", "BRAND_YATSE"], [33, 3, 1, "", "BRAND_YCOMBINATOR"], [33, 3, 1, "", "BRAND_YOUTUBE"], [33, 3, 1, "", "BRAND_YOUTUBE_KIDS"], [33, 3, 1, "", "BRAND_ZALANDO"], [33, 3, 1, "", "BRAND_ZAPIER"], [33, 3, 1, "", "BRAND_ZEIT"], [33, 3, 1, "", "BRAND_ZHIHU"], [33, 3, 1, "", "BRAND_ZOOM"], [33, 3, 1, "", "BRAND_ZULIP"], [33, 3, 1, "", "BRAND_ZWIFT"], [33, 3, 1, "", "BREAD"], [33, 3, 1, "", "BREAD_OFF"], [33, 3, 1, "", "BRIEFCASE"], [33, 3, 1, "", "BRIEFCASE_OFF"], [33, 3, 1, "", "BRIGHTNESS"], [33, 3, 1, "", "BRIGHTNESS_2"], [33, 3, 1, "", "BRIGHTNESS_DOWN"], [33, 3, 1, "", "BRIGHTNESS_HALF"], [33, 3, 1, "", "BRIGHTNESS_OFF"], [33, 3, 1, "", "BRIGHTNESS_UP"], [33, 3, 1, "", "BROADCAST"], [33, 3, 1, "", "BROADCAST_OFF"], [33, 3, 1, "", "BROWSER"], [33, 3, 1, "", "BROWSER_CHECK"], [33, 3, 1, "", "BROWSER_OFF"], [33, 3, 1, "", "BROWSER_PLUS"], [33, 3, 1, "", "BROWSER_X"], [33, 3, 1, "", "BRUSH"], [33, 3, 1, "", "BRUSH_OFF"], [33, 3, 1, "", "BUCKET"], [33, 3, 1, "", "BUCKET_DROPLET"], [33, 3, 1, "", "BUCKET_OFF"], [33, 3, 1, "", "BUG"], [33, 3, 1, "", "BUG_OFF"], [33, 3, 1, "", "BUILDING"], [33, 3, 1, "", "BUILDING_ARCH"], [33, 3, 1, "", "BUILDING_BANK"], [33, 3, 1, "", "BUILDING_BRIDGE"], [33, 3, 1, "", "BUILDING_BRIDGE_2"], [33, 3, 1, "", "BUILDING_BROADCAST_TOWER"], [33, 3, 1, "", "BUILDING_CAROUSEL"], [33, 3, 1, "", "BUILDING_CASTLE"], [33, 3, 1, "", "BUILDING_CHURCH"], [33, 3, 1, "", "BUILDING_CIRCUS"], [33, 3, 1, "", "BUILDING_COMMUNITY"], [33, 3, 1, "", "BUILDING_COTTAGE"], [33, 3, 1, "", "BUILDING_ESTATE"], [33, 3, 1, "", "BUILDING_FACTORY"], [33, 3, 1, "", "BUILDING_FACTORY_2"], [33, 3, 1, "", "BUILDING_FORTRESS"], [33, 3, 1, "", "BUILDING_HOSPITAL"], [33, 3, 1, "", "BUILDING_LIGHTHOUSE"], [33, 3, 1, "", "BUILDING_MONUMENT"], [33, 3, 1, "", "BUILDING_MOSQUE"], [33, 3, 1, "", "BUILDING_PAVILION"], [33, 3, 1, "", "BUILDING_SKYSCRAPER"], [33, 3, 1, "", "BUILDING_STADIUM"], [33, 3, 1, "", "BUILDING_STORE"], [33, 3, 1, "", "BUILDING_TUNNEL"], [33, 3, 1, "", "BUILDING_WAREHOUSE"], [33, 3, 1, "", "BUILDING_WIND_TURBINE"], [33, 3, 1, "", "BULB"], [33, 3, 1, "", "BULB_FILLED"], [33, 3, 1, "", "BULB_OFF"], [33, 3, 1, "", "BULLDOZER"], [33, 3, 1, "", "BUS"], [33, 3, 1, "", "BUSINESSPLAN"], [33, 3, 1, "", "BUS_OFF"], [33, 3, 1, "", "BUS_STOP"], [33, 3, 1, "", "BUTTERFLY"], [33, 3, 1, "", "CACTUS"], [33, 3, 1, "", "CACTUS_OFF"], [33, 3, 1, "", "CAKE"], [33, 3, 1, "", "CAKE_OFF"], [33, 3, 1, "", "CALCULATOR"], [33, 3, 1, "", "CALCULATOR_OFF"], [33, 3, 1, "", "CALENDAR"], [33, 3, 1, "", "CALENDAR_BOLT"], [33, 3, 1, "", "CALENDAR_CANCEL"], [33, 3, 1, "", "CALENDAR_CHECK"], [33, 3, 1, "", "CALENDAR_CODE"], [33, 3, 1, "", "CALENDAR_COG"], [33, 3, 1, "", "CALENDAR_DOLLAR"], [33, 3, 1, "", "CALENDAR_DOWN"], [33, 3, 1, "", "CALENDAR_DUE"], [33, 3, 1, "", "CALENDAR_EVENT"], [33, 3, 1, "", "CALENDAR_EXCLAMATION"], [33, 3, 1, "", "CALENDAR_HEART"], [33, 3, 1, "", "CALENDAR_MINUS"], [33, 3, 1, "", "CALENDAR_OFF"], [33, 3, 1, "", "CALENDAR_PAUSE"], [33, 3, 1, "", "CALENDAR_PIN"], [33, 3, 1, "", "CALENDAR_PLUS"], [33, 3, 1, "", "CALENDAR_QUESTION"], [33, 3, 1, "", "CALENDAR_REPEAT"], [33, 3, 1, "", "CALENDAR_SEARCH"], [33, 3, 1, "", "CALENDAR_SHARE"], [33, 3, 1, "", "CALENDAR_STAR"], [33, 3, 1, "", "CALENDAR_STATS"], [33, 3, 1, "", "CALENDAR_TIME"], [33, 3, 1, "", "CALENDAR_UP"], [33, 3, 1, "", "CALENDAR_X"], [33, 3, 1, "", "CAMERA"], [33, 3, 1, "", "CAMERA_BOLT"], [33, 3, 1, "", "CAMERA_CANCEL"], [33, 3, 1, "", "CAMERA_CHECK"], [33, 3, 1, "", "CAMERA_CODE"], [33, 3, 1, "", "CAMERA_COG"], [33, 3, 1, "", "CAMERA_DOLLAR"], [33, 3, 1, "", "CAMERA_DOWN"], [33, 3, 1, "", "CAMERA_EXCLAMATION"], [33, 3, 1, "", "CAMERA_FILLED"], [33, 3, 1, "", "CAMERA_HEART"], [33, 3, 1, "", "CAMERA_MINUS"], [33, 3, 1, "", "CAMERA_OFF"], [33, 3, 1, "", "CAMERA_PAUSE"], [33, 3, 1, "", "CAMERA_PIN"], [33, 3, 1, "", "CAMERA_PLUS"], [33, 3, 1, "", "CAMERA_QUESTION"], [33, 3, 1, "", "CAMERA_ROTATE"], [33, 3, 1, "", "CAMERA_SEARCH"], [33, 3, 1, "", "CAMERA_SELFIE"], [33, 3, 1, "", "CAMERA_SHARE"], [33, 3, 1, "", "CAMERA_STAR"], [33, 3, 1, "", "CAMERA_UP"], [33, 3, 1, "", "CAMERA_X"], [33, 3, 1, "", "CAMPER"], [33, 3, 1, "", "CAMPFIRE"], [33, 3, 1, "", "CANDLE"], [33, 3, 1, "", "CANDY"], [33, 3, 1, "", "CANDY_OFF"], [33, 3, 1, "", "CANE"], [33, 3, 1, "", "CANNABIS"], [33, 3, 1, "", "CAPSULE"], [33, 3, 1, "", "CAPSULE_HORIZONTAL"], [33, 3, 1, "", "CAPTURE"], [33, 3, 1, "", "CAPTURE_OFF"], [33, 3, 1, "", "CAR"], [33, 3, 1, "", "CARAVAN"], [33, 3, 1, "", "CARDBOARDS"], [33, 3, 1, "", "CARDBOARDS_OFF"], [33, 3, 1, "", "CARDS"], [33, 3, 1, "", "CARET_DOWN"], [33, 3, 1, "", "CARET_LEFT"], [33, 3, 1, "", "CARET_RIGHT"], [33, 3, 1, "", "CARET_UP"], [33, 3, 1, "", "CAROUSEL_HORIZONTAL"], [33, 3, 1, "", "CAROUSEL_HORIZONTAL_FILLED"], [33, 3, 1, "", "CAROUSEL_VERTICAL"], [33, 3, 1, "", "CAROUSEL_VERTICAL_FILLED"], [33, 3, 1, "", "CARROT"], [33, 3, 1, "", "CARROT_OFF"], [33, 3, 1, "", "CAR_CRANE"], [33, 3, 1, "", "CAR_CRASH"], [33, 3, 1, "", "CAR_OFF"], [33, 3, 1, "", "CAR_TURBINE"], [33, 3, 1, "", "CASH"], [33, 3, 1, "", "CASH_BANKNOTE"], [33, 3, 1, "", "CASH_BANKNOTE_OFF"], [33, 3, 1, "", "CASH_OFF"], [33, 3, 1, "", "CAST"], [33, 3, 1, "", "CAST_OFF"], [33, 3, 1, "", "CAT"], [33, 3, 1, "", "CATEGORY"], [33, 3, 1, "", "CATEGORY_2"], [33, 3, 1, "", "CE"], [33, 3, 1, "", "CELL"], [33, 3, 1, "", "CELL_SIGNAL_1"], [33, 3, 1, "", "CELL_SIGNAL_2"], [33, 3, 1, "", "CELL_SIGNAL_3"], [33, 3, 1, "", "CELL_SIGNAL_4"], [33, 3, 1, "", "CELL_SIGNAL_5"], [33, 3, 1, "", "CELL_SIGNAL_OFF"], [33, 3, 1, "", "CERTIFICATE"], [33, 3, 1, "", "CERTIFICATE_2"], [33, 3, 1, "", "CERTIFICATE_2_OFF"], [33, 3, 1, "", "CERTIFICATE_OFF"], [33, 3, 1, "", "CE_OFF"], [33, 3, 1, "", "CHAIR_DIRECTOR"], [33, 3, 1, "", "CHALKBOARD"], [33, 3, 1, "", "CHALKBOARD_OFF"], [33, 3, 1, "", "CHARGING_PILE"], [33, 3, 1, "", "CHART_ARCS"], [33, 3, 1, "", "CHART_ARCS_3"], [33, 3, 1, "", "CHART_AREA"], [33, 3, 1, "", "CHART_AREA_FILLED"], [33, 3, 1, "", "CHART_AREA_LINE"], [33, 3, 1, "", "CHART_AREA_LINE_FILLED"], [33, 3, 1, "", "CHART_ARROWS"], [33, 3, 1, "", "CHART_ARROWS_VERTICAL"], [33, 3, 1, "", "CHART_BAR"], [33, 3, 1, "", "CHART_BAR_OFF"], [33, 3, 1, "", "CHART_BUBBLE"], [33, 3, 1, "", "CHART_BUBBLE_FILLED"], [33, 3, 1, "", "CHART_CANDLE"], [33, 3, 1, "", "CHART_CANDLE_FILLED"], [33, 3, 1, "", "CHART_CIRCLES"], [33, 3, 1, "", "CHART_DONUT"], [33, 3, 1, "", "CHART_DONUT_2"], [33, 3, 1, "", "CHART_DONUT_3"], [33, 3, 1, "", "CHART_DONUT_4"], [33, 3, 1, "", "CHART_DONUT_FILLED"], [33, 3, 1, "", "CHART_DOTS"], [33, 3, 1, "", "CHART_DOTS_2"], [33, 3, 1, "", "CHART_DOTS_3"], [33, 3, 1, "", "CHART_GRID_DOTS"], [33, 3, 1, "", "CHART_HISTOGRAM"], [33, 3, 1, "", "CHART_INFOGRAPHIC"], [33, 3, 1, "", "CHART_LINE"], [33, 3, 1, "", "CHART_PIE"], [33, 3, 1, "", "CHART_PIE_2"], [33, 3, 1, "", "CHART_PIE_3"], [33, 3, 1, "", "CHART_PIE_4"], [33, 3, 1, "", "CHART_PIE_FILLED"], [33, 3, 1, "", "CHART_PIE_OFF"], [33, 3, 1, "", "CHART_PPF"], [33, 3, 1, "", "CHART_RADAR"], [33, 3, 1, "", "CHART_SANKEY"], [33, 3, 1, "", "CHART_TREEMAP"], [33, 3, 1, "", "CHECK"], [33, 3, 1, "", "CHECKBOX"], [33, 3, 1, "", "CHECKLIST"], [33, 3, 1, "", "CHECKS"], [33, 3, 1, "", "CHECKUP_LIST"], [33, 3, 1, "", "CHEESE"], [33, 3, 1, "", "CHEF_HAT"], [33, 3, 1, "", "CHEF_HAT_OFF"], [33, 3, 1, "", "CHERRY"], [33, 3, 1, "", "CHERRY_FILLED"], [33, 3, 1, "", "CHESS"], [33, 3, 1, "", "CHESS_BISHOP"], [33, 3, 1, "", "CHESS_BISHOP_FILLED"], [33, 3, 1, "", "CHESS_FILLED"], [33, 3, 1, "", "CHESS_KING"], [33, 3, 1, "", "CHESS_KING_FILLED"], [33, 3, 1, "", "CHESS_KNIGHT"], [33, 3, 1, "", "CHESS_KNIGHT_FILLED"], [33, 3, 1, "", "CHESS_QUEEN"], [33, 3, 1, "", "CHESS_QUEEN_FILLED"], [33, 3, 1, "", "CHESS_ROOK"], [33, 3, 1, "", "CHESS_ROOK_FILLED"], [33, 3, 1, "", "CHEVRONS_DOWN"], [33, 3, 1, "", "CHEVRONS_DOWN_LEFT"], [33, 3, 1, "", "CHEVRONS_DOWN_RIGHT"], [33, 3, 1, "", "CHEVRONS_LEFT"], [33, 3, 1, "", "CHEVRONS_RIGHT"], [33, 3, 1, "", "CHEVRONS_UP"], [33, 3, 1, "", "CHEVRONS_UP_LEFT"], [33, 3, 1, "", "CHEVRONS_UP_RIGHT"], [33, 3, 1, "", "CHEVRON_COMPACT_DOWN"], [33, 3, 1, "", "CHEVRON_COMPACT_LEFT"], [33, 3, 1, "", "CHEVRON_COMPACT_RIGHT"], [33, 3, 1, "", "CHEVRON_COMPACT_UP"], [33, 3, 1, "", "CHEVRON_DOWN"], [33, 3, 1, "", "CHEVRON_DOWN_LEFT"], [33, 3, 1, "", "CHEVRON_DOWN_RIGHT"], [33, 3, 1, "", "CHEVRON_LEFT"], [33, 3, 1, "", "CHEVRON_LEFT_PIPE"], [33, 3, 1, "", "CHEVRON_RIGHT"], [33, 3, 1, "", "CHEVRON_RIGHT_PIPE"], [33, 3, 1, "", "CHEVRON_UP"], [33, 3, 1, "", "CHEVRON_UP_LEFT"], [33, 3, 1, "", "CHEVRON_UP_RIGHT"], [33, 3, 1, "", "CHISEL"], [33, 3, 1, "", "CHRISTMAS_TREE"], [33, 3, 1, "", "CHRISTMAS_TREE_OFF"], [33, 3, 1, "", "CIRCLE"], [33, 3, 1, "", "CIRCLES"], [33, 3, 1, "", "CIRCLES_FILLED"], [33, 3, 1, "", "CIRCLES_RELATION"], [33, 3, 1, "", "CIRCLE_0_FILLED"], [33, 3, 1, "", "CIRCLE_1_FILLED"], [33, 3, 1, "", "CIRCLE_2_FILLED"], [33, 3, 1, "", "CIRCLE_3_FILLED"], [33, 3, 1, "", "CIRCLE_4_FILLED"], [33, 3, 1, "", "CIRCLE_5_FILLED"], [33, 3, 1, "", "CIRCLE_6_FILLED"], [33, 3, 1, "", "CIRCLE_7_FILLED"], [33, 3, 1, "", "CIRCLE_8_FILLED"], [33, 3, 1, "", "CIRCLE_9_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_LEFT"], [33, 3, 1, "", "CIRCLE_ARROW_LEFT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_RIGHT"], [33, 3, 1, "", "CIRCLE_ARROW_RIGHT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_UP"], [33, 3, 1, "", "CIRCLE_ARROW_UP_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_UP_LEFT"], [33, 3, 1, "", "CIRCLE_ARROW_UP_LEFT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT"], [33, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT_FILLED"], [33, 3, 1, "", "CIRCLE_CARET_DOWN"], [33, 3, 1, "", "CIRCLE_CARET_LEFT"], [33, 3, 1, "", "CIRCLE_CARET_RIGHT"], [33, 3, 1, "", "CIRCLE_CARET_UP"], [33, 3, 1, "", "CIRCLE_CHECK"], [33, 3, 1, "", "CIRCLE_CHECK_FILLED"], [33, 3, 1, "", "CIRCLE_CHEVRONS_DOWN"], [33, 3, 1, "", "CIRCLE_CHEVRONS_LEFT"], [33, 3, 1, "", "CIRCLE_CHEVRONS_RIGHT"], [33, 3, 1, "", "CIRCLE_CHEVRONS_UP"], [33, 3, 1, "", "CIRCLE_CHEVRON_DOWN"], [33, 3, 1, "", "CIRCLE_CHEVRON_LEFT"], [33, 3, 1, "", "CIRCLE_CHEVRON_RIGHT"], [33, 3, 1, "", "CIRCLE_CHEVRON_UP"], [33, 3, 1, "", "CIRCLE_DASHED"], [33, 3, 1, "", "CIRCLE_DOT"], [33, 3, 1, "", "CIRCLE_DOTTED"], [33, 3, 1, "", "CIRCLE_DOT_FILLED"], [33, 3, 1, "", "CIRCLE_FILLED"], [33, 3, 1, "", "CIRCLE_HALF"], [33, 3, 1, "", "CIRCLE_HALF_2"], [33, 3, 1, "", "CIRCLE_HALF_VERTICAL"], [33, 3, 1, "", "CIRCLE_KEY"], [33, 3, 1, "", "CIRCLE_KEY_FILLED"], [33, 3, 1, "", "CIRCLE_LETTER_A"], [33, 3, 1, "", "CIRCLE_LETTER_B"], [33, 3, 1, "", "CIRCLE_LETTER_C"], [33, 3, 1, "", "CIRCLE_LETTER_D"], [33, 3, 1, "", "CIRCLE_LETTER_E"], [33, 3, 1, "", "CIRCLE_LETTER_F"], [33, 3, 1, "", "CIRCLE_LETTER_G"], [33, 3, 1, "", "CIRCLE_LETTER_H"], [33, 3, 1, "", "CIRCLE_LETTER_I"], [33, 3, 1, "", "CIRCLE_LETTER_J"], [33, 3, 1, "", "CIRCLE_LETTER_K"], [33, 3, 1, "", "CIRCLE_LETTER_L"], [33, 3, 1, "", "CIRCLE_LETTER_M"], [33, 3, 1, "", "CIRCLE_LETTER_N"], [33, 3, 1, "", "CIRCLE_LETTER_O"], [33, 3, 1, "", "CIRCLE_LETTER_P"], [33, 3, 1, "", "CIRCLE_LETTER_Q"], [33, 3, 1, "", "CIRCLE_LETTER_R"], [33, 3, 1, "", "CIRCLE_LETTER_S"], [33, 3, 1, "", "CIRCLE_LETTER_T"], [33, 3, 1, "", "CIRCLE_LETTER_U"], [33, 3, 1, "", "CIRCLE_LETTER_V"], [33, 3, 1, "", "CIRCLE_LETTER_W"], [33, 3, 1, "", "CIRCLE_LETTER_X"], [33, 3, 1, "", "CIRCLE_LETTER_Y"], [33, 3, 1, "", "CIRCLE_LETTER_Z"], [33, 3, 1, "", "CIRCLE_MINUS"], [33, 3, 1, "", "CIRCLE_NUMBER_0"], [33, 3, 1, "", "CIRCLE_NUMBER_1"], [33, 3, 1, "", "CIRCLE_NUMBER_2"], [33, 3, 1, "", "CIRCLE_NUMBER_3"], [33, 3, 1, "", "CIRCLE_NUMBER_4"], [33, 3, 1, "", "CIRCLE_NUMBER_5"], [33, 3, 1, "", "CIRCLE_NUMBER_6"], [33, 3, 1, "", "CIRCLE_NUMBER_7"], [33, 3, 1, "", "CIRCLE_NUMBER_8"], [33, 3, 1, "", "CIRCLE_NUMBER_9"], [33, 3, 1, "", "CIRCLE_OFF"], [33, 3, 1, "", "CIRCLE_PLUS"], [33, 3, 1, "", "CIRCLE_RECTANGLE"], [33, 3, 1, "", "CIRCLE_RECTANGLE_OFF"], [33, 3, 1, "", "CIRCLE_SQUARE"], [33, 3, 1, "", "CIRCLE_TRIANGLE"], [33, 3, 1, "", "CIRCLE_X"], [33, 3, 1, "", "CIRCLE_X_FILLED"], [33, 3, 1, "", "CIRCUIT_AMMETER"], [33, 3, 1, "", "CIRCUIT_BATTERY"], [33, 3, 1, "", "CIRCUIT_BULB"], [33, 3, 1, "", "CIRCUIT_CAPACITOR"], [33, 3, 1, "", "CIRCUIT_CAPACITOR_POLARIZED"], [33, 3, 1, "", "CIRCUIT_CELL"], [33, 3, 1, "", "CIRCUIT_CELL_PLUS"], [33, 3, 1, "", "CIRCUIT_CHANGEOVER"], [33, 3, 1, "", "CIRCUIT_DIODE"], [33, 3, 1, "", "CIRCUIT_DIODE_ZENER"], [33, 3, 1, "", "CIRCUIT_GROUND"], [33, 3, 1, "", "CIRCUIT_GROUND_DIGITAL"], [33, 3, 1, "", "CIRCUIT_INDUCTOR"], [33, 3, 1, "", "CIRCUIT_MOTOR"], [33, 3, 1, "", "CIRCUIT_PUSHBUTTON"], [33, 3, 1, "", "CIRCUIT_RESISTOR"], [33, 3, 1, "", "CIRCUIT_SWITCH_CLOSED"], [33, 3, 1, "", "CIRCUIT_SWITCH_OPEN"], [33, 3, 1, "", "CIRCUIT_VOLTMETER"], [33, 3, 1, "", "CLEAR_ALL"], [33, 3, 1, "", "CLEAR_FORMATTING"], [33, 3, 1, "", "CLICK"], [33, 3, 1, "", "CLIPBOARD"], [33, 3, 1, "", "CLIPBOARD_CHECK"], [33, 3, 1, "", "CLIPBOARD_COPY"], [33, 3, 1, "", "CLIPBOARD_DATA"], [33, 3, 1, "", "CLIPBOARD_HEART"], [33, 3, 1, "", "CLIPBOARD_LIST"], [33, 3, 1, "", "CLIPBOARD_OFF"], [33, 3, 1, "", "CLIPBOARD_PLUS"], [33, 3, 1, "", "CLIPBOARD_TEXT"], [33, 3, 1, "", "CLIPBOARD_TYPOGRAPHY"], [33, 3, 1, "", "CLIPBOARD_X"], [33, 3, 1, "", "CLOCK"], [33, 3, 1, "", "CLOCK_2"], [33, 3, 1, "", "CLOCK_BOLT"], [33, 3, 1, "", "CLOCK_CANCEL"], [33, 3, 1, "", "CLOCK_CHECK"], [33, 3, 1, "", "CLOCK_CODE"], [33, 3, 1, "", "CLOCK_COG"], [33, 3, 1, "", "CLOCK_DOLLAR"], [33, 3, 1, "", "CLOCK_DOWN"], [33, 3, 1, "", "CLOCK_EDIT"], [33, 3, 1, "", "CLOCK_EXCLAMATION"], [33, 3, 1, "", "CLOCK_FILLED"], [33, 3, 1, "", "CLOCK_HEART"], [33, 3, 1, "", "CLOCK_HOUR_1"], [33, 3, 1, "", "CLOCK_HOUR_10"], [33, 3, 1, "", "CLOCK_HOUR_11"], [33, 3, 1, "", "CLOCK_HOUR_12"], [33, 3, 1, "", "CLOCK_HOUR_2"], [33, 3, 1, "", "CLOCK_HOUR_3"], [33, 3, 1, "", "CLOCK_HOUR_4"], [33, 3, 1, "", "CLOCK_HOUR_5"], [33, 3, 1, "", "CLOCK_HOUR_6"], [33, 3, 1, "", "CLOCK_HOUR_7"], [33, 3, 1, "", "CLOCK_HOUR_8"], [33, 3, 1, "", "CLOCK_HOUR_9"], [33, 3, 1, "", "CLOCK_MINUS"], [33, 3, 1, "", "CLOCK_OFF"], [33, 3, 1, "", "CLOCK_PAUSE"], [33, 3, 1, "", "CLOCK_PIN"], [33, 3, 1, "", "CLOCK_PLAY"], [33, 3, 1, "", "CLOCK_PLUS"], [33, 3, 1, "", "CLOCK_QUESTION"], [33, 3, 1, "", "CLOCK_RECORD"], [33, 3, 1, "", "CLOCK_SEARCH"], [33, 3, 1, "", "CLOCK_SHARE"], [33, 3, 1, "", "CLOCK_SHIELD"], [33, 3, 1, "", "CLOCK_STAR"], [33, 3, 1, "", "CLOCK_STOP"], [33, 3, 1, "", "CLOCK_UP"], [33, 3, 1, "", "CLOCK_X"], [33, 3, 1, "", "CLOTHES_RACK"], [33, 3, 1, "", "CLOTHES_RACK_OFF"], [33, 3, 1, "", "CLOUD"], [33, 3, 1, "", "CLOUD_BOLT"], [33, 3, 1, "", "CLOUD_CANCEL"], [33, 3, 1, "", "CLOUD_CHECK"], [33, 3, 1, "", "CLOUD_CODE"], [33, 3, 1, "", "CLOUD_COG"], [33, 3, 1, "", "CLOUD_COMPUTING"], [33, 3, 1, "", "CLOUD_DATA_CONNECTION"], [33, 3, 1, "", "CLOUD_DOLLAR"], [33, 3, 1, "", "CLOUD_DOWN"], [33, 3, 1, "", "CLOUD_DOWNLOAD"], [33, 3, 1, "", "CLOUD_EXCLAMATION"], [33, 3, 1, "", "CLOUD_FILLED"], [33, 3, 1, "", "CLOUD_FOG"], [33, 3, 1, "", "CLOUD_HEART"], [33, 3, 1, "", "CLOUD_LOCK"], [33, 3, 1, "", "CLOUD_LOCK_OPEN"], [33, 3, 1, "", "CLOUD_MINUS"], [33, 3, 1, "", "CLOUD_OFF"], [33, 3, 1, "", "CLOUD_PAUSE"], [33, 3, 1, "", "CLOUD_PIN"], [33, 3, 1, "", "CLOUD_PLUS"], [33, 3, 1, "", "CLOUD_QUESTION"], [33, 3, 1, "", "CLOUD_RAIN"], [33, 3, 1, "", "CLOUD_SEARCH"], [33, 3, 1, "", "CLOUD_SHARE"], [33, 3, 1, "", "CLOUD_SNOW"], [33, 3, 1, "", "CLOUD_STAR"], [33, 3, 1, "", "CLOUD_STORM"], [33, 3, 1, "", "CLOUD_UP"], [33, 3, 1, "", "CLOUD_UPLOAD"], [33, 3, 1, "", "CLOUD_X"], [33, 3, 1, "", "CLOVER"], [33, 3, 1, "", "CLOVER_2"], [33, 3, 1, "", "CLUBS"], [33, 3, 1, "", "CLUBS_FILLED"], [33, 3, 1, "", "CODE"], [33, 3, 1, "", "CODE_ASTERIX"], [33, 3, 1, "", "CODE_CIRCLE"], [33, 3, 1, "", "CODE_CIRCLE_2"], [33, 3, 1, "", "CODE_DOTS"], [33, 3, 1, "", "CODE_MINUS"], [33, 3, 1, "", "CODE_OFF"], [33, 3, 1, "", "CODE_PLUS"], [33, 3, 1, "", "COFFEE"], [33, 3, 1, "", "COFFEE_OFF"], [33, 3, 1, "", "COFFIN"], [33, 3, 1, "", "COIN"], [33, 3, 1, "", "COINS"], [33, 3, 1, "", "COIN_BITCOIN"], [33, 3, 1, "", "COIN_EURO"], [33, 3, 1, "", "COIN_MONERO"], [33, 3, 1, "", "COIN_OFF"], [33, 3, 1, "", "COIN_POUND"], [33, 3, 1, "", "COIN_RUPEE"], [33, 3, 1, "", "COIN_YEN"], [33, 3, 1, "", "COIN_YUAN"], [33, 3, 1, "", "COLOR_FILTER"], [33, 3, 1, "", "COLOR_PICKER"], [33, 3, 1, "", "COLOR_PICKER_OFF"], [33, 3, 1, "", "COLOR_SWATCH"], [33, 3, 1, "", "COLOR_SWATCH_OFF"], [33, 3, 1, "", "COLUMNS"], [33, 3, 1, "", "COLUMNS_1"], [33, 3, 1, "", "COLUMNS_2"], [33, 3, 1, "", "COLUMNS_3"], [33, 3, 1, "", "COLUMNS_OFF"], [33, 3, 1, "", "COLUMN_INSERT_LEFT"], [33, 3, 1, "", "COLUMN_INSERT_RIGHT"], [33, 3, 1, "", "COLUMN_REMOVE"], [33, 3, 1, "", "COMET"], [33, 3, 1, "", "COMMAND"], [33, 3, 1, "", "COMMAND_OFF"], [33, 3, 1, "", "COMPASS"], [33, 3, 1, "", "COMPASS_OFF"], [33, 3, 1, "", "COMPONENTS"], [33, 3, 1, "", "COMPONENTS_OFF"], [33, 3, 1, "", "CONE"], [33, 3, 1, "", "CONE_2"], [33, 3, 1, "", "CONE_OFF"], [33, 3, 1, "", "CONE_PLUS"], [33, 3, 1, "", "CONFETTI"], [33, 3, 1, "", "CONFETTI_OFF"], [33, 3, 1, "", "CONFUCIUS"], [33, 3, 1, "", "CONTAINER"], [33, 3, 1, "", "CONTAINER_OFF"], [33, 3, 1, "", "CONTRAST"], [33, 3, 1, "", "CONTRAST_2"], [33, 3, 1, "", "CONTRAST_2_OFF"], [33, 3, 1, "", "CONTRAST_OFF"], [33, 3, 1, "", "COOKER"], [33, 3, 1, "", "COOKIE"], [33, 3, 1, "", "COOKIE_MAN"], [33, 3, 1, "", "COOKIE_OFF"], [33, 3, 1, "", "COPY"], [33, 3, 1, "", "COPYLEFT"], [33, 3, 1, "", "COPYLEFT_FILLED"], [33, 3, 1, "", "COPYLEFT_OFF"], [33, 3, 1, "", "COPYRIGHT"], [33, 3, 1, "", "COPYRIGHT_FILLED"], [33, 3, 1, "", "COPYRIGHT_OFF"], [33, 3, 1, "", "COPY_OFF"], [33, 3, 1, "", "CORNER_DOWN_LEFT"], [33, 3, 1, "", "CORNER_DOWN_LEFT_DOUBLE"], [33, 3, 1, "", "CORNER_DOWN_RIGHT"], [33, 3, 1, "", "CORNER_DOWN_RIGHT_DOUBLE"], [33, 3, 1, "", "CORNER_LEFT_DOWN"], [33, 3, 1, "", "CORNER_LEFT_DOWN_DOUBLE"], [33, 3, 1, "", "CORNER_LEFT_UP"], [33, 3, 1, "", "CORNER_LEFT_UP_DOUBLE"], [33, 3, 1, "", "CORNER_RIGHT_DOWN"], [33, 3, 1, "", "CORNER_RIGHT_DOWN_DOUBLE"], [33, 3, 1, "", "CORNER_RIGHT_UP"], [33, 3, 1, "", "CORNER_RIGHT_UP_DOUBLE"], [33, 3, 1, "", "CORNER_UP_LEFT"], [33, 3, 1, "", "CORNER_UP_LEFT_DOUBLE"], [33, 3, 1, "", "CORNER_UP_RIGHT"], [33, 3, 1, "", "CORNER_UP_RIGHT_DOUBLE"], [33, 3, 1, "", "CPU"], [33, 3, 1, "", "CPU_2"], [33, 3, 1, "", "CPU_OFF"], [33, 3, 1, "", "CRANE"], [33, 3, 1, "", "CRANE_OFF"], [33, 3, 1, "", "CREATIVE_COMMONS"], [33, 3, 1, "", "CREATIVE_COMMONS_BY"], [33, 3, 1, "", "CREATIVE_COMMONS_NC"], [33, 3, 1, "", "CREATIVE_COMMONS_ND"], [33, 3, 1, "", "CREATIVE_COMMONS_OFF"], [33, 3, 1, "", "CREATIVE_COMMONS_SA"], [33, 3, 1, "", "CREATIVE_COMMONS_ZERO"], [33, 3, 1, "", "CREDIT_CARD"], [33, 3, 1, "", "CREDIT_CARD_OFF"], [33, 3, 1, "", "CRICKET"], [33, 3, 1, "", "CROP"], [33, 3, 1, "", "CROSS"], [33, 3, 1, "", "CROSSHAIR"], [33, 3, 1, "", "CROSS_FILLED"], [33, 3, 1, "", "CROSS_OFF"], [33, 3, 1, "", "CROWN"], [33, 3, 1, "", "CROWN_OFF"], [33, 3, 1, "", "CRUTCHES"], [33, 3, 1, "", "CRUTCHES_OFF"], [33, 3, 1, "", "CRYSTAL_BALL"], [33, 3, 1, "", "CSV"], [33, 3, 1, "", "CUBE"], [33, 3, 1, "", "CUBE_OFF"], [33, 3, 1, "", "CUBE_PLUS"], [33, 3, 1, "", "CUBE_SEND"], [33, 3, 1, "", "CUBE_UNFOLDED"], [33, 3, 1, "", "CUP"], [33, 3, 1, "", "CUP_OFF"], [33, 3, 1, "", "CURLING"], [33, 3, 1, "", "CURLY_LOOP"], [33, 3, 1, "", "CURRENCY"], [33, 3, 1, "", "CURRENCY_AFGHANI"], [33, 3, 1, "", "CURRENCY_BAHRAINI"], [33, 3, 1, "", "CURRENCY_BAHT"], [33, 3, 1, "", "CURRENCY_BITCOIN"], [33, 3, 1, "", "CURRENCY_CENT"], [33, 3, 1, "", "CURRENCY_DINAR"], [33, 3, 1, "", "CURRENCY_DIRHAM"], [33, 3, 1, "", "CURRENCY_DOGECOIN"], [33, 3, 1, "", "CURRENCY_DOLLAR"], [33, 3, 1, "", "CURRENCY_DOLLAR_AUSTRALIAN"], [33, 3, 1, "", "CURRENCY_DOLLAR_BRUNEI"], [33, 3, 1, "", "CURRENCY_DOLLAR_CANADIAN"], [33, 3, 1, "", "CURRENCY_DOLLAR_GUYANESE"], [33, 3, 1, "", "CURRENCY_DOLLAR_OFF"], [33, 3, 1, "", "CURRENCY_DOLLAR_SINGAPORE"], [33, 3, 1, "", "CURRENCY_DOLLAR_ZIMBABWEAN"], [33, 3, 1, "", "CURRENCY_DONG"], [33, 3, 1, "", "CURRENCY_DRAM"], [33, 3, 1, "", "CURRENCY_ETHEREUM"], [33, 3, 1, "", "CURRENCY_EURO"], [33, 3, 1, "", "CURRENCY_EURO_OFF"], [33, 3, 1, "", "CURRENCY_FLORIN"], [33, 3, 1, "", "CURRENCY_FORINT"], [33, 3, 1, "", "CURRENCY_FRANK"], [33, 3, 1, "", "CURRENCY_GUARANI"], [33, 3, 1, "", "CURRENCY_HRYVNIA"], [33, 3, 1, "", "CURRENCY_IRANIAN_RIAL"], [33, 3, 1, "", "CURRENCY_KIP"], [33, 3, 1, "", "CURRENCY_KRONE_CZECH"], [33, 3, 1, "", "CURRENCY_KRONE_DANISH"], [33, 3, 1, "", "CURRENCY_KRONE_SWEDISH"], [33, 3, 1, "", "CURRENCY_LARI"], [33, 3, 1, "", "CURRENCY_LEU"], [33, 3, 1, "", "CURRENCY_LIRA"], [33, 3, 1, "", "CURRENCY_LITECOIN"], [33, 3, 1, "", "CURRENCY_LYD"], [33, 3, 1, "", "CURRENCY_MANAT"], [33, 3, 1, "", "CURRENCY_MONERO"], [33, 3, 1, "", "CURRENCY_NAIRA"], [33, 3, 1, "", "CURRENCY_NANO"], [33, 3, 1, "", "CURRENCY_OFF"], [33, 3, 1, "", "CURRENCY_PAANGA"], [33, 3, 1, "", "CURRENCY_PESO"], [33, 3, 1, "", "CURRENCY_POUND"], [33, 3, 1, "", "CURRENCY_POUND_OFF"], [33, 3, 1, "", "CURRENCY_QUETZAL"], [33, 3, 1, "", "CURRENCY_REAL"], [33, 3, 1, "", "CURRENCY_RENMINBI"], [33, 3, 1, "", "CURRENCY_RIPPLE"], [33, 3, 1, "", "CURRENCY_RIYAL"], [33, 3, 1, "", "CURRENCY_RUBEL"], [33, 3, 1, "", "CURRENCY_RUFIYAA"], [33, 3, 1, "", "CURRENCY_RUPEE"], [33, 3, 1, "", "CURRENCY_RUPEE_NEPALESE"], [33, 3, 1, "", "CURRENCY_SHEKEL"], [33, 3, 1, "", "CURRENCY_SOLANA"], [33, 3, 1, "", "CURRENCY_SOM"], [33, 3, 1, "", "CURRENCY_TAKA"], [33, 3, 1, "", "CURRENCY_TENGE"], [33, 3, 1, "", "CURRENCY_TUGRIK"], [33, 3, 1, "", "CURRENCY_WON"], [33, 3, 1, "", "CURRENCY_YEN"], [33, 3, 1, "", "CURRENCY_YEN_OFF"], [33, 3, 1, "", "CURRENCY_YUAN"], [33, 3, 1, "", "CURRENCY_ZLOTY"], [33, 3, 1, "", "CURRENT_LOCATION"], [33, 3, 1, "", "CURRENT_LOCATION_OFF"], [33, 3, 1, "", "CURSOR_OFF"], [33, 3, 1, "", "CURSOR_TEXT"], [33, 3, 1, "", "CUT"], [33, 3, 1, "", "CYLINDER"], [33, 3, 1, "", "CYLINDER_OFF"], [33, 3, 1, "", "CYLINDER_PLUS"], [33, 3, 1, "", "DASHBOARD"], [33, 3, 1, "", "DASHBOARD_OFF"], [33, 3, 1, "", "DATABASE"], [33, 3, 1, "", "DATABASE_COG"], [33, 3, 1, "", "DATABASE_DOLLAR"], [33, 3, 1, "", "DATABASE_EDIT"], [33, 3, 1, "", "DATABASE_EXCLAMATION"], [33, 3, 1, "", "DATABASE_EXPORT"], [33, 3, 1, "", "DATABASE_HEART"], [33, 3, 1, "", "DATABASE_IMPORT"], [33, 3, 1, "", "DATABASE_LEAK"], [33, 3, 1, "", "DATABASE_MINUS"], [33, 3, 1, "", "DATABASE_OFF"], [33, 3, 1, "", "DATABASE_PLUS"], [33, 3, 1, "", "DATABASE_SEARCH"], [33, 3, 1, "", "DATABASE_SHARE"], [33, 3, 1, "", "DATABASE_STAR"], [33, 3, 1, "", "DATABASE_X"], [33, 3, 1, "", "DECIMAL"], [33, 3, 1, "", "DEER"], [33, 3, 1, "", "DELTA"], [33, 3, 1, "", "DENTAL"], [33, 3, 1, "", "DENTAL_BROKEN"], [33, 3, 1, "", "DENTAL_OFF"], [33, 3, 1, "", "DESELECT"], [33, 3, 1, "", "DETAILS"], [33, 3, 1, "", "DETAILS_OFF"], [33, 3, 1, "", "DEVICES"], [33, 3, 1, "", "DEVICES_2"], [33, 3, 1, "", "DEVICES_BOLT"], [33, 3, 1, "", "DEVICES_CANCEL"], [33, 3, 1, "", "DEVICES_CHECK"], [33, 3, 1, "", "DEVICES_CODE"], [33, 3, 1, "", "DEVICES_COG"], [33, 3, 1, "", "DEVICES_DOLLAR"], [33, 3, 1, "", "DEVICES_DOWN"], [33, 3, 1, "", "DEVICES_EXCLAMATION"], [33, 3, 1, "", "DEVICES_HEART"], [33, 3, 1, "", "DEVICES_MINUS"], [33, 3, 1, "", "DEVICES_OFF"], [33, 3, 1, "", "DEVICES_PAUSE"], [33, 3, 1, "", "DEVICES_PC"], [33, 3, 1, "", "DEVICES_PC_OFF"], [33, 3, 1, "", "DEVICES_PIN"], [33, 3, 1, "", "DEVICES_PLUS"], [33, 3, 1, "", "DEVICES_QUESTION"], [33, 3, 1, "", "DEVICES_SEARCH"], [33, 3, 1, "", "DEVICES_SHARE"], [33, 3, 1, "", "DEVICES_STAR"], [33, 3, 1, "", "DEVICES_UP"], [33, 3, 1, "", "DEVICES_X"], [33, 3, 1, "", "DEVICE_AIRPODS"], [33, 3, 1, "", "DEVICE_AIRPODS_CASE"], [33, 3, 1, "", "DEVICE_AIRTAG"], [33, 3, 1, "", "DEVICE_ANALYTICS"], [33, 3, 1, "", "DEVICE_AUDIO_TAPE"], [33, 3, 1, "", "DEVICE_CAMERA_PHONE"], [33, 3, 1, "", "DEVICE_CCTV"], [33, 3, 1, "", "DEVICE_CCTV_OFF"], [33, 3, 1, "", "DEVICE_COMPUTER_CAMERA"], [33, 3, 1, "", "DEVICE_COMPUTER_CAMERA_OFF"], [33, 3, 1, "", "DEVICE_DESKTOP"], [33, 3, 1, "", "DEVICE_DESKTOP_ANALYTICS"], [33, 3, 1, "", "DEVICE_DESKTOP_BOLT"], [33, 3, 1, "", "DEVICE_DESKTOP_CANCEL"], [33, 3, 1, "", "DEVICE_DESKTOP_CHECK"], [33, 3, 1, "", "DEVICE_DESKTOP_CODE"], [33, 3, 1, "", "DEVICE_DESKTOP_COG"], [33, 3, 1, "", "DEVICE_DESKTOP_DOLLAR"], [33, 3, 1, "", "DEVICE_DESKTOP_DOWN"], [33, 3, 1, "", "DEVICE_DESKTOP_EXCLAMATION"], [33, 3, 1, "", "DEVICE_DESKTOP_HEART"], [33, 3, 1, "", "DEVICE_DESKTOP_MINUS"], [33, 3, 1, "", "DEVICE_DESKTOP_OFF"], [33, 3, 1, "", "DEVICE_DESKTOP_PAUSE"], [33, 3, 1, "", "DEVICE_DESKTOP_PIN"], [33, 3, 1, "", "DEVICE_DESKTOP_PLUS"], [33, 3, 1, "", "DEVICE_DESKTOP_QUESTION"], [33, 3, 1, "", "DEVICE_DESKTOP_SEARCH"], [33, 3, 1, "", "DEVICE_DESKTOP_SHARE"], [33, 3, 1, "", "DEVICE_DESKTOP_STAR"], [33, 3, 1, "", "DEVICE_DESKTOP_UP"], [33, 3, 1, "", "DEVICE_DESKTOP_X"], [33, 3, 1, "", "DEVICE_FLOPPY"], [33, 3, 1, "", "DEVICE_GAMEPAD"], [33, 3, 1, "", "DEVICE_GAMEPAD_2"], [33, 3, 1, "", "DEVICE_HEART_MONITOR"], [33, 3, 1, "", "DEVICE_HEART_MONITOR_FILLED"], [33, 3, 1, "", "DEVICE_IMAC"], [33, 3, 1, "", "DEVICE_IMAC_BOLT"], [33, 3, 1, "", "DEVICE_IMAC_CANCEL"], [33, 3, 1, "", "DEVICE_IMAC_CHECK"], [33, 3, 1, "", "DEVICE_IMAC_CODE"], [33, 3, 1, "", "DEVICE_IMAC_COG"], [33, 3, 1, "", "DEVICE_IMAC_DOLLAR"], [33, 3, 1, "", "DEVICE_IMAC_DOWN"], [33, 3, 1, "", "DEVICE_IMAC_EXCLAMATION"], [33, 3, 1, "", "DEVICE_IMAC_HEART"], [33, 3, 1, "", "DEVICE_IMAC_MINUS"], [33, 3, 1, "", "DEVICE_IMAC_OFF"], [33, 3, 1, "", "DEVICE_IMAC_PAUSE"], [33, 3, 1, "", "DEVICE_IMAC_PIN"], [33, 3, 1, "", "DEVICE_IMAC_PLUS"], [33, 3, 1, "", "DEVICE_IMAC_QUESTION"], [33, 3, 1, "", "DEVICE_IMAC_SEARCH"], [33, 3, 1, "", "DEVICE_IMAC_SHARE"], [33, 3, 1, "", "DEVICE_IMAC_STAR"], [33, 3, 1, "", "DEVICE_IMAC_UP"], [33, 3, 1, "", "DEVICE_IMAC_X"], [33, 3, 1, "", "DEVICE_IPAD"], [33, 3, 1, "", "DEVICE_IPAD_BOLT"], [33, 3, 1, "", "DEVICE_IPAD_CANCEL"], [33, 3, 1, "", "DEVICE_IPAD_CHECK"], [33, 3, 1, "", "DEVICE_IPAD_CODE"], [33, 3, 1, "", "DEVICE_IPAD_COG"], [33, 3, 1, "", "DEVICE_IPAD_DOLLAR"], [33, 3, 1, "", "DEVICE_IPAD_DOWN"], [33, 3, 1, "", "DEVICE_IPAD_EXCLAMATION"], [33, 3, 1, "", "DEVICE_IPAD_HEART"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_BOLT"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CANCEL"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CHECK"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CODE"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_COG"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOLLAR"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOWN"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_EXCLAMATION"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_HEART"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_MINUS"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_OFF"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PAUSE"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PIN"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PLUS"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_QUESTION"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SEARCH"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SHARE"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_STAR"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_UP"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_X"], [33, 3, 1, "", "DEVICE_IPAD_MINUS"], [33, 3, 1, "", "DEVICE_IPAD_OFF"], [33, 3, 1, "", "DEVICE_IPAD_PAUSE"], [33, 3, 1, "", "DEVICE_IPAD_PIN"], [33, 3, 1, "", "DEVICE_IPAD_PLUS"], [33, 3, 1, "", "DEVICE_IPAD_QUESTION"], [33, 3, 1, "", "DEVICE_IPAD_SEARCH"], [33, 3, 1, "", "DEVICE_IPAD_SHARE"], [33, 3, 1, "", "DEVICE_IPAD_STAR"], [33, 3, 1, "", "DEVICE_IPAD_UP"], [33, 3, 1, "", "DEVICE_IPAD_X"], [33, 3, 1, "", "DEVICE_LANDLINE_PHONE"], [33, 3, 1, "", "DEVICE_LAPTOP"], [33, 3, 1, "", "DEVICE_LAPTOP_OFF"], [33, 3, 1, "", "DEVICE_MOBILE"], [33, 3, 1, "", "DEVICE_MOBILE_BOLT"], [33, 3, 1, "", "DEVICE_MOBILE_CANCEL"], [33, 3, 1, "", "DEVICE_MOBILE_CHARGING"], [33, 3, 1, "", "DEVICE_MOBILE_CHECK"], [33, 3, 1, "", "DEVICE_MOBILE_CODE"], [33, 3, 1, "", "DEVICE_MOBILE_COG"], [33, 3, 1, "", "DEVICE_MOBILE_DOLLAR"], [33, 3, 1, "", "DEVICE_MOBILE_DOWN"], [33, 3, 1, "", "DEVICE_MOBILE_EXCLAMATION"], [33, 3, 1, "", "DEVICE_MOBILE_FILLED"], [33, 3, 1, "", "DEVICE_MOBILE_HEART"], [33, 3, 1, "", "DEVICE_MOBILE_MESSAGE"], [33, 3, 1, "", "DEVICE_MOBILE_MINUS"], [33, 3, 1, "", "DEVICE_MOBILE_OFF"], [33, 3, 1, "", "DEVICE_MOBILE_PAUSE"], [33, 3, 1, "", "DEVICE_MOBILE_PIN"], [33, 3, 1, "", "DEVICE_MOBILE_PLUS"], [33, 3, 1, "", "DEVICE_MOBILE_QUESTION"], [33, 3, 1, "", "DEVICE_MOBILE_ROTATED"], [33, 3, 1, "", "DEVICE_MOBILE_SEARCH"], [33, 3, 1, "", "DEVICE_MOBILE_SHARE"], [33, 3, 1, "", "DEVICE_MOBILE_STAR"], [33, 3, 1, "", "DEVICE_MOBILE_UP"], [33, 3, 1, "", "DEVICE_MOBILE_VIBRATION"], [33, 3, 1, "", "DEVICE_MOBILE_X"], [33, 3, 1, "", "DEVICE_NINTENDO"], [33, 3, 1, "", "DEVICE_NINTENDO_OFF"], [33, 3, 1, "", "DEVICE_REMOTE"], [33, 3, 1, "", "DEVICE_SD_CARD"], [33, 3, 1, "", "DEVICE_SIM"], [33, 3, 1, "", "DEVICE_SIM_1"], [33, 3, 1, "", "DEVICE_SIM_2"], [33, 3, 1, "", "DEVICE_SIM_3"], [33, 3, 1, "", "DEVICE_SPEAKER"], [33, 3, 1, "", "DEVICE_SPEAKER_OFF"], [33, 3, 1, "", "DEVICE_TABLET"], [33, 3, 1, "", "DEVICE_TABLET_BOLT"], [33, 3, 1, "", "DEVICE_TABLET_CANCEL"], [33, 3, 1, "", "DEVICE_TABLET_CHECK"], [33, 3, 1, "", "DEVICE_TABLET_CODE"], [33, 3, 1, "", "DEVICE_TABLET_COG"], [33, 3, 1, "", "DEVICE_TABLET_DOLLAR"], [33, 3, 1, "", "DEVICE_TABLET_DOWN"], [33, 3, 1, "", "DEVICE_TABLET_EXCLAMATION"], [33, 3, 1, "", "DEVICE_TABLET_FILLED"], [33, 3, 1, "", "DEVICE_TABLET_HEART"], [33, 3, 1, "", "DEVICE_TABLET_MINUS"], [33, 3, 1, "", "DEVICE_TABLET_OFF"], [33, 3, 1, "", "DEVICE_TABLET_PAUSE"], [33, 3, 1, "", "DEVICE_TABLET_PIN"], [33, 3, 1, "", "DEVICE_TABLET_PLUS"], [33, 3, 1, "", "DEVICE_TABLET_QUESTION"], [33, 3, 1, "", "DEVICE_TABLET_SEARCH"], [33, 3, 1, "", "DEVICE_TABLET_SHARE"], [33, 3, 1, "", "DEVICE_TABLET_STAR"], [33, 3, 1, "", "DEVICE_TABLET_UP"], [33, 3, 1, "", "DEVICE_TABLET_X"], [33, 3, 1, "", "DEVICE_TV"], [33, 3, 1, "", "DEVICE_TV_OFF"], [33, 3, 1, "", "DEVICE_TV_OLD"], [33, 3, 1, "", "DEVICE_VISION_PRO"], [33, 3, 1, "", "DEVICE_WATCH"], [33, 3, 1, "", "DEVICE_WATCH_BOLT"], [33, 3, 1, "", "DEVICE_WATCH_CANCEL"], [33, 3, 1, "", "DEVICE_WATCH_CHECK"], [33, 3, 1, "", "DEVICE_WATCH_CODE"], [33, 3, 1, "", "DEVICE_WATCH_COG"], [33, 3, 1, "", "DEVICE_WATCH_DOLLAR"], [33, 3, 1, "", "DEVICE_WATCH_DOWN"], [33, 3, 1, "", "DEVICE_WATCH_EXCLAMATION"], [33, 3, 1, "", "DEVICE_WATCH_HEART"], [33, 3, 1, "", "DEVICE_WATCH_MINUS"], [33, 3, 1, "", "DEVICE_WATCH_OFF"], [33, 3, 1, "", "DEVICE_WATCH_PAUSE"], [33, 3, 1, "", "DEVICE_WATCH_PIN"], [33, 3, 1, "", "DEVICE_WATCH_PLUS"], [33, 3, 1, "", "DEVICE_WATCH_QUESTION"], [33, 3, 1, "", "DEVICE_WATCH_SEARCH"], [33, 3, 1, "", "DEVICE_WATCH_SHARE"], [33, 3, 1, "", "DEVICE_WATCH_STAR"], [33, 3, 1, "", "DEVICE_WATCH_STATS"], [33, 3, 1, "", "DEVICE_WATCH_STATS_2"], [33, 3, 1, "", "DEVICE_WATCH_UP"], [33, 3, 1, "", "DEVICE_WATCH_X"], [33, 3, 1, "", "DIABOLO"], [33, 3, 1, "", "DIABOLO_OFF"], [33, 3, 1, "", "DIABOLO_PLUS"], [33, 3, 1, "", "DIALPAD"], [33, 3, 1, "", "DIALPAD_FILLED"], [33, 3, 1, "", "DIALPAD_OFF"], [33, 3, 1, "", "DIAMOND"], [33, 3, 1, "", "DIAMONDS"], [33, 3, 1, "", "DIAMONDS_FILLED"], [33, 3, 1, "", "DIAMOND_FILLED"], [33, 3, 1, "", "DIAMOND_OFF"], [33, 3, 1, "", "DICE"], [33, 3, 1, "", "DICE_1"], [33, 3, 1, "", "DICE_1_FILLED"], [33, 3, 1, "", "DICE_2"], [33, 3, 1, "", "DICE_2_FILLED"], [33, 3, 1, "", "DICE_3"], [33, 3, 1, "", "DICE_3_FILLED"], [33, 3, 1, "", "DICE_4"], [33, 3, 1, "", "DICE_4_FILLED"], [33, 3, 1, "", "DICE_5"], [33, 3, 1, "", "DICE_5_FILLED"], [33, 3, 1, "", "DICE_6"], [33, 3, 1, "", "DICE_6_FILLED"], [33, 3, 1, "", "DICE_FILLED"], [33, 3, 1, "", "DIMENSIONS"], [33, 3, 1, "", "DIRECTION"], [33, 3, 1, "", "DIRECTIONS"], [33, 3, 1, "", "DIRECTIONS_OFF"], [33, 3, 1, "", "DIRECTION_HORIZONTAL"], [33, 3, 1, "", "DIRECTION_SIGN"], [33, 3, 1, "", "DIRECTION_SIGN_FILLED"], [33, 3, 1, "", "DIRECTION_SIGN_OFF"], [33, 3, 1, "", "DISABLED"], [33, 3, 1, "", "DISABLED_2"], [33, 3, 1, "", "DISABLED_OFF"], [33, 3, 1, "", "DISC"], [33, 3, 1, "", "DISCOUNT"], [33, 3, 1, "", "DISCOUNT_2"], [33, 3, 1, "", "DISCOUNT_2_OFF"], [33, 3, 1, "", "DISCOUNT_CHECK"], [33, 3, 1, "", "DISCOUNT_CHECK_FILLED"], [33, 3, 1, "", "DISCOUNT_OFF"], [33, 3, 1, "", "DISC_GOLF"], [33, 3, 1, "", "DISC_OFF"], [33, 3, 1, "", "DIVIDE"], [33, 3, 1, "", "DNA"], [33, 3, 1, "", "DNA_2"], [33, 3, 1, "", "DNA_2_OFF"], [33, 3, 1, "", "DNA_OFF"], [33, 3, 1, "", "DOG"], [33, 3, 1, "", "DOG_BOWL"], [33, 3, 1, "", "DOOR"], [33, 3, 1, "", "DOOR_ENTER"], [33, 3, 1, "", "DOOR_EXIT"], [33, 3, 1, "", "DOOR_OFF"], [33, 3, 1, "", "DOTS"], [33, 3, 1, "", "DOTS_CIRCLE_HORIZONTAL"], [33, 3, 1, "", "DOTS_DIAGONAL"], [33, 3, 1, "", "DOTS_DIAGONAL_2"], [33, 3, 1, "", "DOTS_VERTICAL"], [33, 3, 1, "", "DOWNLOAD"], [33, 3, 1, "", "DOWNLOAD_OFF"], [33, 3, 1, "", "DRAG_DROP"], [33, 3, 1, "", "DRAG_DROP_2"], [33, 3, 1, "", "DRONE"], [33, 3, 1, "", "DRONE_OFF"], [33, 3, 1, "", "DROPLET"], [33, 3, 1, "", "DROPLET_BOLT"], [33, 3, 1, "", "DROPLET_CANCEL"], [33, 3, 1, "", "DROPLET_CHECK"], [33, 3, 1, "", "DROPLET_CODE"], [33, 3, 1, "", "DROPLET_COG"], [33, 3, 1, "", "DROPLET_DOLLAR"], [33, 3, 1, "", "DROPLET_DOWN"], [33, 3, 1, "", "DROPLET_EXCLAMATION"], [33, 3, 1, "", "DROPLET_FILLED"], [33, 3, 1, "", "DROPLET_FILLED_2"], [33, 3, 1, "", "DROPLET_HALF"], [33, 3, 1, "", "DROPLET_HALF_2"], [33, 3, 1, "", "DROPLET_HALF_FILLED"], [33, 3, 1, "", "DROPLET_HEART"], [33, 3, 1, "", "DROPLET_MINUS"], [33, 3, 1, "", "DROPLET_OFF"], [33, 3, 1, "", "DROPLET_PAUSE"], [33, 3, 1, "", "DROPLET_PIN"], [33, 3, 1, "", "DROPLET_PLUS"], [33, 3, 1, "", "DROPLET_QUESTION"], [33, 3, 1, "", "DROPLET_SEARCH"], [33, 3, 1, "", "DROPLET_SHARE"], [33, 3, 1, "", "DROPLET_STAR"], [33, 3, 1, "", "DROPLET_UP"], [33, 3, 1, "", "DROPLET_X"], [33, 3, 1, "", "DROP_CIRCLE"], [33, 3, 1, "", "DUAL_SCREEN"], [33, 3, 1, "", "EAR"], [33, 3, 1, "", "EAR_OFF"], [33, 3, 1, "", "EASE_IN"], [33, 3, 1, "", "EASE_IN_CONTROL_POINT"], [33, 3, 1, "", "EASE_IN_OUT"], [33, 3, 1, "", "EASE_IN_OUT_CONTROL_POINTS"], [33, 3, 1, "", "EASE_OUT"], [33, 3, 1, "", "EASE_OUT_CONTROL_POINT"], [33, 3, 1, "", "EDIT"], [33, 3, 1, "", "EDIT_CIRCLE"], [33, 3, 1, "", "EDIT_CIRCLE_OFF"], [33, 3, 1, "", "EDIT_OFF"], [33, 3, 1, "", "EGG"], [33, 3, 1, "", "EGGS"], [33, 3, 1, "", "EGG_CRACKED"], [33, 3, 1, "", "EGG_FILLED"], [33, 3, 1, "", "EGG_FRIED"], [33, 3, 1, "", "EGG_OFF"], [33, 3, 1, "", "ELEVATOR"], [33, 3, 1, "", "ELEVATOR_OFF"], [33, 3, 1, "", "EMERGENCY_BED"], [33, 3, 1, "", "EMPATHIZE"], [33, 3, 1, "", "EMPATHIZE_OFF"], [33, 3, 1, "", "EMPHASIS"], [33, 3, 1, "", "ENGINE"], [33, 3, 1, "", "ENGINE_OFF"], [33, 3, 1, "", "EQUAL"], [33, 3, 1, "", "EQUAL_DOUBLE"], [33, 3, 1, "", "EQUAL_NOT"], [33, 3, 1, "", "ERASER"], [33, 3, 1, "", "ERASER_OFF"], [33, 3, 1, "", "ERROR_404"], [33, 3, 1, "", "ERROR_404_OFF"], [33, 3, 1, "", "EXCHANGE"], [33, 3, 1, "", "EXCHANGE_OFF"], [33, 3, 1, "", "EXCLAMATION_CIRCLE"], [33, 3, 1, "", "EXCLAMATION_MARK"], [33, 3, 1, "", "EXCLAMATION_MARK_OFF"], [33, 3, 1, "", "EXPLICIT"], [33, 3, 1, "", "EXPLICIT_OFF"], [33, 3, 1, "", "EXPOSURE"], [33, 3, 1, "", "EXPOSURE_0"], [33, 3, 1, "", "EXPOSURE_MINUS_1"], [33, 3, 1, "", "EXPOSURE_MINUS_2"], [33, 3, 1, "", "EXPOSURE_OFF"], [33, 3, 1, "", "EXPOSURE_PLUS_1"], [33, 3, 1, "", "EXPOSURE_PLUS_2"], [33, 3, 1, "", "EXTERNAL_LINK"], [33, 3, 1, "", "EXTERNAL_LINK_OFF"], [33, 3, 1, "", "EYE"], [33, 3, 1, "", "EYEGLASS"], [33, 3, 1, "", "EYEGLASS_2"], [33, 3, 1, "", "EYEGLASS_OFF"], [33, 3, 1, "", "EYE_CHECK"], [33, 3, 1, "", "EYE_CLOSED"], [33, 3, 1, "", "EYE_COG"], [33, 3, 1, "", "EYE_EDIT"], [33, 3, 1, "", "EYE_EXCLAMATION"], [33, 3, 1, "", "EYE_FILLED"], [33, 3, 1, "", "EYE_HEART"], [33, 3, 1, "", "EYE_OFF"], [33, 3, 1, "", "EYE_TABLE"], [33, 3, 1, "", "EYE_X"], [33, 3, 1, "", "E_PASSPORT"], [33, 3, 1, "", "FACE_ID"], [33, 3, 1, "", "FACE_ID_ERROR"], [33, 3, 1, "", "FACE_MASK"], [33, 3, 1, "", "FACE_MASK_OFF"], [33, 3, 1, "", "FALL"], [33, 3, 1, "", "FEATHER"], [33, 3, 1, "", "FEATHER_OFF"], [33, 3, 1, "", "FENCE"], [33, 3, 1, "", "FENCE_OFF"], [33, 3, 1, "", "FIDGET_SPINNER"], [33, 3, 1, "", "FILE"], [33, 3, 1, "", "FILES"], [33, 3, 1, "", "FILES_OFF"], [33, 3, 1, "", "FILE_3D"], [33, 3, 1, "", "FILE_ALERT"], [33, 3, 1, "", "FILE_ANALYTICS"], [33, 3, 1, "", "FILE_ARROW_LEFT"], [33, 3, 1, "", "FILE_ARROW_RIGHT"], [33, 3, 1, "", "FILE_BARCODE"], [33, 3, 1, "", "FILE_BROKEN"], [33, 3, 1, "", "FILE_CERTIFICATE"], [33, 3, 1, "", "FILE_CHART"], [33, 3, 1, "", "FILE_CHECK"], [33, 3, 1, "", "FILE_CODE"], [33, 3, 1, "", "FILE_CODE_2"], [33, 3, 1, "", "FILE_CV"], [33, 3, 1, "", "FILE_DATABASE"], [33, 3, 1, "", "FILE_DELTA"], [33, 3, 1, "", "FILE_DESCRIPTION"], [33, 3, 1, "", "FILE_DIFF"], [33, 3, 1, "", "FILE_DIGIT"], [33, 3, 1, "", "FILE_DISLIKE"], [33, 3, 1, "", "FILE_DOLLAR"], [33, 3, 1, "", "FILE_DOTS"], [33, 3, 1, "", "FILE_DOWNLOAD"], [33, 3, 1, "", "FILE_EURO"], [33, 3, 1, "", "FILE_EXPORT"], [33, 3, 1, "", "FILE_FILLED"], [33, 3, 1, "", "FILE_FUNCTION"], [33, 3, 1, "", "FILE_HORIZONTAL"], [33, 3, 1, "", "FILE_IMPORT"], [33, 3, 1, "", "FILE_INFINITY"], [33, 3, 1, "", "FILE_INFO"], [33, 3, 1, "", "FILE_INVOICE"], [33, 3, 1, "", "FILE_LAMBDA"], [33, 3, 1, "", "FILE_LIKE"], [33, 3, 1, "", "FILE_MINUS"], [33, 3, 1, "", "FILE_MUSIC"], [33, 3, 1, "", "FILE_OFF"], [33, 3, 1, "", "FILE_ORIENTATION"], [33, 3, 1, "", "FILE_PENCIL"], [33, 3, 1, "", "FILE_PERCENT"], [33, 3, 1, "", "FILE_PHONE"], [33, 3, 1, "", "FILE_PLUS"], [33, 3, 1, "", "FILE_POWER"], [33, 3, 1, "", "FILE_REPORT"], [33, 3, 1, "", "FILE_RSS"], [33, 3, 1, "", "FILE_SCISSORS"], [33, 3, 1, "", "FILE_SEARCH"], [33, 3, 1, "", "FILE_SETTINGS"], [33, 3, 1, "", "FILE_SHREDDER"], [33, 3, 1, "", "FILE_SIGNAL"], [33, 3, 1, "", "FILE_SPREADSHEET"], [33, 3, 1, "", "FILE_STACK"], [33, 3, 1, "", "FILE_STAR"], [33, 3, 1, "", "FILE_SYMLINK"], [33, 3, 1, "", "FILE_TEXT"], [33, 3, 1, "", "FILE_TEXT_AI"], [33, 3, 1, "", "FILE_TIME"], [33, 3, 1, "", "FILE_TYPOGRAPHY"], [33, 3, 1, "", "FILE_UNKNOWN"], [33, 3, 1, "", "FILE_UPLOAD"], [33, 3, 1, "", "FILE_VECTOR"], [33, 3, 1, "", "FILE_X"], [33, 3, 1, "", "FILE_X_FILLED"], [33, 3, 1, "", "FILE_ZIP"], [33, 3, 1, "", "FILTER"], [33, 3, 1, "", "FILTERS"], [33, 3, 1, "", "FILTER_COG"], [33, 3, 1, "", "FILTER_DOLLAR"], [33, 3, 1, "", "FILTER_EDIT"], [33, 3, 1, "", "FILTER_MINUS"], [33, 3, 1, "", "FILTER_OFF"], [33, 3, 1, "", "FILTER_PLUS"], [33, 3, 1, "", "FILTER_STAR"], [33, 3, 1, "", "FILTER_X"], [33, 3, 1, "", "FINGERPRINT"], [33, 3, 1, "", "FINGERPRINT_OFF"], [33, 3, 1, "", "FIRETRUCK"], [33, 3, 1, "", "FIRE_EXTINGUISHER"], [33, 3, 1, "", "FIRE_HYDRANT"], [33, 3, 1, "", "FIRE_HYDRANT_OFF"], [33, 3, 1, "", "FIRST_AID_KIT"], [33, 3, 1, "", "FIRST_AID_KIT_OFF"], [33, 3, 1, "", "FISH"], [33, 3, 1, "", "FISH_BONE"], [33, 3, 1, "", "FISH_CHRISTIANITY"], [33, 3, 1, "", "FISH_HOOK"], [33, 3, 1, "", "FISH_HOOK_OFF"], [33, 3, 1, "", "FISH_OFF"], [33, 3, 1, "", "FLAG"], [33, 3, 1, "", "FLAG_2"], [33, 3, 1, "", "FLAG_2_FILLED"], [33, 3, 1, "", "FLAG_2_OFF"], [33, 3, 1, "", "FLAG_3"], [33, 3, 1, "", "FLAG_3_FILLED"], [33, 3, 1, "", "FLAG_FILLED"], [33, 3, 1, "", "FLAG_OFF"], [33, 3, 1, "", "FLAME"], [33, 3, 1, "", "FLAME_OFF"], [33, 3, 1, "", "FLARE"], [33, 3, 1, "", "FLASK"], [33, 3, 1, "", "FLASK_2"], [33, 3, 1, "", "FLASK_2_OFF"], [33, 3, 1, "", "FLASK_OFF"], [33, 3, 1, "", "FLIP_FLOPS"], [33, 3, 1, "", "FLIP_HORIZONTAL"], [33, 3, 1, "", "FLIP_VERTICAL"], [33, 3, 1, "", "FLOAT_CENTER"], [33, 3, 1, "", "FLOAT_LEFT"], [33, 3, 1, "", "FLOAT_NONE"], [33, 3, 1, "", "FLOAT_RIGHT"], [33, 3, 1, "", "FLOWER"], [33, 3, 1, "", "FLOWER_OFF"], [33, 3, 1, "", "FOCUS"], [33, 3, 1, "", "FOCUS_2"], [33, 3, 1, "", "FOCUS_AUTO"], [33, 3, 1, "", "FOCUS_CENTERED"], [33, 3, 1, "", "FOLD"], [33, 3, 1, "", "FOLDER"], [33, 3, 1, "", "FOLDERS"], [33, 3, 1, "", "FOLDERS_OFF"], [33, 3, 1, "", "FOLDER_BOLT"], [33, 3, 1, "", "FOLDER_CANCEL"], [33, 3, 1, "", "FOLDER_CHECK"], [33, 3, 1, "", "FOLDER_CODE"], [33, 3, 1, "", "FOLDER_COG"], [33, 3, 1, "", "FOLDER_DOLLAR"], [33, 3, 1, "", "FOLDER_DOWN"], [33, 3, 1, "", "FOLDER_EXCLAMATION"], [33, 3, 1, "", "FOLDER_FILLED"], [33, 3, 1, "", "FOLDER_HEART"], [33, 3, 1, "", "FOLDER_MINUS"], [33, 3, 1, "", "FOLDER_OFF"], [33, 3, 1, "", "FOLDER_OPEN"], [33, 3, 1, "", "FOLDER_PAUSE"], [33, 3, 1, "", "FOLDER_PIN"], [33, 3, 1, "", "FOLDER_PLUS"], [33, 3, 1, "", "FOLDER_QUESTION"], [33, 3, 1, "", "FOLDER_SEARCH"], [33, 3, 1, "", "FOLDER_SHARE"], [33, 3, 1, "", "FOLDER_STAR"], [33, 3, 1, "", "FOLDER_SYMLINK"], [33, 3, 1, "", "FOLDER_UP"], [33, 3, 1, "", "FOLDER_X"], [33, 3, 1, "", "FOLD_DOWN"], [33, 3, 1, "", "FOLD_UP"], [33, 3, 1, "", "FORBID"], [33, 3, 1, "", "FORBID_2"], [33, 3, 1, "", "FORKLIFT"], [33, 3, 1, "", "FORMS"], [33, 3, 1, "", "FOUNTAIN"], [33, 3, 1, "", "FOUNTAIN_OFF"], [33, 3, 1, "", "FRAME"], [33, 3, 1, "", "FRAME_OFF"], [33, 3, 1, "", "FREEZE_COLUMN"], [33, 3, 1, "", "FREEZE_ROW"], [33, 3, 1, "", "FREEZE_ROW_COLUMN"], [33, 3, 1, "", "FREE_RIGHTS"], [33, 3, 1, "", "FRIDGE"], [33, 3, 1, "", "FRIDGE_OFF"], [33, 3, 1, "", "FRIENDS"], [33, 3, 1, "", "FRIENDS_OFF"], [33, 3, 1, "", "FRUSTUM"], [33, 3, 1, "", "FRUSTUM_OFF"], [33, 3, 1, "", "FRUSTUM_PLUS"], [33, 3, 1, "", "FUNCTION"], [33, 3, 1, "", "FUNCTION_OFF"], [33, 3, 1, "", "GARDEN_CART"], [33, 3, 1, "", "GARDEN_CART_OFF"], [33, 3, 1, "", "GAS_STATION"], [33, 3, 1, "", "GAS_STATION_OFF"], [33, 3, 1, "", "GAUGE"], [33, 3, 1, "", "GAUGE_OFF"], [33, 3, 1, "", "GAVEL"], [33, 3, 1, "", "GENDER_AGENDER"], [33, 3, 1, "", "GENDER_ANDROGYNE"], [33, 3, 1, "", "GENDER_BIGENDER"], [33, 3, 1, "", "GENDER_DEMIBOY"], [33, 3, 1, "", "GENDER_DEMIGIRL"], [33, 3, 1, "", "GENDER_EPICENE"], [33, 3, 1, "", "GENDER_FEMALE"], [33, 3, 1, "", "GENDER_FEMME"], [33, 3, 1, "", "GENDER_GENDERFLUID"], [33, 3, 1, "", "GENDER_GENDERLESS"], [33, 3, 1, "", "GENDER_GENDERQUEER"], [33, 3, 1, "", "GENDER_HERMAPHRODITE"], [33, 3, 1, "", "GENDER_INTERGENDER"], [33, 3, 1, "", "GENDER_MALE"], [33, 3, 1, "", "GENDER_NEUTROIS"], [33, 3, 1, "", "GENDER_THIRD"], [33, 3, 1, "", "GENDER_TRANSGENDER"], [33, 3, 1, "", "GENDER_TRASVESTI"], [33, 3, 1, "", "GEOMETRY"], [33, 3, 1, "", "GHOST"], [33, 3, 1, "", "GHOST_2"], [33, 3, 1, "", "GHOST_2_FILLED"], [33, 3, 1, "", "GHOST_FILLED"], [33, 3, 1, "", "GHOST_OFF"], [33, 3, 1, "", "GIF"], [33, 3, 1, "", "GIFT"], [33, 3, 1, "", "GIFT_CARD"], [33, 3, 1, "", "GIFT_OFF"], [33, 3, 1, "", "GIT_BRANCH"], [33, 3, 1, "", "GIT_BRANCH_DELETED"], [33, 3, 1, "", "GIT_CHERRY_PICK"], [33, 3, 1, "", "GIT_COMMIT"], [33, 3, 1, "", "GIT_COMPARE"], [33, 3, 1, "", "GIT_FORK"], [33, 3, 1, "", "GIT_MERGE"], [33, 3, 1, "", "GIT_PULL_REQUEST"], [33, 3, 1, "", "GIT_PULL_REQUEST_CLOSED"], [33, 3, 1, "", "GIT_PULL_REQUEST_DRAFT"], [33, 3, 1, "", "GIZMO"], [33, 3, 1, "", "GLASS"], [33, 3, 1, "", "GLASS_FULL"], [33, 3, 1, "", "GLASS_OFF"], [33, 3, 1, "", "GLOBE"], [33, 3, 1, "", "GLOBE_OFF"], [33, 3, 1, "", "GOLF"], [33, 3, 1, "", "GOLF_OFF"], [33, 3, 1, "", "GO_GAME"], [33, 3, 1, "", "GPS"], [33, 3, 1, "", "GRADIENTER"], [33, 3, 1, "", "GRAIN"], [33, 3, 1, "", "GRAPH"], [33, 3, 1, "", "GRAPH_OFF"], [33, 3, 1, "", "GRAVE"], [33, 3, 1, "", "GRAVE_2"], [33, 3, 1, "", "GRID_DOTS"], [33, 3, 1, "", "GRID_PATTERN"], [33, 3, 1, "", "GRILL"], [33, 3, 1, "", "GRILL_FORK"], [33, 3, 1, "", "GRILL_OFF"], [33, 3, 1, "", "GRILL_SPATULA"], [33, 3, 1, "", "GRIP_HORIZONTAL"], [33, 3, 1, "", "GRIP_VERTICAL"], [33, 3, 1, "", "GROWTH"], [33, 3, 1, "", "GUITAR_PICK"], [33, 3, 1, "", "GUITAR_PICK_FILLED"], [33, 3, 1, "", "HAMMER"], [33, 3, 1, "", "HAMMER_OFF"], [33, 3, 1, "", "HAND_CLICK"], [33, 3, 1, "", "HAND_FINGER"], [33, 3, 1, "", "HAND_FINGER_OFF"], [33, 3, 1, "", "HAND_GRAB"], [33, 3, 1, "", "HAND_LITTLE_FINGER"], [33, 3, 1, "", "HAND_MIDDLE_FINGER"], [33, 3, 1, "", "HAND_MOVE"], [33, 3, 1, "", "HAND_OFF"], [33, 3, 1, "", "HAND_RING_FINGER"], [33, 3, 1, "", "HAND_ROCK"], [33, 3, 1, "", "HAND_SANITIZER"], [33, 3, 1, "", "HAND_STOP"], [33, 3, 1, "", "HAND_THREE_FINGERS"], [33, 3, 1, "", "HAND_TWO_FINGERS"], [33, 3, 1, "", "HANGER"], [33, 3, 1, "", "HANGER_2"], [33, 3, 1, "", "HANGER_OFF"], [33, 3, 1, "", "HASH"], [33, 3, 1, "", "HAZE"], [33, 3, 1, "", "HAZE_MOON"], [33, 3, 1, "", "HDR"], [33, 3, 1, "", "HEADING"], [33, 3, 1, "", "HEADING_OFF"], [33, 3, 1, "", "HEADPHONES"], [33, 3, 1, "", "HEADPHONES_FILLED"], [33, 3, 1, "", "HEADPHONES_OFF"], [33, 3, 1, "", "HEADSET"], [33, 3, 1, "", "HEADSET_OFF"], [33, 3, 1, "", "HEALTH_RECOGNITION"], [33, 3, 1, "", "HEART"], [33, 3, 1, "", "HEARTBEAT"], [33, 3, 1, "", "HEARTS"], [33, 3, 1, "", "HEARTS_OFF"], [33, 3, 1, "", "HEART_BROKEN"], [33, 3, 1, "", "HEART_FILLED"], [33, 3, 1, "", "HEART_HANDSHAKE"], [33, 3, 1, "", "HEART_MINUS"], [33, 3, 1, "", "HEART_OFF"], [33, 3, 1, "", "HEART_PLUS"], [33, 3, 1, "", "HEART_RATE_MONITOR"], [33, 3, 1, "", "HELICOPTER"], [33, 3, 1, "", "HELICOPTER_LANDING"], [33, 3, 1, "", "HELMET"], [33, 3, 1, "", "HELMET_OFF"], [33, 3, 1, "", "HELP"], [33, 3, 1, "", "HELP_CIRCLE"], [33, 3, 1, "", "HELP_CIRCLE_FILLED"], [33, 3, 1, "", "HELP_HEXAGON"], [33, 3, 1, "", "HELP_HEXAGON_FILLED"], [33, 3, 1, "", "HELP_OCTAGON"], [33, 3, 1, "", "HELP_OCTAGON_FILLED"], [33, 3, 1, "", "HELP_OFF"], [33, 3, 1, "", "HELP_SMALL"], [33, 3, 1, "", "HELP_SQUARE"], [33, 3, 1, "", "HELP_SQUARE_FILLED"], [33, 3, 1, "", "HELP_SQUARE_ROUNDED"], [33, 3, 1, "", "HELP_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "HELP_TRIANGLE"], [33, 3, 1, "", "HELP_TRIANGLE_FILLED"], [33, 3, 1, "", "HEMISPHERE"], [33, 3, 1, "", "HEMISPHERE_OFF"], [33, 3, 1, "", "HEMISPHERE_PLUS"], [33, 3, 1, "", "HEXAGON"], [33, 3, 1, "", "HEXAGONAL_PRISM"], [33, 3, 1, "", "HEXAGONAL_PRISM_OFF"], [33, 3, 1, "", "HEXAGONAL_PRISM_PLUS"], [33, 3, 1, "", "HEXAGONAL_PYRAMID"], [33, 3, 1, "", "HEXAGONAL_PYRAMID_OFF"], [33, 3, 1, "", "HEXAGONAL_PYRAMID_PLUS"], [33, 3, 1, "", "HEXAGONS"], [33, 3, 1, "", "HEXAGONS_OFF"], [33, 3, 1, "", "HEXAGON_0_FILLED"], [33, 3, 1, "", "HEXAGON_1_FILLED"], [33, 3, 1, "", "HEXAGON_2_FILLED"], [33, 3, 1, "", "HEXAGON_3D"], [33, 3, 1, "", "HEXAGON_3_FILLED"], [33, 3, 1, "", "HEXAGON_4_FILLED"], [33, 3, 1, "", "HEXAGON_5_FILLED"], [33, 3, 1, "", "HEXAGON_6_FILLED"], [33, 3, 1, "", "HEXAGON_7_FILLED"], [33, 3, 1, "", "HEXAGON_8_FILLED"], [33, 3, 1, "", "HEXAGON_9_FILLED"], [33, 3, 1, "", "HEXAGON_FILLED"], [33, 3, 1, "", "HEXAGON_LETTER_A"], [33, 3, 1, "", "HEXAGON_LETTER_B"], [33, 3, 1, "", "HEXAGON_LETTER_C"], [33, 3, 1, "", "HEXAGON_LETTER_D"], [33, 3, 1, "", "HEXAGON_LETTER_E"], [33, 3, 1, "", "HEXAGON_LETTER_F"], [33, 3, 1, "", "HEXAGON_LETTER_G"], [33, 3, 1, "", "HEXAGON_LETTER_H"], [33, 3, 1, "", "HEXAGON_LETTER_I"], [33, 3, 1, "", "HEXAGON_LETTER_J"], [33, 3, 1, "", "HEXAGON_LETTER_K"], [33, 3, 1, "", "HEXAGON_LETTER_L"], [33, 3, 1, "", "HEXAGON_LETTER_M"], [33, 3, 1, "", "HEXAGON_LETTER_N"], [33, 3, 1, "", "HEXAGON_LETTER_O"], [33, 3, 1, "", "HEXAGON_LETTER_P"], [33, 3, 1, "", "HEXAGON_LETTER_Q"], [33, 3, 1, "", "HEXAGON_LETTER_R"], [33, 3, 1, "", "HEXAGON_LETTER_S"], [33, 3, 1, "", "HEXAGON_LETTER_T"], [33, 3, 1, "", "HEXAGON_LETTER_U"], [33, 3, 1, "", "HEXAGON_LETTER_V"], [33, 3, 1, "", "HEXAGON_LETTER_W"], [33, 3, 1, "", "HEXAGON_LETTER_X"], [33, 3, 1, "", "HEXAGON_LETTER_Y"], [33, 3, 1, "", "HEXAGON_LETTER_Z"], [33, 3, 1, "", "HEXAGON_NUMBER_0"], [33, 3, 1, "", "HEXAGON_NUMBER_1"], [33, 3, 1, "", "HEXAGON_NUMBER_2"], [33, 3, 1, "", "HEXAGON_NUMBER_3"], [33, 3, 1, "", "HEXAGON_NUMBER_4"], [33, 3, 1, "", "HEXAGON_NUMBER_5"], [33, 3, 1, "", "HEXAGON_NUMBER_6"], [33, 3, 1, "", "HEXAGON_NUMBER_7"], [33, 3, 1, "", "HEXAGON_NUMBER_8"], [33, 3, 1, "", "HEXAGON_NUMBER_9"], [33, 3, 1, "", "HEXAGON_OFF"], [33, 3, 1, "", "HIERARCHY"], [33, 3, 1, "", "HIERARCHY_2"], [33, 3, 1, "", "HIERARCHY_3"], [33, 3, 1, "", "HIERARCHY_OFF"], [33, 3, 1, "", "HIGHLIGHT"], [33, 3, 1, "", "HIGHLIGHT_OFF"], [33, 3, 1, "", "HISTORY"], [33, 3, 1, "", "HISTORY_OFF"], [33, 3, 1, "", "HISTORY_TOGGLE"], [33, 3, 1, "", "HOME"], [33, 3, 1, "", "HOME_2"], [33, 3, 1, "", "HOME_BOLT"], [33, 3, 1, "", "HOME_CANCEL"], [33, 3, 1, "", "HOME_CHECK"], [33, 3, 1, "", "HOME_COG"], [33, 3, 1, "", "HOME_DOLLAR"], [33, 3, 1, "", "HOME_DOT"], [33, 3, 1, "", "HOME_DOWN"], [33, 3, 1, "", "HOME_ECO"], [33, 3, 1, "", "HOME_EDIT"], [33, 3, 1, "", "HOME_EXCLAMATION"], [33, 3, 1, "", "HOME_HAND"], [33, 3, 1, "", "HOME_HEART"], [33, 3, 1, "", "HOME_INFINITY"], [33, 3, 1, "", "HOME_LINK"], [33, 3, 1, "", "HOME_MINUS"], [33, 3, 1, "", "HOME_MOVE"], [33, 3, 1, "", "HOME_OFF"], [33, 3, 1, "", "HOME_PLUS"], [33, 3, 1, "", "HOME_QUESTION"], [33, 3, 1, "", "HOME_RIBBON"], [33, 3, 1, "", "HOME_SEARCH"], [33, 3, 1, "", "HOME_SHARE"], [33, 3, 1, "", "HOME_SHIELD"], [33, 3, 1, "", "HOME_SIGNAL"], [33, 3, 1, "", "HOME_STAR"], [33, 3, 1, "", "HOME_STATS"], [33, 3, 1, "", "HOME_UP"], [33, 3, 1, "", "HOME_X"], [33, 3, 1, "", "HORSE_TOY"], [33, 3, 1, "", "HOTEL_SERVICE"], [33, 3, 1, "", "HOURGLASS"], [33, 3, 1, "", "HOURGLASS_EMPTY"], [33, 3, 1, "", "HOURGLASS_FILLED"], [33, 3, 1, "", "HOURGLASS_HIGH"], [33, 3, 1, "", "HOURGLASS_LOW"], [33, 3, 1, "", "HOURGLASS_OFF"], [33, 3, 1, "", "HTML"], [33, 3, 1, "", "HTTP_CONNECT"], [33, 3, 1, "", "HTTP_DELETE"], [33, 3, 1, "", "HTTP_GET"], [33, 3, 1, "", "HTTP_HEAD"], [33, 3, 1, "", "HTTP_OPTIONS"], [33, 3, 1, "", "HTTP_PATCH"], [33, 3, 1, "", "HTTP_POST"], [33, 3, 1, "", "HTTP_PUT"], [33, 3, 1, "", "HTTP_QUE"], [33, 3, 1, "", "HTTP_TRACE"], [33, 3, 1, "", "H_1"], [33, 3, 1, "", "H_2"], [33, 3, 1, "", "H_3"], [33, 3, 1, "", "H_4"], [33, 3, 1, "", "H_5"], [33, 3, 1, "", "H_6"], [33, 3, 1, "", "ICE_CREAM"], [33, 3, 1, "", "ICE_CREAM_2"], [33, 3, 1, "", "ICE_CREAM_OFF"], [33, 3, 1, "", "ICE_SKATING"], [33, 3, 1, "", "ICONS"], [33, 3, 1, "", "ICONS_OFF"], [33, 3, 1, "", "ICON_123"], [33, 3, 1, "", "ICON_24_HOURS"], [33, 3, 1, "", "ICON_2FA"], [33, 3, 1, "", "ICON_360"], [33, 3, 1, "", "ICON_360_VIEW"], [33, 3, 1, "", "ICON_3D_CUBE_SPHERE"], [33, 3, 1, "", "ICON_3D_CUBE_SPHERE_OFF"], [33, 3, 1, "", "ICON_3D_ROTATE"], [33, 3, 1, "", "ID"], [33, 3, 1, "", "ID_BADGE"], [33, 3, 1, "", "ID_BADGE_2"], [33, 3, 1, "", "ID_BADGE_OFF"], [33, 3, 1, "", "ID_OFF"], [33, 3, 1, "", "INBOX"], [33, 3, 1, "", "INBOX_OFF"], [33, 3, 1, "", "INDENT_DECREASE"], [33, 3, 1, "", "INDENT_INCREASE"], [33, 3, 1, "", "INFINITY"], [33, 3, 1, "", "INFINITY_OFF"], [33, 3, 1, "", "INFO_CIRCLE"], [33, 3, 1, "", "INFO_CIRCLE_FILLED"], [33, 3, 1, "", "INFO_HEXAGON"], [33, 3, 1, "", "INFO_HEXAGON_FILLED"], [33, 3, 1, "", "INFO_OCTAGON"], [33, 3, 1, "", "INFO_OCTAGON_FILLED"], [33, 3, 1, "", "INFO_SMALL"], [33, 3, 1, "", "INFO_SQUARE"], [33, 3, 1, "", "INFO_SQUARE_FILLED"], [33, 3, 1, "", "INFO_SQUARE_ROUNDED"], [33, 3, 1, "", "INFO_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "INFO_TRIANGLE"], [33, 3, 1, "", "INFO_TRIANGLE_FILLED"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_FILLED"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_LEFT"], [33, 3, 1, "", "INNER_SHADOW_LEFT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_RIGHT"], [33, 3, 1, "", "INNER_SHADOW_RIGHT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_TOP"], [33, 3, 1, "", "INNER_SHADOW_TOP_FILLED"], [33, 3, 1, "", "INNER_SHADOW_TOP_LEFT"], [33, 3, 1, "", "INNER_SHADOW_TOP_LEFT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_TOP_RIGHT"], [33, 3, 1, "", "INNER_SHADOW_TOP_RIGHT_FILLED"], [33, 3, 1, "", "INPUT_SEARCH"], [33, 3, 1, "", "IRONING"], [33, 3, 1, "", "IRONING_1"], [33, 3, 1, "", "IRONING_2"], [33, 3, 1, "", "IRONING_3"], [33, 3, 1, "", "IRONING_OFF"], [33, 3, 1, "", "IRONING_STEAM"], [33, 3, 1, "", "IRONING_STEAM_OFF"], [33, 3, 1, "", "IRREGULAR_POLYHEDRON"], [33, 3, 1, "", "IRREGULAR_POLYHEDRON_OFF"], [33, 3, 1, "", "IRREGULAR_POLYHEDRON_PLUS"], [33, 3, 1, "", "ITALIC"], [33, 3, 1, "", "JACKET"], [33, 3, 1, "", "JETPACK"], [33, 3, 1, "", "JEWISH_STAR"], [33, 3, 1, "", "JEWISH_STAR_FILLED"], [33, 3, 1, "", "JPG"], [33, 3, 1, "", "JSON"], [33, 3, 1, "", "JUMP_ROPE"], [33, 3, 1, "", "KARATE"], [33, 3, 1, "", "KAYAK"], [33, 3, 1, "", "KERING"], [33, 3, 1, "", "KEY"], [33, 3, 1, "", "KEYBOARD"], [33, 3, 1, "", "KEYBOARD_HIDE"], [33, 3, 1, "", "KEYBOARD_OFF"], [33, 3, 1, "", "KEYBOARD_SHOW"], [33, 3, 1, "", "KEYFRAME"], [33, 3, 1, "", "KEYFRAMES"], [33, 3, 1, "", "KEYFRAME_ALIGN_CENTER"], [33, 3, 1, "", "KEYFRAME_ALIGN_HORIZONTAL"], [33, 3, 1, "", "KEYFRAME_ALIGN_VERTICAL"], [33, 3, 1, "", "KEY_OFF"], [33, 3, 1, "", "LADDER"], [33, 3, 1, "", "LADDER_OFF"], [33, 3, 1, "", "LAMBDA"], [33, 3, 1, "", "LAMP"], [33, 3, 1, "", "LAMP_2"], [33, 3, 1, "", "LAMP_OFF"], [33, 3, 1, "", "LANE"], [33, 3, 1, "", "LANGUAGE"], [33, 3, 1, "", "LANGUAGE_HIRAGANA"], [33, 3, 1, "", "LANGUAGE_KATAKANA"], [33, 3, 1, "", "LANGUAGE_OFF"], [33, 3, 1, "", "LASSO"], [33, 3, 1, "", "LASSO_OFF"], [33, 3, 1, "", "LASSO_POLYGON"], [33, 3, 1, "", "LAYERS_DIFFERENCE"], [33, 3, 1, "", "LAYERS_INTERSECT"], [33, 3, 1, "", "LAYERS_INTERSECT_2"], [33, 3, 1, "", "LAYERS_LINKED"], [33, 3, 1, "", "LAYERS_OFF"], [33, 3, 1, "", "LAYERS_SUBTRACT"], [33, 3, 1, "", "LAYERS_UNION"], [33, 3, 1, "", "LAYOUT"], [33, 3, 1, "", "LAYOUT_2"], [33, 3, 1, "", "LAYOUT_ALIGN_BOTTOM"], [33, 3, 1, "", "LAYOUT_ALIGN_CENTER"], [33, 3, 1, "", "LAYOUT_ALIGN_LEFT"], [33, 3, 1, "", "LAYOUT_ALIGN_MIDDLE"], [33, 3, 1, "", "LAYOUT_ALIGN_RIGHT"], [33, 3, 1, "", "LAYOUT_ALIGN_TOP"], [33, 3, 1, "", "LAYOUT_BOARD"], [33, 3, 1, "", "LAYOUT_BOARD_SPLIT"], [33, 3, 1, "", "LAYOUT_BOTTOMBAR"], [33, 3, 1, "", "LAYOUT_BOTTOMBAR_COLLAPSE"], [33, 3, 1, "", "LAYOUT_BOTTOMBAR_EXPAND"], [33, 3, 1, "", "LAYOUT_CARDS"], [33, 3, 1, "", "LAYOUT_COLLAGE"], [33, 3, 1, "", "LAYOUT_COLUMNS"], [33, 3, 1, "", "LAYOUT_DASHBOARD"], [33, 3, 1, "", "LAYOUT_DISTRIBUTE_HORIZONTAL"], [33, 3, 1, "", "LAYOUT_DISTRIBUTE_VERTICAL"], [33, 3, 1, "", "LAYOUT_GRID"], [33, 3, 1, "", "LAYOUT_GRID_ADD"], [33, 3, 1, "", "LAYOUT_GRID_REMOVE"], [33, 3, 1, "", "LAYOUT_KANBAN"], [33, 3, 1, "", "LAYOUT_LIST"], [33, 3, 1, "", "LAYOUT_NAVBAR"], [33, 3, 1, "", "LAYOUT_NAVBAR_COLLAPSE"], [33, 3, 1, "", "LAYOUT_NAVBAR_EXPAND"], [33, 3, 1, "", "LAYOUT_OFF"], [33, 3, 1, "", "LAYOUT_ROWS"], [33, 3, 1, "", "LAYOUT_SIDEBAR"], [33, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_COLLAPSE"], [33, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_EXPAND"], [33, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT"], [33, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_COLLAPSE"], [33, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_EXPAND"], [33, 3, 1, "", "LEAF"], [33, 3, 1, "", "LEAF_OFF"], [33, 3, 1, "", "LEGO"], [33, 3, 1, "", "LEGO_OFF"], [33, 3, 1, "", "LEMON"], [33, 3, 1, "", "LEMON_2"], [33, 3, 1, "", "LETTER_A"], [33, 3, 1, "", "LETTER_B"], [33, 3, 1, "", "LETTER_C"], [33, 3, 1, "", "LETTER_CASE"], [33, 3, 1, "", "LETTER_CASE_LOWER"], [33, 3, 1, "", "LETTER_CASE_TOGGLE"], [33, 3, 1, "", "LETTER_CASE_UPPER"], [33, 3, 1, "", "LETTER_D"], [33, 3, 1, "", "LETTER_E"], [33, 3, 1, "", "LETTER_F"], [33, 3, 1, "", "LETTER_G"], [33, 3, 1, "", "LETTER_H"], [33, 3, 1, "", "LETTER_I"], [33, 3, 1, "", "LETTER_J"], [33, 3, 1, "", "LETTER_K"], [33, 3, 1, "", "LETTER_L"], [33, 3, 1, "", "LETTER_M"], [33, 3, 1, "", "LETTER_N"], [33, 3, 1, "", "LETTER_O"], [33, 3, 1, "", "LETTER_P"], [33, 3, 1, "", "LETTER_Q"], [33, 3, 1, "", "LETTER_R"], [33, 3, 1, "", "LETTER_S"], [33, 3, 1, "", "LETTER_SPACING"], [33, 3, 1, "", "LETTER_T"], [33, 3, 1, "", "LETTER_U"], [33, 3, 1, "", "LETTER_V"], [33, 3, 1, "", "LETTER_W"], [33, 3, 1, "", "LETTER_X"], [33, 3, 1, "", "LETTER_Y"], [33, 3, 1, "", "LETTER_Z"], [33, 3, 1, "", "LICENSE"], [33, 3, 1, "", "LICENSE_OFF"], [33, 3, 1, "", "LIFEBUOY"], [33, 3, 1, "", "LIFEBUOY_OFF"], [33, 3, 1, "", "LIGHTER"], [33, 3, 1, "", "LINE"], [33, 3, 1, "", "LINE_DASHED"], [33, 3, 1, "", "LINE_DOTTED"], [33, 3, 1, "", "LINE_HEIGHT"], [33, 3, 1, "", "LINK"], [33, 3, 1, "", "LINK_OFF"], [33, 3, 1, "", "LIST"], [33, 3, 1, "", "LIST_CHECK"], [33, 3, 1, "", "LIST_DETAILS"], [33, 3, 1, "", "LIST_NUMBERS"], [33, 3, 1, "", "LIST_SEARCH"], [33, 3, 1, "", "LIST_TREE"], [33, 3, 1, "", "LIVE_PHOTO"], [33, 3, 1, "", "LIVE_PHOTO_OFF"], [33, 3, 1, "", "LIVE_VIEW"], [33, 3, 1, "", "LOADER"], [33, 3, 1, "", "LOADER_2"], [33, 3, 1, "", "LOADER_3"], [33, 3, 1, "", "LOADER_QUARTER"], [33, 3, 1, "", "LOAD_BALANCER"], [33, 3, 1, "", "LOCATION"], [33, 3, 1, "", "LOCATION_BROKEN"], [33, 3, 1, "", "LOCATION_FILLED"], [33, 3, 1, "", "LOCATION_OFF"], [33, 3, 1, "", "LOCK"], [33, 3, 1, "", "LOCK_ACCESS"], [33, 3, 1, "", "LOCK_ACCESS_OFF"], [33, 3, 1, "", "LOCK_BOLT"], [33, 3, 1, "", "LOCK_CANCEL"], [33, 3, 1, "", "LOCK_CHECK"], [33, 3, 1, "", "LOCK_CODE"], [33, 3, 1, "", "LOCK_COG"], [33, 3, 1, "", "LOCK_DOLLAR"], [33, 3, 1, "", "LOCK_DOWN"], [33, 3, 1, "", "LOCK_EXCLAMATION"], [33, 3, 1, "", "LOCK_HEART"], [33, 3, 1, "", "LOCK_MINUS"], [33, 3, 1, "", "LOCK_OFF"], [33, 3, 1, "", "LOCK_OPEN"], [33, 3, 1, "", "LOCK_OPEN_OFF"], [33, 3, 1, "", "LOCK_PAUSE"], [33, 3, 1, "", "LOCK_PIN"], [33, 3, 1, "", "LOCK_PLUS"], [33, 3, 1, "", "LOCK_QUESTION"], [33, 3, 1, "", "LOCK_SEARCH"], [33, 3, 1, "", "LOCK_SHARE"], [33, 3, 1, "", "LOCK_SQUARE"], [33, 3, 1, "", "LOCK_SQUARE_ROUNDED"], [33, 3, 1, "", "LOCK_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "LOCK_STAR"], [33, 3, 1, "", "LOCK_UP"], [33, 3, 1, "", "LOCK_X"], [33, 3, 1, "", "LOGIC_AND"], [33, 3, 1, "", "LOGIC_BUFFER"], [33, 3, 1, "", "LOGIC_NAND"], [33, 3, 1, "", "LOGIC_NOR"], [33, 3, 1, "", "LOGIC_NOT"], [33, 3, 1, "", "LOGIC_OR"], [33, 3, 1, "", "LOGIC_XNOR"], [33, 3, 1, "", "LOGIC_XOR"], [33, 3, 1, "", "LOGIN"], [33, 3, 1, "", "LOGOUT"], [33, 3, 1, "", "LOGOUT_2"], [33, 3, 1, "", "LOLLIPOP"], [33, 3, 1, "", "LOLLIPOP_OFF"], [33, 3, 1, "", "LUGGAGE"], [33, 3, 1, "", "LUGGAGE_OFF"], [33, 3, 1, "", "LUNGS"], [33, 3, 1, "", "LUNGS_OFF"], [33, 3, 1, "", "MACRO"], [33, 3, 1, "", "MACRO_OFF"], [33, 3, 1, "", "MAGNET"], [33, 3, 1, "", "MAGNET_OFF"], [33, 3, 1, "", "MAIL"], [33, 3, 1, "", "MAILBOX"], [33, 3, 1, "", "MAILBOX_OFF"], [33, 3, 1, "", "MAIL_AI"], [33, 3, 1, "", "MAIL_BOLT"], [33, 3, 1, "", "MAIL_CANCEL"], [33, 3, 1, "", "MAIL_CHECK"], [33, 3, 1, "", "MAIL_CODE"], [33, 3, 1, "", "MAIL_COG"], [33, 3, 1, "", "MAIL_DOLLAR"], [33, 3, 1, "", "MAIL_DOWN"], [33, 3, 1, "", "MAIL_EXCLAMATION"], [33, 3, 1, "", "MAIL_FAST"], [33, 3, 1, "", "MAIL_FILLED"], [33, 3, 1, "", "MAIL_FORWARD"], [33, 3, 1, "", "MAIL_HEART"], [33, 3, 1, "", "MAIL_MINUS"], [33, 3, 1, "", "MAIL_OFF"], [33, 3, 1, "", "MAIL_OPENED"], [33, 3, 1, "", "MAIL_OPENED_FILLED"], [33, 3, 1, "", "MAIL_PAUSE"], [33, 3, 1, "", "MAIL_PIN"], [33, 3, 1, "", "MAIL_PLUS"], [33, 3, 1, "", "MAIL_QUESTION"], [33, 3, 1, "", "MAIL_SEARCH"], [33, 3, 1, "", "MAIL_SHARE"], [33, 3, 1, "", "MAIL_STAR"], [33, 3, 1, "", "MAIL_UP"], [33, 3, 1, "", "MAIL_X"], [33, 3, 1, "", "MAN"], [33, 3, 1, "", "MANUAL_GEARBOX"], [33, 3, 1, "", "MAP"], [33, 3, 1, "", "MAP_2"], [33, 3, 1, "", "MAP_OFF"], [33, 3, 1, "", "MAP_PIN"], [33, 3, 1, "", "MAP_PINS"], [33, 3, 1, "", "MAP_PIN_BOLT"], [33, 3, 1, "", "MAP_PIN_CANCEL"], [33, 3, 1, "", "MAP_PIN_CHECK"], [33, 3, 1, "", "MAP_PIN_CODE"], [33, 3, 1, "", "MAP_PIN_COG"], [33, 3, 1, "", "MAP_PIN_DOLLAR"], [33, 3, 1, "", "MAP_PIN_DOWN"], [33, 3, 1, "", "MAP_PIN_EXCLAMATION"], [33, 3, 1, "", "MAP_PIN_FILLED"], [33, 3, 1, "", "MAP_PIN_HEART"], [33, 3, 1, "", "MAP_PIN_MINUS"], [33, 3, 1, "", "MAP_PIN_OFF"], [33, 3, 1, "", "MAP_PIN_PAUSE"], [33, 3, 1, "", "MAP_PIN_PIN"], [33, 3, 1, "", "MAP_PIN_PLUS"], [33, 3, 1, "", "MAP_PIN_QUESTION"], [33, 3, 1, "", "MAP_PIN_SEARCH"], [33, 3, 1, "", "MAP_PIN_SHARE"], [33, 3, 1, "", "MAP_PIN_STAR"], [33, 3, 1, "", "MAP_PIN_UP"], [33, 3, 1, "", "MAP_PIN_X"], [33, 3, 1, "", "MAP_SEARCH"], [33, 3, 1, "", "MARKDOWN"], [33, 3, 1, "", "MARKDOWN_OFF"], [33, 3, 1, "", "MARQUEE"], [33, 3, 1, "", "MARQUEE_2"], [33, 3, 1, "", "MARQUEE_OFF"], [33, 3, 1, "", "MARS"], [33, 3, 1, "", "MASK"], [33, 3, 1, "", "MASKS_THEATER"], [33, 3, 1, "", "MASKS_THEATER_OFF"], [33, 3, 1, "", "MASK_OFF"], [33, 3, 1, "", "MASSAGE"], [33, 3, 1, "", "MATCHSTICK"], [33, 3, 1, "", "MATH"], [33, 3, 1, "", "MATH_1_DIVIDE_2"], [33, 3, 1, "", "MATH_1_DIVIDE_3"], [33, 3, 1, "", "MATH_AVG"], [33, 3, 1, "", "MATH_EQUAL_GREATER"], [33, 3, 1, "", "MATH_EQUAL_LOWER"], [33, 3, 1, "", "MATH_FUNCTION"], [33, 3, 1, "", "MATH_FUNCTION_OFF"], [33, 3, 1, "", "MATH_FUNCTION_Y"], [33, 3, 1, "", "MATH_GREATER"], [33, 3, 1, "", "MATH_INTEGRAL"], [33, 3, 1, "", "MATH_INTEGRALS"], [33, 3, 1, "", "MATH_INTEGRAL_X"], [33, 3, 1, "", "MATH_LOWER"], [33, 3, 1, "", "MATH_MAX"], [33, 3, 1, "", "MATH_MIN"], [33, 3, 1, "", "MATH_NOT"], [33, 3, 1, "", "MATH_OFF"], [33, 3, 1, "", "MATH_PI"], [33, 3, 1, "", "MATH_PI_DIVIDE_2"], [33, 3, 1, "", "MATH_SYMBOLS"], [33, 3, 1, "", "MATH_XY"], [33, 3, 1, "", "MATH_X_DIVIDE_2"], [33, 3, 1, "", "MATH_X_DIVIDE_Y"], [33, 3, 1, "", "MATH_X_DIVIDE_Y_2"], [33, 3, 1, "", "MATH_X_MINUS_X"], [33, 3, 1, "", "MATH_X_MINUS_Y"], [33, 3, 1, "", "MATH_X_PLUS_X"], [33, 3, 1, "", "MATH_X_PLUS_Y"], [33, 3, 1, "", "MATH_Y_MINUS_Y"], [33, 3, 1, "", "MATH_Y_PLUS_Y"], [33, 3, 1, "", "MAXIMIZE"], [33, 3, 1, "", "MAXIMIZE_OFF"], [33, 3, 1, "", "MEAT"], [33, 3, 1, "", "MEAT_OFF"], [33, 3, 1, "", "MEDAL"], [33, 3, 1, "", "MEDAL_2"], [33, 3, 1, "", "MEDICAL_CROSS"], [33, 3, 1, "", "MEDICAL_CROSS_CIRCLE"], [33, 3, 1, "", "MEDICAL_CROSS_FILLED"], [33, 3, 1, "", "MEDICAL_CROSS_OFF"], [33, 3, 1, "", "MEDICINE_SYRUP"], [33, 3, 1, "", "MEEPLE"], [33, 3, 1, "", "MENORAH"], [33, 3, 1, "", "MENU"], [33, 3, 1, "", "MENU_2"], [33, 3, 1, "", "MENU_DEEP"], [33, 3, 1, "", "MENU_ORDER"], [33, 3, 1, "", "MESSAGE"], [33, 3, 1, "", "MESSAGES"], [33, 3, 1, "", "MESSAGES_OFF"], [33, 3, 1, "", "MESSAGE_2"], [33, 3, 1, "", "MESSAGE_2_BOLT"], [33, 3, 1, "", "MESSAGE_2_CANCEL"], [33, 3, 1, "", "MESSAGE_2_CHECK"], [33, 3, 1, "", "MESSAGE_2_CODE"], [33, 3, 1, "", "MESSAGE_2_COG"], [33, 3, 1, "", "MESSAGE_2_DOLLAR"], [33, 3, 1, "", "MESSAGE_2_DOWN"], [33, 3, 1, "", "MESSAGE_2_EXCLAMATION"], [33, 3, 1, "", "MESSAGE_2_HEART"], [33, 3, 1, "", "MESSAGE_2_MINUS"], [33, 3, 1, "", "MESSAGE_2_OFF"], [33, 3, 1, "", "MESSAGE_2_PAUSE"], [33, 3, 1, "", "MESSAGE_2_PIN"], [33, 3, 1, "", "MESSAGE_2_PLUS"], [33, 3, 1, "", "MESSAGE_2_QUESTION"], [33, 3, 1, "", "MESSAGE_2_SEARCH"], [33, 3, 1, "", "MESSAGE_2_SHARE"], [33, 3, 1, "", "MESSAGE_2_STAR"], [33, 3, 1, "", "MESSAGE_2_UP"], [33, 3, 1, "", "MESSAGE_2_X"], [33, 3, 1, "", "MESSAGE_BOLT"], [33, 3, 1, "", "MESSAGE_CANCEL"], [33, 3, 1, "", "MESSAGE_CHATBOT"], [33, 3, 1, "", "MESSAGE_CHECK"], [33, 3, 1, "", "MESSAGE_CIRCLE"], [33, 3, 1, "", "MESSAGE_CIRCLE_2"], [33, 3, 1, "", "MESSAGE_CIRCLE_2_FILLED"], [33, 3, 1, "", "MESSAGE_CIRCLE_BOLT"], [33, 3, 1, "", "MESSAGE_CIRCLE_CANCEL"], [33, 3, 1, "", "MESSAGE_CIRCLE_CHECK"], [33, 3, 1, "", "MESSAGE_CIRCLE_CODE"], [33, 3, 1, "", "MESSAGE_CIRCLE_COG"], [33, 3, 1, "", "MESSAGE_CIRCLE_DOLLAR"], [33, 3, 1, "", "MESSAGE_CIRCLE_DOWN"], [33, 3, 1, "", "MESSAGE_CIRCLE_EXCLAMATION"], [33, 3, 1, "", "MESSAGE_CIRCLE_HEART"], [33, 3, 1, "", "MESSAGE_CIRCLE_MINUS"], [33, 3, 1, "", "MESSAGE_CIRCLE_OFF"], [33, 3, 1, "", "MESSAGE_CIRCLE_PAUSE"], [33, 3, 1, "", "MESSAGE_CIRCLE_PIN"], [33, 3, 1, "", "MESSAGE_CIRCLE_PLUS"], [33, 3, 1, "", "MESSAGE_CIRCLE_QUESTION"], [33, 3, 1, "", "MESSAGE_CIRCLE_SEARCH"], [33, 3, 1, "", "MESSAGE_CIRCLE_SHARE"], [33, 3, 1, "", "MESSAGE_CIRCLE_STAR"], [33, 3, 1, "", "MESSAGE_CIRCLE_UP"], [33, 3, 1, "", "MESSAGE_CIRCLE_X"], [33, 3, 1, "", "MESSAGE_CODE"], [33, 3, 1, "", "MESSAGE_COG"], [33, 3, 1, "", "MESSAGE_DOLLAR"], [33, 3, 1, "", "MESSAGE_DOTS"], [33, 3, 1, "", "MESSAGE_DOWN"], [33, 3, 1, "", "MESSAGE_EXCLAMATION"], [33, 3, 1, "", "MESSAGE_FORWARD"], [33, 3, 1, "", "MESSAGE_HEART"], [33, 3, 1, "", "MESSAGE_LANGUAGE"], [33, 3, 1, "", "MESSAGE_MINUS"], [33, 3, 1, "", "MESSAGE_OFF"], [33, 3, 1, "", "MESSAGE_PAUSE"], [33, 3, 1, "", "MESSAGE_PIN"], [33, 3, 1, "", "MESSAGE_PLUS"], [33, 3, 1, "", "MESSAGE_QUESTION"], [33, 3, 1, "", "MESSAGE_REPORT"], [33, 3, 1, "", "MESSAGE_SEARCH"], [33, 3, 1, "", "MESSAGE_SHARE"], [33, 3, 1, "", "MESSAGE_STAR"], [33, 3, 1, "", "MESSAGE_UP"], [33, 3, 1, "", "MESSAGE_X"], [33, 3, 1, "", "METEOR"], [33, 3, 1, "", "METEOR_OFF"], [33, 3, 1, "", "MICHELIN_BIB_GOURMAND"], [33, 3, 1, "", "MICHELIN_STAR"], [33, 3, 1, "", "MICHELIN_STAR_GREEN"], [33, 3, 1, "", "MICKEY"], [33, 3, 1, "", "MICKEY_FILLED"], [33, 3, 1, "", "MICROPHONE"], [33, 3, 1, "", "MICROPHONE_2"], [33, 3, 1, "", "MICROPHONE_2_OFF"], [33, 3, 1, "", "MICROPHONE_OFF"], [33, 3, 1, "", "MICROSCOPE"], [33, 3, 1, "", "MICROSCOPE_OFF"], [33, 3, 1, "", "MICROWAVE"], [33, 3, 1, "", "MICROWAVE_OFF"], [33, 3, 1, "", "MILITARY_AWARD"], [33, 3, 1, "", "MILITARY_RANK"], [33, 3, 1, "", "MILK"], [33, 3, 1, "", "MILKSHAKE"], [33, 3, 1, "", "MILK_OFF"], [33, 3, 1, "", "MINIMIZE"], [33, 3, 1, "", "MINUS"], [33, 3, 1, "", "MINUS_VERTICAL"], [33, 3, 1, "", "MIST"], [33, 3, 1, "", "MIST_OFF"], [33, 3, 1, "", "MOBILEDATA"], [33, 3, 1, "", "MOBILEDATA_OFF"], [33, 3, 1, "", "MONEYBAG"], [33, 3, 1, "", "MOOD_ANGRY"], [33, 3, 1, "", "MOOD_ANNOYED"], [33, 3, 1, "", "MOOD_ANNOYED_2"], [33, 3, 1, "", "MOOD_BOY"], [33, 3, 1, "", "MOOD_CHECK"], [33, 3, 1, "", "MOOD_COG"], [33, 3, 1, "", "MOOD_CONFUZED"], [33, 3, 1, "", "MOOD_CONFUZED_FILLED"], [33, 3, 1, "", "MOOD_CRAZY_HAPPY"], [33, 3, 1, "", "MOOD_CRY"], [33, 3, 1, "", "MOOD_DOLLAR"], [33, 3, 1, "", "MOOD_EDIT"], [33, 3, 1, "", "MOOD_EMPTY"], [33, 3, 1, "", "MOOD_EMPTY_FILLED"], [33, 3, 1, "", "MOOD_HAPPY"], [33, 3, 1, "", "MOOD_HAPPY_FILLED"], [33, 3, 1, "", "MOOD_HEART"], [33, 3, 1, "", "MOOD_KID"], [33, 3, 1, "", "MOOD_KID_FILLED"], [33, 3, 1, "", "MOOD_LOOK_LEFT"], [33, 3, 1, "", "MOOD_LOOK_RIGHT"], [33, 3, 1, "", "MOOD_MINUS"], [33, 3, 1, "", "MOOD_NERD"], [33, 3, 1, "", "MOOD_NERVOUS"], [33, 3, 1, "", "MOOD_NEUTRAL"], [33, 3, 1, "", "MOOD_NEUTRAL_FILLED"], [33, 3, 1, "", "MOOD_OFF"], [33, 3, 1, "", "MOOD_PIN"], [33, 3, 1, "", "MOOD_PLUS"], [33, 3, 1, "", "MOOD_SAD"], [33, 3, 1, "", "MOOD_SAD_2"], [33, 3, 1, "", "MOOD_SAD_DIZZY"], [33, 3, 1, "", "MOOD_SAD_FILLED"], [33, 3, 1, "", "MOOD_SAD_SQUINT"], [33, 3, 1, "", "MOOD_SEARCH"], [33, 3, 1, "", "MOOD_SHARE"], [33, 3, 1, "", "MOOD_SICK"], [33, 3, 1, "", "MOOD_SILENCE"], [33, 3, 1, "", "MOOD_SING"], [33, 3, 1, "", "MOOD_SMILE"], [33, 3, 1, "", "MOOD_SMILE_BEAM"], [33, 3, 1, "", "MOOD_SMILE_DIZZY"], [33, 3, 1, "", "MOOD_SMILE_FILLED"], [33, 3, 1, "", "MOOD_SUPRISED"], [33, 3, 1, "", "MOOD_TONGUE"], [33, 3, 1, "", "MOOD_TONGUE_WINK"], [33, 3, 1, "", "MOOD_TONGUE_WINK_2"], [33, 3, 1, "", "MOOD_UNAMUSED"], [33, 3, 1, "", "MOOD_UP"], [33, 3, 1, "", "MOOD_WINK"], [33, 3, 1, "", "MOOD_WINK_2"], [33, 3, 1, "", "MOOD_WRRR"], [33, 3, 1, "", "MOOD_X"], [33, 3, 1, "", "MOOD_XD"], [33, 3, 1, "", "MOON"], [33, 3, 1, "", "MOON_2"], [33, 3, 1, "", "MOON_FILLED"], [33, 3, 1, "", "MOON_OFF"], [33, 3, 1, "", "MOON_STARS"], [33, 3, 1, "", "MOPED"], [33, 3, 1, "", "MOTORBIKE"], [33, 3, 1, "", "MOUNTAIN"], [33, 3, 1, "", "MOUNTAIN_OFF"], [33, 3, 1, "", "MOUSE"], [33, 3, 1, "", "MOUSE_2"], [33, 3, 1, "", "MOUSE_OFF"], [33, 3, 1, "", "MOUSTACHE"], [33, 3, 1, "", "MOVIE"], [33, 3, 1, "", "MOVIE_OFF"], [33, 3, 1, "", "MUG"], [33, 3, 1, "", "MUG_OFF"], [33, 3, 1, "", "MULTIPLIER_0_5X"], [33, 3, 1, "", "MULTIPLIER_1X"], [33, 3, 1, "", "MULTIPLIER_1_5X"], [33, 3, 1, "", "MULTIPLIER_2X"], [33, 3, 1, "", "MUSHROOM"], [33, 3, 1, "", "MUSHROOM_FILLED"], [33, 3, 1, "", "MUSHROOM_OFF"], [33, 3, 1, "", "MUSIC"], [33, 3, 1, "", "MUSIC_OFF"], [33, 3, 1, "", "NAVIGATION"], [33, 3, 1, "", "NAVIGATION_FILLED"], [33, 3, 1, "", "NAVIGATION_NORTH"], [33, 3, 1, "", "NAVIGATION_OFF"], [33, 3, 1, "", "NEEDLE"], [33, 3, 1, "", "NEEDLE_THREAD"], [33, 3, 1, "", "NETWORK"], [33, 3, 1, "", "NETWORK_OFF"], [33, 3, 1, "", "NEWS"], [33, 3, 1, "", "NEWS_OFF"], [33, 3, 1, "", "NEW_SECTION"], [33, 3, 1, "", "NFC"], [33, 3, 1, "", "NFC_OFF"], [33, 3, 1, "", "NORTH_STAR"], [33, 3, 1, "", "NOTE"], [33, 3, 1, "", "NOTEBOOK"], [33, 3, 1, "", "NOTEBOOK_OFF"], [33, 3, 1, "", "NOTES"], [33, 3, 1, "", "NOTES_OFF"], [33, 3, 1, "", "NOTE_OFF"], [33, 3, 1, "", "NOTIFICATION"], [33, 3, 1, "", "NOTIFICATION_OFF"], [33, 3, 1, "", "NO_COPYRIGHT"], [33, 3, 1, "", "NO_CREATIVE_COMMONS"], [33, 3, 1, "", "NO_DERIVATIVES"], [33, 3, 1, "", "NUMBER"], [33, 3, 1, "", "NUMBERS"], [33, 3, 1, "", "NUMBER_0"], [33, 3, 1, "", "NUMBER_1"], [33, 3, 1, "", "NUMBER_2"], [33, 3, 1, "", "NUMBER_3"], [33, 3, 1, "", "NUMBER_4"], [33, 3, 1, "", "NUMBER_5"], [33, 3, 1, "", "NUMBER_6"], [33, 3, 1, "", "NUMBER_7"], [33, 3, 1, "", "NUMBER_8"], [33, 3, 1, "", "NUMBER_9"], [33, 3, 1, "", "NURSE"], [33, 3, 1, "", "OCTAGON"], [33, 3, 1, "", "OCTAGON_FILLED"], [33, 3, 1, "", "OCTAGON_OFF"], [33, 3, 1, "", "OCTAHEDRON"], [33, 3, 1, "", "OCTAHEDRON_OFF"], [33, 3, 1, "", "OCTAHEDRON_PLUS"], [33, 3, 1, "", "OLD"], [33, 3, 1, "", "OLYMPICS"], [33, 3, 1, "", "OLYMPICS_OFF"], [33, 3, 1, "", "OM"], [33, 3, 1, "", "OMEGA"], [33, 3, 1, "", "OUTBOUND"], [33, 3, 1, "", "OUTLET"], [33, 3, 1, "", "OVAL"], [33, 3, 1, "", "OVAL_FILLED"], [33, 3, 1, "", "OVAL_VERTICAL"], [33, 3, 1, "", "OVAL_VERTICAL_FILLED"], [33, 3, 1, "", "OVERLINE"], [33, 3, 1, "", "PACKAGE"], [33, 3, 1, "", "PACKAGES"], [33, 3, 1, "", "PACKAGE_EXPORT"], [33, 3, 1, "", "PACKAGE_IMPORT"], [33, 3, 1, "", "PACKAGE_OFF"], [33, 3, 1, "", "PACMAN"], [33, 3, 1, "", "PAGE_BREAK"], [33, 3, 1, "", "PAINT"], [33, 3, 1, "", "PAINT_FILLED"], [33, 3, 1, "", "PAINT_OFF"], [33, 3, 1, "", "PALETTE"], [33, 3, 1, "", "PALETTE_OFF"], [33, 3, 1, "", "PANORAMA_HORIZONTAL"], [33, 3, 1, "", "PANORAMA_HORIZONTAL_OFF"], [33, 3, 1, "", "PANORAMA_VERTICAL"], [33, 3, 1, "", "PANORAMA_VERTICAL_OFF"], [33, 3, 1, "", "PAPERCLIP"], [33, 3, 1, "", "PAPER_BAG"], [33, 3, 1, "", "PAPER_BAG_OFF"], [33, 3, 1, "", "PARACHUTE"], [33, 3, 1, "", "PARACHUTE_OFF"], [33, 3, 1, "", "PARENTHESES"], [33, 3, 1, "", "PARENTHESES_OFF"], [33, 3, 1, "", "PARKING"], [33, 3, 1, "", "PARKING_OFF"], [33, 3, 1, "", "PASSWORD"], [33, 3, 1, "", "PAW"], [33, 3, 1, "", "PAW_FILLED"], [33, 3, 1, "", "PAW_OFF"], [33, 3, 1, "", "PDF"], [33, 3, 1, "", "PEACE"], [33, 3, 1, "", "PENCIL"], [33, 3, 1, "", "PENCIL_MINUS"], [33, 3, 1, "", "PENCIL_OFF"], [33, 3, 1, "", "PENCIL_PLUS"], [33, 3, 1, "", "PENNANT"], [33, 3, 1, "", "PENNANT_2"], [33, 3, 1, "", "PENNANT_2_FILLED"], [33, 3, 1, "", "PENNANT_FILLED"], [33, 3, 1, "", "PENNANT_OFF"], [33, 3, 1, "", "PENTAGON"], [33, 3, 1, "", "PENTAGON_FILLED"], [33, 3, 1, "", "PENTAGON_OFF"], [33, 3, 1, "", "PENTAGRAM"], [33, 3, 1, "", "PEPPER"], [33, 3, 1, "", "PEPPER_OFF"], [33, 3, 1, "", "PERCENTAGE"], [33, 3, 1, "", "PERFUME"], [33, 3, 1, "", "PERSPECTIVE"], [33, 3, 1, "", "PERSPECTIVE_OFF"], [33, 3, 1, "", "PHONE"], [33, 3, 1, "", "PHONE_CALL"], [33, 3, 1, "", "PHONE_CALLING"], [33, 3, 1, "", "PHONE_CHECK"], [33, 3, 1, "", "PHONE_FILLED"], [33, 3, 1, "", "PHONE_INCOMING"], [33, 3, 1, "", "PHONE_OFF"], [33, 3, 1, "", "PHONE_OUTGOING"], [33, 3, 1, "", "PHONE_PAUSE"], [33, 3, 1, "", "PHONE_PLUS"], [33, 3, 1, "", "PHONE_X"], [33, 3, 1, "", "PHOTO"], [33, 3, 1, "", "PHOTO_AI"], [33, 3, 1, "", "PHOTO_BOLT"], [33, 3, 1, "", "PHOTO_CANCEL"], [33, 3, 1, "", "PHOTO_CHECK"], [33, 3, 1, "", "PHOTO_CODE"], [33, 3, 1, "", "PHOTO_COG"], [33, 3, 1, "", "PHOTO_DOLLAR"], [33, 3, 1, "", "PHOTO_DOWN"], [33, 3, 1, "", "PHOTO_EDIT"], [33, 3, 1, "", "PHOTO_EXCLAMATION"], [33, 3, 1, "", "PHOTO_FILLED"], [33, 3, 1, "", "PHOTO_HEART"], [33, 3, 1, "", "PHOTO_MINUS"], [33, 3, 1, "", "PHOTO_OFF"], [33, 3, 1, "", "PHOTO_PAUSE"], [33, 3, 1, "", "PHOTO_PIN"], [33, 3, 1, "", "PHOTO_PLUS"], [33, 3, 1, "", "PHOTO_QUESTION"], [33, 3, 1, "", "PHOTO_SEARCH"], [33, 3, 1, "", "PHOTO_SENSOR"], [33, 3, 1, "", "PHOTO_SENSOR_2"], [33, 3, 1, "", "PHOTO_SENSOR_3"], [33, 3, 1, "", "PHOTO_SHARE"], [33, 3, 1, "", "PHOTO_SHIELD"], [33, 3, 1, "", "PHOTO_STAR"], [33, 3, 1, "", "PHOTO_UP"], [33, 3, 1, "", "PHOTO_X"], [33, 3, 1, "", "PHYSOTHERAPIST"], [33, 3, 1, "", "PIANO"], [33, 3, 1, "", "PICK"], [33, 3, 1, "", "PICTURE_IN_PICTURE"], [33, 3, 1, "", "PICTURE_IN_PICTURE_OFF"], [33, 3, 1, "", "PICTURE_IN_PICTURE_ON"], [33, 3, 1, "", "PICTURE_IN_PICTURE_TOP"], [33, 3, 1, "", "PIG"], [33, 3, 1, "", "PIG_MONEY"], [33, 3, 1, "", "PIG_OFF"], [33, 3, 1, "", "PILCROW"], [33, 3, 1, "", "PILL"], [33, 3, 1, "", "PILLS"], [33, 3, 1, "", "PILL_OFF"], [33, 3, 1, "", "PIN"], [33, 3, 1, "", "PING_PONG"], [33, 3, 1, "", "PINNED"], [33, 3, 1, "", "PINNED_FILLED"], [33, 3, 1, "", "PINNED_OFF"], [33, 3, 1, "", "PIN_FILLED"], [33, 3, 1, "", "PIZZA"], [33, 3, 1, "", "PIZZA_OFF"], [33, 3, 1, "", "PLACEHOLDER"], [33, 3, 1, "", "PLANE"], [33, 3, 1, "", "PLANET"], [33, 3, 1, "", "PLANET_OFF"], [33, 3, 1, "", "PLANE_ARRIVAL"], [33, 3, 1, "", "PLANE_DEPARTURE"], [33, 3, 1, "", "PLANE_INFLIGHT"], [33, 3, 1, "", "PLANE_OFF"], [33, 3, 1, "", "PLANE_TILT"], [33, 3, 1, "", "PLANT"], [33, 3, 1, "", "PLANT_2"], [33, 3, 1, "", "PLANT_2_OFF"], [33, 3, 1, "", "PLANT_OFF"], [33, 3, 1, "", "PLAYER_EJECT"], [33, 3, 1, "", "PLAYER_EJECT_FILLED"], [33, 3, 1, "", "PLAYER_PAUSE"], [33, 3, 1, "", "PLAYER_PAUSE_FILLED"], [33, 3, 1, "", "PLAYER_PLAY"], [33, 3, 1, "", "PLAYER_PLAY_FILLED"], [33, 3, 1, "", "PLAYER_RECORD"], [33, 3, 1, "", "PLAYER_RECORD_FILLED"], [33, 3, 1, "", "PLAYER_SKIP_BACK"], [33, 3, 1, "", "PLAYER_SKIP_BACK_FILLED"], [33, 3, 1, "", "PLAYER_SKIP_FORWARD"], [33, 3, 1, "", "PLAYER_SKIP_FORWARD_FILLED"], [33, 3, 1, "", "PLAYER_STOP"], [33, 3, 1, "", "PLAYER_STOP_FILLED"], [33, 3, 1, "", "PLAYER_TRACK_NEXT"], [33, 3, 1, "", "PLAYER_TRACK_NEXT_FILLED"], [33, 3, 1, "", "PLAYER_TRACK_PREV"], [33, 3, 1, "", "PLAYER_TRACK_PREV_FILLED"], [33, 3, 1, "", "PLAYLIST"], [33, 3, 1, "", "PLAYLIST_ADD"], [33, 3, 1, "", "PLAYLIST_OFF"], [33, 3, 1, "", "PLAYLIST_X"], [33, 3, 1, "", "PLAYSTATION_CIRCLE"], [33, 3, 1, "", "PLAYSTATION_SQUARE"], [33, 3, 1, "", "PLAYSTATION_TRIANGLE"], [33, 3, 1, "", "PLAYSTATION_X"], [33, 3, 1, "", "PLAY_BASKETBALL"], [33, 3, 1, "", "PLAY_CARD"], [33, 3, 1, "", "PLAY_CARD_OFF"], [33, 3, 1, "", "PLAY_FOOTBALL"], [33, 3, 1, "", "PLAY_HANDBALL"], [33, 3, 1, "", "PLAY_VOLLEYBALL"], [33, 3, 1, "", "PLUG"], [33, 3, 1, "", "PLUG_CONNECTED"], [33, 3, 1, "", "PLUG_CONNECTED_X"], [33, 3, 1, "", "PLUG_OFF"], [33, 3, 1, "", "PLUG_X"], [33, 3, 1, "", "PLUS"], [33, 3, 1, "", "PLUS_EQUAL"], [33, 3, 1, "", "PLUS_MINUS"], [33, 3, 1, "", "PNG"], [33, 3, 1, "", "PODIUM"], [33, 3, 1, "", "PODIUM_OFF"], [33, 3, 1, "", "POINT"], [33, 3, 1, "", "POINTER"], [33, 3, 1, "", "POINTER_BOLT"], [33, 3, 1, "", "POINTER_CANCEL"], [33, 3, 1, "", "POINTER_CHECK"], [33, 3, 1, "", "POINTER_CODE"], [33, 3, 1, "", "POINTER_COG"], [33, 3, 1, "", "POINTER_DOLLAR"], [33, 3, 1, "", "POINTER_DOWN"], [33, 3, 1, "", "POINTER_EXCLAMATION"], [33, 3, 1, "", "POINTER_HEART"], [33, 3, 1, "", "POINTER_MINUS"], [33, 3, 1, "", "POINTER_OFF"], [33, 3, 1, "", "POINTER_PAUSE"], [33, 3, 1, "", "POINTER_PIN"], [33, 3, 1, "", "POINTER_PLUS"], [33, 3, 1, "", "POINTER_QUESTION"], [33, 3, 1, "", "POINTER_SEARCH"], [33, 3, 1, "", "POINTER_SHARE"], [33, 3, 1, "", "POINTER_STAR"], [33, 3, 1, "", "POINTER_UP"], [33, 3, 1, "", "POINTER_X"], [33, 3, 1, "", "POINT_FILLED"], [33, 3, 1, "", "POINT_OFF"], [33, 3, 1, "", "POKEBALL"], [33, 3, 1, "", "POKEBALL_OFF"], [33, 3, 1, "", "POKER_CHIP"], [33, 3, 1, "", "POLAROID"], [33, 3, 1, "", "POLAROID_FILLED"], [33, 3, 1, "", "POLYGON"], [33, 3, 1, "", "POLYGON_OFF"], [33, 3, 1, "", "POO"], [33, 3, 1, "", "POOL"], [33, 3, 1, "", "POOL_OFF"], [33, 3, 1, "", "POWER"], [33, 3, 1, "", "PRAY"], [33, 3, 1, "", "PREMIUM_RIGHTS"], [33, 3, 1, "", "PRESCRIPTION"], [33, 3, 1, "", "PRESENTATION"], [33, 3, 1, "", "PRESENTATION_ANALYTICS"], [33, 3, 1, "", "PRESENTATION_OFF"], [33, 3, 1, "", "PRINTER"], [33, 3, 1, "", "PRINTER_OFF"], [33, 3, 1, "", "PRISM"], [33, 3, 1, "", "PRISM_OFF"], [33, 3, 1, "", "PRISM_PLUS"], [33, 3, 1, "", "PRISON"], [33, 3, 1, "", "PROGRESS"], [33, 3, 1, "", "PROGRESS_ALERT"], [33, 3, 1, "", "PROGRESS_BOLT"], [33, 3, 1, "", "PROGRESS_CHECK"], [33, 3, 1, "", "PROGRESS_DOWN"], [33, 3, 1, "", "PROGRESS_HELP"], [33, 3, 1, "", "PROGRESS_X"], [33, 3, 1, "", "PROMPT"], [33, 3, 1, "", "PROPELLER"], [33, 3, 1, "", "PROPELLER_OFF"], [33, 3, 1, "", "PUMPKIN_SCARY"], [33, 3, 1, "", "PUZZLE"], [33, 3, 1, "", "PUZZLE_2"], [33, 3, 1, "", "PUZZLE_FILLED"], [33, 3, 1, "", "PUZZLE_OFF"], [33, 3, 1, "", "PYRAMID"], [33, 3, 1, "", "PYRAMID_OFF"], [33, 3, 1, "", "PYRAMID_PLUS"], [33, 3, 1, "", "QRCODE"], [33, 3, 1, "", "QRCODE_OFF"], [33, 3, 1, "", "QUESTION_MARK"], [33, 3, 1, "", "QUOTE"], [33, 3, 1, "", "QUOTE_OFF"], [33, 3, 1, "", "RADAR"], [33, 3, 1, "", "RADAR_2"], [33, 3, 1, "", "RADAR_OFF"], [33, 3, 1, "", "RADIO"], [33, 3, 1, "", "RADIOACTIVE"], [33, 3, 1, "", "RADIOACTIVE_FILLED"], [33, 3, 1, "", "RADIOACTIVE_OFF"], [33, 3, 1, "", "RADIO_OFF"], [33, 3, 1, "", "RADIUS_BOTTOM_LEFT"], [33, 3, 1, "", "RADIUS_BOTTOM_RIGHT"], [33, 3, 1, "", "RADIUS_TOP_LEFT"], [33, 3, 1, "", "RADIUS_TOP_RIGHT"], [33, 3, 1, "", "RAINBOW"], [33, 3, 1, "", "RAINBOW_OFF"], [33, 3, 1, "", "RATING_12_PLUS"], [33, 3, 1, "", "RATING_14_PLUS"], [33, 3, 1, "", "RATING_16_PLUS"], [33, 3, 1, "", "RATING_18_PLUS"], [33, 3, 1, "", "RATING_21_PLUS"], [33, 3, 1, "", "RAZOR"], [33, 3, 1, "", "RAZOR_ELECTRIC"], [33, 3, 1, "", "RECEIPT"], [33, 3, 1, "", "RECEIPT_2"], [33, 3, 1, "", "RECEIPT_OFF"], [33, 3, 1, "", "RECEIPT_REFUND"], [33, 3, 1, "", "RECEIPT_TAX"], [33, 3, 1, "", "RECHARGING"], [33, 3, 1, "", "RECORD_MAIL"], [33, 3, 1, "", "RECORD_MAIL_OFF"], [33, 3, 1, "", "RECTANGLE"], [33, 3, 1, "", "RECTANGLE_FILLED"], [33, 3, 1, "", "RECTANGLE_ROUNDED_BOTTOM"], [33, 3, 1, "", "RECTANGLE_ROUNDED_TOP"], [33, 3, 1, "", "RECTANGLE_VERTICAL"], [33, 3, 1, "", "RECTANGLE_VERTICAL_FILLED"], [33, 3, 1, "", "RECTANGULAR_PRISM"], [33, 3, 1, "", "RECTANGULAR_PRISM_OFF"], [33, 3, 1, "", "RECTANGULAR_PRISM_PLUS"], [33, 3, 1, "", "RECYCLE"], [33, 3, 1, "", "RECYCLE_OFF"], [33, 3, 1, "", "REFRESH"], [33, 3, 1, "", "REFRESH_ALERT"], [33, 3, 1, "", "REFRESH_DOT"], [33, 3, 1, "", "REFRESH_OFF"], [33, 3, 1, "", "REGEX"], [33, 3, 1, "", "REGEX_OFF"], [33, 3, 1, "", "REGISTERED"], [33, 3, 1, "", "RELATION_MANY_TO_MANY"], [33, 3, 1, "", "RELATION_ONE_TO_MANY"], [33, 3, 1, "", "RELATION_ONE_TO_ONE"], [33, 3, 1, "", "RELOAD"], [33, 3, 1, "", "REPEAT"], [33, 3, 1, "", "REPEAT_OFF"], [33, 3, 1, "", "REPEAT_ONCE"], [33, 3, 1, "", "REPLACE"], [33, 3, 1, "", "REPLACE_FILLED"], [33, 3, 1, "", "REPLACE_OFF"], [33, 3, 1, "", "REPORT"], [33, 3, 1, "", "REPORT_ANALYTICS"], [33, 3, 1, "", "REPORT_MEDICAL"], [33, 3, 1, "", "REPORT_MONEY"], [33, 3, 1, "", "REPORT_OFF"], [33, 3, 1, "", "REPORT_SEARCH"], [33, 3, 1, "", "RESERVED_LINE"], [33, 3, 1, "", "RESIZE"], [33, 3, 1, "", "RESTORE"], [33, 3, 1, "", "REWIND_BACKWARD_10"], [33, 3, 1, "", "REWIND_BACKWARD_15"], [33, 3, 1, "", "REWIND_BACKWARD_20"], [33, 3, 1, "", "REWIND_BACKWARD_30"], [33, 3, 1, "", "REWIND_BACKWARD_40"], [33, 3, 1, "", "REWIND_BACKWARD_5"], [33, 3, 1, "", "REWIND_BACKWARD_50"], [33, 3, 1, "", "REWIND_BACKWARD_60"], [33, 3, 1, "", "REWIND_FORWARD_10"], [33, 3, 1, "", "REWIND_FORWARD_15"], [33, 3, 1, "", "REWIND_FORWARD_20"], [33, 3, 1, "", "REWIND_FORWARD_30"], [33, 3, 1, "", "REWIND_FORWARD_40"], [33, 3, 1, "", "REWIND_FORWARD_5"], [33, 3, 1, "", "REWIND_FORWARD_50"], [33, 3, 1, "", "REWIND_FORWARD_60"], [33, 3, 1, "", "RIBBON_HEALTH"], [33, 3, 1, "", "RINGS"], [33, 3, 1, "", "RIPPLE"], [33, 3, 1, "", "RIPPLE_OFF"], [33, 3, 1, "", "ROAD"], [33, 3, 1, "", "ROAD_OFF"], [33, 3, 1, "", "ROAD_SIGN"], [33, 3, 1, "", "ROBOT"], [33, 3, 1, "", "ROBOT_OFF"], [33, 3, 1, "", "ROCKET"], [33, 3, 1, "", "ROCKET_OFF"], [33, 3, 1, "", "ROLLERCOASTER"], [33, 3, 1, "", "ROLLERCOASTER_OFF"], [33, 3, 1, "", "ROLLER_SKATING"], [33, 3, 1, "", "ROSETTE"], [33, 3, 1, "", "ROSETTE_FILLED"], [33, 3, 1, "", "ROSETTE_NUMBER_0"], [33, 3, 1, "", "ROSETTE_NUMBER_1"], [33, 3, 1, "", "ROSETTE_NUMBER_2"], [33, 3, 1, "", "ROSETTE_NUMBER_3"], [33, 3, 1, "", "ROSETTE_NUMBER_4"], [33, 3, 1, "", "ROSETTE_NUMBER_5"], [33, 3, 1, "", "ROSETTE_NUMBER_6"], [33, 3, 1, "", "ROSETTE_NUMBER_7"], [33, 3, 1, "", "ROSETTE_NUMBER_8"], [33, 3, 1, "", "ROSETTE_NUMBER_9"], [33, 3, 1, "", "ROTATE"], [33, 3, 1, "", "ROTATE_2"], [33, 3, 1, "", "ROTATE_360"], [33, 3, 1, "", "ROTATE_CLOCKWISE"], [33, 3, 1, "", "ROTATE_CLOCKWISE_2"], [33, 3, 1, "", "ROTATE_DOT"], [33, 3, 1, "", "ROTATE_RECTANGLE"], [33, 3, 1, "", "ROUTE"], [33, 3, 1, "", "ROUTER"], [33, 3, 1, "", "ROUTER_OFF"], [33, 3, 1, "", "ROUTE_2"], [33, 3, 1, "", "ROUTE_OFF"], [33, 3, 1, "", "ROW_INSERT_BOTTOM"], [33, 3, 1, "", "ROW_INSERT_TOP"], [33, 3, 1, "", "ROW_REMOVE"], [33, 3, 1, "", "RSS"], [33, 3, 1, "", "RUBBER_STAMP"], [33, 3, 1, "", "RUBBER_STAMP_OFF"], [33, 3, 1, "", "RULER"], [33, 3, 1, "", "RULER_2"], [33, 3, 1, "", "RULER_2_OFF"], [33, 3, 1, "", "RULER_3"], [33, 3, 1, "", "RULER_MEASURE"], [33, 3, 1, "", "RULER_OFF"], [33, 3, 1, "", "RUN"], [33, 3, 1, "", "SAILBOAT"], [33, 3, 1, "", "SAILBOAT_2"], [33, 3, 1, "", "SAILBOAT_OFF"], [33, 3, 1, "", "SALAD"], [33, 3, 1, "", "SALT"], [33, 3, 1, "", "SATELLITE"], [33, 3, 1, "", "SATELLITE_OFF"], [33, 3, 1, "", "SAUSAGE"], [33, 3, 1, "", "SCALE"], [33, 3, 1, "", "SCALE_OFF"], [33, 3, 1, "", "SCALE_OUTLINE"], [33, 3, 1, "", "SCALE_OUTLINE_OFF"], [33, 3, 1, "", "SCAN"], [33, 3, 1, "", "SCAN_EYE"], [33, 3, 1, "", "SCHEMA"], [33, 3, 1, "", "SCHEMA_OFF"], [33, 3, 1, "", "SCHOOL"], [33, 3, 1, "", "SCHOOL_BELL"], [33, 3, 1, "", "SCHOOL_OFF"], [33, 3, 1, "", "SCISSORS"], [33, 3, 1, "", "SCISSORS_OFF"], [33, 3, 1, "", "SCOOTER"], [33, 3, 1, "", "SCOOTER_ELECTRIC"], [33, 3, 1, "", "SCOREBOARD"], [33, 3, 1, "", "SCREENSHOT"], [33, 3, 1, "", "SCREEN_SHARE"], [33, 3, 1, "", "SCREEN_SHARE_OFF"], [33, 3, 1, "", "SCRIBBLE"], [33, 3, 1, "", "SCRIBBLE_OFF"], [33, 3, 1, "", "SCRIPT"], [33, 3, 1, "", "SCRIPT_MINUS"], [33, 3, 1, "", "SCRIPT_PLUS"], [33, 3, 1, "", "SCRIPT_X"], [33, 3, 1, "", "SCUBA_MASK"], [33, 3, 1, "", "SCUBA_MASK_OFF"], [33, 3, 1, "", "SDK"], [33, 3, 1, "", "SEARCH"], [33, 3, 1, "", "SEARCH_OFF"], [33, 3, 1, "", "SECTION"], [33, 3, 1, "", "SECTION_SIGN"], [33, 3, 1, "", "SEEDING"], [33, 3, 1, "", "SEEDING_OFF"], [33, 3, 1, "", "SELECT"], [33, 3, 1, "", "SELECTOR"], [33, 3, 1, "", "SELECT_ALL"], [33, 3, 1, "", "SEND"], [33, 3, 1, "", "SEND_OFF"], [33, 3, 1, "", "SEO"], [33, 3, 1, "", "SEPARATOR"], [33, 3, 1, "", "SEPARATOR_HORIZONTAL"], [33, 3, 1, "", "SEPARATOR_VERTICAL"], [33, 3, 1, "", "SERVER"], [33, 3, 1, "", "SERVER_2"], [33, 3, 1, "", "SERVER_BOLT"], [33, 3, 1, "", "SERVER_COG"], [33, 3, 1, "", "SERVER_OFF"], [33, 3, 1, "", "SERVICEMARK"], [33, 3, 1, "", "SETTINGS"], [33, 3, 1, "", "SETTINGS_2"], [33, 3, 1, "", "SETTINGS_AUTOMATION"], [33, 3, 1, "", "SETTINGS_BOLT"], [33, 3, 1, "", "SETTINGS_CANCEL"], [33, 3, 1, "", "SETTINGS_CHECK"], [33, 3, 1, "", "SETTINGS_CODE"], [33, 3, 1, "", "SETTINGS_COG"], [33, 3, 1, "", "SETTINGS_DOLLAR"], [33, 3, 1, "", "SETTINGS_DOWN"], [33, 3, 1, "", "SETTINGS_EXCLAMATION"], [33, 3, 1, "", "SETTINGS_FILLED"], [33, 3, 1, "", "SETTINGS_HEART"], [33, 3, 1, "", "SETTINGS_MINUS"], [33, 3, 1, "", "SETTINGS_OFF"], [33, 3, 1, "", "SETTINGS_PAUSE"], [33, 3, 1, "", "SETTINGS_PIN"], [33, 3, 1, "", "SETTINGS_PLUS"], [33, 3, 1, "", "SETTINGS_QUESTION"], [33, 3, 1, "", "SETTINGS_SEARCH"], [33, 3, 1, "", "SETTINGS_SHARE"], [33, 3, 1, "", "SETTINGS_STAR"], [33, 3, 1, "", "SETTINGS_UP"], [33, 3, 1, "", "SETTINGS_X"], [33, 3, 1, "", "SHADOW"], [33, 3, 1, "", "SHADOW_OFF"], [33, 3, 1, "", "SHAPE"], [33, 3, 1, "", "SHAPE_2"], [33, 3, 1, "", "SHAPE_3"], [33, 3, 1, "", "SHAPE_OFF"], [33, 3, 1, "", "SHARE"], [33, 3, 1, "", "SHARE_2"], [33, 3, 1, "", "SHARE_3"], [33, 3, 1, "", "SHARE_OFF"], [33, 3, 1, "", "SHIELD"], [33, 3, 1, "", "SHIELD_BOLT"], [33, 3, 1, "", "SHIELD_CANCEL"], [33, 3, 1, "", "SHIELD_CHECK"], [33, 3, 1, "", "SHIELD_CHECKERED"], [33, 3, 1, "", "SHIELD_CHECKERED_FILLED"], [33, 3, 1, "", "SHIELD_CHECK_FILLED"], [33, 3, 1, "", "SHIELD_CHEVRON"], [33, 3, 1, "", "SHIELD_CODE"], [33, 3, 1, "", "SHIELD_COG"], [33, 3, 1, "", "SHIELD_DOLLAR"], [33, 3, 1, "", "SHIELD_DOWN"], [33, 3, 1, "", "SHIELD_EXCLAMATION"], [33, 3, 1, "", "SHIELD_FILLED"], [33, 3, 1, "", "SHIELD_HALF"], [33, 3, 1, "", "SHIELD_HALF_FILLED"], [33, 3, 1, "", "SHIELD_HEART"], [33, 3, 1, "", "SHIELD_LOCK"], [33, 3, 1, "", "SHIELD_LOCK_FILLED"], [33, 3, 1, "", "SHIELD_MINUS"], [33, 3, 1, "", "SHIELD_OFF"], [33, 3, 1, "", "SHIELD_PAUSE"], [33, 3, 1, "", "SHIELD_PIN"], [33, 3, 1, "", "SHIELD_PLUS"], [33, 3, 1, "", "SHIELD_QUESTION"], [33, 3, 1, "", "SHIELD_SEARCH"], [33, 3, 1, "", "SHIELD_SHARE"], [33, 3, 1, "", "SHIELD_STAR"], [33, 3, 1, "", "SHIELD_UP"], [33, 3, 1, "", "SHIELD_X"], [33, 3, 1, "", "SHIP"], [33, 3, 1, "", "SHIP_OFF"], [33, 3, 1, "", "SHIRT"], [33, 3, 1, "", "SHIRT_FILLED"], [33, 3, 1, "", "SHIRT_OFF"], [33, 3, 1, "", "SHIRT_SPORT"], [33, 3, 1, "", "SHI_JUMPING"], [33, 3, 1, "", "SHOE"], [33, 3, 1, "", "SHOE_OFF"], [33, 3, 1, "", "SHOPPING_BAG"], [33, 3, 1, "", "SHOPPING_CART"], [33, 3, 1, "", "SHOPPING_CART_DISCOUNT"], [33, 3, 1, "", "SHOPPING_CART_OFF"], [33, 3, 1, "", "SHOPPING_CART_PLUS"], [33, 3, 1, "", "SHOPPING_CART_X"], [33, 3, 1, "", "SHOVEL"], [33, 3, 1, "", "SHREDDER"], [33, 3, 1, "", "SIGNAL_2G"], [33, 3, 1, "", "SIGNAL_3G"], [33, 3, 1, "", "SIGNAL_4G"], [33, 3, 1, "", "SIGNAL_4G_PLUS"], [33, 3, 1, "", "SIGNAL_5G"], [33, 3, 1, "", "SIGNAL_6G"], [33, 3, 1, "", "SIGNAL_E"], [33, 3, 1, "", "SIGNAL_G"], [33, 3, 1, "", "SIGNAL_H"], [33, 3, 1, "", "SIGNAL_H_PLUS"], [33, 3, 1, "", "SIGNAL_LTE"], [33, 3, 1, "", "SIGNATURE"], [33, 3, 1, "", "SIGNATURE_OFF"], [33, 3, 1, "", "SIGN_LEFT"], [33, 3, 1, "", "SIGN_LEFT_FILLED"], [33, 3, 1, "", "SIGN_RIGHT"], [33, 3, 1, "", "SIGN_RIGHT_FILLED"], [33, 3, 1, "", "SITEMAP"], [33, 3, 1, "", "SITEMAP_OFF"], [33, 3, 1, "", "SKATEBOARD"], [33, 3, 1, "", "SKATEBOARDING"], [33, 3, 1, "", "SKATEBOARD_OFF"], [33, 3, 1, "", "SKULL"], [33, 3, 1, "", "SLASH"], [33, 3, 1, "", "SLASHES"], [33, 3, 1, "", "SLEIGH"], [33, 3, 1, "", "SLICE"], [33, 3, 1, "", "SLIDESHOW"], [33, 3, 1, "", "SMART_HOME"], [33, 3, 1, "", "SMART_HOME_OFF"], [33, 3, 1, "", "SMOKING"], [33, 3, 1, "", "SMOKING_NO"], [33, 3, 1, "", "SNOWFLAKE"], [33, 3, 1, "", "SNOWFLAKE_OFF"], [33, 3, 1, "", "SNOWMAN"], [33, 3, 1, "", "SOCCER_FIELD"], [33, 3, 1, "", "SOCIAL"], [33, 3, 1, "", "SOCIAL_OFF"], [33, 3, 1, "", "SOCK"], [33, 3, 1, "", "SOFA"], [33, 3, 1, "", "SOFA_OFF"], [33, 3, 1, "", "SOLAR_PANEL"], [33, 3, 1, "", "SOLAR_PANEL_2"], [33, 3, 1, "", "SORT_0_9"], [33, 3, 1, "", "SORT_9_0"], [33, 3, 1, "", "SORT_ASCENDING"], [33, 3, 1, "", "SORT_ASCENDING_2"], [33, 3, 1, "", "SORT_ASCENDING_LETTERS"], [33, 3, 1, "", "SORT_ASCENDING_NUMBERS"], [33, 3, 1, "", "SORT_A_Z"], [33, 3, 1, "", "SORT_DESCENDING"], [33, 3, 1, "", "SORT_DESCENDING_2"], [33, 3, 1, "", "SORT_DESCENDING_LETTERS"], [33, 3, 1, "", "SORT_DESCENDING_NUMBERS"], [33, 3, 1, "", "SORT_Z_A"], [33, 3, 1, "", "SOS"], [33, 3, 1, "", "SOUP"], [33, 3, 1, "", "SOUP_OFF"], [33, 3, 1, "", "SOURCE_CODE"], [33, 3, 1, "", "SPACE"], [33, 3, 1, "", "SPACE_OFF"], [33, 3, 1, "", "SPACING_HORIZONTAL"], [33, 3, 1, "", "SPACING_VERTICAL"], [33, 3, 1, "", "SPADE"], [33, 3, 1, "", "SPADE_FILLED"], [33, 3, 1, "", "SPARKLES"], [33, 3, 1, "", "SPEAKERPHONE"], [33, 3, 1, "", "SPEEDBOAT"], [33, 3, 1, "", "SPHERE"], [33, 3, 1, "", "SPHERE_OFF"], [33, 3, 1, "", "SPHERE_PLUS"], [33, 3, 1, "", "SPIDER"], [33, 3, 1, "", "SPIRAL"], [33, 3, 1, "", "SPIRAL_OFF"], [33, 3, 1, "", "SPORT_BILLARD"], [33, 3, 1, "", "SPRAY"], [33, 3, 1, "", "SPY"], [33, 3, 1, "", "SPY_OFF"], [33, 3, 1, "", "SQL"], [33, 3, 1, "", "SQUARE"], [33, 3, 1, "", "SQUARES_DIAGONAL"], [33, 3, 1, "", "SQUARES_FILLED"], [33, 3, 1, "", "SQUARE_0_FILLED"], [33, 3, 1, "", "SQUARE_1_FILLED"], [33, 3, 1, "", "SQUARE_2_FILLED"], [33, 3, 1, "", "SQUARE_3_FILLED"], [33, 3, 1, "", "SQUARE_4_FILLED"], [33, 3, 1, "", "SQUARE_5_FILLED"], [33, 3, 1, "", "SQUARE_6_FILLED"], [33, 3, 1, "", "SQUARE_7_FILLED"], [33, 3, 1, "", "SQUARE_8_FILLED"], [33, 3, 1, "", "SQUARE_9_FILLED"], [33, 3, 1, "", "SQUARE_ARROW_DOWN"], [33, 3, 1, "", "SQUARE_ARROW_LEFT"], [33, 3, 1, "", "SQUARE_ARROW_RIGHT"], [33, 3, 1, "", "SQUARE_ARROW_UP"], [33, 3, 1, "", "SQUARE_ASTERISK"], [33, 3, 1, "", "SQUARE_CHECK"], [33, 3, 1, "", "SQUARE_CHECK_FILLED"], [33, 3, 1, "", "SQUARE_CHEVRONS_DOWN"], [33, 3, 1, "", "SQUARE_CHEVRONS_LEFT"], [33, 3, 1, "", "SQUARE_CHEVRONS_RIGHT"], [33, 3, 1, "", "SQUARE_CHEVRONS_UP"], [33, 3, 1, "", "SQUARE_CHEVRON_DOWN"], [33, 3, 1, "", "SQUARE_CHEVRON_LEFT"], [33, 3, 1, "", "SQUARE_CHEVRON_RIGHT"], [33, 3, 1, "", "SQUARE_CHEVRON_UP"], [33, 3, 1, "", "SQUARE_DOT"], [33, 3, 1, "", "SQUARE_F0"], [33, 3, 1, "", "SQUARE_F0_FILLED"], [33, 3, 1, "", "SQUARE_F1"], [33, 3, 1, "", "SQUARE_F1_FILLED"], [33, 3, 1, "", "SQUARE_F2"], [33, 3, 1, "", "SQUARE_F2_FILLED"], [33, 3, 1, "", "SQUARE_F3"], [33, 3, 1, "", "SQUARE_F3_FILLED"], [33, 3, 1, "", "SQUARE_F4"], [33, 3, 1, "", "SQUARE_F4_FILLED"], [33, 3, 1, "", "SQUARE_F5"], [33, 3, 1, "", "SQUARE_F5_FILLED"], [33, 3, 1, "", "SQUARE_F6"], [33, 3, 1, "", "SQUARE_F6_FILLED"], [33, 3, 1, "", "SQUARE_F7"], [33, 3, 1, "", "SQUARE_F7_FILLED"], [33, 3, 1, "", "SQUARE_F8"], [33, 3, 1, "", "SQUARE_F8_FILLED"], [33, 3, 1, "", "SQUARE_F9"], [33, 3, 1, "", "SQUARE_F9_FILLED"], [33, 3, 1, "", "SQUARE_FORBID"], [33, 3, 1, "", "SQUARE_FORBID_2"], [33, 3, 1, "", "SQUARE_HALF"], [33, 3, 1, "", "SQUARE_KEY"], [33, 3, 1, "", "SQUARE_LETTER_A"], [33, 3, 1, "", "SQUARE_LETTER_B"], [33, 3, 1, "", "SQUARE_LETTER_C"], [33, 3, 1, "", "SQUARE_LETTER_D"], [33, 3, 1, "", "SQUARE_LETTER_E"], [33, 3, 1, "", "SQUARE_LETTER_F"], [33, 3, 1, "", "SQUARE_LETTER_G"], [33, 3, 1, "", "SQUARE_LETTER_H"], [33, 3, 1, "", "SQUARE_LETTER_I"], [33, 3, 1, "", "SQUARE_LETTER_J"], [33, 3, 1, "", "SQUARE_LETTER_K"], [33, 3, 1, "", "SQUARE_LETTER_L"], [33, 3, 1, "", "SQUARE_LETTER_M"], [33, 3, 1, "", "SQUARE_LETTER_N"], [33, 3, 1, "", "SQUARE_LETTER_O"], [33, 3, 1, "", "SQUARE_LETTER_P"], [33, 3, 1, "", "SQUARE_LETTER_Q"], [33, 3, 1, "", "SQUARE_LETTER_R"], [33, 3, 1, "", "SQUARE_LETTER_S"], [33, 3, 1, "", "SQUARE_LETTER_T"], [33, 3, 1, "", "SQUARE_LETTER_U"], [33, 3, 1, "", "SQUARE_LETTER_V"], [33, 3, 1, "", "SQUARE_LETTER_W"], [33, 3, 1, "", "SQUARE_LETTER_X"], [33, 3, 1, "", "SQUARE_LETTER_Y"], [33, 3, 1, "", "SQUARE_LETTER_Z"], [33, 3, 1, "", "SQUARE_MINUS"], [33, 3, 1, "", "SQUARE_NUMBER_0"], [33, 3, 1, "", "SQUARE_NUMBER_1"], [33, 3, 1, "", "SQUARE_NUMBER_2"], [33, 3, 1, "", "SQUARE_NUMBER_3"], [33, 3, 1, "", "SQUARE_NUMBER_4"], [33, 3, 1, "", "SQUARE_NUMBER_5"], [33, 3, 1, "", "SQUARE_NUMBER_6"], [33, 3, 1, "", "SQUARE_NUMBER_7"], [33, 3, 1, "", "SQUARE_NUMBER_8"], [33, 3, 1, "", "SQUARE_NUMBER_9"], [33, 3, 1, "", "SQUARE_OFF"], [33, 3, 1, "", "SQUARE_PLUS"], [33, 3, 1, "", "SQUARE_ROOT"], [33, 3, 1, "", "SQUARE_ROOT_2"], [33, 3, 1, "", "SQUARE_ROTATED"], [33, 3, 1, "", "SQUARE_ROTATED_FILLED"], [33, 3, 1, "", "SQUARE_ROTATED_FORBID"], [33, 3, 1, "", "SQUARE_ROTATED_FORBID_2"], [33, 3, 1, "", "SQUARE_ROTATED_OFF"], [33, 3, 1, "", "SQUARE_ROUNDED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHECK"], [33, 3, 1, "", "SQUARE_ROUNDED_CHECK_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_A"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_B"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_C"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_D"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_E"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_F"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_G"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_H"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_I"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_J"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_K"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_L"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_M"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_N"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_O"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_P"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_Q"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_R"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_S"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_T"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_U"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_V"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_W"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_X"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_Y"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_Z"], [33, 3, 1, "", "SQUARE_ROUNDED_MINUS"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_PLUS"], [33, 3, 1, "", "SQUARE_ROUNDED_PLUS_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_X"], [33, 3, 1, "", "SQUARE_ROUNDED_X_FILLED"], [33, 3, 1, "", "SQUARE_TOGGLE"], [33, 3, 1, "", "SQUARE_TOGGLE_HORIZONTAL"], [33, 3, 1, "", "SQUARE_X"], [33, 3, 1, "", "STACK"], [33, 3, 1, "", "STACK_2"], [33, 3, 1, "", "STACK_3"], [33, 3, 1, "", "STACK_POP"], [33, 3, 1, "", "STACK_PUSH"], [33, 3, 1, "", "STAIRS"], [33, 3, 1, "", "STAIRS_DOWN"], [33, 3, 1, "", "STAIRS_UP"], [33, 3, 1, "", "STAR"], [33, 3, 1, "", "STARS"], [33, 3, 1, "", "STARS_FILLED"], [33, 3, 1, "", "STARS_OFF"], [33, 3, 1, "", "STAR_FILLED"], [33, 3, 1, "", "STAR_HALF"], [33, 3, 1, "", "STAR_HALF_FILLED"], [33, 3, 1, "", "STAR_OFF"], [33, 3, 1, "", "STATUS_CHANGE"], [33, 3, 1, "", "STEAM"], [33, 3, 1, "", "STEERING_WHEEL"], [33, 3, 1, "", "STEERING_WHEEL_OFF"], [33, 3, 1, "", "STEP_INTO"], [33, 3, 1, "", "STEP_OUT"], [33, 3, 1, "", "STEREO_GLASSES"], [33, 3, 1, "", "STETHOSCOPE"], [33, 3, 1, "", "STETHOSCOPE_OFF"], [33, 3, 1, "", "STICKER"], [33, 3, 1, "", "STORM"], [33, 3, 1, "", "STORM_OFF"], [33, 3, 1, "", "STRETCHING"], [33, 3, 1, "", "STRETCHING_2"], [33, 3, 1, "", "STRIKETHROUGH"], [33, 3, 1, "", "SUBMARINE"], [33, 3, 1, "", "SUBSCRIPT"], [33, 3, 1, "", "SUBTASK"], [33, 3, 1, "", "SUM"], [33, 3, 1, "", "SUM_OFF"], [33, 3, 1, "", "SUN"], [33, 3, 1, "", "SUNGLASSES"], [33, 3, 1, "", "SUNRISE"], [33, 3, 1, "", "SUNSET"], [33, 3, 1, "", "SUNSET_2"], [33, 3, 1, "", "SUN_FILLED"], [33, 3, 1, "", "SUN_HIGH"], [33, 3, 1, "", "SUN_LOW"], [33, 3, 1, "", "SUN_MOON"], [33, 3, 1, "", "SUN_OFF"], [33, 3, 1, "", "SUN_WIND"], [33, 3, 1, "", "SUPERSCRIPT"], [33, 3, 1, "", "SVG"], [33, 3, 1, "", "SWIMMING"], [33, 3, 1, "", "SWIPE"], [33, 3, 1, "", "SWITCH"], [33, 3, 1, "", "SWITCH_2"], [33, 3, 1, "", "SWITCH_3"], [33, 3, 1, "", "SWITCH_HORIZONTAL"], [33, 3, 1, "", "SWITCH_VERTICAL"], [33, 3, 1, "", "SWORD"], [33, 3, 1, "", "SWORDS"], [33, 3, 1, "", "SWORD_OFF"], [33, 3, 1, "", "S_TURN_DOWN"], [33, 3, 1, "", "S_TURN_LEFT"], [33, 3, 1, "", "S_TURN_RIGHT"], [33, 3, 1, "", "S_TURN_UP"], [33, 3, 1, "", "TABLE"], [33, 3, 1, "", "TABLE_ALIAS"], [33, 3, 1, "", "TABLE_COLUMN"], [33, 3, 1, "", "TABLE_DOWN"], [33, 3, 1, "", "TABLE_EXPORT"], [33, 3, 1, "", "TABLE_FILLED"], [33, 3, 1, "", "TABLE_HEART"], [33, 3, 1, "", "TABLE_IMPORT"], [33, 3, 1, "", "TABLE_MINUS"], [33, 3, 1, "", "TABLE_OFF"], [33, 3, 1, "", "TABLE_OPTIONS"], [33, 3, 1, "", "TABLE_PLUS"], [33, 3, 1, "", "TABLE_ROW"], [33, 3, 1, "", "TABLE_SHARE"], [33, 3, 1, "", "TABLE_SHORTCUT"], [33, 3, 1, "", "TAG"], [33, 3, 1, "", "TAGS"], [33, 3, 1, "", "TAGS_OFF"], [33, 3, 1, "", "TAG_OFF"], [33, 3, 1, "", "TALLYMARKS"], [33, 3, 1, "", "TALLYMARK_1"], [33, 3, 1, "", "TALLYMARK_2"], [33, 3, 1, "", "TALLYMARK_3"], [33, 3, 1, "", "TALLYMARK_4"], [33, 3, 1, "", "TANK"], [33, 3, 1, "", "TARGET"], [33, 3, 1, "", "TARGET_ARROW"], [33, 3, 1, "", "TARGET_OFF"], [33, 3, 1, "", "TEAPOT"], [33, 3, 1, "", "TELESCOPE"], [33, 3, 1, "", "TELESCOPE_OFF"], [33, 3, 1, "", "TEMPERATURE"], [33, 3, 1, "", "TEMPERATURE_CELSIUS"], [33, 3, 1, "", "TEMPERATURE_FAHRENHEIT"], [33, 3, 1, "", "TEMPERATURE_MINUS"], [33, 3, 1, "", "TEMPERATURE_OFF"], [33, 3, 1, "", "TEMPERATURE_PLUS"], [33, 3, 1, "", "TEMPLATE"], [33, 3, 1, "", "TEMPLATE_OFF"], [33, 3, 1, "", "TENT"], [33, 3, 1, "", "TENT_OFF"], [33, 3, 1, "", "TERMINAL"], [33, 3, 1, "", "TERMINAL_2"], [33, 3, 1, "", "TEST_PIPE"], [33, 3, 1, "", "TEST_PIPE_2"], [33, 3, 1, "", "TEST_PIPE_OFF"], [33, 3, 1, "", "TEX"], [33, 3, 1, "", "TEXTURE"], [33, 3, 1, "", "TEXT_CAPTION"], [33, 3, 1, "", "TEXT_COLOR"], [33, 3, 1, "", "TEXT_DECREASE"], [33, 3, 1, "", "TEXT_DIRECTION_LTR"], [33, 3, 1, "", "TEXT_DIRECTION_RTL"], [33, 3, 1, "", "TEXT_INCREASE"], [33, 3, 1, "", "TEXT_ORIENTATION"], [33, 3, 1, "", "TEXT_PLUS"], [33, 3, 1, "", "TEXT_RECOGNITION"], [33, 3, 1, "", "TEXT_RESIZE"], [33, 3, 1, "", "TEXT_SIZE"], [33, 3, 1, "", "TEXT_SPELLCHECK"], [33, 3, 1, "", "TEXT_WRAP"], [33, 3, 1, "", "TEXT_WRAP_DISABLED"], [33, 3, 1, "", "THEATER"], [33, 3, 1, "", "THERMOMETER"], [33, 3, 1, "", "THUMB_DOWN"], [33, 3, 1, "", "THUMB_DOWN_FILLED"], [33, 3, 1, "", "THUMB_DOWN_OFF"], [33, 3, 1, "", "THUMB_UP"], [33, 3, 1, "", "THUMB_UP_FILLED"], [33, 3, 1, "", "THUMB_UP_OFF"], [33, 3, 1, "", "TICKET"], [33, 3, 1, "", "TICKET_OFF"], [33, 3, 1, "", "TIC_TAC"], [33, 3, 1, "", "TIE"], [33, 3, 1, "", "TILDE"], [33, 3, 1, "", "TILT_SHIFT"], [33, 3, 1, "", "TILT_SHIFT_OFF"], [33, 3, 1, "", "TIMELINE"], [33, 3, 1, "", "TIMELINE_EVENT"], [33, 3, 1, "", "TIMELINE_EVENT_EXCLAMATION"], [33, 3, 1, "", "TIMELINE_EVENT_MINUS"], [33, 3, 1, "", "TIMELINE_EVENT_PLUS"], [33, 3, 1, "", "TIMELINE_EVENT_TEXT"], [33, 3, 1, "", "TIMELINE_EVENT_X"], [33, 3, 1, "", "TIME_DURATION_0"], [33, 3, 1, "", "TIME_DURATION_10"], [33, 3, 1, "", "TIME_DURATION_15"], [33, 3, 1, "", "TIME_DURATION_30"], [33, 3, 1, "", "TIME_DURATION_45"], [33, 3, 1, "", "TIME_DURATION_5"], [33, 3, 1, "", "TIME_DURATION_60"], [33, 3, 1, "", "TIME_DURATION_90"], [33, 3, 1, "", "TIME_DURATION_OFF"], [33, 3, 1, "", "TIR"], [33, 3, 1, "", "TOGGLE_LEFT"], [33, 3, 1, "", "TOGGLE_RIGHT"], [33, 3, 1, "", "TOILET_PAPER"], [33, 3, 1, "", "TOILET_PAPER_OFF"], [33, 3, 1, "", "TOML"], [33, 3, 1, "", "TOOL"], [33, 3, 1, "", "TOOLS"], [33, 3, 1, "", "TOOLS_KITCHEN"], [33, 3, 1, "", "TOOLS_KITCHEN_2"], [33, 3, 1, "", "TOOLS_KITCHEN_2_OFF"], [33, 3, 1, "", "TOOLS_KITCHEN_OFF"], [33, 3, 1, "", "TOOLS_OFF"], [33, 3, 1, "", "TOOLTIP"], [33, 3, 1, "", "TOPOLOGY_BUS"], [33, 3, 1, "", "TOPOLOGY_COMPLEX"], [33, 3, 1, "", "TOPOLOGY_FULL"], [33, 3, 1, "", "TOPOLOGY_FULL_HIERARCHY"], [33, 3, 1, "", "TOPOLOGY_RING"], [33, 3, 1, "", "TOPOLOGY_RING_2"], [33, 3, 1, "", "TOPOLOGY_RING_3"], [33, 3, 1, "", "TOPOLOGY_STAR"], [33, 3, 1, "", "TOPOLOGY_STAR_2"], [33, 3, 1, "", "TOPOLOGY_STAR_3"], [33, 3, 1, "", "TOPOLOGY_STAR_RING"], [33, 3, 1, "", "TOPOLOGY_STAR_RING_2"], [33, 3, 1, "", "TOPOLOGY_STAR_RING_3"], [33, 3, 1, "", "TORII"], [33, 3, 1, "", "TORNADO"], [33, 3, 1, "", "TOURNAMENT"], [33, 3, 1, "", "TOWER"], [33, 3, 1, "", "TOWER_OFF"], [33, 3, 1, "", "TRACK"], [33, 3, 1, "", "TRACTOR"], [33, 3, 1, "", "TRADEMARK"], [33, 3, 1, "", "TRAFFIC_CONE"], [33, 3, 1, "", "TRAFFIC_CONE_OFF"], [33, 3, 1, "", "TRAFFIC_LIGHTS"], [33, 3, 1, "", "TRAFFIC_LIGHTS_OFF"], [33, 3, 1, "", "TRAIN"], [33, 3, 1, "", "TRANSFER_IN"], [33, 3, 1, "", "TRANSFER_OUT"], [33, 3, 1, "", "TRANSFORM"], [33, 3, 1, "", "TRANSFORM_FILLED"], [33, 3, 1, "", "TRANSITION_BOTTOM"], [33, 3, 1, "", "TRANSITION_LEFT"], [33, 3, 1, "", "TRANSITION_RIGHT"], [33, 3, 1, "", "TRANSITION_TOP"], [33, 3, 1, "", "TRASH"], [33, 3, 1, "", "TRASH_FILLED"], [33, 3, 1, "", "TRASH_OFF"], [33, 3, 1, "", "TRASH_X"], [33, 3, 1, "", "TRASH_X_FILLED"], [33, 3, 1, "", "TREADMILL"], [33, 3, 1, "", "TREE"], [33, 3, 1, "", "TREES"], [33, 3, 1, "", "TREKKING"], [33, 3, 1, "", "TRENDING_DOWN"], [33, 3, 1, "", "TRENDING_DOWN_2"], [33, 3, 1, "", "TRENDING_DOWN_3"], [33, 3, 1, "", "TRENDING_UP"], [33, 3, 1, "", "TRENDING_UP_2"], [33, 3, 1, "", "TRENDING_UP_3"], [33, 3, 1, "", "TRIANGLE"], [33, 3, 1, "", "TRIANGLES"], [33, 3, 1, "", "TRIANGLE_FILLED"], [33, 3, 1, "", "TRIANGLE_INVERTED"], [33, 3, 1, "", "TRIANGLE_INVERTED_FILLED"], [33, 3, 1, "", "TRIANGLE_OFF"], [33, 3, 1, "", "TRIANGLE_SQUARE_CIRCLE"], [33, 3, 1, "", "TRIDENT"], [33, 3, 1, "", "TROLLEY"], [33, 3, 1, "", "TROPHY"], [33, 3, 1, "", "TROPHY_FILLED"], [33, 3, 1, "", "TROPHY_OFF"], [33, 3, 1, "", "TROWEL"], [33, 3, 1, "", "TRUCK"], [33, 3, 1, "", "TRUCK_DELIVERY"], [33, 3, 1, "", "TRUCK_LOADING"], [33, 3, 1, "", "TRUCK_OFF"], [33, 3, 1, "", "TRUCK_RETURN"], [33, 3, 1, "", "TXT"], [33, 3, 1, "", "TYPOGRAPHY"], [33, 3, 1, "", "TYPOGRAPHY_OFF"], [33, 3, 1, "", "UFO"], [33, 3, 1, "", "UFO_OFF"], [33, 3, 1, "", "UMBRELLA"], [33, 3, 1, "", "UMBRELLA_FILLED"], [33, 3, 1, "", "UMBRELLA_OFF"], [33, 3, 1, "", "UNDERLINE"], [33, 3, 1, "", "UNLINK"], [33, 3, 1, "", "UPLOAD"], [33, 3, 1, "", "URGENT"], [33, 3, 1, "", "USB"], [33, 3, 1, "", "USER"], [33, 3, 1, "", "USERS"], [33, 3, 1, "", "USERS_GROUP"], [33, 3, 1, "", "USERS_MINUS"], [33, 3, 1, "", "USERS_PLUS"], [33, 3, 1, "", "USER_BOLT"], [33, 3, 1, "", "USER_CANCEL"], [33, 3, 1, "", "USER_CHECK"], [33, 3, 1, "", "USER_CIRCLE"], [33, 3, 1, "", "USER_CODE"], [33, 3, 1, "", "USER_COG"], [33, 3, 1, "", "USER_DOLLAR"], [33, 3, 1, "", "USER_DOWN"], [33, 3, 1, "", "USER_EDIT"], [33, 3, 1, "", "USER_EXCLAMATION"], [33, 3, 1, "", "USER_HEART"], [33, 3, 1, "", "USER_MINUS"], [33, 3, 1, "", "USER_OFF"], [33, 3, 1, "", "USER_PAUSE"], [33, 3, 1, "", "USER_PIN"], [33, 3, 1, "", "USER_PLUS"], [33, 3, 1, "", "USER_QUESTION"], [33, 3, 1, "", "USER_SEARCH"], [33, 3, 1, "", "USER_SHARE"], [33, 3, 1, "", "USER_SHIELD"], [33, 3, 1, "", "USER_STAR"], [33, 3, 1, "", "USER_UP"], [33, 3, 1, "", "USER_X"], [33, 3, 1, "", "UV_INDEX"], [33, 3, 1, "", "UX_CIRCLE"], [33, 3, 1, "", "VACCINE"], [33, 3, 1, "", "VACCINE_BOTTLE"], [33, 3, 1, "", "VACCINE_BOTTLE_OFF"], [33, 3, 1, "", "VACCINE_OFF"], [33, 3, 1, "", "VACUUM_CLEANER"], [33, 3, 1, "", "VARIABLE"], [33, 3, 1, "", "VARIABLE_MINUS"], [33, 3, 1, "", "VARIABLE_OFF"], [33, 3, 1, "", "VARIABLE_PLUS"], [33, 3, 1, "", "VECTOR"], [33, 3, 1, "", "VECTOR_BEZIER"], [33, 3, 1, "", "VECTOR_BEZIER_2"], [33, 3, 1, "", "VECTOR_BEZIER_ARC"], [33, 3, 1, "", "VECTOR_BEZIER_CIRCLE"], [33, 3, 1, "", "VECTOR_OFF"], [33, 3, 1, "", "VECTOR_SPLINE"], [33, 3, 1, "", "VECTOR_TRIANGLE"], [33, 3, 1, "", "VECTOR_TRIANGLE_OFF"], [33, 3, 1, "", "VENUS"], [33, 3, 1, "", "VERSIONS"], [33, 3, 1, "", "VERSIONS_FILLED"], [33, 3, 1, "", "VERSIONS_OFF"], [33, 3, 1, "", "VIDEO"], [33, 3, 1, "", "VIDEO_MINUS"], [33, 3, 1, "", "VIDEO_OFF"], [33, 3, 1, "", "VIDEO_PLUS"], [33, 3, 1, "", "VIEWFINDER"], [33, 3, 1, "", "VIEWFINDER_OFF"], [33, 3, 1, "", "VIEWPORT_NARROW"], [33, 3, 1, "", "VIEWPORT_WIDE"], [33, 3, 1, "", "VIEW_360"], [33, 3, 1, "", "VIEW_360_OFF"], [33, 3, 1, "", "VINYL"], [33, 3, 1, "", "VIP"], [33, 3, 1, "", "VIP_OFF"], [33, 3, 1, "", "VIRUS"], [33, 3, 1, "", "VIRUS_OFF"], [33, 3, 1, "", "VIRUS_SEARCH"], [33, 3, 1, "", "VOCABULARY"], [33, 3, 1, "", "VOCABULARY_OFF"], [33, 3, 1, "", "VOLCANO"], [33, 3, 1, "", "VOLUME"], [33, 3, 1, "", "VOLUME_2"], [33, 3, 1, "", "VOLUME_3"], [33, 3, 1, "", "VOLUME_OFF"], [33, 3, 1, "", "WALK"], [33, 3, 1, "", "WALL"], [33, 3, 1, "", "WALLET"], [33, 3, 1, "", "WALLET_OFF"], [33, 3, 1, "", "WALLPAPER"], [33, 3, 1, "", "WALLPAPER_OFF"], [33, 3, 1, "", "WALL_OFF"], [33, 3, 1, "", "WAND"], [33, 3, 1, "", "WAND_OFF"], [33, 3, 1, "", "WASH"], [33, 3, 1, "", "WASH_DRY"], [33, 3, 1, "", "WASH_DRYCLEAN"], [33, 3, 1, "", "WASH_DRYCLEAN_OFF"], [33, 3, 1, "", "WASH_DRY_1"], [33, 3, 1, "", "WASH_DRY_2"], [33, 3, 1, "", "WASH_DRY_3"], [33, 3, 1, "", "WASH_DRY_A"], [33, 3, 1, "", "WASH_DRY_DIP"], [33, 3, 1, "", "WASH_DRY_F"], [33, 3, 1, "", "WASH_DRY_FLAT"], [33, 3, 1, "", "WASH_DRY_HANG"], [33, 3, 1, "", "WASH_DRY_OFF"], [33, 3, 1, "", "WASH_DRY_P"], [33, 3, 1, "", "WASH_DRY_SHADE"], [33, 3, 1, "", "WASH_DRY_W"], [33, 3, 1, "", "WASH_ECO"], [33, 3, 1, "", "WASH_GENTLE"], [33, 3, 1, "", "WASH_HAND"], [33, 3, 1, "", "WASH_MACHINE"], [33, 3, 1, "", "WASH_OFF"], [33, 3, 1, "", "WASH_PRESS"], [33, 3, 1, "", "WASH_TEMPERATURE_1"], [33, 3, 1, "", "WASH_TEMPERATURE_2"], [33, 3, 1, "", "WASH_TEMPERATURE_3"], [33, 3, 1, "", "WASH_TEMPERATURE_4"], [33, 3, 1, "", "WASH_TEMPERATURE_5"], [33, 3, 1, "", "WASH_TEMPERATURE_6"], [33, 3, 1, "", "WASH_TUMBLE_DRY"], [33, 3, 1, "", "WASH_TUMBLE_OFF"], [33, 3, 1, "", "WATERPOLO"], [33, 3, 1, "", "WAVE_SAW_TOOL"], [33, 3, 1, "", "WAVE_SINE"], [33, 3, 1, "", "WAVE_SQUARE"], [33, 3, 1, "", "WEBHOOK"], [33, 3, 1, "", "WEBHOOK_OFF"], [33, 3, 1, "", "WEIGHT"], [33, 3, 1, "", "WHEELCHAIR"], [33, 3, 1, "", "WHEELCHAIR_OFF"], [33, 3, 1, "", "WHIRL"], [33, 3, 1, "", "WIFI"], [33, 3, 1, "", "WIFI_0"], [33, 3, 1, "", "WIFI_1"], [33, 3, 1, "", "WIFI_2"], [33, 3, 1, "", "WIFI_OFF"], [33, 3, 1, "", "WIND"], [33, 3, 1, "", "WINDMILL"], [33, 3, 1, "", "WINDMILL_FILLED"], [33, 3, 1, "", "WINDMILL_OFF"], [33, 3, 1, "", "WINDOW"], [33, 3, 1, "", "WINDOW_MAXIMIZE"], [33, 3, 1, "", "WINDOW_MINIMIZE"], [33, 3, 1, "", "WINDOW_OFF"], [33, 3, 1, "", "WINDSOCK"], [33, 3, 1, "", "WIND_OFF"], [33, 3, 1, "", "WIPER"], [33, 3, 1, "", "WIPER_WASH"], [33, 3, 1, "", "WOMAN"], [33, 3, 1, "", "WOOD"], [33, 3, 1, "", "WORLD"], [33, 3, 1, "", "WORLD_BOLT"], [33, 3, 1, "", "WORLD_CANCEL"], [33, 3, 1, "", "WORLD_CHECK"], [33, 3, 1, "", "WORLD_CODE"], [33, 3, 1, "", "WORLD_COG"], [33, 3, 1, "", "WORLD_DOLLAR"], [33, 3, 1, "", "WORLD_DOWN"], [33, 3, 1, "", "WORLD_DOWNLOAD"], [33, 3, 1, "", "WORLD_EXCLAMATION"], [33, 3, 1, "", "WORLD_HEART"], [33, 3, 1, "", "WORLD_LATITUDE"], [33, 3, 1, "", "WORLD_LONGITUDE"], [33, 3, 1, "", "WORLD_MINUS"], [33, 3, 1, "", "WORLD_OFF"], [33, 3, 1, "", "WORLD_PAUSE"], [33, 3, 1, "", "WORLD_PIN"], [33, 3, 1, "", "WORLD_PLUS"], [33, 3, 1, "", "WORLD_QUESTION"], [33, 3, 1, "", "WORLD_SEARCH"], [33, 3, 1, "", "WORLD_SHARE"], [33, 3, 1, "", "WORLD_STAR"], [33, 3, 1, "", "WORLD_UP"], [33, 3, 1, "", "WORLD_UPLOAD"], [33, 3, 1, "", "WORLD_WWW"], [33, 3, 1, "", "WORLD_X"], [33, 3, 1, "", "WRECKING_BALL"], [33, 3, 1, "", "WRITING"], [33, 3, 1, "", "WRITING_OFF"], [33, 3, 1, "", "WRITING_SIGN"], [33, 3, 1, "", "WRITING_SIGN_OFF"], [33, 3, 1, "", "X"], [33, 3, 1, "", "XBOX_A"], [33, 3, 1, "", "XBOX_B"], [33, 3, 1, "", "XBOX_X"], [33, 3, 1, "", "XBOX_Y"], [33, 3, 1, "", "XD"], [33, 3, 1, "", "YIN_YANG"], [33, 3, 1, "", "YIN_YANG_FILLED"], [33, 3, 1, "", "YOGA"], [33, 3, 1, "", "ZEPPELIN"], [33, 3, 1, "", "ZEPPELIN_OFF"], [33, 3, 1, "", "ZIP"], [33, 3, 1, "", "ZODIAC_AQUARIUS"], [33, 3, 1, "", "ZODIAC_ARIES"], [33, 3, 1, "", "ZODIAC_CANCER"], [33, 3, 1, "", "ZODIAC_CAPRICORN"], [33, 3, 1, "", "ZODIAC_GEMINI"], [33, 3, 1, "", "ZODIAC_LEO"], [33, 3, 1, "", "ZODIAC_LIBRA"], [33, 3, 1, "", "ZODIAC_PISCES"], [33, 3, 1, "", "ZODIAC_SAGITTARIUS"], [33, 3, 1, "", "ZODIAC_SCORPIO"], [33, 3, 1, "", "ZODIAC_TAURUS"], [33, 3, 1, "", "ZODIAC_VIRGO"], [33, 3, 1, "", "ZOOM_CANCEL"], [33, 3, 1, "", "ZOOM_CHECK"], [33, 3, 1, "", "ZOOM_CHECK_FILLED"], [33, 3, 1, "", "ZOOM_CODE"], [33, 3, 1, "", "ZOOM_EXCLAMATION"], [33, 3, 1, "", "ZOOM_FILLED"], [33, 3, 1, "", "ZOOM_IN"], [33, 3, 1, "", "ZOOM_IN_AREA"], [33, 3, 1, "", "ZOOM_IN_AREA_FILLED"], [33, 3, 1, "", "ZOOM_IN_FILLED"], [33, 3, 1, "", "ZOOM_MONEY"], [33, 3, 1, "", "ZOOM_OUT"], [33, 3, 1, "", "ZOOM_OUT_AREA"], [33, 3, 1, "", "ZOOM_OUT_FILLED"], [33, 3, 1, "", "ZOOM_PAN"], [33, 3, 1, "", "ZOOM_QUESTION"], [33, 3, 1, "", "ZOOM_REPLACE"], [33, 3, 1, "", "ZOOM_RESET"], [33, 3, 1, "", "ZZZ"], [33, 3, 1, "", "ZZZ_OFF"]], "viser.IconName": [[33, 1, 1, "", "__new__"]], "viser.ImageHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.LabelHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.MeshHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.MeshSkinnedBoneHandle": [[37, 2, 1, "", "position"], [37, 2, 1, "", "wxyz"]], "viser.MeshSkinnedHandle": [[37, 3, 1, "", "bones"], [37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.PointCloudHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.SceneApi": [[36, 1, 1, "", "add_3d_gui_container"], [36, 1, 1, "", "add_batched_axes"], [36, 1, 1, "", "add_box"], [36, 1, 1, "", "add_camera_frustum"], [36, 1, 1, "", "add_frame"], [36, 1, 1, "", "add_glb"], [36, 1, 1, "", "add_grid"], [36, 1, 1, "", "add_icosphere"], [36, 1, 1, "", "add_image"], [36, 1, 1, "", "add_label"], [36, 1, 1, "", "add_mesh_simple"], [36, 1, 1, "", "add_mesh_skinned"], [36, 1, 1, "", "add_mesh_trimesh"], [36, 1, 1, "", "add_point_cloud"], [36, 1, 1, "", "add_spline_catmull_rom"], [36, 1, 1, "", "add_spline_cubic_bezier"], [36, 1, 1, "", "add_transform_controls"], [36, 1, 1, "", "on_pointer_callback_removed"], [36, 1, 1, "", "on_pointer_event"], [36, 1, 1, "", "remove_pointer_callback"], [36, 1, 1, "", "reset"], [36, 1, 1, "", "set_background_image"], [36, 1, 1, "", "set_global_visibility"], [36, 1, 1, "", "set_up_direction"], [36, 3, 1, "", "world_axes"]], "viser.SceneNodeHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.SceneNodePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "event"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "target"]], "viser.ScenePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 2, 1, "", "event"], [4, 3, 1, "", "event_type"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "screen_pos"]], "viser.TransformControlsHandle": [[37, 1, 1, "", "on_click"], [37, 1, 1, "", "on_update"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "update_timestamp"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.ViserServer": [[38, 1, 1, "", "atomic"], [38, 1, 1, "", "disconnect_share_url"], [38, 1, 1, "", "flush"], [38, 1, 1, "", "get_clients"], [38, 1, 1, "", "get_host"], [38, 1, 1, "", "get_port"], [38, 3, 1, "", "gui"], [38, 1, 1, "", "on_client_connect"], [38, 1, 1, "", "on_client_disconnect"], [38, 1, 1, "", "request_share_url"], [38, 3, 1, "", "scene"], [38, 1, 1, "", "send_file_download"], [38, 1, 1, "", "stop"]], "viser.extras": [[30, 0, 1, "", "Record3dFrame"], [30, 0, 1, "", "Record3dLoader"], [30, 0, 1, "", "ViserUrdf"]], "viser.extras.Record3dFrame": [[30, 3, 1, "", "K"], [30, 3, 1, "", "T_world_camera"], [30, 3, 1, "", "depth"], [30, 1, 1, "", "get_point_cloud"], [30, 3, 1, "", "mask"], [30, 3, 1, "", "rgb"]], "viser.extras.Record3dLoader": [[30, 1, 1, "", "get_frame"], [30, 1, 1, "", "num_frames"]], "viser.extras.ViserUrdf": [[30, 1, 1, "", "get_actuated_joint_limits"], [30, 1, 1, "", "get_actuated_joint_names"], [30, 1, 1, "", "update_cfg"]], "viser.infra": [[35, 0, 1, "", "Message"], [35, 0, 1, "", "TypeScriptAnnotationOverride"], [35, 0, 1, "", "WebsockClientConnection"], [35, 0, 1, "", "WebsockMessageHandler"], [35, 0, 1, "", "WebsockServer"], [35, 5, 1, "", "generate_typescript_interfaces"]], "viser.infra.Message": [[35, 1, 1, "", "as_serializable_dict"], [35, 1, 1, "", "deserialize"], [35, 3, 1, "", "excluded_self_client"], [35, 1, 1, "", "get_subclasses"], [35, 1, 1, "", "redundancy_key"]], "viser.infra.TypeScriptAnnotationOverride": [[35, 3, 1, "", "annotation"]], "viser.infra.WebsockClientConnection": [[35, 1, 1, "", "atomic"], [35, 1, 1, "", "queue_message"], [35, 1, 1, "", "register_handler"], [35, 1, 1, "", "start_recording"], [35, 1, 1, "", "unregister_handler"], [35, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockMessageHandler": [[35, 1, 1, "", "atomic"], [35, 1, 1, "", "queue_message"], [35, 1, 1, "", "register_handler"], [35, 1, 1, "", "start_recording"], [35, 1, 1, "", "unregister_handler"], [35, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockServer": [[35, 1, 1, "", "atomic"], [35, 1, 1, "", "flush"], [35, 1, 1, "", "flush_client"], [35, 1, 1, "", "on_client_connect"], [35, 1, 1, "", "on_client_disconnect"], [35, 1, 1, "", "queue_message"], [35, 1, 1, "", "register_handler"], [35, 1, 1, "", "start"], [35, 1, 1, "", "start_recording"], [35, 1, 1, "", "stop"], [35, 1, 1, "", "unregister_handler"], [35, 1, 1, "", "unsafe_send_message"]], "viser.transforms": [[39, 0, 1, "", "MatrixLieGroup"], [39, 0, 1, "", "SE2"], [39, 0, 1, "", "SE3"], [39, 0, 1, "", "SEBase"], [39, 0, 1, "", "SO2"], [39, 0, 1, "", "SO3"], [39, 0, 1, "", "SOBase"]], "viser.transforms.MatrixLieGroup": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"]], "viser.transforms.SE2": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_rotation"], [39, 1, 1, "", "from_rotation_and_translation"], [39, 1, 1, "", "from_translation"], [39, 1, 1, "", "from_xy_theta"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 1, 1, "", "rotation"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 1, 1, "", "translation"], [39, 3, 1, "", "unit_complex_xy"]], "viser.transforms.SE3": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_rotation"], [39, 1, 1, "", "from_rotation_and_translation"], [39, 1, 1, "", "from_translation"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 1, 1, "", "rotation"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 1, 1, "", "translation"], [39, 3, 1, "", "wxyz_xyz"]], "viser.transforms.SEBase": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_rotation"], [39, 1, 1, "", "from_rotation_and_translation"], [39, 1, 1, "", "from_translation"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 1, 1, "", "rotation"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 1, 1, "", "translation"]], "viser.transforms.SO2": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "as_radians"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_radians"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 3, 1, "", "unit_complex"]], "viser.transforms.SO3": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "as_quaternion_xyzw"], [39, 1, 1, "", "as_rpy_radians"], [39, 1, 1, "", "compute_pitch_radians"], [39, 1, 1, "", "compute_roll_radians"], [39, 1, 1, "", "compute_yaw_radians"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_quaternion_xyzw"], [39, 1, 1, "", "from_rpy_radians"], [39, 1, 1, "", "from_x_radians"], [39, 1, 1, "", "from_y_radians"], [39, 1, 1, "", "from_z_radians"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 3, 1, "", "wxyz"]], "viser.transforms.SOBase": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:module", "5": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"]}, "titleterms": {"camera": [0, 2, 9, 10], "handl": [0, 1, 32, 37], "client": [1, 3], "frame": [2, 5], "convent": 2, "scene": [2, 25, 36, 37], "tree": 2, "name": 2, "pose": [2, 9], "world": 2, "coordin": [2, 5], "develop": 3, "python": 3, "instal": [3, 34], "messag": 3, "updat": 3, "event": [4, 17, 25], "imag": 6, "gui": [7, 8, 20, 31, 32], "basic": [7, 21], "callback": 8, "command": 10, "mesh": [11, 17], "record3d": [12, 30], "visual": [12, 13, 14, 15, 16, 29], "smpl": [13, 29], "model": [13, 29], "robot": 14, "urdf": [14, 30], "realsens": 15, "colmap": 16, "click": 17, "theme": 18, "markdown": 19, "demonstr": 19, "3d": 20, "element": 20, "modal": 21, "depth": 22, "composit": 22, "spline": 23, "get": 24, "render": 24, "pointer": 25, "set": 26, "up": 26, "direct": 26, "game": 27, "plotli": 28, "human": 29, "bodi": 29, "requir": 29, "npz": 29, "file": 29, "helper": 30, "api": [31, 36], "icon": 33, "viser": [34, 38], "commun": 35, "server": 38, "transform": 39}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Camera Handles": [[0, "camera-handles"]], "Client Handles": [[1, "client-handles"]], "Frame Conventions": [[2, "frame-conventions"]], "Scene tree naming": [[2, "scene-tree-naming"]], "Poses": [[2, "poses"]], "World coordinates": [[2, "world-coordinates"]], "Cameras": [[2, "cameras"]], "Development": [[3, "development"]], "Python install": [[3, "python-install"]], "Message updates": [[3, "message-updates"]], "Client development": [[3, "client-development"]], "Events": [[4, "events"]], "Coordinate frames": [[5, "coordinate-frames"]], "Images": [[6, "images"]], "GUI basics": [[7, "gui-basics"]], "GUI callbacks": [[8, "gui-callbacks"]], "Camera poses": [[9, "camera-poses"]], "Camera commands": [[10, "camera-commands"]], "Meshes": [[11, "meshes"]], "Record3D visualizer": [[12, "record3d-visualizer"]], "SMPL model visualizer": [[13, "smpl-model-visualizer"]], "Robot URDF visualizer": [[14, "robot-urdf-visualizer"]], "RealSense visualizer": [[15, "realsense-visualizer"]], "COLMAP visualizer": [[16, "colmap-visualizer"]], "Mesh click events": [[17, "mesh-click-events"]], "Theming": [[18, "theming"]], "Markdown Demonstration": [[19, "markdown-demonstration"]], "3D GUI Elements": [[20, "d-gui-elements"]], "Modal basics": [[21, "modal-basics"]], "Depth compositing": [[22, "depth-compositing"]], "Splines": [[23, "splines"]], "Get Renders": [[24, "get-renders"]], "Scene pointer events.": [[25, "scene-pointer-events"]], "Set Up Direction": [[26, "set-up-direction"]], "Games": [[27, "games"]], "Plotly.": [[28, "plotly"]], "Visualizer for SMPL human body models. Requires a .npz model file.": [[29, "visualizer-for-smpl-human-body-models-requires-a-npz-model-file"]], "Record3D + URDF Helpers": [[30, "record3d-urdf-helpers"]], "GUI API": [[31, "gui-api"]], "GUI Handles": [[32, "gui-handles"]], "Icons": [[33, "icons"]], "viser": [[34, "viser"]], "Installation": [[34, "installation"]], "Communication": [[35, "communication"]], "Scene API": [[36, "scene-api"]], "Scene Handles": [[37, "scene-handles"]], "Viser Server": [[38, "viser-server"]], "Transforms": [[39, "transforms"]]}, "indexentries": {"camerahandle (class in viser)": [[0, "viser.CameraHandle"]], "aspect (viser.camerahandle property)": [[0, "viser.CameraHandle.aspect"]], "client (viser.camerahandle property)": [[0, "viser.CameraHandle.client"]], "fov (viser.camerahandle property)": [[0, "viser.CameraHandle.fov"]], "get_render() (viser.camerahandle method)": [[0, "viser.CameraHandle.get_render"]], "look_at (viser.camerahandle property)": [[0, "viser.CameraHandle.look_at"]], "on_update() (viser.camerahandle method)": [[0, "viser.CameraHandle.on_update"]], "position (viser.camerahandle property)": [[0, "viser.CameraHandle.position"]], "up_direction (viser.camerahandle property)": [[0, "viser.CameraHandle.up_direction"]], "update_timestamp (viser.camerahandle property)": [[0, "viser.CameraHandle.update_timestamp"]], "wxyz (viser.camerahandle property)": [[0, "viser.CameraHandle.wxyz"]], "clienthandle (class in viser)": [[1, "viser.ClientHandle"]], "atomic() (viser.clienthandle method)": [[1, "viser.ClientHandle.atomic"]], "camera (viser.clienthandle attribute)": [[1, "viser.ClientHandle.camera"]], "client_id (viser.clienthandle attribute)": [[1, "viser.ClientHandle.client_id"]], "flush() (viser.clienthandle method)": [[1, "viser.ClientHandle.flush"]], "gui (viser.clienthandle attribute)": [[1, "viser.ClientHandle.gui"]], "scene (viser.clienthandle attribute)": [[1, "viser.ClientHandle.scene"]], "send_file_download() (viser.clienthandle method)": [[1, "viser.ClientHandle.send_file_download"]], "guievent (class in viser)": [[4, "viser.GuiEvent"]], "scenenodepointerevent (class in viser)": [[4, "viser.SceneNodePointerEvent"]], "scenepointerevent (class in viser)": [[4, "viser.ScenePointerEvent"]], "client (viser.guievent attribute)": [[4, "viser.GuiEvent.client"]], "client (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client"]], "client (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client"]], "client_id (viser.guievent attribute)": [[4, "viser.GuiEvent.client_id"]], "client_id (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client_id"]], "client_id (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client_id"]], "event (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.event"]], "event (viser.scenepointerevent property)": [[4, "viser.ScenePointerEvent.event"]], "event_type (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.event_type"]], "ray_direction (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_direction"]], "ray_direction (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_direction"]], "ray_origin (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_origin"]], "ray_origin (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_origin"]], "screen_pos (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.screen_pos"]], "target (viser.guievent attribute)": [[4, "viser.GuiEvent.target"]], "target (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.target"]], "k (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.K"]], "record3dframe (class in viser.extras)": [[30, "viser.extras.Record3dFrame"]], "record3dloader (class in viser.extras)": [[30, "viser.extras.Record3dLoader"]], "t_world_camera (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.T_world_camera"]], "viserurdf (class in viser.extras)": [[30, "viser.extras.ViserUrdf"]], "depth (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.depth"]], "get_actuated_joint_limits() (viser.extras.viserurdf method)": [[30, "viser.extras.ViserUrdf.get_actuated_joint_limits"]], "get_actuated_joint_names() (viser.extras.viserurdf method)": [[30, "viser.extras.ViserUrdf.get_actuated_joint_names"]], "get_frame() (viser.extras.record3dloader method)": [[30, "viser.extras.Record3dLoader.get_frame"]], "get_point_cloud() (viser.extras.record3dframe method)": [[30, "viser.extras.Record3dFrame.get_point_cloud"]], "mask (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.mask"]], "module": [[30, "module-viser.extras"], [35, "module-viser.infra"], [39, "module-viser.transforms"]], "num_frames() (viser.extras.record3dloader method)": [[30, "viser.extras.Record3dLoader.num_frames"]], "rgb (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.rgb"]], "update_cfg() (viser.extras.viserurdf method)": [[30, "viser.extras.ViserUrdf.update_cfg"]], "viser.extras": [[30, "module-viser.extras"]], "guiapi (class in viser)": [[31, "viser.GuiApi"]], "add_button() (viser.guiapi method)": [[31, "viser.GuiApi.add_button"]], "add_button_group() (viser.guiapi method)": [[31, "viser.GuiApi.add_button_group"]], "add_checkbox() (viser.guiapi method)": [[31, "viser.GuiApi.add_checkbox"]], "add_dropdown() (viser.guiapi method)": [[31, "viser.GuiApi.add_dropdown"]], "add_folder() (viser.guiapi method)": [[31, "viser.GuiApi.add_folder"]], "add_markdown() (viser.guiapi method)": [[31, "viser.GuiApi.add_markdown"]], "add_modal() (viser.guiapi method)": [[31, "viser.GuiApi.add_modal"]], "add_multi_slider() (viser.guiapi method)": [[31, "viser.GuiApi.add_multi_slider"]], "add_number() (viser.guiapi method)": [[31, "viser.GuiApi.add_number"]], "add_plotly() (viser.guiapi method)": [[31, "viser.GuiApi.add_plotly"]], "add_progress_bar() (viser.guiapi method)": [[31, "viser.GuiApi.add_progress_bar"]], "add_rgb() (viser.guiapi method)": [[31, "viser.GuiApi.add_rgb"]], "add_rgba() (viser.guiapi method)": [[31, "viser.GuiApi.add_rgba"]], "add_slider() (viser.guiapi method)": [[31, "viser.GuiApi.add_slider"]], "add_tab_group() (viser.guiapi method)": [[31, "viser.GuiApi.add_tab_group"]], "add_text() (viser.guiapi method)": [[31, "viser.GuiApi.add_text"]], "add_upload_button() (viser.guiapi method)": [[31, "viser.GuiApi.add_upload_button"]], "add_vector2() (viser.guiapi method)": [[31, "viser.GuiApi.add_vector2"]], "add_vector3() (viser.guiapi method)": [[31, "viser.GuiApi.add_vector3"]], "configure_theme() (viser.guiapi method)": [[31, "viser.GuiApi.configure_theme"]], "reset() (viser.guiapi method)": [[31, "viser.GuiApi.reset"]], "set_panel_label() (viser.guiapi method)": [[31, "viser.GuiApi.set_panel_label"]], "guibuttongrouphandle (class in viser)": [[32, "viser.GuiButtonGroupHandle"]], "guibuttonhandle (class in viser)": [[32, "viser.GuiButtonHandle"]], "guidropdownhandle (class in viser)": [[32, "viser.GuiDropdownHandle"]], "guifolderhandle (class in viser)": [[32, "viser.GuiFolderHandle"]], "guiinputhandle (class in viser)": [[32, "viser.GuiInputHandle"]], "guimarkdownhandle (class in viser)": [[32, "viser.GuiMarkdownHandle"]], "guiplotlyhandle (class in viser)": [[32, "viser.GuiPlotlyHandle"]], "guitabgrouphandle (class in viser)": [[32, "viser.GuiTabGroupHandle"]], "guitabhandle (class in viser)": [[32, "viser.GuiTabHandle"]], "__post_init__() (viser.guibuttongrouphandle method)": [[32, "viser.GuiButtonGroupHandle.__post_init__"]], "__post_init__() (viser.guibuttonhandle method)": [[32, "viser.GuiButtonHandle.__post_init__"]], "__post_init__() (viser.guidropdownhandle method)": [[32, "viser.GuiDropdownHandle.__post_init__"]], "__post_init__() (viser.guiinputhandle method)": [[32, "viser.GuiInputHandle.__post_init__"]], "__post_init__() (viser.guimarkdownhandle method)": [[32, "viser.GuiMarkdownHandle.__post_init__"]], "__post_init__() (viser.guiplotlyhandle method)": [[32, "viser.GuiPlotlyHandle.__post_init__"]], "add_tab() (viser.guitabgrouphandle method)": [[32, "viser.GuiTabGroupHandle.add_tab"]], "aspect (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.aspect"]], "content (viser.guimarkdownhandle property)": [[32, "viser.GuiMarkdownHandle.content"]], "disabled (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.disabled"]], "disabled (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.disabled"]], "disabled (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.disabled"]], "disabled (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.disabled"]], "figure (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.figure"]], "on_click() (viser.guibuttongrouphandle method)": [[32, "viser.GuiButtonGroupHandle.on_click"]], "on_click() (viser.guibuttonhandle method)": [[32, "viser.GuiButtonHandle.on_click"]], "on_update() (viser.guidropdownhandle method)": [[32, "viser.GuiDropdownHandle.on_update"]], "on_update() (viser.guiinputhandle method)": [[32, "viser.GuiInputHandle.on_update"]], "options (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.options"]], "order (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.order"]], "order (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.order"]], "order (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.order"]], "order (viser.guifolderhandle property)": [[32, "viser.GuiFolderHandle.order"]], "order (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.order"]], "order (viser.guimarkdownhandle property)": [[32, "viser.GuiMarkdownHandle.order"]], "order (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.order"]], "order (viser.guitabgrouphandle property)": [[32, "viser.GuiTabGroupHandle.order"]], "remove() (viser.guibuttongrouphandle method)": [[32, "viser.GuiButtonGroupHandle.remove"]], "remove() (viser.guibuttonhandle method)": [[32, "viser.GuiButtonHandle.remove"]], "remove() (viser.guidropdownhandle method)": [[32, "viser.GuiDropdownHandle.remove"]], "remove() (viser.guifolderhandle method)": [[32, "viser.GuiFolderHandle.remove"]], "remove() (viser.guiinputhandle method)": [[32, "viser.GuiInputHandle.remove"]], "remove() (viser.guimarkdownhandle method)": [[32, "viser.GuiMarkdownHandle.remove"]], "remove() (viser.guiplotlyhandle method)": [[32, "viser.GuiPlotlyHandle.remove"]], "remove() (viser.guitabgrouphandle method)": [[32, "viser.GuiTabGroupHandle.remove"]], "remove() (viser.guitabhandle method)": [[32, "viser.GuiTabHandle.remove"]], "update_timestamp (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.update_timestamp"]], "update_timestamp (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.update_timestamp"]], "update_timestamp (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.update_timestamp"]], "update_timestamp (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.update_timestamp"]], "value (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.value"]], "value (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.value"]], "value (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.value"]], "value (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.value"]], "visible (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.visible"]], "visible (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.visible"]], "visible (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.visible"]], "visible (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.visible"]], "visible (viser.guimarkdownhandle property)": [[32, "viser.GuiMarkdownHandle.visible"]], "visible (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.visible"]], "abacus (viser.icon attribute)": [[33, "viser.Icon.ABACUS"]], "abacus_off (viser.icon attribute)": [[33, "viser.Icon.ABACUS_OFF"]], "abc (viser.icon attribute)": [[33, "viser.Icon.ABC"]], "accessible (viser.icon attribute)": [[33, "viser.Icon.ACCESSIBLE"]], "accessible_off (viser.icon attribute)": [[33, "viser.Icon.ACCESSIBLE_OFF"]], "accessible_off_filled (viser.icon attribute)": [[33, "viser.Icon.ACCESSIBLE_OFF_FILLED"]], "access_point (viser.icon attribute)": [[33, "viser.Icon.ACCESS_POINT"]], "access_point_off (viser.icon attribute)": [[33, "viser.Icon.ACCESS_POINT_OFF"]], "activity (viser.icon attribute)": [[33, "viser.Icon.ACTIVITY"]], "activity_heartbeat (viser.icon attribute)": [[33, "viser.Icon.ACTIVITY_HEARTBEAT"]], "ad (viser.icon attribute)": [[33, "viser.Icon.AD"]], "address_book (viser.icon attribute)": [[33, "viser.Icon.ADDRESS_BOOK"]], "address_book_off (viser.icon attribute)": [[33, "viser.Icon.ADDRESS_BOOK_OFF"]], "adjustments (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS"]], "adjustments_alt (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_ALT"]], "adjustments_bolt (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_BOLT"]], "adjustments_cancel (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_CANCEL"]], "adjustments_check (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_CHECK"]], "adjustments_code (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_CODE"]], "adjustments_cog (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_COG"]], "adjustments_dollar (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_DOLLAR"]], "adjustments_down (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_DOWN"]], "adjustments_exclamation (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_EXCLAMATION"]], "adjustments_filled (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_FILLED"]], "adjustments_heart (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_HEART"]], "adjustments_horizontal (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_HORIZONTAL"]], "adjustments_minus (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_MINUS"]], "adjustments_off (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_OFF"]], "adjustments_pause (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_PAUSE"]], "adjustments_pin (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_PIN"]], "adjustments_plus (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_PLUS"]], "adjustments_question (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_QUESTION"]], "adjustments_search (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_SEARCH"]], "adjustments_share (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_SHARE"]], "adjustments_star (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_STAR"]], "adjustments_up (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_UP"]], "adjustments_x (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_X"]], "ad_2 (viser.icon attribute)": [[33, "viser.Icon.AD_2"]], "ad_circle (viser.icon attribute)": [[33, "viser.Icon.AD_CIRCLE"]], "ad_circle_filled (viser.icon attribute)": [[33, "viser.Icon.AD_CIRCLE_FILLED"]], "ad_circle_off (viser.icon attribute)": [[33, "viser.Icon.AD_CIRCLE_OFF"]], "ad_filled (viser.icon attribute)": [[33, "viser.Icon.AD_FILLED"]], "ad_off (viser.icon attribute)": [[33, "viser.Icon.AD_OFF"]], "aerial_lift (viser.icon attribute)": [[33, "viser.Icon.AERIAL_LIFT"]], "affiliate (viser.icon attribute)": [[33, "viser.Icon.AFFILIATE"]], "affiliate_filled (viser.icon attribute)": [[33, "viser.Icon.AFFILIATE_FILLED"]], "air_balloon (viser.icon attribute)": [[33, "viser.Icon.AIR_BALLOON"]], "air_conditioning (viser.icon attribute)": [[33, "viser.Icon.AIR_CONDITIONING"]], "air_conditioning_disabled (viser.icon attribute)": [[33, "viser.Icon.AIR_CONDITIONING_DISABLED"]], "alarm (viser.icon attribute)": [[33, "viser.Icon.ALARM"]], "alarm_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_FILLED"]], "alarm_minus (viser.icon attribute)": [[33, "viser.Icon.ALARM_MINUS"]], "alarm_minus_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_MINUS_FILLED"]], "alarm_off (viser.icon attribute)": [[33, "viser.Icon.ALARM_OFF"]], "alarm_plus (viser.icon attribute)": [[33, "viser.Icon.ALARM_PLUS"]], "alarm_plus_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_PLUS_FILLED"]], "alarm_snooze (viser.icon attribute)": [[33, "viser.Icon.ALARM_SNOOZE"]], "alarm_snooze_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_SNOOZE_FILLED"]], "album (viser.icon attribute)": [[33, "viser.Icon.ALBUM"]], "album_off (viser.icon attribute)": [[33, "viser.Icon.ALBUM_OFF"]], "alert_circle (viser.icon attribute)": [[33, "viser.Icon.ALERT_CIRCLE"]], "alert_circle_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_CIRCLE_FILLED"]], "alert_hexagon (viser.icon attribute)": [[33, "viser.Icon.ALERT_HEXAGON"]], "alert_hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_HEXAGON_FILLED"]], "alert_octagon (viser.icon attribute)": [[33, "viser.Icon.ALERT_OCTAGON"]], "alert_octagon_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_OCTAGON_FILLED"]], "alert_small (viser.icon attribute)": [[33, "viser.Icon.ALERT_SMALL"]], "alert_square (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE"]], "alert_square_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE_FILLED"]], "alert_square_rounded (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE_ROUNDED"]], "alert_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE_ROUNDED_FILLED"]], "alert_triangle (viser.icon attribute)": [[33, "viser.Icon.ALERT_TRIANGLE"]], "alert_triangle_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_TRIANGLE_FILLED"]], "alien (viser.icon attribute)": [[33, "viser.Icon.ALIEN"]], "alien_filled (viser.icon attribute)": [[33, "viser.Icon.ALIEN_FILLED"]], "align_box_bottom_center (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER"]], "align_box_bottom_center_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER_FILLED"]], "align_box_bottom_left (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT"]], "align_box_bottom_left_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT_FILLED"]], "align_box_bottom_right (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT"]], "align_box_bottom_right_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT_FILLED"]], "align_box_center_bottom (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_BOTTOM"]], "align_box_center_middle (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE"]], "align_box_center_middle_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE_FILLED"]], "align_box_center_stretch (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_STRETCH"]], "align_box_center_top (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_TOP"]], "align_box_left_bottom (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM"]], "align_box_left_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM_FILLED"]], "align_box_left_middle (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE"]], "align_box_left_middle_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE_FILLED"]], "align_box_left_stretch (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_STRETCH"]], "align_box_left_top (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_TOP"]], "align_box_left_top_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_TOP_FILLED"]], "align_box_right_bottom (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM"]], "align_box_right_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM_FILLED"]], "align_box_right_middle (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE"]], "align_box_right_middle_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE_FILLED"]], "align_box_right_stretch (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_STRETCH"]], "align_box_right_top (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_TOP"]], "align_box_right_top_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_TOP_FILLED"]], "align_box_top_center (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_CENTER"]], "align_box_top_center_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_CENTER_FILLED"]], "align_box_top_left (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_LEFT"]], "align_box_top_left_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_LEFT_FILLED"]], "align_box_top_right (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_RIGHT"]], "align_box_top_right_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_RIGHT_FILLED"]], "align_center (viser.icon attribute)": [[33, "viser.Icon.ALIGN_CENTER"]], "align_justified (viser.icon attribute)": [[33, "viser.Icon.ALIGN_JUSTIFIED"]], "align_left (viser.icon attribute)": [[33, "viser.Icon.ALIGN_LEFT"]], "align_right (viser.icon attribute)": [[33, "viser.Icon.ALIGN_RIGHT"]], "alpha (viser.icon attribute)": [[33, "viser.Icon.ALPHA"]], "alphabet_cyrillic (viser.icon attribute)": [[33, "viser.Icon.ALPHABET_CYRILLIC"]], "alphabet_greek (viser.icon attribute)": [[33, "viser.Icon.ALPHABET_GREEK"]], "alphabet_latin (viser.icon attribute)": [[33, "viser.Icon.ALPHABET_LATIN"]], "ambulance (viser.icon attribute)": [[33, "viser.Icon.AMBULANCE"]], "ampersand (viser.icon attribute)": [[33, "viser.Icon.AMPERSAND"]], "analyze (viser.icon attribute)": [[33, "viser.Icon.ANALYZE"]], "analyze_filled (viser.icon attribute)": [[33, "viser.Icon.ANALYZE_FILLED"]], "analyze_off (viser.icon attribute)": [[33, "viser.Icon.ANALYZE_OFF"]], "anchor (viser.icon attribute)": [[33, "viser.Icon.ANCHOR"]], "anchor_off (viser.icon attribute)": [[33, "viser.Icon.ANCHOR_OFF"]], "angle (viser.icon attribute)": [[33, "viser.Icon.ANGLE"]], "ankh (viser.icon attribute)": [[33, "viser.Icon.ANKH"]], "antenna (viser.icon attribute)": [[33, "viser.Icon.ANTENNA"]], "antenna_bars_1 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_1"]], "antenna_bars_2 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_2"]], "antenna_bars_3 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_3"]], "antenna_bars_4 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_4"]], "antenna_bars_5 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_5"]], "antenna_bars_off (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_OFF"]], "antenna_off (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_OFF"]], "aperture (viser.icon attribute)": [[33, "viser.Icon.APERTURE"]], "aperture_off (viser.icon attribute)": [[33, "viser.Icon.APERTURE_OFF"]], "api (viser.icon attribute)": [[33, "viser.Icon.API"]], "api_app (viser.icon attribute)": [[33, "viser.Icon.API_APP"]], "api_app_off (viser.icon attribute)": [[33, "viser.Icon.API_APP_OFF"]], "api_off (viser.icon attribute)": [[33, "viser.Icon.API_OFF"]], "apple (viser.icon attribute)": [[33, "viser.Icon.APPLE"]], "apps (viser.icon attribute)": [[33, "viser.Icon.APPS"]], "apps_filled (viser.icon attribute)": [[33, "viser.Icon.APPS_FILLED"]], "apps_off (viser.icon attribute)": [[33, "viser.Icon.APPS_OFF"]], "app_window (viser.icon attribute)": [[33, "viser.Icon.APP_WINDOW"]], "app_window_filled (viser.icon attribute)": [[33, "viser.Icon.APP_WINDOW_FILLED"]], "archive (viser.icon attribute)": [[33, "viser.Icon.ARCHIVE"]], "archive_filled (viser.icon attribute)": [[33, "viser.Icon.ARCHIVE_FILLED"]], "archive_off (viser.icon attribute)": [[33, "viser.Icon.ARCHIVE_OFF"]], "armchair (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR"]], "armchair_2 (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR_2"]], "armchair_2_off (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR_2_OFF"]], "armchair_off (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR_OFF"]], "arrows_cross (viser.icon attribute)": [[33, "viser.Icon.ARROWS_CROSS"]], "arrows_diagonal (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL"]], "arrows_diagonal_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL_2"]], "arrows_diagonal_minimize (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE"]], "arrows_diagonal_minimize_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE_2"]], "arrows_diff (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIFF"]], "arrows_double_ne_sw (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_NE_SW"]], "arrows_double_nw_se (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_NW_SE"]], "arrows_double_se_nw (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_SE_NW"]], "arrows_double_sw_ne (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_SW_NE"]], "arrows_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOWN"]], "arrows_down_up (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOWN_UP"]], "arrows_exchange (viser.icon attribute)": [[33, "viser.Icon.ARROWS_EXCHANGE"]], "arrows_exchange_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_EXCHANGE_2"]], "arrows_horizontal (viser.icon attribute)": [[33, "viser.Icon.ARROWS_HORIZONTAL"]], "arrows_join (viser.icon attribute)": [[33, "viser.Icon.ARROWS_JOIN"]], "arrows_join_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_JOIN_2"]], "arrows_left (viser.icon attribute)": [[33, "viser.Icon.ARROWS_LEFT"]], "arrows_left_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_LEFT_DOWN"]], "arrows_left_right (viser.icon attribute)": [[33, "viser.Icon.ARROWS_LEFT_RIGHT"]], "arrows_maximize (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MAXIMIZE"]], "arrows_minimize (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MINIMIZE"]], "arrows_move (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MOVE"]], "arrows_move_horizontal (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MOVE_HORIZONTAL"]], "arrows_move_vertical (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MOVE_VERTICAL"]], "arrows_random (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RANDOM"]], "arrows_right (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RIGHT"]], "arrows_right_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RIGHT_DOWN"]], "arrows_right_left (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RIGHT_LEFT"]], "arrows_shuffle (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SHUFFLE"]], "arrows_shuffle_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SHUFFLE_2"]], "arrows_sort (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SORT"]], "arrows_split (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SPLIT"]], "arrows_split_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SPLIT_2"]], "arrows_transfer_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_TRANSFER_DOWN"]], "arrows_transfer_up (viser.icon attribute)": [[33, "viser.Icon.ARROWS_TRANSFER_UP"]], "arrows_up (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP"]], "arrows_up_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP_DOWN"]], "arrows_up_left (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP_LEFT"]], "arrows_up_right (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP_RIGHT"]], "arrows_vertical (viser.icon attribute)": [[33, "viser.Icon.ARROWS_VERTICAL"]], "arrow_autofit_content (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_CONTENT"]], "arrow_autofit_content_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_CONTENT_FILLED"]], "arrow_autofit_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_DOWN"]], "arrow_autofit_height (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_HEIGHT"]], "arrow_autofit_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_LEFT"]], "arrow_autofit_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_RIGHT"]], "arrow_autofit_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_UP"]], "arrow_autofit_width (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_WIDTH"]], "arrow_back (viser.icon attribute)": [[33, "viser.Icon.ARROW_BACK"]], "arrow_back_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BACK_UP"]], "arrow_back_up_double (viser.icon attribute)": [[33, "viser.Icon.ARROW_BACK_UP_DOUBLE"]], "arrow_badge_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_DOWN"]], "arrow_badge_down_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_DOWN_FILLED"]], "arrow_badge_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_LEFT"]], "arrow_badge_left_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_LEFT_FILLED"]], "arrow_badge_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_RIGHT"]], "arrow_badge_right_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_RIGHT_FILLED"]], "arrow_badge_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_UP"]], "arrow_badge_up_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_UP_FILLED"]], "arrow_bar_both (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_BOTH"]], "arrow_bar_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_DOWN"]], "arrow_bar_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_LEFT"]], "arrow_bar_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_RIGHT"]], "arrow_bar_to_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_DOWN"]], "arrow_bar_to_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_LEFT"]], "arrow_bar_to_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_RIGHT"]], "arrow_bar_to_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_UP"]], "arrow_bar_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_UP"]], "arrow_bear_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_LEFT"]], "arrow_bear_left_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_LEFT_2"]], "arrow_bear_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_RIGHT"]], "arrow_bear_right_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_RIGHT_2"]], "arrow_big_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN"]], "arrow_big_down_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_FILLED"]], "arrow_big_down_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINE"]], "arrow_big_down_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINES"]], "arrow_big_down_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINES_FILLED"]], "arrow_big_down_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINE_FILLED"]], "arrow_big_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT"]], "arrow_big_left_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_FILLED"]], "arrow_big_left_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINE"]], "arrow_big_left_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINES"]], "arrow_big_left_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINES_FILLED"]], "arrow_big_left_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINE_FILLED"]], "arrow_big_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT"]], "arrow_big_right_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_FILLED"]], "arrow_big_right_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINE"]], "arrow_big_right_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINES"]], "arrow_big_right_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINES_FILLED"]], "arrow_big_right_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINE_FILLED"]], "arrow_big_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP"]], "arrow_big_up_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_FILLED"]], "arrow_big_up_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINE"]], "arrow_big_up_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINES"]], "arrow_big_up_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINES_FILLED"]], "arrow_big_up_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINE_FILLED"]], "arrow_bounce (viser.icon attribute)": [[33, "viser.Icon.ARROW_BOUNCE"]], "arrow_capsule (viser.icon attribute)": [[33, "viser.Icon.ARROW_CAPSULE"]], "arrow_curve_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_CURVE_LEFT"]], "arrow_curve_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_CURVE_RIGHT"]], "arrow_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN"]], "arrow_down_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_BAR"]], "arrow_down_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_CIRCLE"]], "arrow_down_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_LEFT"]], "arrow_down_left_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_LEFT_CIRCLE"]], "arrow_down_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_RHOMBUS"]], "arrow_down_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_RIGHT"]], "arrow_down_right_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_RIGHT_CIRCLE"]], "arrow_down_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_SQUARE"]], "arrow_down_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_TAIL"]], "arrow_elbow_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ELBOW_LEFT"]], "arrow_elbow_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ELBOW_RIGHT"]], "arrow_fork (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORK"]], "arrow_forward (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORWARD"]], "arrow_forward_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORWARD_UP"]], "arrow_forward_up_double (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORWARD_UP_DOUBLE"]], "arrow_guide (viser.icon attribute)": [[33, "viser.Icon.ARROW_GUIDE"]], "arrow_iteration (viser.icon attribute)": [[33, "viser.Icon.ARROW_ITERATION"]], "arrow_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT"]], "arrow_left_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_BAR"]], "arrow_left_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_CIRCLE"]], "arrow_left_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_RHOMBUS"]], "arrow_left_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_RIGHT"]], "arrow_left_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_SQUARE"]], "arrow_left_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_TAIL"]], "arrow_loop_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_LEFT"]], "arrow_loop_left_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_LEFT_2"]], "arrow_loop_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_RIGHT"]], "arrow_loop_right_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_RIGHT_2"]], "arrow_merge (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE"]], "arrow_merge_both (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE_BOTH"]], "arrow_merge_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE_LEFT"]], "arrow_merge_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE_RIGHT"]], "arrow_move_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_DOWN"]], "arrow_move_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_LEFT"]], "arrow_move_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_RIGHT"]], "arrow_move_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_UP"]], "arrow_narrow_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_DOWN"]], "arrow_narrow_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_LEFT"]], "arrow_narrow_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_RIGHT"]], "arrow_narrow_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_UP"]], "arrow_ramp_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_LEFT"]], "arrow_ramp_left_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_LEFT_2"]], "arrow_ramp_left_3 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_LEFT_3"]], "arrow_ramp_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_RIGHT"]], "arrow_ramp_right_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_RIGHT_2"]], "arrow_ramp_right_3 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_RIGHT_3"]], "arrow_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT"]], "arrow_right_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_BAR"]], "arrow_right_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_CIRCLE"]], "arrow_right_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_RHOMBUS"]], "arrow_right_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_SQUARE"]], "arrow_right_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_TAIL"]], "arrow_rotary_first_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_FIRST_LEFT"]], "arrow_rotary_first_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_FIRST_RIGHT"]], "arrow_rotary_last_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_LAST_LEFT"]], "arrow_rotary_last_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_LAST_RIGHT"]], "arrow_rotary_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_LEFT"]], "arrow_rotary_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_RIGHT"]], "arrow_rotary_straight (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_STRAIGHT"]], "arrow_roundabout_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROUNDABOUT_LEFT"]], "arrow_roundabout_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROUNDABOUT_RIGHT"]], "arrow_sharp_turn_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_SHARP_TURN_LEFT"]], "arrow_sharp_turn_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_SHARP_TURN_RIGHT"]], "arrow_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP"]], "arrow_up_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_BAR"]], "arrow_up_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_CIRCLE"]], "arrow_up_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_LEFT"]], "arrow_up_left_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_LEFT_CIRCLE"]], "arrow_up_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_RHOMBUS"]], "arrow_up_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_RIGHT"]], "arrow_up_right_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_RIGHT_CIRCLE"]], "arrow_up_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_SQUARE"]], "arrow_up_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_TAIL"]], "arrow_wave_left_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_LEFT_DOWN"]], "arrow_wave_left_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_LEFT_UP"]], "arrow_wave_right_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_RIGHT_DOWN"]], "arrow_wave_right_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_RIGHT_UP"]], "arrow_zig_zag (viser.icon attribute)": [[33, "viser.Icon.ARROW_ZIG_ZAG"]], "artboard (viser.icon attribute)": [[33, "viser.Icon.ARTBOARD"]], "artboard_filled (viser.icon attribute)": [[33, "viser.Icon.ARTBOARD_FILLED"]], "artboard_off (viser.icon attribute)": [[33, "viser.Icon.ARTBOARD_OFF"]], "article (viser.icon attribute)": [[33, "viser.Icon.ARTICLE"]], "article_filled_filled (viser.icon attribute)": [[33, "viser.Icon.ARTICLE_FILLED_FILLED"]], "article_off (viser.icon attribute)": [[33, "viser.Icon.ARTICLE_OFF"]], "aspect_ratio (viser.icon attribute)": [[33, "viser.Icon.ASPECT_RATIO"]], "aspect_ratio_filled (viser.icon attribute)": [[33, "viser.Icon.ASPECT_RATIO_FILLED"]], "aspect_ratio_off (viser.icon attribute)": [[33, "viser.Icon.ASPECT_RATIO_OFF"]], "assembly (viser.icon attribute)": [[33, "viser.Icon.ASSEMBLY"]], "assembly_off (viser.icon attribute)": [[33, "viser.Icon.ASSEMBLY_OFF"]], "asset (viser.icon attribute)": [[33, "viser.Icon.ASSET"]], "asterisk (viser.icon attribute)": [[33, "viser.Icon.ASTERISK"]], "asterisk_simple (viser.icon attribute)": [[33, "viser.Icon.ASTERISK_SIMPLE"]], "at (viser.icon attribute)": [[33, "viser.Icon.AT"]], "atom (viser.icon attribute)": [[33, "viser.Icon.ATOM"]], "atom_2 (viser.icon attribute)": [[33, "viser.Icon.ATOM_2"]], "atom_2_filled (viser.icon attribute)": [[33, "viser.Icon.ATOM_2_FILLED"]], "atom_off (viser.icon attribute)": [[33, "viser.Icon.ATOM_OFF"]], "at_off (viser.icon attribute)": [[33, "viser.Icon.AT_OFF"]], "augmented_reality (viser.icon attribute)": [[33, "viser.Icon.AUGMENTED_REALITY"]], "augmented_reality_2 (viser.icon attribute)": [[33, "viser.Icon.AUGMENTED_REALITY_2"]], "augmented_reality_off (viser.icon attribute)": [[33, "viser.Icon.AUGMENTED_REALITY_OFF"]], "award (viser.icon attribute)": [[33, "viser.Icon.AWARD"]], "award_filled (viser.icon attribute)": [[33, "viser.Icon.AWARD_FILLED"]], "award_off (viser.icon attribute)": [[33, "viser.Icon.AWARD_OFF"]], "axe (viser.icon attribute)": [[33, "viser.Icon.AXE"]], "axis_x (viser.icon attribute)": [[33, "viser.Icon.AXIS_X"]], "axis_y (viser.icon attribute)": [[33, "viser.Icon.AXIS_Y"]], "a_b (viser.icon attribute)": [[33, "viser.Icon.A_B"]], "a_b_2 (viser.icon attribute)": [[33, "viser.Icon.A_B_2"]], "a_b_off (viser.icon attribute)": [[33, "viser.Icon.A_B_OFF"]], "baby_bottle (viser.icon attribute)": [[33, "viser.Icon.BABY_BOTTLE"]], "baby_carriage (viser.icon attribute)": [[33, "viser.Icon.BABY_CARRIAGE"]], "backhoe (viser.icon attribute)": [[33, "viser.Icon.BACKHOE"]], "backpack (viser.icon attribute)": [[33, "viser.Icon.BACKPACK"]], "backpack_off (viser.icon attribute)": [[33, "viser.Icon.BACKPACK_OFF"]], "backslash (viser.icon attribute)": [[33, "viser.Icon.BACKSLASH"]], "backspace (viser.icon attribute)": [[33, "viser.Icon.BACKSPACE"]], "backspace_filled (viser.icon attribute)": [[33, "viser.Icon.BACKSPACE_FILLED"]], "badge (viser.icon attribute)": [[33, "viser.Icon.BADGE"]], "badges (viser.icon attribute)": [[33, "viser.Icon.BADGES"]], "badges_filled (viser.icon attribute)": [[33, "viser.Icon.BADGES_FILLED"]], "badges_off (viser.icon attribute)": [[33, "viser.Icon.BADGES_OFF"]], "badge_3d (viser.icon attribute)": [[33, "viser.Icon.BADGE_3D"]], "badge_4k (viser.icon attribute)": [[33, "viser.Icon.BADGE_4K"]], "badge_8k (viser.icon attribute)": [[33, "viser.Icon.BADGE_8K"]], "badge_ad (viser.icon attribute)": [[33, "viser.Icon.BADGE_AD"]], "badge_ar (viser.icon attribute)": [[33, "viser.Icon.BADGE_AR"]], "badge_cc (viser.icon attribute)": [[33, "viser.Icon.BADGE_CC"]], "badge_filled (viser.icon attribute)": [[33, "viser.Icon.BADGE_FILLED"]], "badge_hd (viser.icon attribute)": [[33, "viser.Icon.BADGE_HD"]], "badge_off (viser.icon attribute)": [[33, "viser.Icon.BADGE_OFF"]], "badge_sd (viser.icon attribute)": [[33, "viser.Icon.BADGE_SD"]], "badge_tm (viser.icon attribute)": [[33, "viser.Icon.BADGE_TM"]], "badge_vo (viser.icon attribute)": [[33, "viser.Icon.BADGE_VO"]], "badge_vr (viser.icon attribute)": [[33, "viser.Icon.BADGE_VR"]], "badge_wc (viser.icon attribute)": [[33, "viser.Icon.BADGE_WC"]], "baguette (viser.icon attribute)": [[33, "viser.Icon.BAGUETTE"]], "balloon (viser.icon attribute)": [[33, "viser.Icon.BALLOON"]], "balloon_filled (viser.icon attribute)": [[33, "viser.Icon.BALLOON_FILLED"]], "balloon_off (viser.icon attribute)": [[33, "viser.Icon.BALLOON_OFF"]], "ballpen (viser.icon attribute)": [[33, "viser.Icon.BALLPEN"]], "ballpen_filled (viser.icon attribute)": [[33, "viser.Icon.BALLPEN_FILLED"]], "ballpen_off (viser.icon attribute)": [[33, "viser.Icon.BALLPEN_OFF"]], "ball_american_football (viser.icon attribute)": [[33, "viser.Icon.BALL_AMERICAN_FOOTBALL"]], "ball_american_football_off (viser.icon attribute)": [[33, "viser.Icon.BALL_AMERICAN_FOOTBALL_OFF"]], "ball_baseball (viser.icon attribute)": [[33, "viser.Icon.BALL_BASEBALL"]], "ball_basketball (viser.icon attribute)": [[33, "viser.Icon.BALL_BASKETBALL"]], "ball_bowling (viser.icon attribute)": [[33, "viser.Icon.BALL_BOWLING"]], "ball_football (viser.icon attribute)": [[33, "viser.Icon.BALL_FOOTBALL"]], "ball_football_off (viser.icon attribute)": [[33, "viser.Icon.BALL_FOOTBALL_OFF"]], "ball_tennis (viser.icon attribute)": [[33, "viser.Icon.BALL_TENNIS"]], "ball_volleyball (viser.icon attribute)": [[33, "viser.Icon.BALL_VOLLEYBALL"]], "ban (viser.icon attribute)": [[33, "viser.Icon.BAN"]], "bandage (viser.icon attribute)": [[33, "viser.Icon.BANDAGE"]], "bandage_filled (viser.icon attribute)": [[33, "viser.Icon.BANDAGE_FILLED"]], "bandage_off (viser.icon attribute)": [[33, "viser.Icon.BANDAGE_OFF"]], "barbell (viser.icon attribute)": [[33, "viser.Icon.BARBELL"]], "barbell_off (viser.icon attribute)": [[33, "viser.Icon.BARBELL_OFF"]], "barcode (viser.icon attribute)": [[33, "viser.Icon.BARCODE"]], "barcode_off (viser.icon attribute)": [[33, "viser.Icon.BARCODE_OFF"]], "barrel (viser.icon attribute)": [[33, "viser.Icon.BARREL"]], "barrel_off (viser.icon attribute)": [[33, "viser.Icon.BARREL_OFF"]], "barrier_block (viser.icon attribute)": [[33, "viser.Icon.BARRIER_BLOCK"]], "barrier_block_off (viser.icon attribute)": [[33, "viser.Icon.BARRIER_BLOCK_OFF"]], "baseline (viser.icon attribute)": [[33, "viser.Icon.BASELINE"]], "baseline_density_large (viser.icon attribute)": [[33, "viser.Icon.BASELINE_DENSITY_LARGE"]], "baseline_density_medium (viser.icon attribute)": [[33, "viser.Icon.BASELINE_DENSITY_MEDIUM"]], "baseline_density_small (viser.icon attribute)": [[33, "viser.Icon.BASELINE_DENSITY_SMALL"]], "basket (viser.icon attribute)": [[33, "viser.Icon.BASKET"]], "basket_filled (viser.icon attribute)": [[33, "viser.Icon.BASKET_FILLED"]], "basket_off (viser.icon attribute)": [[33, "viser.Icon.BASKET_OFF"]], "bat (viser.icon attribute)": [[33, "viser.Icon.BAT"]], "bath (viser.icon attribute)": [[33, "viser.Icon.BATH"]], "bath_filled (viser.icon attribute)": [[33, "viser.Icon.BATH_FILLED"]], "bath_off (viser.icon attribute)": [[33, "viser.Icon.BATH_OFF"]], "battery (viser.icon attribute)": [[33, "viser.Icon.BATTERY"]], "battery_1 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_1"]], "battery_1_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_1_FILLED"]], "battery_2 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_2"]], "battery_2_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_2_FILLED"]], "battery_3 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_3"]], "battery_3_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_3_FILLED"]], "battery_4 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_4"]], "battery_4_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_4_FILLED"]], "battery_automotive (viser.icon attribute)": [[33, "viser.Icon.BATTERY_AUTOMOTIVE"]], "battery_charging (viser.icon attribute)": [[33, "viser.Icon.BATTERY_CHARGING"]], "battery_charging_2 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_CHARGING_2"]], "battery_eco (viser.icon attribute)": [[33, "viser.Icon.BATTERY_ECO"]], "battery_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_FILLED"]], "battery_off (viser.icon attribute)": [[33, "viser.Icon.BATTERY_OFF"]], "beach (viser.icon attribute)": [[33, "viser.Icon.BEACH"]], "beach_off (viser.icon attribute)": [[33, "viser.Icon.BEACH_OFF"]], "bed (viser.icon attribute)": [[33, "viser.Icon.BED"]], "bed_filled (viser.icon attribute)": [[33, "viser.Icon.BED_FILLED"]], "bed_off (viser.icon attribute)": [[33, "viser.Icon.BED_OFF"]], "beer (viser.icon attribute)": [[33, "viser.Icon.BEER"]], "beer_filled (viser.icon attribute)": [[33, "viser.Icon.BEER_FILLED"]], "beer_off (viser.icon attribute)": [[33, "viser.Icon.BEER_OFF"]], "bell (viser.icon attribute)": [[33, "viser.Icon.BELL"]], "bell_bolt (viser.icon attribute)": [[33, "viser.Icon.BELL_BOLT"]], "bell_cancel (viser.icon attribute)": [[33, "viser.Icon.BELL_CANCEL"]], "bell_check (viser.icon attribute)": [[33, "viser.Icon.BELL_CHECK"]], "bell_code (viser.icon attribute)": [[33, "viser.Icon.BELL_CODE"]], "bell_cog (viser.icon attribute)": [[33, "viser.Icon.BELL_COG"]], "bell_dollar (viser.icon attribute)": [[33, "viser.Icon.BELL_DOLLAR"]], "bell_down (viser.icon attribute)": [[33, "viser.Icon.BELL_DOWN"]], "bell_exclamation (viser.icon attribute)": [[33, "viser.Icon.BELL_EXCLAMATION"]], "bell_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_FILLED"]], "bell_heart (viser.icon attribute)": [[33, "viser.Icon.BELL_HEART"]], "bell_minus (viser.icon attribute)": [[33, "viser.Icon.BELL_MINUS"]], "bell_minus_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_MINUS_FILLED"]], "bell_off (viser.icon attribute)": [[33, "viser.Icon.BELL_OFF"]], "bell_pause (viser.icon attribute)": [[33, "viser.Icon.BELL_PAUSE"]], "bell_pin (viser.icon attribute)": [[33, "viser.Icon.BELL_PIN"]], "bell_plus (viser.icon attribute)": [[33, "viser.Icon.BELL_PLUS"]], "bell_plus_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_PLUS_FILLED"]], "bell_question (viser.icon attribute)": [[33, "viser.Icon.BELL_QUESTION"]], "bell_ringing (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING"]], "bell_ringing_2 (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING_2"]], "bell_ringing_2_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING_2_FILLED"]], "bell_ringing_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING_FILLED"]], "bell_school (viser.icon attribute)": [[33, "viser.Icon.BELL_SCHOOL"]], "bell_search (viser.icon attribute)": [[33, "viser.Icon.BELL_SEARCH"]], "bell_share (viser.icon attribute)": [[33, "viser.Icon.BELL_SHARE"]], "bell_star (viser.icon attribute)": [[33, "viser.Icon.BELL_STAR"]], "bell_up (viser.icon attribute)": [[33, "viser.Icon.BELL_UP"]], "bell_x (viser.icon attribute)": [[33, "viser.Icon.BELL_X"]], "bell_x_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_X_FILLED"]], "bell_z (viser.icon attribute)": [[33, "viser.Icon.BELL_Z"]], "bell_z_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_Z_FILLED"]], "beta (viser.icon attribute)": [[33, "viser.Icon.BETA"]], "bible (viser.icon attribute)": [[33, "viser.Icon.BIBLE"]], "bike (viser.icon attribute)": [[33, "viser.Icon.BIKE"]], "bike_off (viser.icon attribute)": [[33, "viser.Icon.BIKE_OFF"]], "binary (viser.icon attribute)": [[33, "viser.Icon.BINARY"]], "binary_off (viser.icon attribute)": [[33, "viser.Icon.BINARY_OFF"]], "binary_tree (viser.icon attribute)": [[33, "viser.Icon.BINARY_TREE"]], "binary_tree_2 (viser.icon attribute)": [[33, "viser.Icon.BINARY_TREE_2"]], "biohazard (viser.icon attribute)": [[33, "viser.Icon.BIOHAZARD"]], "biohazard_off (viser.icon attribute)": [[33, "viser.Icon.BIOHAZARD_OFF"]], "blade (viser.icon attribute)": [[33, "viser.Icon.BLADE"]], "blade_filled (viser.icon attribute)": [[33, "viser.Icon.BLADE_FILLED"]], "bleach (viser.icon attribute)": [[33, "viser.Icon.BLEACH"]], "bleach_chlorine (viser.icon attribute)": [[33, "viser.Icon.BLEACH_CHLORINE"]], "bleach_no_chlorine (viser.icon attribute)": [[33, "viser.Icon.BLEACH_NO_CHLORINE"]], "bleach_off (viser.icon attribute)": [[33, "viser.Icon.BLEACH_OFF"]], "blockquote (viser.icon attribute)": [[33, "viser.Icon.BLOCKQUOTE"]], "bluetooth (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH"]], "bluetooth_connected (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH_CONNECTED"]], "bluetooth_off (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH_OFF"]], "bluetooth_x (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH_X"]], "blur (viser.icon attribute)": [[33, "viser.Icon.BLUR"]], "blur_off (viser.icon attribute)": [[33, "viser.Icon.BLUR_OFF"]], "bmp (viser.icon attribute)": [[33, "viser.Icon.BMP"]], "bold (viser.icon attribute)": [[33, "viser.Icon.BOLD"]], "bold_off (viser.icon attribute)": [[33, "viser.Icon.BOLD_OFF"]], "bolt (viser.icon attribute)": [[33, "viser.Icon.BOLT"]], "bolt_off (viser.icon attribute)": [[33, "viser.Icon.BOLT_OFF"]], "bomb (viser.icon attribute)": [[33, "viser.Icon.BOMB"]], "bomb_filled (viser.icon attribute)": [[33, "viser.Icon.BOMB_FILLED"]], "bone (viser.icon attribute)": [[33, "viser.Icon.BONE"]], "bone_off (viser.icon attribute)": [[33, "viser.Icon.BONE_OFF"]], "bong (viser.icon attribute)": [[33, "viser.Icon.BONG"]], "bong_off (viser.icon attribute)": [[33, "viser.Icon.BONG_OFF"]], "book (viser.icon attribute)": [[33, "viser.Icon.BOOK"]], "bookmark (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK"]], "bookmarks (viser.icon attribute)": [[33, "viser.Icon.BOOKMARKS"]], "bookmarks_off (viser.icon attribute)": [[33, "viser.Icon.BOOKMARKS_OFF"]], "bookmark_edit (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_EDIT"]], "bookmark_filled (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_FILLED"]], "bookmark_minus (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_MINUS"]], "bookmark_off (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_OFF"]], "bookmark_plus (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_PLUS"]], "bookmark_question (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_QUESTION"]], "books (viser.icon attribute)": [[33, "viser.Icon.BOOKS"]], "books_off (viser.icon attribute)": [[33, "viser.Icon.BOOKS_OFF"]], "book_2 (viser.icon attribute)": [[33, "viser.Icon.BOOK_2"]], "book_download (viser.icon attribute)": [[33, "viser.Icon.BOOK_DOWNLOAD"]], "book_filled (viser.icon attribute)": [[33, "viser.Icon.BOOK_FILLED"]], "book_off (viser.icon attribute)": [[33, "viser.Icon.BOOK_OFF"]], "book_upload (viser.icon attribute)": [[33, "viser.Icon.BOOK_UPLOAD"]], "border_all (viser.icon attribute)": [[33, "viser.Icon.BORDER_ALL"]], "border_bottom (viser.icon attribute)": [[33, "viser.Icon.BORDER_BOTTOM"]], "border_corners (viser.icon attribute)": [[33, "viser.Icon.BORDER_CORNERS"]], "border_horizontal (viser.icon attribute)": [[33, "viser.Icon.BORDER_HORIZONTAL"]], "border_inner (viser.icon attribute)": [[33, "viser.Icon.BORDER_INNER"]], "border_left (viser.icon attribute)": [[33, "viser.Icon.BORDER_LEFT"]], "border_none (viser.icon attribute)": [[33, "viser.Icon.BORDER_NONE"]], "border_outer (viser.icon attribute)": [[33, "viser.Icon.BORDER_OUTER"]], "border_radius (viser.icon attribute)": [[33, "viser.Icon.BORDER_RADIUS"]], "border_right (viser.icon attribute)": [[33, "viser.Icon.BORDER_RIGHT"]], "border_sides (viser.icon attribute)": [[33, "viser.Icon.BORDER_SIDES"]], "border_style (viser.icon attribute)": [[33, "viser.Icon.BORDER_STYLE"]], "border_style_2 (viser.icon attribute)": [[33, "viser.Icon.BORDER_STYLE_2"]], "border_top (viser.icon attribute)": [[33, "viser.Icon.BORDER_TOP"]], "border_vertical (viser.icon attribute)": [[33, "viser.Icon.BORDER_VERTICAL"]], "bottle (viser.icon attribute)": [[33, "viser.Icon.BOTTLE"]], "bottle_filled (viser.icon attribute)": [[33, "viser.Icon.BOTTLE_FILLED"]], "bottle_off (viser.icon attribute)": [[33, "viser.Icon.BOTTLE_OFF"]], "bounce_left (viser.icon attribute)": [[33, "viser.Icon.BOUNCE_LEFT"]], "bounce_right (viser.icon attribute)": [[33, "viser.Icon.BOUNCE_RIGHT"]], "bow (viser.icon attribute)": [[33, "viser.Icon.BOW"]], "bowl (viser.icon attribute)": [[33, "viser.Icon.BOWL"]], "box (viser.icon attribute)": [[33, "viser.Icon.BOX"]], "box_align_bottom (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM"]], "box_align_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_FILLED"]], "box_align_bottom_left (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT"]], "box_align_bottom_left_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT_FILLED"]], "box_align_bottom_right (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT"]], "box_align_bottom_right_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT_FILLED"]], "box_align_left (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_LEFT"]], "box_align_left_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_LEFT_FILLED"]], "box_align_right (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_RIGHT"]], "box_align_right_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_RIGHT_FILLED"]], "box_align_top (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP"]], "box_align_top_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_FILLED"]], "box_align_top_left (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_LEFT"]], "box_align_top_left_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_LEFT_FILLED"]], "box_align_top_right (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_RIGHT"]], "box_align_top_right_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_RIGHT_FILLED"]], "box_margin (viser.icon attribute)": [[33, "viser.Icon.BOX_MARGIN"]], "box_model (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL"]], "box_model_2 (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL_2"]], "box_model_2_off (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL_2_OFF"]], "box_model_off (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL_OFF"]], "box_multiple (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE"]], "box_multiple_0 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_0"]], "box_multiple_1 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_1"]], "box_multiple_2 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_2"]], "box_multiple_3 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_3"]], "box_multiple_4 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_4"]], "box_multiple_5 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_5"]], "box_multiple_6 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_6"]], "box_multiple_7 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_7"]], "box_multiple_8 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_8"]], "box_multiple_9 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_9"]], "box_off (viser.icon attribute)": [[33, "viser.Icon.BOX_OFF"]], "box_padding (viser.icon attribute)": [[33, "viser.Icon.BOX_PADDING"]], "box_seam (viser.icon attribute)": [[33, "viser.Icon.BOX_SEAM"]], "braces (viser.icon attribute)": [[33, "viser.Icon.BRACES"]], "braces_off (viser.icon attribute)": [[33, "viser.Icon.BRACES_OFF"]], "brackets (viser.icon attribute)": [[33, "viser.Icon.BRACKETS"]], "brackets_contain (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_CONTAIN"]], "brackets_contain_end (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_CONTAIN_END"]], "brackets_contain_start (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_CONTAIN_START"]], "brackets_off (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_OFF"]], "braille (viser.icon attribute)": [[33, "viser.Icon.BRAILLE"]], "brain (viser.icon attribute)": [[33, "viser.Icon.BRAIN"]], "brand_4chan (viser.icon attribute)": [[33, "viser.Icon.BRAND_4CHAN"]], "brand_abstract (viser.icon attribute)": [[33, "viser.Icon.BRAND_ABSTRACT"]], "brand_adobe (viser.icon attribute)": [[33, "viser.Icon.BRAND_ADOBE"]], "brand_adonis_js (viser.icon attribute)": [[33, "viser.Icon.BRAND_ADONIS_JS"]], "brand_airbnb (viser.icon attribute)": [[33, "viser.Icon.BRAND_AIRBNB"]], "brand_airtable (viser.icon attribute)": [[33, "viser.Icon.BRAND_AIRTABLE"]], "brand_algolia (viser.icon attribute)": [[33, "viser.Icon.BRAND_ALGOLIA"]], "brand_alipay (viser.icon attribute)": [[33, "viser.Icon.BRAND_ALIPAY"]], "brand_alpine_js (viser.icon attribute)": [[33, "viser.Icon.BRAND_ALPINE_JS"]], "brand_amazon (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMAZON"]], "brand_amd (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMD"]], "brand_amigo (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMIGO"]], "brand_among_us (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMONG_US"]], "brand_android (viser.icon attribute)": [[33, "viser.Icon.BRAND_ANDROID"]], "brand_angular (viser.icon attribute)": [[33, "viser.Icon.BRAND_ANGULAR"]], "brand_ansible (viser.icon attribute)": [[33, "viser.Icon.BRAND_ANSIBLE"]], "brand_ao3 (viser.icon attribute)": [[33, "viser.Icon.BRAND_AO3"]], "brand_appgallery (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPGALLERY"]], "brand_apple (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPLE"]], "brand_apple_arcade (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPLE_ARCADE"]], "brand_apple_podcast (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPLE_PODCAST"]], "brand_appstore (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPSTORE"]], "brand_asana (viser.icon attribute)": [[33, "viser.Icon.BRAND_ASANA"]], "brand_aws (viser.icon attribute)": [[33, "viser.Icon.BRAND_AWS"]], "brand_azure (viser.icon attribute)": [[33, "viser.Icon.BRAND_AZURE"]], "brand_backbone (viser.icon attribute)": [[33, "viser.Icon.BRAND_BACKBONE"]], "brand_badoo (viser.icon attribute)": [[33, "viser.Icon.BRAND_BADOO"]], "brand_baidu (viser.icon attribute)": [[33, "viser.Icon.BRAND_BAIDU"]], "brand_bandcamp (viser.icon attribute)": [[33, "viser.Icon.BRAND_BANDCAMP"]], "brand_bandlab (viser.icon attribute)": [[33, "viser.Icon.BRAND_BANDLAB"]], "brand_beats (viser.icon attribute)": [[33, "viser.Icon.BRAND_BEATS"]], "brand_behance (viser.icon attribute)": [[33, "viser.Icon.BRAND_BEHANCE"]], "brand_bilibili (viser.icon attribute)": [[33, "viser.Icon.BRAND_BILIBILI"]], "brand_binance (viser.icon attribute)": [[33, "viser.Icon.BRAND_BINANCE"]], "brand_bing (viser.icon attribute)": [[33, "viser.Icon.BRAND_BING"]], "brand_bitbucket (viser.icon attribute)": [[33, "viser.Icon.BRAND_BITBUCKET"]], "brand_blackberry (viser.icon attribute)": [[33, "viser.Icon.BRAND_BLACKBERRY"]], "brand_blender (viser.icon attribute)": [[33, "viser.Icon.BRAND_BLENDER"]], "brand_blogger (viser.icon attribute)": [[33, "viser.Icon.BRAND_BLOGGER"]], "brand_booking (viser.icon attribute)": [[33, "viser.Icon.BRAND_BOOKING"]], "brand_bootstrap (viser.icon attribute)": [[33, "viser.Icon.BRAND_BOOTSTRAP"]], "brand_bulma (viser.icon attribute)": [[33, "viser.Icon.BRAND_BULMA"]], "brand_bumble (viser.icon attribute)": [[33, "viser.Icon.BRAND_BUMBLE"]], "brand_bunpo (viser.icon attribute)": [[33, "viser.Icon.BRAND_BUNPO"]], "brand_cake (viser.icon attribute)": [[33, "viser.Icon.BRAND_CAKE"]], "brand_cakephp (viser.icon attribute)": [[33, "viser.Icon.BRAND_CAKEPHP"]], "brand_campaignmonitor (viser.icon attribute)": [[33, "viser.Icon.BRAND_CAMPAIGNMONITOR"]], "brand_carbon (viser.icon attribute)": [[33, "viser.Icon.BRAND_CARBON"]], "brand_cashapp (viser.icon attribute)": [[33, "viser.Icon.BRAND_CASHAPP"]], "brand_chrome (viser.icon attribute)": [[33, "viser.Icon.BRAND_CHROME"]], "brand_cinema_4d (viser.icon attribute)": [[33, "viser.Icon.BRAND_CINEMA_4D"]], "brand_citymapper (viser.icon attribute)": [[33, "viser.Icon.BRAND_CITYMAPPER"]], "brand_cloudflare (viser.icon attribute)": [[33, "viser.Icon.BRAND_CLOUDFLARE"]], "brand_codecov (viser.icon attribute)": [[33, "viser.Icon.BRAND_CODECOV"]], "brand_codepen (viser.icon attribute)": [[33, "viser.Icon.BRAND_CODEPEN"]], "brand_codesandbox (viser.icon attribute)": [[33, "viser.Icon.BRAND_CODESANDBOX"]], "brand_cohost (viser.icon attribute)": [[33, "viser.Icon.BRAND_COHOST"]], "brand_coinbase (viser.icon attribute)": [[33, "viser.Icon.BRAND_COINBASE"]], "brand_comedy_central (viser.icon attribute)": [[33, "viser.Icon.BRAND_COMEDY_CENTRAL"]], "brand_coreos (viser.icon attribute)": [[33, "viser.Icon.BRAND_COREOS"]], "brand_couchdb (viser.icon attribute)": [[33, "viser.Icon.BRAND_COUCHDB"]], "brand_couchsurfing (viser.icon attribute)": [[33, "viser.Icon.BRAND_COUCHSURFING"]], "brand_cpp (viser.icon attribute)": [[33, "viser.Icon.BRAND_CPP"]], "brand_craft (viser.icon attribute)": [[33, "viser.Icon.BRAND_CRAFT"]], "brand_crunchbase (viser.icon attribute)": [[33, "viser.Icon.BRAND_CRUNCHBASE"]], "brand_css3 (viser.icon attribute)": [[33, "viser.Icon.BRAND_CSS3"]], "brand_ctemplar (viser.icon attribute)": [[33, "viser.Icon.BRAND_CTEMPLAR"]], "brand_cucumber (viser.icon attribute)": [[33, "viser.Icon.BRAND_CUCUMBER"]], "brand_cupra (viser.icon attribute)": [[33, "viser.Icon.BRAND_CUPRA"]], "brand_cypress (viser.icon attribute)": [[33, "viser.Icon.BRAND_CYPRESS"]], "brand_c_sharp (viser.icon attribute)": [[33, "viser.Icon.BRAND_C_SHARP"]], "brand_d3 (viser.icon attribute)": [[33, "viser.Icon.BRAND_D3"]], "brand_days_counter (viser.icon attribute)": [[33, "viser.Icon.BRAND_DAYS_COUNTER"]], "brand_dcos (viser.icon attribute)": [[33, "viser.Icon.BRAND_DCOS"]], "brand_debian (viser.icon attribute)": [[33, "viser.Icon.BRAND_DEBIAN"]], "brand_deezer (viser.icon attribute)": [[33, "viser.Icon.BRAND_DEEZER"]], "brand_deliveroo (viser.icon attribute)": [[33, "viser.Icon.BRAND_DELIVEROO"]], "brand_deno (viser.icon attribute)": [[33, "viser.Icon.BRAND_DENO"]], "brand_denodo (viser.icon attribute)": [[33, "viser.Icon.BRAND_DENODO"]], "brand_deviantart (viser.icon attribute)": [[33, "viser.Icon.BRAND_DEVIANTART"]], "brand_digg (viser.icon attribute)": [[33, "viser.Icon.BRAND_DIGG"]], "brand_dingtalk (viser.icon attribute)": [[33, "viser.Icon.BRAND_DINGTALK"]], "brand_discord (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISCORD"]], "brand_discord_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISCORD_FILLED"]], "brand_disney (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISNEY"]], "brand_disqus (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISQUS"]], "brand_django (viser.icon attribute)": [[33, "viser.Icon.BRAND_DJANGO"]], "brand_docker (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOCKER"]], "brand_doctrine (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOCTRINE"]], "brand_dolby_digital (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOLBY_DIGITAL"]], "brand_douban (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOUBAN"]], "brand_dribbble (viser.icon attribute)": [[33, "viser.Icon.BRAND_DRIBBBLE"]], "brand_dribbble_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_DRIBBBLE_FILLED"]], "brand_drops (viser.icon attribute)": [[33, "viser.Icon.BRAND_DROPS"]], "brand_drupal (viser.icon attribute)": [[33, "viser.Icon.BRAND_DRUPAL"]], "brand_edge (viser.icon attribute)": [[33, "viser.Icon.BRAND_EDGE"]], "brand_elastic (viser.icon attribute)": [[33, "viser.Icon.BRAND_ELASTIC"]], "brand_electronic_arts (viser.icon attribute)": [[33, "viser.Icon.BRAND_ELECTRONIC_ARTS"]], "brand_ember (viser.icon attribute)": [[33, "viser.Icon.BRAND_EMBER"]], "brand_envato (viser.icon attribute)": [[33, "viser.Icon.BRAND_ENVATO"]], "brand_etsy (viser.icon attribute)": [[33, "viser.Icon.BRAND_ETSY"]], "brand_evernote (viser.icon attribute)": [[33, "viser.Icon.BRAND_EVERNOTE"]], "brand_facebook (viser.icon attribute)": [[33, "viser.Icon.BRAND_FACEBOOK"]], "brand_facebook_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_FACEBOOK_FILLED"]], "brand_feedly (viser.icon attribute)": [[33, "viser.Icon.BRAND_FEEDLY"]], "brand_figma (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIGMA"]], "brand_filezilla (viser.icon attribute)": [[33, "viser.Icon.BRAND_FILEZILLA"]], "brand_finder (viser.icon attribute)": [[33, "viser.Icon.BRAND_FINDER"]], "brand_firebase (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIREBASE"]], "brand_firefox (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIREFOX"]], "brand_fiverr (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIVERR"]], "brand_flickr (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLICKR"]], "brand_flightradar24 (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLIGHTRADAR24"]], "brand_flipboard (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLIPBOARD"]], "brand_flutter (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLUTTER"]], "brand_fortnite (viser.icon attribute)": [[33, "viser.Icon.BRAND_FORTNITE"]], "brand_foursquare (viser.icon attribute)": [[33, "viser.Icon.BRAND_FOURSQUARE"]], "brand_framer (viser.icon attribute)": [[33, "viser.Icon.BRAND_FRAMER"]], "brand_framer_motion (viser.icon attribute)": [[33, "viser.Icon.BRAND_FRAMER_MOTION"]], "brand_funimation (viser.icon attribute)": [[33, "viser.Icon.BRAND_FUNIMATION"]], "brand_gatsby (viser.icon attribute)": [[33, "viser.Icon.BRAND_GATSBY"]], "brand_git (viser.icon attribute)": [[33, "viser.Icon.BRAND_GIT"]], "brand_github (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITHUB"]], "brand_github_copilot (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITHUB_COPILOT"]], "brand_github_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITHUB_FILLED"]], "brand_gitlab (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITLAB"]], "brand_gmail (viser.icon attribute)": [[33, "viser.Icon.BRAND_GMAIL"]], "brand_golang (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOLANG"]], "brand_google (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE"]], "brand_google_analytics (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_ANALYTICS"]], "brand_google_big_query (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_BIG_QUERY"]], "brand_google_drive (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_DRIVE"]], "brand_google_fit (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_FIT"]], "brand_google_home (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_HOME"]], "brand_google_maps (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_MAPS"]], "brand_google_one (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_ONE"]], "brand_google_photos (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_PHOTOS"]], "brand_google_play (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_PLAY"]], "brand_google_podcasts (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_PODCASTS"]], "brand_grammarly (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRAMMARLY"]], "brand_graphql (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRAPHQL"]], "brand_gravatar (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRAVATAR"]], "brand_grindr (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRINDR"]], "brand_guardian (viser.icon attribute)": [[33, "viser.Icon.BRAND_GUARDIAN"]], "brand_gumroad (viser.icon attribute)": [[33, "viser.Icon.BRAND_GUMROAD"]], "brand_hbo (viser.icon attribute)": [[33, "viser.Icon.BRAND_HBO"]], "brand_headlessui (viser.icon attribute)": [[33, "viser.Icon.BRAND_HEADLESSUI"]], "brand_hexo (viser.icon attribute)": [[33, "viser.Icon.BRAND_HEXO"]], "brand_hipchat (viser.icon attribute)": [[33, "viser.Icon.BRAND_HIPCHAT"]], "brand_html5 (viser.icon attribute)": [[33, "viser.Icon.BRAND_HTML5"]], "brand_inertia (viser.icon attribute)": [[33, "viser.Icon.BRAND_INERTIA"]], "brand_instagram (viser.icon attribute)": [[33, "viser.Icon.BRAND_INSTAGRAM"]], "brand_intercom (viser.icon attribute)": [[33, "viser.Icon.BRAND_INTERCOM"]], "brand_itch (viser.icon attribute)": [[33, "viser.Icon.BRAND_ITCH"]], "brand_javascript (viser.icon attribute)": [[33, "viser.Icon.BRAND_JAVASCRIPT"]], "brand_juejin (viser.icon attribute)": [[33, "viser.Icon.BRAND_JUEJIN"]], "brand_kbin (viser.icon attribute)": [[33, "viser.Icon.BRAND_KBIN"]], "brand_kick (viser.icon attribute)": [[33, "viser.Icon.BRAND_KICK"]], "brand_kickstarter (viser.icon attribute)": [[33, "viser.Icon.BRAND_KICKSTARTER"]], "brand_kotlin (viser.icon attribute)": [[33, "viser.Icon.BRAND_KOTLIN"]], "brand_laravel (viser.icon attribute)": [[33, "viser.Icon.BRAND_LARAVEL"]], "brand_lastfm (viser.icon attribute)": [[33, "viser.Icon.BRAND_LASTFM"]], "brand_leetcode (viser.icon attribute)": [[33, "viser.Icon.BRAND_LEETCODE"]], "brand_letterboxd (viser.icon attribute)": [[33, "viser.Icon.BRAND_LETTERBOXD"]], "brand_line (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINE"]], "brand_linkedin (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINKEDIN"]], "brand_linktree (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINKTREE"]], "brand_linqpad (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINQPAD"]], "brand_loom (viser.icon attribute)": [[33, "viser.Icon.BRAND_LOOM"]], "brand_mailgun (viser.icon attribute)": [[33, "viser.Icon.BRAND_MAILGUN"]], "brand_mantine (viser.icon attribute)": [[33, "viser.Icon.BRAND_MANTINE"]], "brand_mastercard (viser.icon attribute)": [[33, "viser.Icon.BRAND_MASTERCARD"]], "brand_mastodon (viser.icon attribute)": [[33, "viser.Icon.BRAND_MASTODON"]], "brand_matrix (viser.icon attribute)": [[33, "viser.Icon.BRAND_MATRIX"]], "brand_mcdonalds (viser.icon attribute)": [[33, "viser.Icon.BRAND_MCDONALDS"]], "brand_medium (viser.icon attribute)": [[33, "viser.Icon.BRAND_MEDIUM"]], "brand_mercedes (viser.icon attribute)": [[33, "viser.Icon.BRAND_MERCEDES"]], "brand_messenger (viser.icon attribute)": [[33, "viser.Icon.BRAND_MESSENGER"]], "brand_meta (viser.icon attribute)": [[33, "viser.Icon.BRAND_META"]], "brand_microsoft_teams (viser.icon attribute)": [[33, "viser.Icon.BRAND_MICROSOFT_TEAMS"]], "brand_minecraft (viser.icon attribute)": [[33, "viser.Icon.BRAND_MINECRAFT"]], "brand_miniprogram (viser.icon attribute)": [[33, "viser.Icon.BRAND_MINIPROGRAM"]], "brand_mixpanel (viser.icon attribute)": [[33, "viser.Icon.BRAND_MIXPANEL"]], "brand_monday (viser.icon attribute)": [[33, "viser.Icon.BRAND_MONDAY"]], "brand_mongodb (viser.icon attribute)": [[33, "viser.Icon.BRAND_MONGODB"]], "brand_mysql (viser.icon attribute)": [[33, "viser.Icon.BRAND_MYSQL"]], "brand_my_oppo (viser.icon attribute)": [[33, "viser.Icon.BRAND_MY_OPPO"]], "brand_national_geographic (viser.icon attribute)": [[33, "viser.Icon.BRAND_NATIONAL_GEOGRAPHIC"]], "brand_nem (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEM"]], "brand_netbeans (viser.icon attribute)": [[33, "viser.Icon.BRAND_NETBEANS"]], "brand_netease_music (viser.icon attribute)": [[33, "viser.Icon.BRAND_NETEASE_MUSIC"]], "brand_netflix (viser.icon attribute)": [[33, "viser.Icon.BRAND_NETFLIX"]], "brand_nexo (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEXO"]], "brand_nextcloud (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEXTCLOUD"]], "brand_nextjs (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEXTJS"]], "brand_nodejs (viser.icon attribute)": [[33, "viser.Icon.BRAND_NODEJS"]], "brand_nord_vpn (viser.icon attribute)": [[33, "viser.Icon.BRAND_NORD_VPN"]], "brand_notion (viser.icon attribute)": [[33, "viser.Icon.BRAND_NOTION"]], "brand_npm (viser.icon attribute)": [[33, "viser.Icon.BRAND_NPM"]], "brand_nuxt (viser.icon attribute)": [[33, "viser.Icon.BRAND_NUXT"]], "brand_nytimes (viser.icon attribute)": [[33, "viser.Icon.BRAND_NYTIMES"]], "brand_oauth (viser.icon attribute)": [[33, "viser.Icon.BRAND_OAUTH"]], "brand_office (viser.icon attribute)": [[33, "viser.Icon.BRAND_OFFICE"]], "brand_ok_ru (viser.icon attribute)": [[33, "viser.Icon.BRAND_OK_RU"]], "brand_onedrive (viser.icon attribute)": [[33, "viser.Icon.BRAND_ONEDRIVE"]], "brand_onlyfans (viser.icon attribute)": [[33, "viser.Icon.BRAND_ONLYFANS"]], "brand_openai (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPENAI"]], "brand_openvpn (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPENVPN"]], "brand_open_source (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPEN_SOURCE"]], "brand_opera (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPERA"]], "brand_pagekit (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAGEKIT"]], "brand_patreon (viser.icon attribute)": [[33, "viser.Icon.BRAND_PATREON"]], "brand_paypal (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAYPAL"]], "brand_paypal_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAYPAL_FILLED"]], "brand_paypay (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAYPAY"]], "brand_peanut (viser.icon attribute)": [[33, "viser.Icon.BRAND_PEANUT"]], "brand_pepsi (viser.icon attribute)": [[33, "viser.Icon.BRAND_PEPSI"]], "brand_php (viser.icon attribute)": [[33, "viser.Icon.BRAND_PHP"]], "brand_picsart (viser.icon attribute)": [[33, "viser.Icon.BRAND_PICSART"]], "brand_pinterest (viser.icon attribute)": [[33, "viser.Icon.BRAND_PINTEREST"]], "brand_planetscale (viser.icon attribute)": [[33, "viser.Icon.BRAND_PLANETSCALE"]], "brand_pocket (viser.icon attribute)": [[33, "viser.Icon.BRAND_POCKET"]], "brand_polymer (viser.icon attribute)": [[33, "viser.Icon.BRAND_POLYMER"]], "brand_powershell (viser.icon attribute)": [[33, "viser.Icon.BRAND_POWERSHELL"]], "brand_prisma (viser.icon attribute)": [[33, "viser.Icon.BRAND_PRISMA"]], "brand_producthunt (viser.icon attribute)": [[33, "viser.Icon.BRAND_PRODUCTHUNT"]], "brand_pushbullet (viser.icon attribute)": [[33, "viser.Icon.BRAND_PUSHBULLET"]], "brand_pushover (viser.icon attribute)": [[33, "viser.Icon.BRAND_PUSHOVER"]], "brand_python (viser.icon attribute)": [[33, "viser.Icon.BRAND_PYTHON"]], "brand_qq (viser.icon attribute)": [[33, "viser.Icon.BRAND_QQ"]], "brand_radix_ui (viser.icon attribute)": [[33, "viser.Icon.BRAND_RADIX_UI"]], "brand_react (viser.icon attribute)": [[33, "viser.Icon.BRAND_REACT"]], "brand_react_native (viser.icon attribute)": [[33, "viser.Icon.BRAND_REACT_NATIVE"]], "brand_reason (viser.icon attribute)": [[33, "viser.Icon.BRAND_REASON"]], "brand_reddit (viser.icon attribute)": [[33, "viser.Icon.BRAND_REDDIT"]], "brand_redhat (viser.icon attribute)": [[33, "viser.Icon.BRAND_REDHAT"]], "brand_redux (viser.icon attribute)": [[33, "viser.Icon.BRAND_REDUX"]], "brand_revolut (viser.icon attribute)": [[33, "viser.Icon.BRAND_REVOLUT"]], "brand_rumble (viser.icon attribute)": [[33, "viser.Icon.BRAND_RUMBLE"]], "brand_rust (viser.icon attribute)": [[33, "viser.Icon.BRAND_RUST"]], "brand_safari (viser.icon attribute)": [[33, "viser.Icon.BRAND_SAFARI"]], "brand_samsungpass (viser.icon attribute)": [[33, "viser.Icon.BRAND_SAMSUNGPASS"]], "brand_sass (viser.icon attribute)": [[33, "viser.Icon.BRAND_SASS"]], "brand_sentry (viser.icon attribute)": [[33, "viser.Icon.BRAND_SENTRY"]], "brand_sharik (viser.icon attribute)": [[33, "viser.Icon.BRAND_SHARIK"]], "brand_shazam (viser.icon attribute)": [[33, "viser.Icon.BRAND_SHAZAM"]], "brand_shopee (viser.icon attribute)": [[33, "viser.Icon.BRAND_SHOPEE"]], "brand_sketch (viser.icon attribute)": [[33, "viser.Icon.BRAND_SKETCH"]], "brand_skype (viser.icon attribute)": [[33, "viser.Icon.BRAND_SKYPE"]], "brand_slack (viser.icon attribute)": [[33, "viser.Icon.BRAND_SLACK"]], "brand_snapchat (viser.icon attribute)": [[33, "viser.Icon.BRAND_SNAPCHAT"]], "brand_snapseed (viser.icon attribute)": [[33, "viser.Icon.BRAND_SNAPSEED"]], "brand_snowflake (viser.icon attribute)": [[33, "viser.Icon.BRAND_SNOWFLAKE"]], "brand_socket_io (viser.icon attribute)": [[33, "viser.Icon.BRAND_SOCKET_IO"]], "brand_solidjs (viser.icon attribute)": [[33, "viser.Icon.BRAND_SOLIDJS"]], "brand_soundcloud (viser.icon attribute)": [[33, "viser.Icon.BRAND_SOUNDCLOUD"]], "brand_spacehey (viser.icon attribute)": [[33, "viser.Icon.BRAND_SPACEHEY"]], "brand_speedtest (viser.icon attribute)": [[33, "viser.Icon.BRAND_SPEEDTEST"]], "brand_spotify (viser.icon attribute)": [[33, "viser.Icon.BRAND_SPOTIFY"]], "brand_stackoverflow (viser.icon attribute)": [[33, "viser.Icon.BRAND_STACKOVERFLOW"]], "brand_stackshare (viser.icon attribute)": [[33, "viser.Icon.BRAND_STACKSHARE"]], "brand_steam (viser.icon attribute)": [[33, "viser.Icon.BRAND_STEAM"]], "brand_storj (viser.icon attribute)": [[33, "viser.Icon.BRAND_STORJ"]], "brand_storybook (viser.icon attribute)": [[33, "viser.Icon.BRAND_STORYBOOK"]], "brand_storytel (viser.icon attribute)": [[33, "viser.Icon.BRAND_STORYTEL"]], "brand_strava (viser.icon attribute)": [[33, "viser.Icon.BRAND_STRAVA"]], "brand_stripe (viser.icon attribute)": [[33, "viser.Icon.BRAND_STRIPE"]], "brand_sublime_text (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUBLIME_TEXT"]], "brand_sugarizer (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUGARIZER"]], "brand_supabase (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUPABASE"]], "brand_superhuman (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUPERHUMAN"]], "brand_supernova (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUPERNOVA"]], "brand_surfshark (viser.icon attribute)": [[33, "viser.Icon.BRAND_SURFSHARK"]], "brand_svelte (viser.icon attribute)": [[33, "viser.Icon.BRAND_SVELTE"]], "brand_swift (viser.icon attribute)": [[33, "viser.Icon.BRAND_SWIFT"]], "brand_symfony (viser.icon attribute)": [[33, "viser.Icon.BRAND_SYMFONY"]], "brand_tabler (viser.icon attribute)": [[33, "viser.Icon.BRAND_TABLER"]], "brand_tailwind (viser.icon attribute)": [[33, "viser.Icon.BRAND_TAILWIND"]], "brand_taobao (viser.icon attribute)": [[33, "viser.Icon.BRAND_TAOBAO"]], "brand_ted (viser.icon attribute)": [[33, "viser.Icon.BRAND_TED"]], "brand_telegram (viser.icon attribute)": [[33, "viser.Icon.BRAND_TELEGRAM"]], "brand_terraform (viser.icon attribute)": [[33, "viser.Icon.BRAND_TERRAFORM"]], "brand_tether (viser.icon attribute)": [[33, "viser.Icon.BRAND_TETHER"]], "brand_threejs (viser.icon attribute)": [[33, "viser.Icon.BRAND_THREEJS"]], "brand_tidal (viser.icon attribute)": [[33, "viser.Icon.BRAND_TIDAL"]], "brand_tiktok (viser.icon attribute)": [[33, "viser.Icon.BRAND_TIKTOK"]], "brand_tikto_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_TIKTO_FILLED"]], "brand_tinder (viser.icon attribute)": [[33, "viser.Icon.BRAND_TINDER"]], "brand_topbuzz (viser.icon attribute)": [[33, "viser.Icon.BRAND_TOPBUZZ"]], "brand_torchain (viser.icon attribute)": [[33, "viser.Icon.BRAND_TORCHAIN"]], "brand_toyota (viser.icon attribute)": [[33, "viser.Icon.BRAND_TOYOTA"]], "brand_trello (viser.icon attribute)": [[33, "viser.Icon.BRAND_TRELLO"]], "brand_tripadvisor (viser.icon attribute)": [[33, "viser.Icon.BRAND_TRIPADVISOR"]], "brand_tumblr (viser.icon attribute)": [[33, "viser.Icon.BRAND_TUMBLR"]], "brand_twilio (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWILIO"]], "brand_twitch (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWITCH"]], "brand_twitter (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWITTER"]], "brand_twitter_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWITTER_FILLED"]], "brand_typescript (viser.icon attribute)": [[33, "viser.Icon.BRAND_TYPESCRIPT"]], "brand_uber (viser.icon attribute)": [[33, "viser.Icon.BRAND_UBER"]], "brand_ubuntu (viser.icon attribute)": [[33, "viser.Icon.BRAND_UBUNTU"]], "brand_unity (viser.icon attribute)": [[33, "viser.Icon.BRAND_UNITY"]], "brand_unsplash (viser.icon attribute)": [[33, "viser.Icon.BRAND_UNSPLASH"]], "brand_upwork (viser.icon attribute)": [[33, "viser.Icon.BRAND_UPWORK"]], "brand_valorant (viser.icon attribute)": [[33, "viser.Icon.BRAND_VALORANT"]], "brand_vercel (viser.icon attribute)": [[33, "viser.Icon.BRAND_VERCEL"]], "brand_vimeo (viser.icon attribute)": [[33, "viser.Icon.BRAND_VIMEO"]], "brand_vinted (viser.icon attribute)": [[33, "viser.Icon.BRAND_VINTED"]], "brand_visa (viser.icon attribute)": [[33, "viser.Icon.BRAND_VISA"]], "brand_visual_studio (viser.icon attribute)": [[33, "viser.Icon.BRAND_VISUAL_STUDIO"]], "brand_vite (viser.icon attribute)": [[33, "viser.Icon.BRAND_VITE"]], "brand_vivaldi (viser.icon attribute)": [[33, "viser.Icon.BRAND_VIVALDI"]], "brand_vk (viser.icon attribute)": [[33, "viser.Icon.BRAND_VK"]], "brand_vlc (viser.icon attribute)": [[33, "viser.Icon.BRAND_VLC"]], "brand_volkswagen (viser.icon attribute)": [[33, "viser.Icon.BRAND_VOLKSWAGEN"]], "brand_vsco (viser.icon attribute)": [[33, "viser.Icon.BRAND_VSCO"]], "brand_vscode (viser.icon attribute)": [[33, "viser.Icon.BRAND_VSCODE"]], "brand_vue (viser.icon attribute)": [[33, "viser.Icon.BRAND_VUE"]], "brand_walmart (viser.icon attribute)": [[33, "viser.Icon.BRAND_WALMART"]], "brand_waze (viser.icon attribute)": [[33, "viser.Icon.BRAND_WAZE"]], "brand_webflow (viser.icon attribute)": [[33, "viser.Icon.BRAND_WEBFLOW"]], "brand_wechat (viser.icon attribute)": [[33, "viser.Icon.BRAND_WECHAT"]], "brand_weibo (viser.icon attribute)": [[33, "viser.Icon.BRAND_WEIBO"]], "brand_whatsapp (viser.icon attribute)": [[33, "viser.Icon.BRAND_WHATSAPP"]], "brand_wikipedia (viser.icon attribute)": [[33, "viser.Icon.BRAND_WIKIPEDIA"]], "brand_windows (viser.icon attribute)": [[33, "viser.Icon.BRAND_WINDOWS"]], "brand_windy (viser.icon attribute)": [[33, "viser.Icon.BRAND_WINDY"]], "brand_wish (viser.icon attribute)": [[33, "viser.Icon.BRAND_WISH"]], "brand_wix (viser.icon attribute)": [[33, "viser.Icon.BRAND_WIX"]], "brand_wordpress (viser.icon attribute)": [[33, "viser.Icon.BRAND_WORDPRESS"]], "brand_xamarin (viser.icon attribute)": [[33, "viser.Icon.BRAND_XAMARIN"]], "brand_xbox (viser.icon attribute)": [[33, "viser.Icon.BRAND_XBOX"]], "brand_xing (viser.icon attribute)": [[33, "viser.Icon.BRAND_XING"]], "brand_yahoo (viser.icon attribute)": [[33, "viser.Icon.BRAND_YAHOO"]], "brand_yandex (viser.icon attribute)": [[33, "viser.Icon.BRAND_YANDEX"]], "brand_yatse (viser.icon attribute)": [[33, "viser.Icon.BRAND_YATSE"]], "brand_ycombinator (viser.icon attribute)": [[33, "viser.Icon.BRAND_YCOMBINATOR"]], "brand_youtube (viser.icon attribute)": [[33, "viser.Icon.BRAND_YOUTUBE"]], "brand_youtube_kids (viser.icon attribute)": [[33, "viser.Icon.BRAND_YOUTUBE_KIDS"]], "brand_zalando (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZALANDO"]], "brand_zapier (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZAPIER"]], "brand_zeit (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZEIT"]], "brand_zhihu (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZHIHU"]], "brand_zoom (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZOOM"]], "brand_zulip (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZULIP"]], "brand_zwift (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZWIFT"]], "bread (viser.icon attribute)": [[33, "viser.Icon.BREAD"]], "bread_off (viser.icon attribute)": [[33, "viser.Icon.BREAD_OFF"]], "briefcase (viser.icon attribute)": [[33, "viser.Icon.BRIEFCASE"]], "briefcase_off (viser.icon attribute)": [[33, "viser.Icon.BRIEFCASE_OFF"]], "brightness (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS"]], "brightness_2 (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_2"]], "brightness_down (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_DOWN"]], "brightness_half (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_HALF"]], "brightness_off (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_OFF"]], "brightness_up (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_UP"]], "broadcast (viser.icon attribute)": [[33, "viser.Icon.BROADCAST"]], "broadcast_off (viser.icon attribute)": [[33, "viser.Icon.BROADCAST_OFF"]], "browser (viser.icon attribute)": [[33, "viser.Icon.BROWSER"]], "browser_check (viser.icon attribute)": [[33, "viser.Icon.BROWSER_CHECK"]], "browser_off (viser.icon attribute)": [[33, "viser.Icon.BROWSER_OFF"]], "browser_plus (viser.icon attribute)": [[33, "viser.Icon.BROWSER_PLUS"]], "browser_x (viser.icon attribute)": [[33, "viser.Icon.BROWSER_X"]], "brush (viser.icon attribute)": [[33, "viser.Icon.BRUSH"]], "brush_off (viser.icon attribute)": [[33, "viser.Icon.BRUSH_OFF"]], "bucket (viser.icon attribute)": [[33, "viser.Icon.BUCKET"]], "bucket_droplet (viser.icon attribute)": [[33, "viser.Icon.BUCKET_DROPLET"]], "bucket_off (viser.icon attribute)": [[33, "viser.Icon.BUCKET_OFF"]], "bug (viser.icon attribute)": [[33, "viser.Icon.BUG"]], "bug_off (viser.icon attribute)": [[33, "viser.Icon.BUG_OFF"]], "building (viser.icon attribute)": [[33, "viser.Icon.BUILDING"]], "building_arch (viser.icon attribute)": [[33, "viser.Icon.BUILDING_ARCH"]], "building_bank (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BANK"]], "building_bridge (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BRIDGE"]], "building_bridge_2 (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BRIDGE_2"]], "building_broadcast_tower (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BROADCAST_TOWER"]], "building_carousel (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CAROUSEL"]], "building_castle (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CASTLE"]], "building_church (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CHURCH"]], "building_circus (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CIRCUS"]], "building_community (viser.icon attribute)": [[33, "viser.Icon.BUILDING_COMMUNITY"]], "building_cottage (viser.icon attribute)": [[33, "viser.Icon.BUILDING_COTTAGE"]], "building_estate (viser.icon attribute)": [[33, "viser.Icon.BUILDING_ESTATE"]], "building_factory (viser.icon attribute)": [[33, "viser.Icon.BUILDING_FACTORY"]], "building_factory_2 (viser.icon attribute)": [[33, "viser.Icon.BUILDING_FACTORY_2"]], "building_fortress (viser.icon attribute)": [[33, "viser.Icon.BUILDING_FORTRESS"]], "building_hospital (viser.icon attribute)": [[33, "viser.Icon.BUILDING_HOSPITAL"]], "building_lighthouse (viser.icon attribute)": [[33, "viser.Icon.BUILDING_LIGHTHOUSE"]], "building_monument (viser.icon attribute)": [[33, "viser.Icon.BUILDING_MONUMENT"]], "building_mosque (viser.icon attribute)": [[33, "viser.Icon.BUILDING_MOSQUE"]], "building_pavilion (viser.icon attribute)": [[33, "viser.Icon.BUILDING_PAVILION"]], "building_skyscraper (viser.icon attribute)": [[33, "viser.Icon.BUILDING_SKYSCRAPER"]], "building_stadium (viser.icon attribute)": [[33, "viser.Icon.BUILDING_STADIUM"]], "building_store (viser.icon attribute)": [[33, "viser.Icon.BUILDING_STORE"]], "building_tunnel (viser.icon attribute)": [[33, "viser.Icon.BUILDING_TUNNEL"]], "building_warehouse (viser.icon attribute)": [[33, "viser.Icon.BUILDING_WAREHOUSE"]], "building_wind_turbine (viser.icon attribute)": [[33, "viser.Icon.BUILDING_WIND_TURBINE"]], "bulb (viser.icon attribute)": [[33, "viser.Icon.BULB"]], "bulb_filled (viser.icon attribute)": [[33, "viser.Icon.BULB_FILLED"]], "bulb_off (viser.icon attribute)": [[33, "viser.Icon.BULB_OFF"]], "bulldozer (viser.icon attribute)": [[33, "viser.Icon.BULLDOZER"]], "bus (viser.icon attribute)": [[33, "viser.Icon.BUS"]], "businessplan (viser.icon attribute)": [[33, "viser.Icon.BUSINESSPLAN"]], "bus_off (viser.icon attribute)": [[33, "viser.Icon.BUS_OFF"]], "bus_stop (viser.icon attribute)": [[33, "viser.Icon.BUS_STOP"]], "butterfly (viser.icon attribute)": [[33, "viser.Icon.BUTTERFLY"]], "cactus (viser.icon attribute)": [[33, "viser.Icon.CACTUS"]], "cactus_off (viser.icon attribute)": [[33, "viser.Icon.CACTUS_OFF"]], "cake (viser.icon attribute)": [[33, "viser.Icon.CAKE"]], "cake_off (viser.icon attribute)": [[33, "viser.Icon.CAKE_OFF"]], "calculator (viser.icon attribute)": [[33, "viser.Icon.CALCULATOR"]], "calculator_off (viser.icon attribute)": [[33, "viser.Icon.CALCULATOR_OFF"]], "calendar (viser.icon attribute)": [[33, "viser.Icon.CALENDAR"]], "calendar_bolt (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_BOLT"]], "calendar_cancel (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_CANCEL"]], "calendar_check (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_CHECK"]], "calendar_code (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_CODE"]], "calendar_cog (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_COG"]], "calendar_dollar (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_DOLLAR"]], "calendar_down (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_DOWN"]], "calendar_due (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_DUE"]], "calendar_event (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_EVENT"]], "calendar_exclamation (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_EXCLAMATION"]], "calendar_heart (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_HEART"]], "calendar_minus (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_MINUS"]], "calendar_off (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_OFF"]], "calendar_pause (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_PAUSE"]], "calendar_pin (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_PIN"]], "calendar_plus (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_PLUS"]], "calendar_question (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_QUESTION"]], "calendar_repeat (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_REPEAT"]], "calendar_search (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_SEARCH"]], "calendar_share (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_SHARE"]], "calendar_star (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_STAR"]], "calendar_stats (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_STATS"]], "calendar_time (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_TIME"]], "calendar_up (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_UP"]], "calendar_x (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_X"]], "camera (viser.icon attribute)": [[33, "viser.Icon.CAMERA"]], "camera_bolt (viser.icon attribute)": [[33, "viser.Icon.CAMERA_BOLT"]], "camera_cancel (viser.icon attribute)": [[33, "viser.Icon.CAMERA_CANCEL"]], "camera_check (viser.icon attribute)": [[33, "viser.Icon.CAMERA_CHECK"]], "camera_code (viser.icon attribute)": [[33, "viser.Icon.CAMERA_CODE"]], "camera_cog (viser.icon attribute)": [[33, "viser.Icon.CAMERA_COG"]], "camera_dollar (viser.icon attribute)": [[33, "viser.Icon.CAMERA_DOLLAR"]], "camera_down (viser.icon attribute)": [[33, "viser.Icon.CAMERA_DOWN"]], "camera_exclamation (viser.icon attribute)": [[33, "viser.Icon.CAMERA_EXCLAMATION"]], "camera_filled (viser.icon attribute)": [[33, "viser.Icon.CAMERA_FILLED"]], "camera_heart (viser.icon attribute)": [[33, "viser.Icon.CAMERA_HEART"]], "camera_minus (viser.icon attribute)": [[33, "viser.Icon.CAMERA_MINUS"]], "camera_off (viser.icon attribute)": [[33, "viser.Icon.CAMERA_OFF"]], "camera_pause (viser.icon attribute)": [[33, "viser.Icon.CAMERA_PAUSE"]], "camera_pin (viser.icon attribute)": [[33, "viser.Icon.CAMERA_PIN"]], "camera_plus (viser.icon attribute)": [[33, "viser.Icon.CAMERA_PLUS"]], "camera_question (viser.icon attribute)": [[33, "viser.Icon.CAMERA_QUESTION"]], "camera_rotate (viser.icon attribute)": [[33, "viser.Icon.CAMERA_ROTATE"]], "camera_search (viser.icon attribute)": [[33, "viser.Icon.CAMERA_SEARCH"]], "camera_selfie (viser.icon attribute)": [[33, "viser.Icon.CAMERA_SELFIE"]], "camera_share (viser.icon attribute)": [[33, "viser.Icon.CAMERA_SHARE"]], "camera_star (viser.icon attribute)": [[33, "viser.Icon.CAMERA_STAR"]], "camera_up (viser.icon attribute)": [[33, "viser.Icon.CAMERA_UP"]], "camera_x (viser.icon attribute)": [[33, "viser.Icon.CAMERA_X"]], "camper (viser.icon attribute)": [[33, "viser.Icon.CAMPER"]], "campfire (viser.icon attribute)": [[33, "viser.Icon.CAMPFIRE"]], "candle (viser.icon attribute)": [[33, "viser.Icon.CANDLE"]], "candy (viser.icon attribute)": [[33, "viser.Icon.CANDY"]], "candy_off (viser.icon attribute)": [[33, "viser.Icon.CANDY_OFF"]], "cane (viser.icon attribute)": [[33, "viser.Icon.CANE"]], "cannabis (viser.icon attribute)": [[33, "viser.Icon.CANNABIS"]], "capsule (viser.icon attribute)": [[33, "viser.Icon.CAPSULE"]], "capsule_horizontal (viser.icon attribute)": [[33, "viser.Icon.CAPSULE_HORIZONTAL"]], "capture (viser.icon attribute)": [[33, "viser.Icon.CAPTURE"]], "capture_off (viser.icon attribute)": [[33, "viser.Icon.CAPTURE_OFF"]], "car (viser.icon attribute)": [[33, "viser.Icon.CAR"]], "caravan (viser.icon attribute)": [[33, "viser.Icon.CARAVAN"]], "cardboards (viser.icon attribute)": [[33, "viser.Icon.CARDBOARDS"]], "cardboards_off (viser.icon attribute)": [[33, "viser.Icon.CARDBOARDS_OFF"]], "cards (viser.icon attribute)": [[33, "viser.Icon.CARDS"]], "caret_down (viser.icon attribute)": [[33, "viser.Icon.CARET_DOWN"]], "caret_left (viser.icon attribute)": [[33, "viser.Icon.CARET_LEFT"]], "caret_right (viser.icon attribute)": [[33, "viser.Icon.CARET_RIGHT"]], "caret_up (viser.icon attribute)": [[33, "viser.Icon.CARET_UP"]], "carousel_horizontal (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_HORIZONTAL"]], "carousel_horizontal_filled (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_HORIZONTAL_FILLED"]], "carousel_vertical (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_VERTICAL"]], "carousel_vertical_filled (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_VERTICAL_FILLED"]], "carrot (viser.icon attribute)": [[33, "viser.Icon.CARROT"]], "carrot_off (viser.icon attribute)": [[33, "viser.Icon.CARROT_OFF"]], "car_crane (viser.icon attribute)": [[33, "viser.Icon.CAR_CRANE"]], "car_crash (viser.icon attribute)": [[33, "viser.Icon.CAR_CRASH"]], "car_off (viser.icon attribute)": [[33, "viser.Icon.CAR_OFF"]], "car_turbine (viser.icon attribute)": [[33, "viser.Icon.CAR_TURBINE"]], "cash (viser.icon attribute)": [[33, "viser.Icon.CASH"]], "cash_banknote (viser.icon attribute)": [[33, "viser.Icon.CASH_BANKNOTE"]], "cash_banknote_off (viser.icon attribute)": [[33, "viser.Icon.CASH_BANKNOTE_OFF"]], "cash_off (viser.icon attribute)": [[33, "viser.Icon.CASH_OFF"]], "cast (viser.icon attribute)": [[33, "viser.Icon.CAST"]], "cast_off (viser.icon attribute)": [[33, "viser.Icon.CAST_OFF"]], "cat (viser.icon attribute)": [[33, "viser.Icon.CAT"]], "category (viser.icon attribute)": [[33, "viser.Icon.CATEGORY"]], "category_2 (viser.icon attribute)": [[33, "viser.Icon.CATEGORY_2"]], "ce (viser.icon attribute)": [[33, "viser.Icon.CE"]], "cell (viser.icon attribute)": [[33, "viser.Icon.CELL"]], "cell_signal_1 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_1"]], "cell_signal_2 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_2"]], "cell_signal_3 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_3"]], "cell_signal_4 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_4"]], "cell_signal_5 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_5"]], "cell_signal_off (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_OFF"]], "certificate (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE"]], "certificate_2 (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE_2"]], "certificate_2_off (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE_2_OFF"]], "certificate_off (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE_OFF"]], "ce_off (viser.icon attribute)": [[33, "viser.Icon.CE_OFF"]], "chair_director (viser.icon attribute)": [[33, "viser.Icon.CHAIR_DIRECTOR"]], "chalkboard (viser.icon attribute)": [[33, "viser.Icon.CHALKBOARD"]], "chalkboard_off (viser.icon attribute)": [[33, "viser.Icon.CHALKBOARD_OFF"]], "charging_pile (viser.icon attribute)": [[33, "viser.Icon.CHARGING_PILE"]], "chart_arcs (viser.icon attribute)": [[33, "viser.Icon.CHART_ARCS"]], "chart_arcs_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_ARCS_3"]], "chart_area (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA"]], "chart_area_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA_FILLED"]], "chart_area_line (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA_LINE"]], "chart_area_line_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA_LINE_FILLED"]], "chart_arrows (viser.icon attribute)": [[33, "viser.Icon.CHART_ARROWS"]], "chart_arrows_vertical (viser.icon attribute)": [[33, "viser.Icon.CHART_ARROWS_VERTICAL"]], "chart_bar (viser.icon attribute)": [[33, "viser.Icon.CHART_BAR"]], "chart_bar_off (viser.icon attribute)": [[33, "viser.Icon.CHART_BAR_OFF"]], "chart_bubble (viser.icon attribute)": [[33, "viser.Icon.CHART_BUBBLE"]], "chart_bubble_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_BUBBLE_FILLED"]], "chart_candle (viser.icon attribute)": [[33, "viser.Icon.CHART_CANDLE"]], "chart_candle_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_CANDLE_FILLED"]], "chart_circles (viser.icon attribute)": [[33, "viser.Icon.CHART_CIRCLES"]], "chart_donut (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT"]], "chart_donut_2 (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_2"]], "chart_donut_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_3"]], "chart_donut_4 (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_4"]], "chart_donut_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_FILLED"]], "chart_dots (viser.icon attribute)": [[33, "viser.Icon.CHART_DOTS"]], "chart_dots_2 (viser.icon attribute)": [[33, "viser.Icon.CHART_DOTS_2"]], "chart_dots_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_DOTS_3"]], "chart_grid_dots (viser.icon attribute)": [[33, "viser.Icon.CHART_GRID_DOTS"]], "chart_histogram (viser.icon attribute)": [[33, "viser.Icon.CHART_HISTOGRAM"]], "chart_infographic (viser.icon attribute)": [[33, "viser.Icon.CHART_INFOGRAPHIC"]], "chart_line (viser.icon attribute)": [[33, "viser.Icon.CHART_LINE"]], "chart_pie (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE"]], "chart_pie_2 (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_2"]], "chart_pie_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_3"]], "chart_pie_4 (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_4"]], "chart_pie_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_FILLED"]], "chart_pie_off (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_OFF"]], "chart_ppf (viser.icon attribute)": [[33, "viser.Icon.CHART_PPF"]], "chart_radar (viser.icon attribute)": [[33, "viser.Icon.CHART_RADAR"]], "chart_sankey (viser.icon attribute)": [[33, "viser.Icon.CHART_SANKEY"]], "chart_treemap (viser.icon attribute)": [[33, "viser.Icon.CHART_TREEMAP"]], "check (viser.icon attribute)": [[33, "viser.Icon.CHECK"]], "checkbox (viser.icon attribute)": [[33, "viser.Icon.CHECKBOX"]], "checklist (viser.icon attribute)": [[33, "viser.Icon.CHECKLIST"]], "checks (viser.icon attribute)": [[33, "viser.Icon.CHECKS"]], "checkup_list (viser.icon attribute)": [[33, "viser.Icon.CHECKUP_LIST"]], "cheese (viser.icon attribute)": [[33, "viser.Icon.CHEESE"]], "chef_hat (viser.icon attribute)": [[33, "viser.Icon.CHEF_HAT"]], "chef_hat_off (viser.icon attribute)": [[33, "viser.Icon.CHEF_HAT_OFF"]], "cherry (viser.icon attribute)": [[33, "viser.Icon.CHERRY"]], "cherry_filled (viser.icon attribute)": [[33, "viser.Icon.CHERRY_FILLED"]], "chess (viser.icon attribute)": [[33, "viser.Icon.CHESS"]], "chess_bishop (viser.icon attribute)": [[33, "viser.Icon.CHESS_BISHOP"]], "chess_bishop_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_BISHOP_FILLED"]], "chess_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_FILLED"]], "chess_king (viser.icon attribute)": [[33, "viser.Icon.CHESS_KING"]], "chess_king_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_KING_FILLED"]], "chess_knight (viser.icon attribute)": [[33, "viser.Icon.CHESS_KNIGHT"]], "chess_knight_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_KNIGHT_FILLED"]], "chess_queen (viser.icon attribute)": [[33, "viser.Icon.CHESS_QUEEN"]], "chess_queen_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_QUEEN_FILLED"]], "chess_rook (viser.icon attribute)": [[33, "viser.Icon.CHESS_ROOK"]], "chess_rook_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_ROOK_FILLED"]], "chevrons_down (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_DOWN"]], "chevrons_down_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_DOWN_LEFT"]], "chevrons_down_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_DOWN_RIGHT"]], "chevrons_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_LEFT"]], "chevrons_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_RIGHT"]], "chevrons_up (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_UP"]], "chevrons_up_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_UP_LEFT"]], "chevrons_up_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_UP_RIGHT"]], "chevron_compact_down (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_DOWN"]], "chevron_compact_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_LEFT"]], "chevron_compact_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_RIGHT"]], "chevron_compact_up (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_UP"]], "chevron_down (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_DOWN"]], "chevron_down_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_DOWN_LEFT"]], "chevron_down_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_DOWN_RIGHT"]], "chevron_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_LEFT"]], "chevron_left_pipe (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_LEFT_PIPE"]], "chevron_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_RIGHT"]], "chevron_right_pipe (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_RIGHT_PIPE"]], "chevron_up (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_UP"]], "chevron_up_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_UP_LEFT"]], "chevron_up_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_UP_RIGHT"]], "chisel (viser.icon attribute)": [[33, "viser.Icon.CHISEL"]], "christmas_tree (viser.icon attribute)": [[33, "viser.Icon.CHRISTMAS_TREE"]], "christmas_tree_off (viser.icon attribute)": [[33, "viser.Icon.CHRISTMAS_TREE_OFF"]], "circle (viser.icon attribute)": [[33, "viser.Icon.CIRCLE"]], "circles (viser.icon attribute)": [[33, "viser.Icon.CIRCLES"]], "circles_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLES_FILLED"]], "circles_relation (viser.icon attribute)": [[33, "viser.Icon.CIRCLES_RELATION"]], "circle_0_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_0_FILLED"]], "circle_1_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_1_FILLED"]], "circle_2_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_2_FILLED"]], "circle_3_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_3_FILLED"]], "circle_4_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_4_FILLED"]], "circle_5_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_5_FILLED"]], "circle_6_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_6_FILLED"]], "circle_7_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_7_FILLED"]], "circle_8_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_8_FILLED"]], "circle_9_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_9_FILLED"]], "circle_arrow_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN"]], "circle_arrow_down_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_FILLED"]], "circle_arrow_down_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT"]], "circle_arrow_down_left_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT_FILLED"]], "circle_arrow_down_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT"]], "circle_arrow_down_right_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT_FILLED"]], "circle_arrow_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_LEFT"]], "circle_arrow_left_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_LEFT_FILLED"]], "circle_arrow_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_RIGHT"]], "circle_arrow_right_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_RIGHT_FILLED"]], "circle_arrow_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP"]], "circle_arrow_up_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_FILLED"]], "circle_arrow_up_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_LEFT"]], "circle_arrow_up_left_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_LEFT_FILLED"]], "circle_arrow_up_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_RIGHT"]], "circle_arrow_up_right_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_RIGHT_FILLED"]], "circle_caret_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_DOWN"]], "circle_caret_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_LEFT"]], "circle_caret_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_RIGHT"]], "circle_caret_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_UP"]], "circle_check (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHECK"]], "circle_check_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHECK_FILLED"]], "circle_chevrons_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_DOWN"]], "circle_chevrons_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_LEFT"]], "circle_chevrons_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_RIGHT"]], "circle_chevrons_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_UP"]], "circle_chevron_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_DOWN"]], "circle_chevron_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_LEFT"]], "circle_chevron_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_RIGHT"]], "circle_chevron_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_UP"]], "circle_dashed (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DASHED"]], "circle_dot (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DOT"]], "circle_dotted (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DOTTED"]], "circle_dot_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DOT_FILLED"]], "circle_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_FILLED"]], "circle_half (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_HALF"]], "circle_half_2 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_HALF_2"]], "circle_half_vertical (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_HALF_VERTICAL"]], "circle_key (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_KEY"]], "circle_key_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_KEY_FILLED"]], "circle_letter_a (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_A"]], "circle_letter_b (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_B"]], "circle_letter_c (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_C"]], "circle_letter_d (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_D"]], "circle_letter_e (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_E"]], "circle_letter_f (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_F"]], "circle_letter_g (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_G"]], "circle_letter_h (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_H"]], "circle_letter_i (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_I"]], "circle_letter_j (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_J"]], "circle_letter_k (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_K"]], "circle_letter_l (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_L"]], "circle_letter_m (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_M"]], "circle_letter_n (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_N"]], "circle_letter_o (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_O"]], "circle_letter_p (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_P"]], "circle_letter_q (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_Q"]], "circle_letter_r (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_R"]], "circle_letter_s (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_S"]], "circle_letter_t (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_T"]], "circle_letter_u (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_U"]], "circle_letter_v (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_V"]], "circle_letter_w (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_W"]], "circle_letter_x (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_X"]], "circle_letter_y (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_Y"]], "circle_letter_z (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_Z"]], "circle_minus (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_MINUS"]], "circle_number_0 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_0"]], "circle_number_1 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_1"]], "circle_number_2 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_2"]], "circle_number_3 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_3"]], "circle_number_4 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_4"]], "circle_number_5 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_5"]], "circle_number_6 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_6"]], "circle_number_7 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_7"]], "circle_number_8 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_8"]], "circle_number_9 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_9"]], "circle_off (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_OFF"]], "circle_plus (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_PLUS"]], "circle_rectangle (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_RECTANGLE"]], "circle_rectangle_off (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_RECTANGLE_OFF"]], "circle_square (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_SQUARE"]], "circle_triangle (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_TRIANGLE"]], "circle_x (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_X"]], "circle_x_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_X_FILLED"]], "circuit_ammeter (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_AMMETER"]], "circuit_battery (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_BATTERY"]], "circuit_bulb (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_BULB"]], "circuit_capacitor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CAPACITOR"]], "circuit_capacitor_polarized (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CAPACITOR_POLARIZED"]], "circuit_cell (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CELL"]], "circuit_cell_plus (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CELL_PLUS"]], "circuit_changeover (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CHANGEOVER"]], "circuit_diode (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_DIODE"]], "circuit_diode_zener (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_DIODE_ZENER"]], "circuit_ground (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_GROUND"]], "circuit_ground_digital (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_GROUND_DIGITAL"]], "circuit_inductor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_INDUCTOR"]], "circuit_motor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_MOTOR"]], "circuit_pushbutton (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_PUSHBUTTON"]], "circuit_resistor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_RESISTOR"]], "circuit_switch_closed (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_SWITCH_CLOSED"]], "circuit_switch_open (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_SWITCH_OPEN"]], "circuit_voltmeter (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_VOLTMETER"]], "clear_all (viser.icon attribute)": [[33, "viser.Icon.CLEAR_ALL"]], "clear_formatting (viser.icon attribute)": [[33, "viser.Icon.CLEAR_FORMATTING"]], "click (viser.icon attribute)": [[33, "viser.Icon.CLICK"]], "clipboard (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD"]], "clipboard_check (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_CHECK"]], "clipboard_copy (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_COPY"]], "clipboard_data (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_DATA"]], "clipboard_heart (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_HEART"]], "clipboard_list (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_LIST"]], "clipboard_off (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_OFF"]], "clipboard_plus (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_PLUS"]], "clipboard_text (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_TEXT"]], "clipboard_typography (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_TYPOGRAPHY"]], "clipboard_x (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_X"]], "clock (viser.icon attribute)": [[33, "viser.Icon.CLOCK"]], "clock_2 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_2"]], "clock_bolt (viser.icon attribute)": [[33, "viser.Icon.CLOCK_BOLT"]], "clock_cancel (viser.icon attribute)": [[33, "viser.Icon.CLOCK_CANCEL"]], "clock_check (viser.icon attribute)": [[33, "viser.Icon.CLOCK_CHECK"]], "clock_code (viser.icon attribute)": [[33, "viser.Icon.CLOCK_CODE"]], "clock_cog (viser.icon attribute)": [[33, "viser.Icon.CLOCK_COG"]], "clock_dollar (viser.icon attribute)": [[33, "viser.Icon.CLOCK_DOLLAR"]], "clock_down (viser.icon attribute)": [[33, "viser.Icon.CLOCK_DOWN"]], "clock_edit (viser.icon attribute)": [[33, "viser.Icon.CLOCK_EDIT"]], "clock_exclamation (viser.icon attribute)": [[33, "viser.Icon.CLOCK_EXCLAMATION"]], "clock_filled (viser.icon attribute)": [[33, "viser.Icon.CLOCK_FILLED"]], "clock_heart (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HEART"]], "clock_hour_1 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_1"]], "clock_hour_10 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_10"]], "clock_hour_11 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_11"]], "clock_hour_12 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_12"]], "clock_hour_2 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_2"]], "clock_hour_3 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_3"]], "clock_hour_4 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_4"]], "clock_hour_5 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_5"]], "clock_hour_6 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_6"]], "clock_hour_7 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_7"]], "clock_hour_8 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_8"]], "clock_hour_9 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_9"]], "clock_minus (viser.icon attribute)": [[33, "viser.Icon.CLOCK_MINUS"]], "clock_off (viser.icon attribute)": [[33, "viser.Icon.CLOCK_OFF"]], "clock_pause (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PAUSE"]], "clock_pin (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PIN"]], "clock_play (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PLAY"]], "clock_plus (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PLUS"]], "clock_question (viser.icon attribute)": [[33, "viser.Icon.CLOCK_QUESTION"]], "clock_record (viser.icon attribute)": [[33, "viser.Icon.CLOCK_RECORD"]], "clock_search (viser.icon attribute)": [[33, "viser.Icon.CLOCK_SEARCH"]], "clock_share (viser.icon attribute)": [[33, "viser.Icon.CLOCK_SHARE"]], "clock_shield (viser.icon attribute)": [[33, "viser.Icon.CLOCK_SHIELD"]], "clock_star (viser.icon attribute)": [[33, "viser.Icon.CLOCK_STAR"]], "clock_stop (viser.icon attribute)": [[33, "viser.Icon.CLOCK_STOP"]], "clock_up (viser.icon attribute)": [[33, "viser.Icon.CLOCK_UP"]], "clock_x (viser.icon attribute)": [[33, "viser.Icon.CLOCK_X"]], "clothes_rack (viser.icon attribute)": [[33, "viser.Icon.CLOTHES_RACK"]], "clothes_rack_off (viser.icon attribute)": [[33, "viser.Icon.CLOTHES_RACK_OFF"]], "cloud (viser.icon attribute)": [[33, "viser.Icon.CLOUD"]], "cloud_bolt (viser.icon attribute)": [[33, "viser.Icon.CLOUD_BOLT"]], "cloud_cancel (viser.icon attribute)": [[33, "viser.Icon.CLOUD_CANCEL"]], "cloud_check (viser.icon attribute)": [[33, "viser.Icon.CLOUD_CHECK"]], "cloud_code (viser.icon attribute)": [[33, "viser.Icon.CLOUD_CODE"]], "cloud_cog (viser.icon attribute)": [[33, "viser.Icon.CLOUD_COG"]], "cloud_computing (viser.icon attribute)": [[33, "viser.Icon.CLOUD_COMPUTING"]], "cloud_data_connection (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DATA_CONNECTION"]], "cloud_dollar (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DOLLAR"]], "cloud_down (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DOWN"]], "cloud_download (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DOWNLOAD"]], "cloud_exclamation (viser.icon attribute)": [[33, "viser.Icon.CLOUD_EXCLAMATION"]], "cloud_filled (viser.icon attribute)": [[33, "viser.Icon.CLOUD_FILLED"]], "cloud_fog (viser.icon attribute)": [[33, "viser.Icon.CLOUD_FOG"]], "cloud_heart (viser.icon attribute)": [[33, "viser.Icon.CLOUD_HEART"]], "cloud_lock (viser.icon attribute)": [[33, "viser.Icon.CLOUD_LOCK"]], "cloud_lock_open (viser.icon attribute)": [[33, "viser.Icon.CLOUD_LOCK_OPEN"]], "cloud_minus (viser.icon attribute)": [[33, "viser.Icon.CLOUD_MINUS"]], "cloud_off (viser.icon attribute)": [[33, "viser.Icon.CLOUD_OFF"]], "cloud_pause (viser.icon attribute)": [[33, "viser.Icon.CLOUD_PAUSE"]], "cloud_pin (viser.icon attribute)": [[33, "viser.Icon.CLOUD_PIN"]], "cloud_plus (viser.icon attribute)": [[33, "viser.Icon.CLOUD_PLUS"]], "cloud_question (viser.icon attribute)": [[33, "viser.Icon.CLOUD_QUESTION"]], "cloud_rain (viser.icon attribute)": [[33, "viser.Icon.CLOUD_RAIN"]], "cloud_search (viser.icon attribute)": [[33, "viser.Icon.CLOUD_SEARCH"]], "cloud_share (viser.icon attribute)": [[33, "viser.Icon.CLOUD_SHARE"]], "cloud_snow (viser.icon attribute)": [[33, "viser.Icon.CLOUD_SNOW"]], "cloud_star (viser.icon attribute)": [[33, "viser.Icon.CLOUD_STAR"]], "cloud_storm (viser.icon attribute)": [[33, "viser.Icon.CLOUD_STORM"]], "cloud_up (viser.icon attribute)": [[33, "viser.Icon.CLOUD_UP"]], "cloud_upload (viser.icon attribute)": [[33, "viser.Icon.CLOUD_UPLOAD"]], "cloud_x (viser.icon attribute)": [[33, "viser.Icon.CLOUD_X"]], "clover (viser.icon attribute)": [[33, "viser.Icon.CLOVER"]], "clover_2 (viser.icon attribute)": [[33, "viser.Icon.CLOVER_2"]], "clubs (viser.icon attribute)": [[33, "viser.Icon.CLUBS"]], "clubs_filled (viser.icon attribute)": [[33, "viser.Icon.CLUBS_FILLED"]], "code (viser.icon attribute)": [[33, "viser.Icon.CODE"]], "code_asterix (viser.icon attribute)": [[33, "viser.Icon.CODE_ASTERIX"]], "code_circle (viser.icon attribute)": [[33, "viser.Icon.CODE_CIRCLE"]], "code_circle_2 (viser.icon attribute)": [[33, "viser.Icon.CODE_CIRCLE_2"]], "code_dots (viser.icon attribute)": [[33, "viser.Icon.CODE_DOTS"]], "code_minus (viser.icon attribute)": [[33, "viser.Icon.CODE_MINUS"]], "code_off (viser.icon attribute)": [[33, "viser.Icon.CODE_OFF"]], "code_plus (viser.icon attribute)": [[33, "viser.Icon.CODE_PLUS"]], "coffee (viser.icon attribute)": [[33, "viser.Icon.COFFEE"]], "coffee_off (viser.icon attribute)": [[33, "viser.Icon.COFFEE_OFF"]], "coffin (viser.icon attribute)": [[33, "viser.Icon.COFFIN"]], "coin (viser.icon attribute)": [[33, "viser.Icon.COIN"]], "coins (viser.icon attribute)": [[33, "viser.Icon.COINS"]], "coin_bitcoin (viser.icon attribute)": [[33, "viser.Icon.COIN_BITCOIN"]], "coin_euro (viser.icon attribute)": [[33, "viser.Icon.COIN_EURO"]], "coin_monero (viser.icon attribute)": [[33, "viser.Icon.COIN_MONERO"]], "coin_off (viser.icon attribute)": [[33, "viser.Icon.COIN_OFF"]], "coin_pound (viser.icon attribute)": [[33, "viser.Icon.COIN_POUND"]], "coin_rupee (viser.icon attribute)": [[33, "viser.Icon.COIN_RUPEE"]], "coin_yen (viser.icon attribute)": [[33, "viser.Icon.COIN_YEN"]], "coin_yuan (viser.icon attribute)": [[33, "viser.Icon.COIN_YUAN"]], "color_filter (viser.icon attribute)": [[33, "viser.Icon.COLOR_FILTER"]], "color_picker (viser.icon attribute)": [[33, "viser.Icon.COLOR_PICKER"]], "color_picker_off (viser.icon attribute)": [[33, "viser.Icon.COLOR_PICKER_OFF"]], "color_swatch (viser.icon attribute)": [[33, "viser.Icon.COLOR_SWATCH"]], "color_swatch_off (viser.icon attribute)": [[33, "viser.Icon.COLOR_SWATCH_OFF"]], "columns (viser.icon attribute)": [[33, "viser.Icon.COLUMNS"]], "columns_1 (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_1"]], "columns_2 (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_2"]], "columns_3 (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_3"]], "columns_off (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_OFF"]], "column_insert_left (viser.icon attribute)": [[33, "viser.Icon.COLUMN_INSERT_LEFT"]], "column_insert_right (viser.icon attribute)": [[33, "viser.Icon.COLUMN_INSERT_RIGHT"]], "column_remove (viser.icon attribute)": [[33, "viser.Icon.COLUMN_REMOVE"]], "comet (viser.icon attribute)": [[33, "viser.Icon.COMET"]], "command (viser.icon attribute)": [[33, "viser.Icon.COMMAND"]], "command_off (viser.icon attribute)": [[33, "viser.Icon.COMMAND_OFF"]], "compass (viser.icon attribute)": [[33, "viser.Icon.COMPASS"]], "compass_off (viser.icon attribute)": [[33, "viser.Icon.COMPASS_OFF"]], "components (viser.icon attribute)": [[33, "viser.Icon.COMPONENTS"]], "components_off (viser.icon attribute)": [[33, "viser.Icon.COMPONENTS_OFF"]], "cone (viser.icon attribute)": [[33, "viser.Icon.CONE"]], "cone_2 (viser.icon attribute)": [[33, "viser.Icon.CONE_2"]], "cone_off (viser.icon attribute)": [[33, "viser.Icon.CONE_OFF"]], "cone_plus (viser.icon attribute)": [[33, "viser.Icon.CONE_PLUS"]], "confetti (viser.icon attribute)": [[33, "viser.Icon.CONFETTI"]], "confetti_off (viser.icon attribute)": [[33, "viser.Icon.CONFETTI_OFF"]], "confucius (viser.icon attribute)": [[33, "viser.Icon.CONFUCIUS"]], "container (viser.icon attribute)": [[33, "viser.Icon.CONTAINER"]], "container_off (viser.icon attribute)": [[33, "viser.Icon.CONTAINER_OFF"]], "contrast (viser.icon attribute)": [[33, "viser.Icon.CONTRAST"]], "contrast_2 (viser.icon attribute)": [[33, "viser.Icon.CONTRAST_2"]], "contrast_2_off (viser.icon attribute)": [[33, "viser.Icon.CONTRAST_2_OFF"]], "contrast_off (viser.icon attribute)": [[33, "viser.Icon.CONTRAST_OFF"]], "cooker (viser.icon attribute)": [[33, "viser.Icon.COOKER"]], "cookie (viser.icon attribute)": [[33, "viser.Icon.COOKIE"]], "cookie_man (viser.icon attribute)": [[33, "viser.Icon.COOKIE_MAN"]], "cookie_off (viser.icon attribute)": [[33, "viser.Icon.COOKIE_OFF"]], "copy (viser.icon attribute)": [[33, "viser.Icon.COPY"]], "copyleft (viser.icon attribute)": [[33, "viser.Icon.COPYLEFT"]], "copyleft_filled (viser.icon attribute)": [[33, "viser.Icon.COPYLEFT_FILLED"]], "copyleft_off (viser.icon attribute)": [[33, "viser.Icon.COPYLEFT_OFF"]], "copyright (viser.icon attribute)": [[33, "viser.Icon.COPYRIGHT"]], "copyright_filled (viser.icon attribute)": [[33, "viser.Icon.COPYRIGHT_FILLED"]], "copyright_off (viser.icon attribute)": [[33, "viser.Icon.COPYRIGHT_OFF"]], "copy_off (viser.icon attribute)": [[33, "viser.Icon.COPY_OFF"]], "corner_down_left (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_LEFT"]], "corner_down_left_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_LEFT_DOUBLE"]], "corner_down_right (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_RIGHT"]], "corner_down_right_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_RIGHT_DOUBLE"]], "corner_left_down (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_DOWN"]], "corner_left_down_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_DOWN_DOUBLE"]], "corner_left_up (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_UP"]], "corner_left_up_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_UP_DOUBLE"]], "corner_right_down (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_DOWN"]], "corner_right_down_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_DOWN_DOUBLE"]], "corner_right_up (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_UP"]], "corner_right_up_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_UP_DOUBLE"]], "corner_up_left (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_LEFT"]], "corner_up_left_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_LEFT_DOUBLE"]], "corner_up_right (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_RIGHT"]], "corner_up_right_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_RIGHT_DOUBLE"]], "cpu (viser.icon attribute)": [[33, "viser.Icon.CPU"]], "cpu_2 (viser.icon attribute)": [[33, "viser.Icon.CPU_2"]], "cpu_off (viser.icon attribute)": [[33, "viser.Icon.CPU_OFF"]], "crane (viser.icon attribute)": [[33, "viser.Icon.CRANE"]], "crane_off (viser.icon attribute)": [[33, "viser.Icon.CRANE_OFF"]], "creative_commons (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS"]], "creative_commons_by (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_BY"]], "creative_commons_nc (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_NC"]], "creative_commons_nd (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_ND"]], "creative_commons_off (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_OFF"]], "creative_commons_sa (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_SA"]], "creative_commons_zero (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_ZERO"]], "credit_card (viser.icon attribute)": [[33, "viser.Icon.CREDIT_CARD"]], "credit_card_off (viser.icon attribute)": [[33, "viser.Icon.CREDIT_CARD_OFF"]], "cricket (viser.icon attribute)": [[33, "viser.Icon.CRICKET"]], "crop (viser.icon attribute)": [[33, "viser.Icon.CROP"]], "cross (viser.icon attribute)": [[33, "viser.Icon.CROSS"]], "crosshair (viser.icon attribute)": [[33, "viser.Icon.CROSSHAIR"]], "cross_filled (viser.icon attribute)": [[33, "viser.Icon.CROSS_FILLED"]], "cross_off (viser.icon attribute)": [[33, "viser.Icon.CROSS_OFF"]], "crown (viser.icon attribute)": [[33, "viser.Icon.CROWN"]], "crown_off (viser.icon attribute)": [[33, "viser.Icon.CROWN_OFF"]], "crutches (viser.icon attribute)": [[33, "viser.Icon.CRUTCHES"]], "crutches_off (viser.icon attribute)": [[33, "viser.Icon.CRUTCHES_OFF"]], "crystal_ball (viser.icon attribute)": [[33, "viser.Icon.CRYSTAL_BALL"]], "csv (viser.icon attribute)": [[33, "viser.Icon.CSV"]], "cube (viser.icon attribute)": [[33, "viser.Icon.CUBE"]], "cube_off (viser.icon attribute)": [[33, "viser.Icon.CUBE_OFF"]], "cube_plus (viser.icon attribute)": [[33, "viser.Icon.CUBE_PLUS"]], "cube_send (viser.icon attribute)": [[33, "viser.Icon.CUBE_SEND"]], "cube_unfolded (viser.icon attribute)": [[33, "viser.Icon.CUBE_UNFOLDED"]], "cup (viser.icon attribute)": [[33, "viser.Icon.CUP"]], "cup_off (viser.icon attribute)": [[33, "viser.Icon.CUP_OFF"]], "curling (viser.icon attribute)": [[33, "viser.Icon.CURLING"]], "curly_loop (viser.icon attribute)": [[33, "viser.Icon.CURLY_LOOP"]], "currency (viser.icon attribute)": [[33, "viser.Icon.CURRENCY"]], "currency_afghani (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_AFGHANI"]], "currency_bahraini (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_BAHRAINI"]], "currency_baht (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_BAHT"]], "currency_bitcoin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_BITCOIN"]], "currency_cent (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_CENT"]], "currency_dinar (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DINAR"]], "currency_dirham (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DIRHAM"]], "currency_dogecoin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOGECOIN"]], "currency_dollar (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR"]], "currency_dollar_australian (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_AUSTRALIAN"]], "currency_dollar_brunei (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_BRUNEI"]], "currency_dollar_canadian (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_CANADIAN"]], "currency_dollar_guyanese (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_GUYANESE"]], "currency_dollar_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_OFF"]], "currency_dollar_singapore (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_SINGAPORE"]], "currency_dollar_zimbabwean (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_ZIMBABWEAN"]], "currency_dong (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DONG"]], "currency_dram (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DRAM"]], "currency_ethereum (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_ETHEREUM"]], "currency_euro (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_EURO"]], "currency_euro_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_EURO_OFF"]], "currency_florin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_FLORIN"]], "currency_forint (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_FORINT"]], "currency_frank (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_FRANK"]], "currency_guarani (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_GUARANI"]], "currency_hryvnia (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_HRYVNIA"]], "currency_iranian_rial (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_IRANIAN_RIAL"]], "currency_kip (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KIP"]], "currency_krone_czech (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KRONE_CZECH"]], "currency_krone_danish (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KRONE_DANISH"]], "currency_krone_swedish (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KRONE_SWEDISH"]], "currency_lari (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LARI"]], "currency_leu (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LEU"]], "currency_lira (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LIRA"]], "currency_litecoin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LITECOIN"]], "currency_lyd (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LYD"]], "currency_manat (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_MANAT"]], "currency_monero (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_MONERO"]], "currency_naira (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_NAIRA"]], "currency_nano (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_NANO"]], "currency_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_OFF"]], "currency_paanga (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_PAANGA"]], "currency_peso (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_PESO"]], "currency_pound (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_POUND"]], "currency_pound_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_POUND_OFF"]], "currency_quetzal (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_QUETZAL"]], "currency_real (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_REAL"]], "currency_renminbi (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RENMINBI"]], "currency_ripple (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RIPPLE"]], "currency_riyal (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RIYAL"]], "currency_rubel (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUBEL"]], "currency_rufiyaa (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUFIYAA"]], "currency_rupee (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUPEE"]], "currency_rupee_nepalese (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUPEE_NEPALESE"]], "currency_shekel (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_SHEKEL"]], "currency_solana (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_SOLANA"]], "currency_som (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_SOM"]], "currency_taka (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_TAKA"]], "currency_tenge (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_TENGE"]], "currency_tugrik (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_TUGRIK"]], "currency_won (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_WON"]], "currency_yen (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_YEN"]], "currency_yen_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_YEN_OFF"]], "currency_yuan (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_YUAN"]], "currency_zloty (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_ZLOTY"]], "current_location (viser.icon attribute)": [[33, "viser.Icon.CURRENT_LOCATION"]], "current_location_off (viser.icon attribute)": [[33, "viser.Icon.CURRENT_LOCATION_OFF"]], "cursor_off (viser.icon attribute)": [[33, "viser.Icon.CURSOR_OFF"]], "cursor_text (viser.icon attribute)": [[33, "viser.Icon.CURSOR_TEXT"]], "cut (viser.icon attribute)": [[33, "viser.Icon.CUT"]], "cylinder (viser.icon attribute)": [[33, "viser.Icon.CYLINDER"]], "cylinder_off (viser.icon attribute)": [[33, "viser.Icon.CYLINDER_OFF"]], "cylinder_plus (viser.icon attribute)": [[33, "viser.Icon.CYLINDER_PLUS"]], "dashboard (viser.icon attribute)": [[33, "viser.Icon.DASHBOARD"]], "dashboard_off (viser.icon attribute)": [[33, "viser.Icon.DASHBOARD_OFF"]], "database (viser.icon attribute)": [[33, "viser.Icon.DATABASE"]], "database_cog (viser.icon attribute)": [[33, "viser.Icon.DATABASE_COG"]], "database_dollar (viser.icon attribute)": [[33, "viser.Icon.DATABASE_DOLLAR"]], "database_edit (viser.icon attribute)": [[33, "viser.Icon.DATABASE_EDIT"]], "database_exclamation (viser.icon attribute)": [[33, "viser.Icon.DATABASE_EXCLAMATION"]], "database_export (viser.icon attribute)": [[33, "viser.Icon.DATABASE_EXPORT"]], "database_heart (viser.icon attribute)": [[33, "viser.Icon.DATABASE_HEART"]], "database_import (viser.icon attribute)": [[33, "viser.Icon.DATABASE_IMPORT"]], "database_leak (viser.icon attribute)": [[33, "viser.Icon.DATABASE_LEAK"]], "database_minus (viser.icon attribute)": [[33, "viser.Icon.DATABASE_MINUS"]], "database_off (viser.icon attribute)": [[33, "viser.Icon.DATABASE_OFF"]], "database_plus (viser.icon attribute)": [[33, "viser.Icon.DATABASE_PLUS"]], "database_search (viser.icon attribute)": [[33, "viser.Icon.DATABASE_SEARCH"]], "database_share (viser.icon attribute)": [[33, "viser.Icon.DATABASE_SHARE"]], "database_star (viser.icon attribute)": [[33, "viser.Icon.DATABASE_STAR"]], "database_x (viser.icon attribute)": [[33, "viser.Icon.DATABASE_X"]], "decimal (viser.icon attribute)": [[33, "viser.Icon.DECIMAL"]], "deer (viser.icon attribute)": [[33, "viser.Icon.DEER"]], "delta (viser.icon attribute)": [[33, "viser.Icon.DELTA"]], "dental (viser.icon attribute)": [[33, "viser.Icon.DENTAL"]], "dental_broken (viser.icon attribute)": [[33, "viser.Icon.DENTAL_BROKEN"]], "dental_off (viser.icon attribute)": [[33, "viser.Icon.DENTAL_OFF"]], "deselect (viser.icon attribute)": [[33, "viser.Icon.DESELECT"]], "details (viser.icon attribute)": [[33, "viser.Icon.DETAILS"]], "details_off (viser.icon attribute)": [[33, "viser.Icon.DETAILS_OFF"]], "devices (viser.icon attribute)": [[33, "viser.Icon.DEVICES"]], "devices_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICES_2"]], "devices_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICES_BOLT"]], "devices_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICES_CANCEL"]], "devices_check (viser.icon attribute)": [[33, "viser.Icon.DEVICES_CHECK"]], "devices_code (viser.icon attribute)": [[33, "viser.Icon.DEVICES_CODE"]], "devices_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICES_COG"]], "devices_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICES_DOLLAR"]], "devices_down (viser.icon attribute)": [[33, "viser.Icon.DEVICES_DOWN"]], "devices_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICES_EXCLAMATION"]], "devices_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICES_HEART"]], "devices_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICES_MINUS"]], "devices_off (viser.icon attribute)": [[33, "viser.Icon.DEVICES_OFF"]], "devices_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PAUSE"]], "devices_pc (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PC"]], "devices_pc_off (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PC_OFF"]], "devices_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PIN"]], "devices_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PLUS"]], "devices_question (viser.icon attribute)": [[33, "viser.Icon.DEVICES_QUESTION"]], "devices_search (viser.icon attribute)": [[33, "viser.Icon.DEVICES_SEARCH"]], "devices_share (viser.icon attribute)": [[33, "viser.Icon.DEVICES_SHARE"]], "devices_star (viser.icon attribute)": [[33, "viser.Icon.DEVICES_STAR"]], "devices_up (viser.icon attribute)": [[33, "viser.Icon.DEVICES_UP"]], "devices_x (viser.icon attribute)": [[33, "viser.Icon.DEVICES_X"]], "device_airpods (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AIRPODS"]], "device_airpods_case (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AIRPODS_CASE"]], "device_airtag (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AIRTAG"]], "device_analytics (viser.icon attribute)": [[33, "viser.Icon.DEVICE_ANALYTICS"]], "device_audio_tape (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AUDIO_TAPE"]], "device_camera_phone (viser.icon attribute)": [[33, "viser.Icon.DEVICE_CAMERA_PHONE"]], "device_cctv (viser.icon attribute)": [[33, "viser.Icon.DEVICE_CCTV"]], "device_cctv_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_CCTV_OFF"]], "device_computer_camera (viser.icon attribute)": [[33, "viser.Icon.DEVICE_COMPUTER_CAMERA"]], "device_computer_camera_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_COMPUTER_CAMERA_OFF"]], "device_desktop (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP"]], "device_desktop_analytics (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_ANALYTICS"]], "device_desktop_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_BOLT"]], "device_desktop_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_CANCEL"]], "device_desktop_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_CHECK"]], "device_desktop_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_CODE"]], "device_desktop_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_COG"]], "device_desktop_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_DOLLAR"]], "device_desktop_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_DOWN"]], "device_desktop_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_EXCLAMATION"]], "device_desktop_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_HEART"]], "device_desktop_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_MINUS"]], "device_desktop_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_OFF"]], "device_desktop_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_PAUSE"]], "device_desktop_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_PIN"]], "device_desktop_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_PLUS"]], "device_desktop_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_QUESTION"]], "device_desktop_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_SEARCH"]], "device_desktop_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_SHARE"]], "device_desktop_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_STAR"]], "device_desktop_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_UP"]], "device_desktop_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_X"]], "device_floppy (viser.icon attribute)": [[33, "viser.Icon.DEVICE_FLOPPY"]], "device_gamepad (viser.icon attribute)": [[33, "viser.Icon.DEVICE_GAMEPAD"]], "device_gamepad_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_GAMEPAD_2"]], "device_heart_monitor (viser.icon attribute)": [[33, "viser.Icon.DEVICE_HEART_MONITOR"]], "device_heart_monitor_filled (viser.icon attribute)": [[33, "viser.Icon.DEVICE_HEART_MONITOR_FILLED"]], "device_imac (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC"]], "device_imac_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_BOLT"]], "device_imac_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_CANCEL"]], "device_imac_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_CHECK"]], "device_imac_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_CODE"]], "device_imac_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_COG"]], "device_imac_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_DOLLAR"]], "device_imac_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_DOWN"]], "device_imac_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_EXCLAMATION"]], "device_imac_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_HEART"]], "device_imac_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_MINUS"]], "device_imac_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_OFF"]], "device_imac_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_PAUSE"]], "device_imac_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_PIN"]], "device_imac_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_PLUS"]], "device_imac_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_QUESTION"]], "device_imac_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_SEARCH"]], "device_imac_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_SHARE"]], "device_imac_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_STAR"]], "device_imac_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_UP"]], "device_imac_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_X"]], "device_ipad (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD"]], "device_ipad_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_BOLT"]], "device_ipad_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_CANCEL"]], "device_ipad_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_CHECK"]], "device_ipad_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_CODE"]], "device_ipad_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_COG"]], "device_ipad_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_DOLLAR"]], "device_ipad_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_DOWN"]], "device_ipad_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_EXCLAMATION"]], "device_ipad_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HEART"]], "device_ipad_horizontal (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL"]], "device_ipad_horizontal_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_BOLT"]], "device_ipad_horizontal_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CANCEL"]], "device_ipad_horizontal_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CHECK"]], "device_ipad_horizontal_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CODE"]], "device_ipad_horizontal_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_COG"]], "device_ipad_horizontal_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOLLAR"]], "device_ipad_horizontal_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOWN"]], "device_ipad_horizontal_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_EXCLAMATION"]], "device_ipad_horizontal_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_HEART"]], "device_ipad_horizontal_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_MINUS"]], "device_ipad_horizontal_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_OFF"]], "device_ipad_horizontal_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PAUSE"]], "device_ipad_horizontal_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PIN"]], "device_ipad_horizontal_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PLUS"]], "device_ipad_horizontal_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_QUESTION"]], "device_ipad_horizontal_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SEARCH"]], "device_ipad_horizontal_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SHARE"]], "device_ipad_horizontal_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_STAR"]], "device_ipad_horizontal_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_UP"]], "device_ipad_horizontal_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_X"]], "device_ipad_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_MINUS"]], "device_ipad_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_OFF"]], "device_ipad_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_PAUSE"]], "device_ipad_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_PIN"]], "device_ipad_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_PLUS"]], "device_ipad_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_QUESTION"]], "device_ipad_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_SEARCH"]], "device_ipad_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_SHARE"]], "device_ipad_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_STAR"]], "device_ipad_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_UP"]], "device_ipad_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_X"]], "device_landline_phone (viser.icon attribute)": [[33, "viser.Icon.DEVICE_LANDLINE_PHONE"]], "device_laptop (viser.icon attribute)": [[33, "viser.Icon.DEVICE_LAPTOP"]], "device_laptop_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_LAPTOP_OFF"]], "device_mobile (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE"]], "device_mobile_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_BOLT"]], "device_mobile_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CANCEL"]], "device_mobile_charging (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CHARGING"]], "device_mobile_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CHECK"]], "device_mobile_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CODE"]], "device_mobile_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_COG"]], "device_mobile_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_DOLLAR"]], "device_mobile_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_DOWN"]], "device_mobile_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_EXCLAMATION"]], "device_mobile_filled (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_FILLED"]], "device_mobile_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_HEART"]], "device_mobile_message (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_MESSAGE"]], "device_mobile_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_MINUS"]], "device_mobile_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_OFF"]], "device_mobile_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_PAUSE"]], "device_mobile_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_PIN"]], "device_mobile_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_PLUS"]], "device_mobile_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_QUESTION"]], "device_mobile_rotated (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_ROTATED"]], "device_mobile_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_SEARCH"]], "device_mobile_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_SHARE"]], "device_mobile_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_STAR"]], "device_mobile_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_UP"]], "device_mobile_vibration (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_VIBRATION"]], "device_mobile_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_X"]], "device_nintendo (viser.icon attribute)": [[33, "viser.Icon.DEVICE_NINTENDO"]], "device_nintendo_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_NINTENDO_OFF"]], "device_remote (viser.icon attribute)": [[33, "viser.Icon.DEVICE_REMOTE"]], "device_sd_card (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SD_CARD"]], "device_sim (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM"]], "device_sim_1 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM_1"]], "device_sim_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM_2"]], "device_sim_3 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM_3"]], "device_speaker (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SPEAKER"]], "device_speaker_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SPEAKER_OFF"]], "device_tablet (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET"]], "device_tablet_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_BOLT"]], "device_tablet_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_CANCEL"]], "device_tablet_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_CHECK"]], "device_tablet_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_CODE"]], "device_tablet_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_COG"]], "device_tablet_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_DOLLAR"]], "device_tablet_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_DOWN"]], "device_tablet_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_EXCLAMATION"]], "device_tablet_filled (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_FILLED"]], "device_tablet_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_HEART"]], "device_tablet_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_MINUS"]], "device_tablet_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_OFF"]], "device_tablet_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_PAUSE"]], "device_tablet_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_PIN"]], "device_tablet_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_PLUS"]], "device_tablet_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_QUESTION"]], "device_tablet_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_SEARCH"]], "device_tablet_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_SHARE"]], "device_tablet_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_STAR"]], "device_tablet_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_UP"]], "device_tablet_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_X"]], "device_tv (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TV"]], "device_tv_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TV_OFF"]], "device_tv_old (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TV_OLD"]], "device_vision_pro (viser.icon attribute)": [[33, "viser.Icon.DEVICE_VISION_PRO"]], "device_watch (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH"]], "device_watch_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_BOLT"]], "device_watch_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_CANCEL"]], "device_watch_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_CHECK"]], "device_watch_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_CODE"]], "device_watch_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_COG"]], "device_watch_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_DOLLAR"]], "device_watch_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_DOWN"]], "device_watch_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_EXCLAMATION"]], "device_watch_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_HEART"]], "device_watch_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_MINUS"]], "device_watch_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_OFF"]], "device_watch_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_PAUSE"]], "device_watch_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_PIN"]], "device_watch_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_PLUS"]], "device_watch_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_QUESTION"]], "device_watch_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_SEARCH"]], "device_watch_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_SHARE"]], "device_watch_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_STAR"]], "device_watch_stats (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_STATS"]], "device_watch_stats_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_STATS_2"]], "device_watch_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_UP"]], "device_watch_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_X"]], "diabolo (viser.icon attribute)": [[33, "viser.Icon.DIABOLO"]], "diabolo_off (viser.icon attribute)": [[33, "viser.Icon.DIABOLO_OFF"]], "diabolo_plus (viser.icon attribute)": [[33, "viser.Icon.DIABOLO_PLUS"]], "dialpad (viser.icon attribute)": [[33, "viser.Icon.DIALPAD"]], "dialpad_filled (viser.icon attribute)": [[33, "viser.Icon.DIALPAD_FILLED"]], "dialpad_off (viser.icon attribute)": [[33, "viser.Icon.DIALPAD_OFF"]], "diamond (viser.icon attribute)": [[33, "viser.Icon.DIAMOND"]], "diamonds (viser.icon attribute)": [[33, "viser.Icon.DIAMONDS"]], "diamonds_filled (viser.icon attribute)": [[33, "viser.Icon.DIAMONDS_FILLED"]], "diamond_filled (viser.icon attribute)": [[33, "viser.Icon.DIAMOND_FILLED"]], "diamond_off (viser.icon attribute)": [[33, "viser.Icon.DIAMOND_OFF"]], "dice (viser.icon attribute)": [[33, "viser.Icon.DICE"]], "dice_1 (viser.icon attribute)": [[33, "viser.Icon.DICE_1"]], "dice_1_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_1_FILLED"]], "dice_2 (viser.icon attribute)": [[33, "viser.Icon.DICE_2"]], "dice_2_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_2_FILLED"]], "dice_3 (viser.icon attribute)": [[33, "viser.Icon.DICE_3"]], "dice_3_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_3_FILLED"]], "dice_4 (viser.icon attribute)": [[33, "viser.Icon.DICE_4"]], "dice_4_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_4_FILLED"]], "dice_5 (viser.icon attribute)": [[33, "viser.Icon.DICE_5"]], "dice_5_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_5_FILLED"]], "dice_6 (viser.icon attribute)": [[33, "viser.Icon.DICE_6"]], "dice_6_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_6_FILLED"]], "dice_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_FILLED"]], "dimensions (viser.icon attribute)": [[33, "viser.Icon.DIMENSIONS"]], "direction (viser.icon attribute)": [[33, "viser.Icon.DIRECTION"]], "directions (viser.icon attribute)": [[33, "viser.Icon.DIRECTIONS"]], "directions_off (viser.icon attribute)": [[33, "viser.Icon.DIRECTIONS_OFF"]], "direction_horizontal (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_HORIZONTAL"]], "direction_sign (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_SIGN"]], "direction_sign_filled (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_SIGN_FILLED"]], "direction_sign_off (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_SIGN_OFF"]], "disabled (viser.icon attribute)": [[33, "viser.Icon.DISABLED"]], "disabled_2 (viser.icon attribute)": [[33, "viser.Icon.DISABLED_2"]], "disabled_off (viser.icon attribute)": [[33, "viser.Icon.DISABLED_OFF"]], "disc (viser.icon attribute)": [[33, "viser.Icon.DISC"]], "discount (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT"]], "discount_2 (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_2"]], "discount_2_off (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_2_OFF"]], "discount_check (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_CHECK"]], "discount_check_filled (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_CHECK_FILLED"]], "discount_off (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_OFF"]], "disc_golf (viser.icon attribute)": [[33, "viser.Icon.DISC_GOLF"]], "disc_off (viser.icon attribute)": [[33, "viser.Icon.DISC_OFF"]], "divide (viser.icon attribute)": [[33, "viser.Icon.DIVIDE"]], "dna (viser.icon attribute)": [[33, "viser.Icon.DNA"]], "dna_2 (viser.icon attribute)": [[33, "viser.Icon.DNA_2"]], "dna_2_off (viser.icon attribute)": [[33, "viser.Icon.DNA_2_OFF"]], "dna_off (viser.icon attribute)": [[33, "viser.Icon.DNA_OFF"]], "dog (viser.icon attribute)": [[33, "viser.Icon.DOG"]], "dog_bowl (viser.icon attribute)": [[33, "viser.Icon.DOG_BOWL"]], "door (viser.icon attribute)": [[33, "viser.Icon.DOOR"]], "door_enter (viser.icon attribute)": [[33, "viser.Icon.DOOR_ENTER"]], "door_exit (viser.icon attribute)": [[33, "viser.Icon.DOOR_EXIT"]], "door_off (viser.icon attribute)": [[33, "viser.Icon.DOOR_OFF"]], "dots (viser.icon attribute)": [[33, "viser.Icon.DOTS"]], "dots_circle_horizontal (viser.icon attribute)": [[33, "viser.Icon.DOTS_CIRCLE_HORIZONTAL"]], "dots_diagonal (viser.icon attribute)": [[33, "viser.Icon.DOTS_DIAGONAL"]], "dots_diagonal_2 (viser.icon attribute)": [[33, "viser.Icon.DOTS_DIAGONAL_2"]], "dots_vertical (viser.icon attribute)": [[33, "viser.Icon.DOTS_VERTICAL"]], "download (viser.icon attribute)": [[33, "viser.Icon.DOWNLOAD"]], "download_off (viser.icon attribute)": [[33, "viser.Icon.DOWNLOAD_OFF"]], "drag_drop (viser.icon attribute)": [[33, "viser.Icon.DRAG_DROP"]], "drag_drop_2 (viser.icon attribute)": [[33, "viser.Icon.DRAG_DROP_2"]], "drone (viser.icon attribute)": [[33, "viser.Icon.DRONE"]], "drone_off (viser.icon attribute)": [[33, "viser.Icon.DRONE_OFF"]], "droplet (viser.icon attribute)": [[33, "viser.Icon.DROPLET"]], "droplet_bolt (viser.icon attribute)": [[33, "viser.Icon.DROPLET_BOLT"]], "droplet_cancel (viser.icon attribute)": [[33, "viser.Icon.DROPLET_CANCEL"]], "droplet_check (viser.icon attribute)": [[33, "viser.Icon.DROPLET_CHECK"]], "droplet_code (viser.icon attribute)": [[33, "viser.Icon.DROPLET_CODE"]], "droplet_cog (viser.icon attribute)": [[33, "viser.Icon.DROPLET_COG"]], "droplet_dollar (viser.icon attribute)": [[33, "viser.Icon.DROPLET_DOLLAR"]], "droplet_down (viser.icon attribute)": [[33, "viser.Icon.DROPLET_DOWN"]], "droplet_exclamation (viser.icon attribute)": [[33, "viser.Icon.DROPLET_EXCLAMATION"]], "droplet_filled (viser.icon attribute)": [[33, "viser.Icon.DROPLET_FILLED"]], "droplet_filled_2 (viser.icon attribute)": [[33, "viser.Icon.DROPLET_FILLED_2"]], "droplet_half (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HALF"]], "droplet_half_2 (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HALF_2"]], "droplet_half_filled (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HALF_FILLED"]], "droplet_heart (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HEART"]], "droplet_minus (viser.icon attribute)": [[33, "viser.Icon.DROPLET_MINUS"]], "droplet_off (viser.icon attribute)": [[33, "viser.Icon.DROPLET_OFF"]], "droplet_pause (viser.icon attribute)": [[33, "viser.Icon.DROPLET_PAUSE"]], "droplet_pin (viser.icon attribute)": [[33, "viser.Icon.DROPLET_PIN"]], "droplet_plus (viser.icon attribute)": [[33, "viser.Icon.DROPLET_PLUS"]], "droplet_question (viser.icon attribute)": [[33, "viser.Icon.DROPLET_QUESTION"]], "droplet_search (viser.icon attribute)": [[33, "viser.Icon.DROPLET_SEARCH"]], "droplet_share (viser.icon attribute)": [[33, "viser.Icon.DROPLET_SHARE"]], "droplet_star (viser.icon attribute)": [[33, "viser.Icon.DROPLET_STAR"]], "droplet_up (viser.icon attribute)": [[33, "viser.Icon.DROPLET_UP"]], "droplet_x (viser.icon attribute)": [[33, "viser.Icon.DROPLET_X"]], "drop_circle (viser.icon attribute)": [[33, "viser.Icon.DROP_CIRCLE"]], "dual_screen (viser.icon attribute)": [[33, "viser.Icon.DUAL_SCREEN"]], "ear (viser.icon attribute)": [[33, "viser.Icon.EAR"]], "ear_off (viser.icon attribute)": [[33, "viser.Icon.EAR_OFF"]], "ease_in (viser.icon attribute)": [[33, "viser.Icon.EASE_IN"]], "ease_in_control_point (viser.icon attribute)": [[33, "viser.Icon.EASE_IN_CONTROL_POINT"]], "ease_in_out (viser.icon attribute)": [[33, "viser.Icon.EASE_IN_OUT"]], "ease_in_out_control_points (viser.icon attribute)": [[33, "viser.Icon.EASE_IN_OUT_CONTROL_POINTS"]], "ease_out (viser.icon attribute)": [[33, "viser.Icon.EASE_OUT"]], "ease_out_control_point (viser.icon attribute)": [[33, "viser.Icon.EASE_OUT_CONTROL_POINT"]], "edit (viser.icon attribute)": [[33, "viser.Icon.EDIT"]], "edit_circle (viser.icon attribute)": [[33, "viser.Icon.EDIT_CIRCLE"]], "edit_circle_off (viser.icon attribute)": [[33, "viser.Icon.EDIT_CIRCLE_OFF"]], "edit_off (viser.icon attribute)": [[33, "viser.Icon.EDIT_OFF"]], "egg (viser.icon attribute)": [[33, "viser.Icon.EGG"]], "eggs (viser.icon attribute)": [[33, "viser.Icon.EGGS"]], "egg_cracked (viser.icon attribute)": [[33, "viser.Icon.EGG_CRACKED"]], "egg_filled (viser.icon attribute)": [[33, "viser.Icon.EGG_FILLED"]], "egg_fried (viser.icon attribute)": [[33, "viser.Icon.EGG_FRIED"]], "egg_off (viser.icon attribute)": [[33, "viser.Icon.EGG_OFF"]], "elevator (viser.icon attribute)": [[33, "viser.Icon.ELEVATOR"]], "elevator_off (viser.icon attribute)": [[33, "viser.Icon.ELEVATOR_OFF"]], "emergency_bed (viser.icon attribute)": [[33, "viser.Icon.EMERGENCY_BED"]], "empathize (viser.icon attribute)": [[33, "viser.Icon.EMPATHIZE"]], "empathize_off (viser.icon attribute)": [[33, "viser.Icon.EMPATHIZE_OFF"]], "emphasis (viser.icon attribute)": [[33, "viser.Icon.EMPHASIS"]], "engine (viser.icon attribute)": [[33, "viser.Icon.ENGINE"]], "engine_off (viser.icon attribute)": [[33, "viser.Icon.ENGINE_OFF"]], "equal (viser.icon attribute)": [[33, "viser.Icon.EQUAL"]], "equal_double (viser.icon attribute)": [[33, "viser.Icon.EQUAL_DOUBLE"]], "equal_not (viser.icon attribute)": [[33, "viser.Icon.EQUAL_NOT"]], "eraser (viser.icon attribute)": [[33, "viser.Icon.ERASER"]], "eraser_off (viser.icon attribute)": [[33, "viser.Icon.ERASER_OFF"]], "error_404 (viser.icon attribute)": [[33, "viser.Icon.ERROR_404"]], "error_404_off (viser.icon attribute)": [[33, "viser.Icon.ERROR_404_OFF"]], "exchange (viser.icon attribute)": [[33, "viser.Icon.EXCHANGE"]], "exchange_off (viser.icon attribute)": [[33, "viser.Icon.EXCHANGE_OFF"]], "exclamation_circle (viser.icon attribute)": [[33, "viser.Icon.EXCLAMATION_CIRCLE"]], "exclamation_mark (viser.icon attribute)": [[33, "viser.Icon.EXCLAMATION_MARK"]], "exclamation_mark_off (viser.icon attribute)": [[33, "viser.Icon.EXCLAMATION_MARK_OFF"]], "explicit (viser.icon attribute)": [[33, "viser.Icon.EXPLICIT"]], "explicit_off (viser.icon attribute)": [[33, "viser.Icon.EXPLICIT_OFF"]], "exposure (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE"]], "exposure_0 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_0"]], "exposure_minus_1 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_MINUS_1"]], "exposure_minus_2 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_MINUS_2"]], "exposure_off (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_OFF"]], "exposure_plus_1 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_PLUS_1"]], "exposure_plus_2 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_PLUS_2"]], "external_link (viser.icon attribute)": [[33, "viser.Icon.EXTERNAL_LINK"]], "external_link_off (viser.icon attribute)": [[33, "viser.Icon.EXTERNAL_LINK_OFF"]], "eye (viser.icon attribute)": [[33, "viser.Icon.EYE"]], "eyeglass (viser.icon attribute)": [[33, "viser.Icon.EYEGLASS"]], "eyeglass_2 (viser.icon attribute)": [[33, "viser.Icon.EYEGLASS_2"]], "eyeglass_off (viser.icon attribute)": [[33, "viser.Icon.EYEGLASS_OFF"]], "eye_check (viser.icon attribute)": [[33, "viser.Icon.EYE_CHECK"]], "eye_closed (viser.icon attribute)": [[33, "viser.Icon.EYE_CLOSED"]], "eye_cog (viser.icon attribute)": [[33, "viser.Icon.EYE_COG"]], "eye_edit (viser.icon attribute)": [[33, "viser.Icon.EYE_EDIT"]], "eye_exclamation (viser.icon attribute)": [[33, "viser.Icon.EYE_EXCLAMATION"]], "eye_filled (viser.icon attribute)": [[33, "viser.Icon.EYE_FILLED"]], "eye_heart (viser.icon attribute)": [[33, "viser.Icon.EYE_HEART"]], "eye_off (viser.icon attribute)": [[33, "viser.Icon.EYE_OFF"]], "eye_table (viser.icon attribute)": [[33, "viser.Icon.EYE_TABLE"]], "eye_x (viser.icon attribute)": [[33, "viser.Icon.EYE_X"]], "e_passport (viser.icon attribute)": [[33, "viser.Icon.E_PASSPORT"]], "face_id (viser.icon attribute)": [[33, "viser.Icon.FACE_ID"]], "face_id_error (viser.icon attribute)": [[33, "viser.Icon.FACE_ID_ERROR"]], "face_mask (viser.icon attribute)": [[33, "viser.Icon.FACE_MASK"]], "face_mask_off (viser.icon attribute)": [[33, "viser.Icon.FACE_MASK_OFF"]], "fall (viser.icon attribute)": [[33, "viser.Icon.FALL"]], "feather (viser.icon attribute)": [[33, "viser.Icon.FEATHER"]], "feather_off (viser.icon attribute)": [[33, "viser.Icon.FEATHER_OFF"]], "fence (viser.icon attribute)": [[33, "viser.Icon.FENCE"]], "fence_off (viser.icon attribute)": [[33, "viser.Icon.FENCE_OFF"]], "fidget_spinner (viser.icon attribute)": [[33, "viser.Icon.FIDGET_SPINNER"]], "file (viser.icon attribute)": [[33, "viser.Icon.FILE"]], "files (viser.icon attribute)": [[33, "viser.Icon.FILES"]], "files_off (viser.icon attribute)": [[33, "viser.Icon.FILES_OFF"]], "file_3d (viser.icon attribute)": [[33, "viser.Icon.FILE_3D"]], "file_alert (viser.icon attribute)": [[33, "viser.Icon.FILE_ALERT"]], "file_analytics (viser.icon attribute)": [[33, "viser.Icon.FILE_ANALYTICS"]], "file_arrow_left (viser.icon attribute)": [[33, "viser.Icon.FILE_ARROW_LEFT"]], "file_arrow_right (viser.icon attribute)": [[33, "viser.Icon.FILE_ARROW_RIGHT"]], "file_barcode (viser.icon attribute)": [[33, "viser.Icon.FILE_BARCODE"]], "file_broken (viser.icon attribute)": [[33, "viser.Icon.FILE_BROKEN"]], "file_certificate (viser.icon attribute)": [[33, "viser.Icon.FILE_CERTIFICATE"]], "file_chart (viser.icon attribute)": [[33, "viser.Icon.FILE_CHART"]], "file_check (viser.icon attribute)": [[33, "viser.Icon.FILE_CHECK"]], "file_code (viser.icon attribute)": [[33, "viser.Icon.FILE_CODE"]], "file_code_2 (viser.icon attribute)": [[33, "viser.Icon.FILE_CODE_2"]], "file_cv (viser.icon attribute)": [[33, "viser.Icon.FILE_CV"]], "file_database (viser.icon attribute)": [[33, "viser.Icon.FILE_DATABASE"]], "file_delta (viser.icon attribute)": [[33, "viser.Icon.FILE_DELTA"]], "file_description (viser.icon attribute)": [[33, "viser.Icon.FILE_DESCRIPTION"]], "file_diff (viser.icon attribute)": [[33, "viser.Icon.FILE_DIFF"]], "file_digit (viser.icon attribute)": [[33, "viser.Icon.FILE_DIGIT"]], "file_dislike (viser.icon attribute)": [[33, "viser.Icon.FILE_DISLIKE"]], "file_dollar (viser.icon attribute)": [[33, "viser.Icon.FILE_DOLLAR"]], "file_dots (viser.icon attribute)": [[33, "viser.Icon.FILE_DOTS"]], "file_download (viser.icon attribute)": [[33, "viser.Icon.FILE_DOWNLOAD"]], "file_euro (viser.icon attribute)": [[33, "viser.Icon.FILE_EURO"]], "file_export (viser.icon attribute)": [[33, "viser.Icon.FILE_EXPORT"]], "file_filled (viser.icon attribute)": [[33, "viser.Icon.FILE_FILLED"]], "file_function (viser.icon attribute)": [[33, "viser.Icon.FILE_FUNCTION"]], "file_horizontal (viser.icon attribute)": [[33, "viser.Icon.FILE_HORIZONTAL"]], "file_import (viser.icon attribute)": [[33, "viser.Icon.FILE_IMPORT"]], "file_infinity (viser.icon attribute)": [[33, "viser.Icon.FILE_INFINITY"]], "file_info (viser.icon attribute)": [[33, "viser.Icon.FILE_INFO"]], "file_invoice (viser.icon attribute)": [[33, "viser.Icon.FILE_INVOICE"]], "file_lambda (viser.icon attribute)": [[33, "viser.Icon.FILE_LAMBDA"]], "file_like (viser.icon attribute)": [[33, "viser.Icon.FILE_LIKE"]], "file_minus (viser.icon attribute)": [[33, "viser.Icon.FILE_MINUS"]], "file_music (viser.icon attribute)": [[33, "viser.Icon.FILE_MUSIC"]], "file_off (viser.icon attribute)": [[33, "viser.Icon.FILE_OFF"]], "file_orientation (viser.icon attribute)": [[33, "viser.Icon.FILE_ORIENTATION"]], "file_pencil (viser.icon attribute)": [[33, "viser.Icon.FILE_PENCIL"]], "file_percent (viser.icon attribute)": [[33, "viser.Icon.FILE_PERCENT"]], "file_phone (viser.icon attribute)": [[33, "viser.Icon.FILE_PHONE"]], "file_plus (viser.icon attribute)": [[33, "viser.Icon.FILE_PLUS"]], "file_power (viser.icon attribute)": [[33, "viser.Icon.FILE_POWER"]], "file_report (viser.icon attribute)": [[33, "viser.Icon.FILE_REPORT"]], "file_rss (viser.icon attribute)": [[33, "viser.Icon.FILE_RSS"]], "file_scissors (viser.icon attribute)": [[33, "viser.Icon.FILE_SCISSORS"]], "file_search (viser.icon attribute)": [[33, "viser.Icon.FILE_SEARCH"]], "file_settings (viser.icon attribute)": [[33, "viser.Icon.FILE_SETTINGS"]], "file_shredder (viser.icon attribute)": [[33, "viser.Icon.FILE_SHREDDER"]], "file_signal (viser.icon attribute)": [[33, "viser.Icon.FILE_SIGNAL"]], "file_spreadsheet (viser.icon attribute)": [[33, "viser.Icon.FILE_SPREADSHEET"]], "file_stack (viser.icon attribute)": [[33, "viser.Icon.FILE_STACK"]], "file_star (viser.icon attribute)": [[33, "viser.Icon.FILE_STAR"]], "file_symlink (viser.icon attribute)": [[33, "viser.Icon.FILE_SYMLINK"]], "file_text (viser.icon attribute)": [[33, "viser.Icon.FILE_TEXT"]], "file_text_ai (viser.icon attribute)": [[33, "viser.Icon.FILE_TEXT_AI"]], "file_time (viser.icon attribute)": [[33, "viser.Icon.FILE_TIME"]], "file_typography (viser.icon attribute)": [[33, "viser.Icon.FILE_TYPOGRAPHY"]], "file_unknown (viser.icon attribute)": [[33, "viser.Icon.FILE_UNKNOWN"]], "file_upload (viser.icon attribute)": [[33, "viser.Icon.FILE_UPLOAD"]], "file_vector (viser.icon attribute)": [[33, "viser.Icon.FILE_VECTOR"]], "file_x (viser.icon attribute)": [[33, "viser.Icon.FILE_X"]], "file_x_filled (viser.icon attribute)": [[33, "viser.Icon.FILE_X_FILLED"]], "file_zip (viser.icon attribute)": [[33, "viser.Icon.FILE_ZIP"]], "filter (viser.icon attribute)": [[33, "viser.Icon.FILTER"]], "filters (viser.icon attribute)": [[33, "viser.Icon.FILTERS"]], "filter_cog (viser.icon attribute)": [[33, "viser.Icon.FILTER_COG"]], "filter_dollar (viser.icon attribute)": [[33, "viser.Icon.FILTER_DOLLAR"]], "filter_edit (viser.icon attribute)": [[33, "viser.Icon.FILTER_EDIT"]], "filter_minus (viser.icon attribute)": [[33, "viser.Icon.FILTER_MINUS"]], "filter_off (viser.icon attribute)": [[33, "viser.Icon.FILTER_OFF"]], "filter_plus (viser.icon attribute)": [[33, "viser.Icon.FILTER_PLUS"]], "filter_star (viser.icon attribute)": [[33, "viser.Icon.FILTER_STAR"]], "filter_x (viser.icon attribute)": [[33, "viser.Icon.FILTER_X"]], "fingerprint (viser.icon attribute)": [[33, "viser.Icon.FINGERPRINT"]], "fingerprint_off (viser.icon attribute)": [[33, "viser.Icon.FINGERPRINT_OFF"]], "firetruck (viser.icon attribute)": [[33, "viser.Icon.FIRETRUCK"]], "fire_extinguisher (viser.icon attribute)": [[33, "viser.Icon.FIRE_EXTINGUISHER"]], "fire_hydrant (viser.icon attribute)": [[33, "viser.Icon.FIRE_HYDRANT"]], "fire_hydrant_off (viser.icon attribute)": [[33, "viser.Icon.FIRE_HYDRANT_OFF"]], "first_aid_kit (viser.icon attribute)": [[33, "viser.Icon.FIRST_AID_KIT"]], "first_aid_kit_off (viser.icon attribute)": [[33, "viser.Icon.FIRST_AID_KIT_OFF"]], "fish (viser.icon attribute)": [[33, "viser.Icon.FISH"]], "fish_bone (viser.icon attribute)": [[33, "viser.Icon.FISH_BONE"]], "fish_christianity (viser.icon attribute)": [[33, "viser.Icon.FISH_CHRISTIANITY"]], "fish_hook (viser.icon attribute)": [[33, "viser.Icon.FISH_HOOK"]], "fish_hook_off (viser.icon attribute)": [[33, "viser.Icon.FISH_HOOK_OFF"]], "fish_off (viser.icon attribute)": [[33, "viser.Icon.FISH_OFF"]], "flag (viser.icon attribute)": [[33, "viser.Icon.FLAG"]], "flag_2 (viser.icon attribute)": [[33, "viser.Icon.FLAG_2"]], "flag_2_filled (viser.icon attribute)": [[33, "viser.Icon.FLAG_2_FILLED"]], "flag_2_off (viser.icon attribute)": [[33, "viser.Icon.FLAG_2_OFF"]], "flag_3 (viser.icon attribute)": [[33, "viser.Icon.FLAG_3"]], "flag_3_filled (viser.icon attribute)": [[33, "viser.Icon.FLAG_3_FILLED"]], "flag_filled (viser.icon attribute)": [[33, "viser.Icon.FLAG_FILLED"]], "flag_off (viser.icon attribute)": [[33, "viser.Icon.FLAG_OFF"]], "flame (viser.icon attribute)": [[33, "viser.Icon.FLAME"]], "flame_off (viser.icon attribute)": [[33, "viser.Icon.FLAME_OFF"]], "flare (viser.icon attribute)": [[33, "viser.Icon.FLARE"]], "flask (viser.icon attribute)": [[33, "viser.Icon.FLASK"]], "flask_2 (viser.icon attribute)": [[33, "viser.Icon.FLASK_2"]], "flask_2_off (viser.icon attribute)": [[33, "viser.Icon.FLASK_2_OFF"]], "flask_off (viser.icon attribute)": [[33, "viser.Icon.FLASK_OFF"]], "flip_flops (viser.icon attribute)": [[33, "viser.Icon.FLIP_FLOPS"]], "flip_horizontal (viser.icon attribute)": [[33, "viser.Icon.FLIP_HORIZONTAL"]], "flip_vertical (viser.icon attribute)": [[33, "viser.Icon.FLIP_VERTICAL"]], "float_center (viser.icon attribute)": [[33, "viser.Icon.FLOAT_CENTER"]], "float_left (viser.icon attribute)": [[33, "viser.Icon.FLOAT_LEFT"]], "float_none (viser.icon attribute)": [[33, "viser.Icon.FLOAT_NONE"]], "float_right (viser.icon attribute)": [[33, "viser.Icon.FLOAT_RIGHT"]], "flower (viser.icon attribute)": [[33, "viser.Icon.FLOWER"]], "flower_off (viser.icon attribute)": [[33, "viser.Icon.FLOWER_OFF"]], "focus (viser.icon attribute)": [[33, "viser.Icon.FOCUS"]], "focus_2 (viser.icon attribute)": [[33, "viser.Icon.FOCUS_2"]], "focus_auto (viser.icon attribute)": [[33, "viser.Icon.FOCUS_AUTO"]], "focus_centered (viser.icon attribute)": [[33, "viser.Icon.FOCUS_CENTERED"]], "fold (viser.icon attribute)": [[33, "viser.Icon.FOLD"]], "folder (viser.icon attribute)": [[33, "viser.Icon.FOLDER"]], "folders (viser.icon attribute)": [[33, "viser.Icon.FOLDERS"]], "folders_off (viser.icon attribute)": [[33, "viser.Icon.FOLDERS_OFF"]], "folder_bolt (viser.icon attribute)": [[33, "viser.Icon.FOLDER_BOLT"]], "folder_cancel (viser.icon attribute)": [[33, "viser.Icon.FOLDER_CANCEL"]], "folder_check (viser.icon attribute)": [[33, "viser.Icon.FOLDER_CHECK"]], "folder_code (viser.icon attribute)": [[33, "viser.Icon.FOLDER_CODE"]], "folder_cog (viser.icon attribute)": [[33, "viser.Icon.FOLDER_COG"]], "folder_dollar (viser.icon attribute)": [[33, "viser.Icon.FOLDER_DOLLAR"]], "folder_down (viser.icon attribute)": [[33, "viser.Icon.FOLDER_DOWN"]], "folder_exclamation (viser.icon attribute)": [[33, "viser.Icon.FOLDER_EXCLAMATION"]], "folder_filled (viser.icon attribute)": [[33, "viser.Icon.FOLDER_FILLED"]], "folder_heart (viser.icon attribute)": [[33, "viser.Icon.FOLDER_HEART"]], "folder_minus (viser.icon attribute)": [[33, "viser.Icon.FOLDER_MINUS"]], "folder_off (viser.icon attribute)": [[33, "viser.Icon.FOLDER_OFF"]], "folder_open (viser.icon attribute)": [[33, "viser.Icon.FOLDER_OPEN"]], "folder_pause (viser.icon attribute)": [[33, "viser.Icon.FOLDER_PAUSE"]], "folder_pin (viser.icon attribute)": [[33, "viser.Icon.FOLDER_PIN"]], "folder_plus (viser.icon attribute)": [[33, "viser.Icon.FOLDER_PLUS"]], "folder_question (viser.icon attribute)": [[33, "viser.Icon.FOLDER_QUESTION"]], "folder_search (viser.icon attribute)": [[33, "viser.Icon.FOLDER_SEARCH"]], "folder_share (viser.icon attribute)": [[33, "viser.Icon.FOLDER_SHARE"]], "folder_star (viser.icon attribute)": [[33, "viser.Icon.FOLDER_STAR"]], "folder_symlink (viser.icon attribute)": [[33, "viser.Icon.FOLDER_SYMLINK"]], "folder_up (viser.icon attribute)": [[33, "viser.Icon.FOLDER_UP"]], "folder_x (viser.icon attribute)": [[33, "viser.Icon.FOLDER_X"]], "fold_down (viser.icon attribute)": [[33, "viser.Icon.FOLD_DOWN"]], "fold_up (viser.icon attribute)": [[33, "viser.Icon.FOLD_UP"]], "forbid (viser.icon attribute)": [[33, "viser.Icon.FORBID"]], "forbid_2 (viser.icon attribute)": [[33, "viser.Icon.FORBID_2"]], "forklift (viser.icon attribute)": [[33, "viser.Icon.FORKLIFT"]], "forms (viser.icon attribute)": [[33, "viser.Icon.FORMS"]], "fountain (viser.icon attribute)": [[33, "viser.Icon.FOUNTAIN"]], "fountain_off (viser.icon attribute)": [[33, "viser.Icon.FOUNTAIN_OFF"]], "frame (viser.icon attribute)": [[33, "viser.Icon.FRAME"]], "frame_off (viser.icon attribute)": [[33, "viser.Icon.FRAME_OFF"]], "freeze_column (viser.icon attribute)": [[33, "viser.Icon.FREEZE_COLUMN"]], "freeze_row (viser.icon attribute)": [[33, "viser.Icon.FREEZE_ROW"]], "freeze_row_column (viser.icon attribute)": [[33, "viser.Icon.FREEZE_ROW_COLUMN"]], "free_rights (viser.icon attribute)": [[33, "viser.Icon.FREE_RIGHTS"]], "fridge (viser.icon attribute)": [[33, "viser.Icon.FRIDGE"]], "fridge_off (viser.icon attribute)": [[33, "viser.Icon.FRIDGE_OFF"]], "friends (viser.icon attribute)": [[33, "viser.Icon.FRIENDS"]], "friends_off (viser.icon attribute)": [[33, "viser.Icon.FRIENDS_OFF"]], "frustum (viser.icon attribute)": [[33, "viser.Icon.FRUSTUM"]], "frustum_off (viser.icon attribute)": [[33, "viser.Icon.FRUSTUM_OFF"]], "frustum_plus (viser.icon attribute)": [[33, "viser.Icon.FRUSTUM_PLUS"]], "function (viser.icon attribute)": [[33, "viser.Icon.FUNCTION"]], "function_off (viser.icon attribute)": [[33, "viser.Icon.FUNCTION_OFF"]], "garden_cart (viser.icon attribute)": [[33, "viser.Icon.GARDEN_CART"]], "garden_cart_off (viser.icon attribute)": [[33, "viser.Icon.GARDEN_CART_OFF"]], "gas_station (viser.icon attribute)": [[33, "viser.Icon.GAS_STATION"]], "gas_station_off (viser.icon attribute)": [[33, "viser.Icon.GAS_STATION_OFF"]], "gauge (viser.icon attribute)": [[33, "viser.Icon.GAUGE"]], "gauge_off (viser.icon attribute)": [[33, "viser.Icon.GAUGE_OFF"]], "gavel (viser.icon attribute)": [[33, "viser.Icon.GAVEL"]], "gender_agender (viser.icon attribute)": [[33, "viser.Icon.GENDER_AGENDER"]], "gender_androgyne (viser.icon attribute)": [[33, "viser.Icon.GENDER_ANDROGYNE"]], "gender_bigender (viser.icon attribute)": [[33, "viser.Icon.GENDER_BIGENDER"]], "gender_demiboy (viser.icon attribute)": [[33, "viser.Icon.GENDER_DEMIBOY"]], "gender_demigirl (viser.icon attribute)": [[33, "viser.Icon.GENDER_DEMIGIRL"]], "gender_epicene (viser.icon attribute)": [[33, "viser.Icon.GENDER_EPICENE"]], "gender_female (viser.icon attribute)": [[33, "viser.Icon.GENDER_FEMALE"]], "gender_femme (viser.icon attribute)": [[33, "viser.Icon.GENDER_FEMME"]], "gender_genderfluid (viser.icon attribute)": [[33, "viser.Icon.GENDER_GENDERFLUID"]], "gender_genderless (viser.icon attribute)": [[33, "viser.Icon.GENDER_GENDERLESS"]], "gender_genderqueer (viser.icon attribute)": [[33, "viser.Icon.GENDER_GENDERQUEER"]], "gender_hermaphrodite (viser.icon attribute)": [[33, "viser.Icon.GENDER_HERMAPHRODITE"]], "gender_intergender (viser.icon attribute)": [[33, "viser.Icon.GENDER_INTERGENDER"]], "gender_male (viser.icon attribute)": [[33, "viser.Icon.GENDER_MALE"]], "gender_neutrois (viser.icon attribute)": [[33, "viser.Icon.GENDER_NEUTROIS"]], "gender_third (viser.icon attribute)": [[33, "viser.Icon.GENDER_THIRD"]], "gender_transgender (viser.icon attribute)": [[33, "viser.Icon.GENDER_TRANSGENDER"]], "gender_trasvesti (viser.icon attribute)": [[33, "viser.Icon.GENDER_TRASVESTI"]], "geometry (viser.icon attribute)": [[33, "viser.Icon.GEOMETRY"]], "ghost (viser.icon attribute)": [[33, "viser.Icon.GHOST"]], "ghost_2 (viser.icon attribute)": [[33, "viser.Icon.GHOST_2"]], "ghost_2_filled (viser.icon attribute)": [[33, "viser.Icon.GHOST_2_FILLED"]], "ghost_filled (viser.icon attribute)": [[33, "viser.Icon.GHOST_FILLED"]], "ghost_off (viser.icon attribute)": [[33, "viser.Icon.GHOST_OFF"]], "gif (viser.icon attribute)": [[33, "viser.Icon.GIF"]], "gift (viser.icon attribute)": [[33, "viser.Icon.GIFT"]], "gift_card (viser.icon attribute)": [[33, "viser.Icon.GIFT_CARD"]], "gift_off (viser.icon attribute)": [[33, "viser.Icon.GIFT_OFF"]], "git_branch (viser.icon attribute)": [[33, "viser.Icon.GIT_BRANCH"]], "git_branch_deleted (viser.icon attribute)": [[33, "viser.Icon.GIT_BRANCH_DELETED"]], "git_cherry_pick (viser.icon attribute)": [[33, "viser.Icon.GIT_CHERRY_PICK"]], "git_commit (viser.icon attribute)": [[33, "viser.Icon.GIT_COMMIT"]], "git_compare (viser.icon attribute)": [[33, "viser.Icon.GIT_COMPARE"]], "git_fork (viser.icon attribute)": [[33, "viser.Icon.GIT_FORK"]], "git_merge (viser.icon attribute)": [[33, "viser.Icon.GIT_MERGE"]], "git_pull_request (viser.icon attribute)": [[33, "viser.Icon.GIT_PULL_REQUEST"]], "git_pull_request_closed (viser.icon attribute)": [[33, "viser.Icon.GIT_PULL_REQUEST_CLOSED"]], "git_pull_request_draft (viser.icon attribute)": [[33, "viser.Icon.GIT_PULL_REQUEST_DRAFT"]], "gizmo (viser.icon attribute)": [[33, "viser.Icon.GIZMO"]], "glass (viser.icon attribute)": [[33, "viser.Icon.GLASS"]], "glass_full (viser.icon attribute)": [[33, "viser.Icon.GLASS_FULL"]], "glass_off (viser.icon attribute)": [[33, "viser.Icon.GLASS_OFF"]], "globe (viser.icon attribute)": [[33, "viser.Icon.GLOBE"]], "globe_off (viser.icon attribute)": [[33, "viser.Icon.GLOBE_OFF"]], "golf (viser.icon attribute)": [[33, "viser.Icon.GOLF"]], "golf_off (viser.icon attribute)": [[33, "viser.Icon.GOLF_OFF"]], "go_game (viser.icon attribute)": [[33, "viser.Icon.GO_GAME"]], "gps (viser.icon attribute)": [[33, "viser.Icon.GPS"]], "gradienter (viser.icon attribute)": [[33, "viser.Icon.GRADIENTER"]], "grain (viser.icon attribute)": [[33, "viser.Icon.GRAIN"]], "graph (viser.icon attribute)": [[33, "viser.Icon.GRAPH"]], "graph_off (viser.icon attribute)": [[33, "viser.Icon.GRAPH_OFF"]], "grave (viser.icon attribute)": [[33, "viser.Icon.GRAVE"]], "grave_2 (viser.icon attribute)": [[33, "viser.Icon.GRAVE_2"]], "grid_dots (viser.icon attribute)": [[33, "viser.Icon.GRID_DOTS"]], "grid_pattern (viser.icon attribute)": [[33, "viser.Icon.GRID_PATTERN"]], "grill (viser.icon attribute)": [[33, "viser.Icon.GRILL"]], "grill_fork (viser.icon attribute)": [[33, "viser.Icon.GRILL_FORK"]], "grill_off (viser.icon attribute)": [[33, "viser.Icon.GRILL_OFF"]], "grill_spatula (viser.icon attribute)": [[33, "viser.Icon.GRILL_SPATULA"]], "grip_horizontal (viser.icon attribute)": [[33, "viser.Icon.GRIP_HORIZONTAL"]], "grip_vertical (viser.icon attribute)": [[33, "viser.Icon.GRIP_VERTICAL"]], "growth (viser.icon attribute)": [[33, "viser.Icon.GROWTH"]], "guitar_pick (viser.icon attribute)": [[33, "viser.Icon.GUITAR_PICK"]], "guitar_pick_filled (viser.icon attribute)": [[33, "viser.Icon.GUITAR_PICK_FILLED"]], "hammer (viser.icon attribute)": [[33, "viser.Icon.HAMMER"]], "hammer_off (viser.icon attribute)": [[33, "viser.Icon.HAMMER_OFF"]], "hand_click (viser.icon attribute)": [[33, "viser.Icon.HAND_CLICK"]], "hand_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_FINGER"]], "hand_finger_off (viser.icon attribute)": [[33, "viser.Icon.HAND_FINGER_OFF"]], "hand_grab (viser.icon attribute)": [[33, "viser.Icon.HAND_GRAB"]], "hand_little_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_LITTLE_FINGER"]], "hand_middle_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_MIDDLE_FINGER"]], "hand_move (viser.icon attribute)": [[33, "viser.Icon.HAND_MOVE"]], "hand_off (viser.icon attribute)": [[33, "viser.Icon.HAND_OFF"]], "hand_ring_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_RING_FINGER"]], "hand_rock (viser.icon attribute)": [[33, "viser.Icon.HAND_ROCK"]], "hand_sanitizer (viser.icon attribute)": [[33, "viser.Icon.HAND_SANITIZER"]], "hand_stop (viser.icon attribute)": [[33, "viser.Icon.HAND_STOP"]], "hand_three_fingers (viser.icon attribute)": [[33, "viser.Icon.HAND_THREE_FINGERS"]], "hand_two_fingers (viser.icon attribute)": [[33, "viser.Icon.HAND_TWO_FINGERS"]], "hanger (viser.icon attribute)": [[33, "viser.Icon.HANGER"]], "hanger_2 (viser.icon attribute)": [[33, "viser.Icon.HANGER_2"]], "hanger_off (viser.icon attribute)": [[33, "viser.Icon.HANGER_OFF"]], "hash (viser.icon attribute)": [[33, "viser.Icon.HASH"]], "haze (viser.icon attribute)": [[33, "viser.Icon.HAZE"]], "haze_moon (viser.icon attribute)": [[33, "viser.Icon.HAZE_MOON"]], "hdr (viser.icon attribute)": [[33, "viser.Icon.HDR"]], "heading (viser.icon attribute)": [[33, "viser.Icon.HEADING"]], "heading_off (viser.icon attribute)": [[33, "viser.Icon.HEADING_OFF"]], "headphones (viser.icon attribute)": [[33, "viser.Icon.HEADPHONES"]], "headphones_filled (viser.icon attribute)": [[33, "viser.Icon.HEADPHONES_FILLED"]], "headphones_off (viser.icon attribute)": [[33, "viser.Icon.HEADPHONES_OFF"]], "headset (viser.icon attribute)": [[33, "viser.Icon.HEADSET"]], "headset_off (viser.icon attribute)": [[33, "viser.Icon.HEADSET_OFF"]], "health_recognition (viser.icon attribute)": [[33, "viser.Icon.HEALTH_RECOGNITION"]], "heart (viser.icon attribute)": [[33, "viser.Icon.HEART"]], "heartbeat (viser.icon attribute)": [[33, "viser.Icon.HEARTBEAT"]], "hearts (viser.icon attribute)": [[33, "viser.Icon.HEARTS"]], "hearts_off (viser.icon attribute)": [[33, "viser.Icon.HEARTS_OFF"]], "heart_broken (viser.icon attribute)": [[33, "viser.Icon.HEART_BROKEN"]], "heart_filled (viser.icon attribute)": [[33, "viser.Icon.HEART_FILLED"]], "heart_handshake (viser.icon attribute)": [[33, "viser.Icon.HEART_HANDSHAKE"]], "heart_minus (viser.icon attribute)": [[33, "viser.Icon.HEART_MINUS"]], "heart_off (viser.icon attribute)": [[33, "viser.Icon.HEART_OFF"]], "heart_plus (viser.icon attribute)": [[33, "viser.Icon.HEART_PLUS"]], "heart_rate_monitor (viser.icon attribute)": [[33, "viser.Icon.HEART_RATE_MONITOR"]], "helicopter (viser.icon attribute)": [[33, "viser.Icon.HELICOPTER"]], "helicopter_landing (viser.icon attribute)": [[33, "viser.Icon.HELICOPTER_LANDING"]], "helmet (viser.icon attribute)": [[33, "viser.Icon.HELMET"]], "helmet_off (viser.icon attribute)": [[33, "viser.Icon.HELMET_OFF"]], "help (viser.icon attribute)": [[33, "viser.Icon.HELP"]], "help_circle (viser.icon attribute)": [[33, "viser.Icon.HELP_CIRCLE"]], "help_circle_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_CIRCLE_FILLED"]], "help_hexagon (viser.icon attribute)": [[33, "viser.Icon.HELP_HEXAGON"]], "help_hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_HEXAGON_FILLED"]], "help_octagon (viser.icon attribute)": [[33, "viser.Icon.HELP_OCTAGON"]], "help_octagon_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_OCTAGON_FILLED"]], "help_off (viser.icon attribute)": [[33, "viser.Icon.HELP_OFF"]], "help_small (viser.icon attribute)": [[33, "viser.Icon.HELP_SMALL"]], "help_square (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE"]], "help_square_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE_FILLED"]], "help_square_rounded (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE_ROUNDED"]], "help_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE_ROUNDED_FILLED"]], "help_triangle (viser.icon attribute)": [[33, "viser.Icon.HELP_TRIANGLE"]], "help_triangle_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_TRIANGLE_FILLED"]], "hemisphere (viser.icon attribute)": [[33, "viser.Icon.HEMISPHERE"]], "hemisphere_off (viser.icon attribute)": [[33, "viser.Icon.HEMISPHERE_OFF"]], "hemisphere_plus (viser.icon attribute)": [[33, "viser.Icon.HEMISPHERE_PLUS"]], "hexagon (viser.icon attribute)": [[33, "viser.Icon.HEXAGON"]], "hexagonal_prism (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PRISM"]], "hexagonal_prism_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PRISM_OFF"]], "hexagonal_prism_plus (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PRISM_PLUS"]], "hexagonal_pyramid (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PYRAMID"]], "hexagonal_pyramid_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PYRAMID_OFF"]], "hexagonal_pyramid_plus (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PYRAMID_PLUS"]], "hexagons (viser.icon attribute)": [[33, "viser.Icon.HEXAGONS"]], "hexagons_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGONS_OFF"]], "hexagon_0_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_0_FILLED"]], "hexagon_1_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_1_FILLED"]], "hexagon_2_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_2_FILLED"]], "hexagon_3d (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_3D"]], "hexagon_3_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_3_FILLED"]], "hexagon_4_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_4_FILLED"]], "hexagon_5_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_5_FILLED"]], "hexagon_6_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_6_FILLED"]], "hexagon_7_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_7_FILLED"]], "hexagon_8_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_8_FILLED"]], "hexagon_9_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_9_FILLED"]], "hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_FILLED"]], "hexagon_letter_a (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_A"]], "hexagon_letter_b (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_B"]], "hexagon_letter_c (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_C"]], "hexagon_letter_d (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_D"]], "hexagon_letter_e (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_E"]], "hexagon_letter_f (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_F"]], "hexagon_letter_g (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_G"]], "hexagon_letter_h (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_H"]], "hexagon_letter_i (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_I"]], "hexagon_letter_j (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_J"]], "hexagon_letter_k (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_K"]], "hexagon_letter_l (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_L"]], "hexagon_letter_m (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_M"]], "hexagon_letter_n (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_N"]], "hexagon_letter_o (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_O"]], "hexagon_letter_p (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_P"]], "hexagon_letter_q (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_Q"]], "hexagon_letter_r (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_R"]], "hexagon_letter_s (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_S"]], "hexagon_letter_t (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_T"]], "hexagon_letter_u (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_U"]], "hexagon_letter_v (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_V"]], "hexagon_letter_w (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_W"]], "hexagon_letter_x (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_X"]], "hexagon_letter_y (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_Y"]], "hexagon_letter_z (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_Z"]], "hexagon_number_0 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_0"]], "hexagon_number_1 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_1"]], "hexagon_number_2 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_2"]], "hexagon_number_3 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_3"]], "hexagon_number_4 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_4"]], "hexagon_number_5 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_5"]], "hexagon_number_6 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_6"]], "hexagon_number_7 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_7"]], "hexagon_number_8 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_8"]], "hexagon_number_9 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_9"]], "hexagon_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_OFF"]], "hierarchy (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY"]], "hierarchy_2 (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY_2"]], "hierarchy_3 (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY_3"]], "hierarchy_off (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY_OFF"]], "highlight (viser.icon attribute)": [[33, "viser.Icon.HIGHLIGHT"]], "highlight_off (viser.icon attribute)": [[33, "viser.Icon.HIGHLIGHT_OFF"]], "history (viser.icon attribute)": [[33, "viser.Icon.HISTORY"]], "history_off (viser.icon attribute)": [[33, "viser.Icon.HISTORY_OFF"]], "history_toggle (viser.icon attribute)": [[33, "viser.Icon.HISTORY_TOGGLE"]], "home (viser.icon attribute)": [[33, "viser.Icon.HOME"]], "home_2 (viser.icon attribute)": [[33, "viser.Icon.HOME_2"]], "home_bolt (viser.icon attribute)": [[33, "viser.Icon.HOME_BOLT"]], "home_cancel (viser.icon attribute)": [[33, "viser.Icon.HOME_CANCEL"]], "home_check (viser.icon attribute)": [[33, "viser.Icon.HOME_CHECK"]], "home_cog (viser.icon attribute)": [[33, "viser.Icon.HOME_COG"]], "home_dollar (viser.icon attribute)": [[33, "viser.Icon.HOME_DOLLAR"]], "home_dot (viser.icon attribute)": [[33, "viser.Icon.HOME_DOT"]], "home_down (viser.icon attribute)": [[33, "viser.Icon.HOME_DOWN"]], "home_eco (viser.icon attribute)": [[33, "viser.Icon.HOME_ECO"]], "home_edit (viser.icon attribute)": [[33, "viser.Icon.HOME_EDIT"]], "home_exclamation (viser.icon attribute)": [[33, "viser.Icon.HOME_EXCLAMATION"]], "home_hand (viser.icon attribute)": [[33, "viser.Icon.HOME_HAND"]], "home_heart (viser.icon attribute)": [[33, "viser.Icon.HOME_HEART"]], "home_infinity (viser.icon attribute)": [[33, "viser.Icon.HOME_INFINITY"]], "home_link (viser.icon attribute)": [[33, "viser.Icon.HOME_LINK"]], "home_minus (viser.icon attribute)": [[33, "viser.Icon.HOME_MINUS"]], "home_move (viser.icon attribute)": [[33, "viser.Icon.HOME_MOVE"]], "home_off (viser.icon attribute)": [[33, "viser.Icon.HOME_OFF"]], "home_plus (viser.icon attribute)": [[33, "viser.Icon.HOME_PLUS"]], "home_question (viser.icon attribute)": [[33, "viser.Icon.HOME_QUESTION"]], "home_ribbon (viser.icon attribute)": [[33, "viser.Icon.HOME_RIBBON"]], "home_search (viser.icon attribute)": [[33, "viser.Icon.HOME_SEARCH"]], "home_share (viser.icon attribute)": [[33, "viser.Icon.HOME_SHARE"]], "home_shield (viser.icon attribute)": [[33, "viser.Icon.HOME_SHIELD"]], "home_signal (viser.icon attribute)": [[33, "viser.Icon.HOME_SIGNAL"]], "home_star (viser.icon attribute)": [[33, "viser.Icon.HOME_STAR"]], "home_stats (viser.icon attribute)": [[33, "viser.Icon.HOME_STATS"]], "home_up (viser.icon attribute)": [[33, "viser.Icon.HOME_UP"]], "home_x (viser.icon attribute)": [[33, "viser.Icon.HOME_X"]], "horse_toy (viser.icon attribute)": [[33, "viser.Icon.HORSE_TOY"]], "hotel_service (viser.icon attribute)": [[33, "viser.Icon.HOTEL_SERVICE"]], "hourglass (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS"]], "hourglass_empty (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_EMPTY"]], "hourglass_filled (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_FILLED"]], "hourglass_high (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_HIGH"]], "hourglass_low (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_LOW"]], "hourglass_off (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_OFF"]], "html (viser.icon attribute)": [[33, "viser.Icon.HTML"]], "http_connect (viser.icon attribute)": [[33, "viser.Icon.HTTP_CONNECT"]], "http_delete (viser.icon attribute)": [[33, "viser.Icon.HTTP_DELETE"]], "http_get (viser.icon attribute)": [[33, "viser.Icon.HTTP_GET"]], "http_head (viser.icon attribute)": [[33, "viser.Icon.HTTP_HEAD"]], "http_options (viser.icon attribute)": [[33, "viser.Icon.HTTP_OPTIONS"]], "http_patch (viser.icon attribute)": [[33, "viser.Icon.HTTP_PATCH"]], "http_post (viser.icon attribute)": [[33, "viser.Icon.HTTP_POST"]], "http_put (viser.icon attribute)": [[33, "viser.Icon.HTTP_PUT"]], "http_que (viser.icon attribute)": [[33, "viser.Icon.HTTP_QUE"]], "http_trace (viser.icon attribute)": [[33, "viser.Icon.HTTP_TRACE"]], "h_1 (viser.icon attribute)": [[33, "viser.Icon.H_1"]], "h_2 (viser.icon attribute)": [[33, "viser.Icon.H_2"]], "h_3 (viser.icon attribute)": [[33, "viser.Icon.H_3"]], "h_4 (viser.icon attribute)": [[33, "viser.Icon.H_4"]], "h_5 (viser.icon attribute)": [[33, "viser.Icon.H_5"]], "h_6 (viser.icon attribute)": [[33, "viser.Icon.H_6"]], "ice_cream (viser.icon attribute)": [[33, "viser.Icon.ICE_CREAM"]], "ice_cream_2 (viser.icon attribute)": [[33, "viser.Icon.ICE_CREAM_2"]], "ice_cream_off (viser.icon attribute)": [[33, "viser.Icon.ICE_CREAM_OFF"]], "ice_skating (viser.icon attribute)": [[33, "viser.Icon.ICE_SKATING"]], "icons (viser.icon attribute)": [[33, "viser.Icon.ICONS"]], "icons_off (viser.icon attribute)": [[33, "viser.Icon.ICONS_OFF"]], "icon_123 (viser.icon attribute)": [[33, "viser.Icon.ICON_123"]], "icon_24_hours (viser.icon attribute)": [[33, "viser.Icon.ICON_24_HOURS"]], "icon_2fa (viser.icon attribute)": [[33, "viser.Icon.ICON_2FA"]], "icon_360 (viser.icon attribute)": [[33, "viser.Icon.ICON_360"]], "icon_360_view (viser.icon attribute)": [[33, "viser.Icon.ICON_360_VIEW"]], "icon_3d_cube_sphere (viser.icon attribute)": [[33, "viser.Icon.ICON_3D_CUBE_SPHERE"]], "icon_3d_cube_sphere_off (viser.icon attribute)": [[33, "viser.Icon.ICON_3D_CUBE_SPHERE_OFF"]], "icon_3d_rotate (viser.icon attribute)": [[33, "viser.Icon.ICON_3D_ROTATE"]], "id (viser.icon attribute)": [[33, "viser.Icon.ID"]], "id_badge (viser.icon attribute)": [[33, "viser.Icon.ID_BADGE"]], "id_badge_2 (viser.icon attribute)": [[33, "viser.Icon.ID_BADGE_2"]], "id_badge_off (viser.icon attribute)": [[33, "viser.Icon.ID_BADGE_OFF"]], "id_off (viser.icon attribute)": [[33, "viser.Icon.ID_OFF"]], "inbox (viser.icon attribute)": [[33, "viser.Icon.INBOX"]], "inbox_off (viser.icon attribute)": [[33, "viser.Icon.INBOX_OFF"]], "indent_decrease (viser.icon attribute)": [[33, "viser.Icon.INDENT_DECREASE"]], "indent_increase (viser.icon attribute)": [[33, "viser.Icon.INDENT_INCREASE"]], "infinity (viser.icon attribute)": [[33, "viser.Icon.INFINITY"]], "infinity_off (viser.icon attribute)": [[33, "viser.Icon.INFINITY_OFF"]], "info_circle (viser.icon attribute)": [[33, "viser.Icon.INFO_CIRCLE"]], "info_circle_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_CIRCLE_FILLED"]], "info_hexagon (viser.icon attribute)": [[33, "viser.Icon.INFO_HEXAGON"]], "info_hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_HEXAGON_FILLED"]], "info_octagon (viser.icon attribute)": [[33, "viser.Icon.INFO_OCTAGON"]], "info_octagon_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_OCTAGON_FILLED"]], "info_small (viser.icon attribute)": [[33, "viser.Icon.INFO_SMALL"]], "info_square (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE"]], "info_square_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE_FILLED"]], "info_square_rounded (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE_ROUNDED"]], "info_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE_ROUNDED_FILLED"]], "info_triangle (viser.icon attribute)": [[33, "viser.Icon.INFO_TRIANGLE"]], "info_triangle_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_TRIANGLE_FILLED"]], "inner_shadow_bottom (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM"]], "inner_shadow_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_FILLED"]], "inner_shadow_bottom_left (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT"]], "inner_shadow_bottom_left_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT_FILLED"]], "inner_shadow_bottom_right (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT"]], "inner_shadow_bottom_right_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT_FILLED"]], "inner_shadow_left (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_LEFT"]], "inner_shadow_left_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_LEFT_FILLED"]], "inner_shadow_right (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_RIGHT"]], "inner_shadow_right_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_RIGHT_FILLED"]], "inner_shadow_top (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP"]], "inner_shadow_top_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_FILLED"]], "inner_shadow_top_left (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_LEFT"]], "inner_shadow_top_left_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_LEFT_FILLED"]], "inner_shadow_top_right (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_RIGHT"]], "inner_shadow_top_right_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_RIGHT_FILLED"]], "input_search (viser.icon attribute)": [[33, "viser.Icon.INPUT_SEARCH"]], "ironing (viser.icon attribute)": [[33, "viser.Icon.IRONING"]], "ironing_1 (viser.icon attribute)": [[33, "viser.Icon.IRONING_1"]], "ironing_2 (viser.icon attribute)": [[33, "viser.Icon.IRONING_2"]], "ironing_3 (viser.icon attribute)": [[33, "viser.Icon.IRONING_3"]], "ironing_off (viser.icon attribute)": [[33, "viser.Icon.IRONING_OFF"]], "ironing_steam (viser.icon attribute)": [[33, "viser.Icon.IRONING_STEAM"]], "ironing_steam_off (viser.icon attribute)": [[33, "viser.Icon.IRONING_STEAM_OFF"]], "irregular_polyhedron (viser.icon attribute)": [[33, "viser.Icon.IRREGULAR_POLYHEDRON"]], "irregular_polyhedron_off (viser.icon attribute)": [[33, "viser.Icon.IRREGULAR_POLYHEDRON_OFF"]], "irregular_polyhedron_plus (viser.icon attribute)": [[33, "viser.Icon.IRREGULAR_POLYHEDRON_PLUS"]], "italic (viser.icon attribute)": [[33, "viser.Icon.ITALIC"]], "icon (class in viser)": [[33, "viser.Icon"]], "iconname (class in viser)": [[33, "viser.IconName"]], "jacket (viser.icon attribute)": [[33, "viser.Icon.JACKET"]], "jetpack (viser.icon attribute)": [[33, "viser.Icon.JETPACK"]], "jewish_star (viser.icon attribute)": [[33, "viser.Icon.JEWISH_STAR"]], "jewish_star_filled (viser.icon attribute)": [[33, "viser.Icon.JEWISH_STAR_FILLED"]], "jpg (viser.icon attribute)": [[33, "viser.Icon.JPG"]], "json (viser.icon attribute)": [[33, "viser.Icon.JSON"]], "jump_rope (viser.icon attribute)": [[33, "viser.Icon.JUMP_ROPE"]], "karate (viser.icon attribute)": [[33, "viser.Icon.KARATE"]], "kayak (viser.icon attribute)": [[33, "viser.Icon.KAYAK"]], "kering (viser.icon attribute)": [[33, "viser.Icon.KERING"]], "key (viser.icon attribute)": [[33, "viser.Icon.KEY"]], "keyboard (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD"]], "keyboard_hide (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD_HIDE"]], "keyboard_off (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD_OFF"]], "keyboard_show (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD_SHOW"]], "keyframe (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME"]], "keyframes (viser.icon attribute)": [[33, "viser.Icon.KEYFRAMES"]], "keyframe_align_center (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME_ALIGN_CENTER"]], "keyframe_align_horizontal (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME_ALIGN_HORIZONTAL"]], "keyframe_align_vertical (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME_ALIGN_VERTICAL"]], "key_off (viser.icon attribute)": [[33, "viser.Icon.KEY_OFF"]], "ladder (viser.icon attribute)": [[33, "viser.Icon.LADDER"]], "ladder_off (viser.icon attribute)": [[33, "viser.Icon.LADDER_OFF"]], "lambda (viser.icon attribute)": [[33, "viser.Icon.LAMBDA"]], "lamp (viser.icon attribute)": [[33, "viser.Icon.LAMP"]], "lamp_2 (viser.icon attribute)": [[33, "viser.Icon.LAMP_2"]], "lamp_off (viser.icon attribute)": [[33, "viser.Icon.LAMP_OFF"]], "lane (viser.icon attribute)": [[33, "viser.Icon.LANE"]], "language (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE"]], "language_hiragana (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE_HIRAGANA"]], "language_katakana (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE_KATAKANA"]], "language_off (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE_OFF"]], "lasso (viser.icon attribute)": [[33, "viser.Icon.LASSO"]], "lasso_off (viser.icon attribute)": [[33, "viser.Icon.LASSO_OFF"]], "lasso_polygon (viser.icon attribute)": [[33, "viser.Icon.LASSO_POLYGON"]], "layers_difference (viser.icon attribute)": [[33, "viser.Icon.LAYERS_DIFFERENCE"]], "layers_intersect (viser.icon attribute)": [[33, "viser.Icon.LAYERS_INTERSECT"]], "layers_intersect_2 (viser.icon attribute)": [[33, "viser.Icon.LAYERS_INTERSECT_2"]], "layers_linked (viser.icon attribute)": [[33, "viser.Icon.LAYERS_LINKED"]], "layers_off (viser.icon attribute)": [[33, "viser.Icon.LAYERS_OFF"]], "layers_subtract (viser.icon attribute)": [[33, "viser.Icon.LAYERS_SUBTRACT"]], "layers_union (viser.icon attribute)": [[33, "viser.Icon.LAYERS_UNION"]], "layout (viser.icon attribute)": [[33, "viser.Icon.LAYOUT"]], "layout_2 (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_2"]], "layout_align_bottom (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_BOTTOM"]], "layout_align_center (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_CENTER"]], "layout_align_left (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_LEFT"]], "layout_align_middle (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_MIDDLE"]], "layout_align_right (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_RIGHT"]], "layout_align_top (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_TOP"]], "layout_board (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOARD"]], "layout_board_split (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOARD_SPLIT"]], "layout_bottombar (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOTTOMBAR"]], "layout_bottombar_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOTTOMBAR_COLLAPSE"]], "layout_bottombar_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOTTOMBAR_EXPAND"]], "layout_cards (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_CARDS"]], "layout_collage (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_COLLAGE"]], "layout_columns (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_COLUMNS"]], "layout_dashboard (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_DASHBOARD"]], "layout_distribute_horizontal (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_DISTRIBUTE_HORIZONTAL"]], "layout_distribute_vertical (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_DISTRIBUTE_VERTICAL"]], "layout_grid (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_GRID"]], "layout_grid_add (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_GRID_ADD"]], "layout_grid_remove (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_GRID_REMOVE"]], "layout_kanban (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_KANBAN"]], "layout_list (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_LIST"]], "layout_navbar (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_NAVBAR"]], "layout_navbar_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_NAVBAR_COLLAPSE"]], "layout_navbar_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_NAVBAR_EXPAND"]], "layout_off (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_OFF"]], "layout_rows (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ROWS"]], "layout_sidebar (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR"]], "layout_sidebar_left_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_LEFT_COLLAPSE"]], "layout_sidebar_left_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_LEFT_EXPAND"]], "layout_sidebar_right (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_RIGHT"]], "layout_sidebar_right_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_COLLAPSE"]], "layout_sidebar_right_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_EXPAND"]], "leaf (viser.icon attribute)": [[33, "viser.Icon.LEAF"]], "leaf_off (viser.icon attribute)": [[33, "viser.Icon.LEAF_OFF"]], "lego (viser.icon attribute)": [[33, "viser.Icon.LEGO"]], "lego_off (viser.icon attribute)": [[33, "viser.Icon.LEGO_OFF"]], "lemon (viser.icon attribute)": [[33, "viser.Icon.LEMON"]], "lemon_2 (viser.icon attribute)": [[33, "viser.Icon.LEMON_2"]], "letter_a (viser.icon attribute)": [[33, "viser.Icon.LETTER_A"]], "letter_b (viser.icon attribute)": [[33, "viser.Icon.LETTER_B"]], "letter_c (viser.icon attribute)": [[33, "viser.Icon.LETTER_C"]], "letter_case (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE"]], "letter_case_lower (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE_LOWER"]], "letter_case_toggle (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE_TOGGLE"]], "letter_case_upper (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE_UPPER"]], "letter_d (viser.icon attribute)": [[33, "viser.Icon.LETTER_D"]], "letter_e (viser.icon attribute)": [[33, "viser.Icon.LETTER_E"]], "letter_f (viser.icon attribute)": [[33, "viser.Icon.LETTER_F"]], "letter_g (viser.icon attribute)": [[33, "viser.Icon.LETTER_G"]], "letter_h (viser.icon attribute)": [[33, "viser.Icon.LETTER_H"]], "letter_i (viser.icon attribute)": [[33, "viser.Icon.LETTER_I"]], "letter_j (viser.icon attribute)": [[33, "viser.Icon.LETTER_J"]], "letter_k (viser.icon attribute)": [[33, "viser.Icon.LETTER_K"]], "letter_l (viser.icon attribute)": [[33, "viser.Icon.LETTER_L"]], "letter_m (viser.icon attribute)": [[33, "viser.Icon.LETTER_M"]], "letter_n (viser.icon attribute)": [[33, "viser.Icon.LETTER_N"]], "letter_o (viser.icon attribute)": [[33, "viser.Icon.LETTER_O"]], "letter_p (viser.icon attribute)": [[33, "viser.Icon.LETTER_P"]], "letter_q (viser.icon attribute)": [[33, "viser.Icon.LETTER_Q"]], "letter_r (viser.icon attribute)": [[33, "viser.Icon.LETTER_R"]], "letter_s (viser.icon attribute)": [[33, "viser.Icon.LETTER_S"]], "letter_spacing (viser.icon attribute)": [[33, "viser.Icon.LETTER_SPACING"]], "letter_t (viser.icon attribute)": [[33, "viser.Icon.LETTER_T"]], "letter_u (viser.icon attribute)": [[33, "viser.Icon.LETTER_U"]], "letter_v (viser.icon attribute)": [[33, "viser.Icon.LETTER_V"]], "letter_w (viser.icon attribute)": [[33, "viser.Icon.LETTER_W"]], "letter_x (viser.icon attribute)": [[33, "viser.Icon.LETTER_X"]], "letter_y (viser.icon attribute)": [[33, "viser.Icon.LETTER_Y"]], "letter_z (viser.icon attribute)": [[33, "viser.Icon.LETTER_Z"]], "license (viser.icon attribute)": [[33, "viser.Icon.LICENSE"]], "license_off (viser.icon attribute)": [[33, "viser.Icon.LICENSE_OFF"]], "lifebuoy (viser.icon attribute)": [[33, "viser.Icon.LIFEBUOY"]], "lifebuoy_off (viser.icon attribute)": [[33, "viser.Icon.LIFEBUOY_OFF"]], "lighter (viser.icon attribute)": [[33, "viser.Icon.LIGHTER"]], "line (viser.icon attribute)": [[33, "viser.Icon.LINE"]], "line_dashed (viser.icon attribute)": [[33, "viser.Icon.LINE_DASHED"]], "line_dotted (viser.icon attribute)": [[33, "viser.Icon.LINE_DOTTED"]], "line_height (viser.icon attribute)": [[33, "viser.Icon.LINE_HEIGHT"]], "link (viser.icon attribute)": [[33, "viser.Icon.LINK"]], "link_off (viser.icon attribute)": [[33, "viser.Icon.LINK_OFF"]], "list (viser.icon attribute)": [[33, "viser.Icon.LIST"]], "list_check (viser.icon attribute)": [[33, "viser.Icon.LIST_CHECK"]], "list_details (viser.icon attribute)": [[33, "viser.Icon.LIST_DETAILS"]], "list_numbers (viser.icon attribute)": [[33, "viser.Icon.LIST_NUMBERS"]], "list_search (viser.icon attribute)": [[33, "viser.Icon.LIST_SEARCH"]], "list_tree (viser.icon attribute)": [[33, "viser.Icon.LIST_TREE"]], "live_photo (viser.icon attribute)": [[33, "viser.Icon.LIVE_PHOTO"]], "live_photo_off (viser.icon attribute)": [[33, "viser.Icon.LIVE_PHOTO_OFF"]], "live_view (viser.icon attribute)": [[33, "viser.Icon.LIVE_VIEW"]], "loader (viser.icon attribute)": [[33, "viser.Icon.LOADER"]], "loader_2 (viser.icon attribute)": [[33, "viser.Icon.LOADER_2"]], "loader_3 (viser.icon attribute)": [[33, "viser.Icon.LOADER_3"]], "loader_quarter (viser.icon attribute)": [[33, "viser.Icon.LOADER_QUARTER"]], "load_balancer (viser.icon attribute)": [[33, "viser.Icon.LOAD_BALANCER"]], "location (viser.icon attribute)": [[33, "viser.Icon.LOCATION"]], "location_broken (viser.icon attribute)": [[33, "viser.Icon.LOCATION_BROKEN"]], "location_filled (viser.icon attribute)": [[33, "viser.Icon.LOCATION_FILLED"]], "location_off (viser.icon attribute)": [[33, "viser.Icon.LOCATION_OFF"]], "lock (viser.icon attribute)": [[33, "viser.Icon.LOCK"]], "lock_access (viser.icon attribute)": [[33, "viser.Icon.LOCK_ACCESS"]], "lock_access_off (viser.icon attribute)": [[33, "viser.Icon.LOCK_ACCESS_OFF"]], "lock_bolt (viser.icon attribute)": [[33, "viser.Icon.LOCK_BOLT"]], "lock_cancel (viser.icon attribute)": [[33, "viser.Icon.LOCK_CANCEL"]], "lock_check (viser.icon attribute)": [[33, "viser.Icon.LOCK_CHECK"]], "lock_code (viser.icon attribute)": [[33, "viser.Icon.LOCK_CODE"]], "lock_cog (viser.icon attribute)": [[33, "viser.Icon.LOCK_COG"]], "lock_dollar (viser.icon attribute)": [[33, "viser.Icon.LOCK_DOLLAR"]], "lock_down (viser.icon attribute)": [[33, "viser.Icon.LOCK_DOWN"]], "lock_exclamation (viser.icon attribute)": [[33, "viser.Icon.LOCK_EXCLAMATION"]], "lock_heart (viser.icon attribute)": [[33, "viser.Icon.LOCK_HEART"]], "lock_minus (viser.icon attribute)": [[33, "viser.Icon.LOCK_MINUS"]], "lock_off (viser.icon attribute)": [[33, "viser.Icon.LOCK_OFF"]], "lock_open (viser.icon attribute)": [[33, "viser.Icon.LOCK_OPEN"]], "lock_open_off (viser.icon attribute)": [[33, "viser.Icon.LOCK_OPEN_OFF"]], "lock_pause (viser.icon attribute)": [[33, "viser.Icon.LOCK_PAUSE"]], "lock_pin (viser.icon attribute)": [[33, "viser.Icon.LOCK_PIN"]], "lock_plus (viser.icon attribute)": [[33, "viser.Icon.LOCK_PLUS"]], "lock_question (viser.icon attribute)": [[33, "viser.Icon.LOCK_QUESTION"]], "lock_search (viser.icon attribute)": [[33, "viser.Icon.LOCK_SEARCH"]], "lock_share (viser.icon attribute)": [[33, "viser.Icon.LOCK_SHARE"]], "lock_square (viser.icon attribute)": [[33, "viser.Icon.LOCK_SQUARE"]], "lock_square_rounded (viser.icon attribute)": [[33, "viser.Icon.LOCK_SQUARE_ROUNDED"]], "lock_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.LOCK_SQUARE_ROUNDED_FILLED"]], "lock_star (viser.icon attribute)": [[33, "viser.Icon.LOCK_STAR"]], "lock_up (viser.icon attribute)": [[33, "viser.Icon.LOCK_UP"]], "lock_x (viser.icon attribute)": [[33, "viser.Icon.LOCK_X"]], "logic_and (viser.icon attribute)": [[33, "viser.Icon.LOGIC_AND"]], "logic_buffer (viser.icon attribute)": [[33, "viser.Icon.LOGIC_BUFFER"]], "logic_nand (viser.icon attribute)": [[33, "viser.Icon.LOGIC_NAND"]], "logic_nor (viser.icon attribute)": [[33, "viser.Icon.LOGIC_NOR"]], "logic_not (viser.icon attribute)": [[33, "viser.Icon.LOGIC_NOT"]], "logic_or (viser.icon attribute)": [[33, "viser.Icon.LOGIC_OR"]], "logic_xnor (viser.icon attribute)": [[33, "viser.Icon.LOGIC_XNOR"]], "logic_xor (viser.icon attribute)": [[33, "viser.Icon.LOGIC_XOR"]], "login (viser.icon attribute)": [[33, "viser.Icon.LOGIN"]], "logout (viser.icon attribute)": [[33, "viser.Icon.LOGOUT"]], "logout_2 (viser.icon attribute)": [[33, "viser.Icon.LOGOUT_2"]], "lollipop (viser.icon attribute)": [[33, "viser.Icon.LOLLIPOP"]], "lollipop_off (viser.icon attribute)": [[33, "viser.Icon.LOLLIPOP_OFF"]], "luggage (viser.icon attribute)": [[33, "viser.Icon.LUGGAGE"]], "luggage_off (viser.icon attribute)": [[33, "viser.Icon.LUGGAGE_OFF"]], "lungs (viser.icon attribute)": [[33, "viser.Icon.LUNGS"]], "lungs_off (viser.icon attribute)": [[33, "viser.Icon.LUNGS_OFF"]], "macro (viser.icon attribute)": [[33, "viser.Icon.MACRO"]], "macro_off (viser.icon attribute)": [[33, "viser.Icon.MACRO_OFF"]], "magnet (viser.icon attribute)": [[33, "viser.Icon.MAGNET"]], "magnet_off (viser.icon attribute)": [[33, "viser.Icon.MAGNET_OFF"]], "mail (viser.icon attribute)": [[33, "viser.Icon.MAIL"]], "mailbox (viser.icon attribute)": [[33, "viser.Icon.MAILBOX"]], "mailbox_off (viser.icon attribute)": [[33, "viser.Icon.MAILBOX_OFF"]], "mail_ai (viser.icon attribute)": [[33, "viser.Icon.MAIL_AI"]], "mail_bolt (viser.icon attribute)": [[33, "viser.Icon.MAIL_BOLT"]], "mail_cancel (viser.icon attribute)": [[33, "viser.Icon.MAIL_CANCEL"]], "mail_check (viser.icon attribute)": [[33, "viser.Icon.MAIL_CHECK"]], "mail_code (viser.icon attribute)": [[33, "viser.Icon.MAIL_CODE"]], "mail_cog (viser.icon attribute)": [[33, "viser.Icon.MAIL_COG"]], "mail_dollar (viser.icon attribute)": [[33, "viser.Icon.MAIL_DOLLAR"]], "mail_down (viser.icon attribute)": [[33, "viser.Icon.MAIL_DOWN"]], "mail_exclamation (viser.icon attribute)": [[33, "viser.Icon.MAIL_EXCLAMATION"]], "mail_fast (viser.icon attribute)": [[33, "viser.Icon.MAIL_FAST"]], "mail_filled (viser.icon attribute)": [[33, "viser.Icon.MAIL_FILLED"]], "mail_forward (viser.icon attribute)": [[33, "viser.Icon.MAIL_FORWARD"]], "mail_heart (viser.icon attribute)": [[33, "viser.Icon.MAIL_HEART"]], "mail_minus (viser.icon attribute)": [[33, "viser.Icon.MAIL_MINUS"]], "mail_off (viser.icon attribute)": [[33, "viser.Icon.MAIL_OFF"]], "mail_opened (viser.icon attribute)": [[33, "viser.Icon.MAIL_OPENED"]], "mail_opened_filled (viser.icon attribute)": [[33, "viser.Icon.MAIL_OPENED_FILLED"]], "mail_pause (viser.icon attribute)": [[33, "viser.Icon.MAIL_PAUSE"]], "mail_pin (viser.icon attribute)": [[33, "viser.Icon.MAIL_PIN"]], "mail_plus (viser.icon attribute)": [[33, "viser.Icon.MAIL_PLUS"]], "mail_question (viser.icon attribute)": [[33, "viser.Icon.MAIL_QUESTION"]], "mail_search (viser.icon attribute)": [[33, "viser.Icon.MAIL_SEARCH"]], "mail_share (viser.icon attribute)": [[33, "viser.Icon.MAIL_SHARE"]], "mail_star (viser.icon attribute)": [[33, "viser.Icon.MAIL_STAR"]], "mail_up (viser.icon attribute)": [[33, "viser.Icon.MAIL_UP"]], "mail_x (viser.icon attribute)": [[33, "viser.Icon.MAIL_X"]], "man (viser.icon attribute)": [[33, "viser.Icon.MAN"]], "manual_gearbox (viser.icon attribute)": [[33, "viser.Icon.MANUAL_GEARBOX"]], "map (viser.icon attribute)": [[33, "viser.Icon.MAP"]], "map_2 (viser.icon attribute)": [[33, "viser.Icon.MAP_2"]], "map_off (viser.icon attribute)": [[33, "viser.Icon.MAP_OFF"]], "map_pin (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN"]], "map_pins (viser.icon attribute)": [[33, "viser.Icon.MAP_PINS"]], "map_pin_bolt (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_BOLT"]], "map_pin_cancel (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_CANCEL"]], "map_pin_check (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_CHECK"]], "map_pin_code (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_CODE"]], "map_pin_cog (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_COG"]], "map_pin_dollar (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_DOLLAR"]], "map_pin_down (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_DOWN"]], "map_pin_exclamation (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_EXCLAMATION"]], "map_pin_filled (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_FILLED"]], "map_pin_heart (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_HEART"]], "map_pin_minus (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_MINUS"]], "map_pin_off (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_OFF"]], "map_pin_pause (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_PAUSE"]], "map_pin_pin (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_PIN"]], "map_pin_plus (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_PLUS"]], "map_pin_question (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_QUESTION"]], "map_pin_search (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_SEARCH"]], "map_pin_share (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_SHARE"]], "map_pin_star (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_STAR"]], "map_pin_up (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_UP"]], "map_pin_x (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_X"]], "map_search (viser.icon attribute)": [[33, "viser.Icon.MAP_SEARCH"]], "markdown (viser.icon attribute)": [[33, "viser.Icon.MARKDOWN"]], "markdown_off (viser.icon attribute)": [[33, "viser.Icon.MARKDOWN_OFF"]], "marquee (viser.icon attribute)": [[33, "viser.Icon.MARQUEE"]], "marquee_2 (viser.icon attribute)": [[33, "viser.Icon.MARQUEE_2"]], "marquee_off (viser.icon attribute)": [[33, "viser.Icon.MARQUEE_OFF"]], "mars (viser.icon attribute)": [[33, "viser.Icon.MARS"]], "mask (viser.icon attribute)": [[33, "viser.Icon.MASK"]], "masks_theater (viser.icon attribute)": [[33, "viser.Icon.MASKS_THEATER"]], "masks_theater_off (viser.icon attribute)": [[33, "viser.Icon.MASKS_THEATER_OFF"]], "mask_off (viser.icon attribute)": [[33, "viser.Icon.MASK_OFF"]], "massage (viser.icon attribute)": [[33, "viser.Icon.MASSAGE"]], "matchstick (viser.icon attribute)": [[33, "viser.Icon.MATCHSTICK"]], "math (viser.icon attribute)": [[33, "viser.Icon.MATH"]], "math_1_divide_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_1_DIVIDE_2"]], "math_1_divide_3 (viser.icon attribute)": [[33, "viser.Icon.MATH_1_DIVIDE_3"]], "math_avg (viser.icon attribute)": [[33, "viser.Icon.MATH_AVG"]], "math_equal_greater (viser.icon attribute)": [[33, "viser.Icon.MATH_EQUAL_GREATER"]], "math_equal_lower (viser.icon attribute)": [[33, "viser.Icon.MATH_EQUAL_LOWER"]], "math_function (viser.icon attribute)": [[33, "viser.Icon.MATH_FUNCTION"]], "math_function_off (viser.icon attribute)": [[33, "viser.Icon.MATH_FUNCTION_OFF"]], "math_function_y (viser.icon attribute)": [[33, "viser.Icon.MATH_FUNCTION_Y"]], "math_greater (viser.icon attribute)": [[33, "viser.Icon.MATH_GREATER"]], "math_integral (viser.icon attribute)": [[33, "viser.Icon.MATH_INTEGRAL"]], "math_integrals (viser.icon attribute)": [[33, "viser.Icon.MATH_INTEGRALS"]], "math_integral_x (viser.icon attribute)": [[33, "viser.Icon.MATH_INTEGRAL_X"]], "math_lower (viser.icon attribute)": [[33, "viser.Icon.MATH_LOWER"]], "math_max (viser.icon attribute)": [[33, "viser.Icon.MATH_MAX"]], "math_min (viser.icon attribute)": [[33, "viser.Icon.MATH_MIN"]], "math_not (viser.icon attribute)": [[33, "viser.Icon.MATH_NOT"]], "math_off (viser.icon attribute)": [[33, "viser.Icon.MATH_OFF"]], "math_pi (viser.icon attribute)": [[33, "viser.Icon.MATH_PI"]], "math_pi_divide_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_PI_DIVIDE_2"]], "math_symbols (viser.icon attribute)": [[33, "viser.Icon.MATH_SYMBOLS"]], "math_xy (viser.icon attribute)": [[33, "viser.Icon.MATH_XY"]], "math_x_divide_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_X_DIVIDE_2"]], "math_x_divide_y (viser.icon attribute)": [[33, "viser.Icon.MATH_X_DIVIDE_Y"]], "math_x_divide_y_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_X_DIVIDE_Y_2"]], "math_x_minus_x (viser.icon attribute)": [[33, "viser.Icon.MATH_X_MINUS_X"]], "math_x_minus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_X_MINUS_Y"]], "math_x_plus_x (viser.icon attribute)": [[33, "viser.Icon.MATH_X_PLUS_X"]], "math_x_plus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_X_PLUS_Y"]], "math_y_minus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_Y_MINUS_Y"]], "math_y_plus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_Y_PLUS_Y"]], "maximize (viser.icon attribute)": [[33, "viser.Icon.MAXIMIZE"]], "maximize_off (viser.icon attribute)": [[33, "viser.Icon.MAXIMIZE_OFF"]], "meat (viser.icon attribute)": [[33, "viser.Icon.MEAT"]], "meat_off (viser.icon attribute)": [[33, "viser.Icon.MEAT_OFF"]], "medal (viser.icon attribute)": [[33, "viser.Icon.MEDAL"]], "medal_2 (viser.icon attribute)": [[33, "viser.Icon.MEDAL_2"]], "medical_cross (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS"]], "medical_cross_circle (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS_CIRCLE"]], "medical_cross_filled (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS_FILLED"]], "medical_cross_off (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS_OFF"]], "medicine_syrup (viser.icon attribute)": [[33, "viser.Icon.MEDICINE_SYRUP"]], "meeple (viser.icon attribute)": [[33, "viser.Icon.MEEPLE"]], "menorah (viser.icon attribute)": [[33, "viser.Icon.MENORAH"]], "menu (viser.icon attribute)": [[33, "viser.Icon.MENU"]], "menu_2 (viser.icon attribute)": [[33, "viser.Icon.MENU_2"]], "menu_deep (viser.icon attribute)": [[33, "viser.Icon.MENU_DEEP"]], "menu_order (viser.icon attribute)": [[33, "viser.Icon.MENU_ORDER"]], "message (viser.icon attribute)": [[33, "viser.Icon.MESSAGE"]], "messages (viser.icon attribute)": [[33, "viser.Icon.MESSAGES"]], "messages_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGES_OFF"]], "message_2 (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2"]], "message_2_bolt (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_BOLT"]], "message_2_cancel (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_CANCEL"]], "message_2_check (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_CHECK"]], "message_2_code (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_CODE"]], "message_2_cog (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_COG"]], "message_2_dollar (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_DOLLAR"]], "message_2_down (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_DOWN"]], "message_2_exclamation (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_EXCLAMATION"]], "message_2_heart (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_HEART"]], "message_2_minus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_MINUS"]], "message_2_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_OFF"]], "message_2_pause (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_PAUSE"]], "message_2_pin (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_PIN"]], "message_2_plus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_PLUS"]], "message_2_question (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_QUESTION"]], "message_2_search (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_SEARCH"]], "message_2_share (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_SHARE"]], "message_2_star (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_STAR"]], "message_2_up (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_UP"]], "message_2_x (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_X"]], "message_bolt (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_BOLT"]], "message_cancel (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CANCEL"]], "message_chatbot (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CHATBOT"]], "message_check (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CHECK"]], "message_circle (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE"]], "message_circle_2 (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_2"]], "message_circle_2_filled (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_2_FILLED"]], "message_circle_bolt (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_BOLT"]], "message_circle_cancel (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_CANCEL"]], "message_circle_check (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_CHECK"]], "message_circle_code (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_CODE"]], "message_circle_cog (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_COG"]], "message_circle_dollar (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_DOLLAR"]], "message_circle_down (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_DOWN"]], "message_circle_exclamation (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_EXCLAMATION"]], "message_circle_heart (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_HEART"]], "message_circle_minus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_MINUS"]], "message_circle_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_OFF"]], "message_circle_pause (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_PAUSE"]], "message_circle_pin (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_PIN"]], "message_circle_plus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_PLUS"]], "message_circle_question (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_QUESTION"]], "message_circle_search (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_SEARCH"]], "message_circle_share (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_SHARE"]], "message_circle_star (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_STAR"]], "message_circle_up (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_UP"]], "message_circle_x (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_X"]], "message_code (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CODE"]], "message_cog (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_COG"]], "message_dollar (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_DOLLAR"]], "message_dots (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_DOTS"]], "message_down (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_DOWN"]], "message_exclamation (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_EXCLAMATION"]], "message_forward (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_FORWARD"]], "message_heart (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_HEART"]], "message_language (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_LANGUAGE"]], "message_minus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_MINUS"]], "message_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_OFF"]], "message_pause (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_PAUSE"]], "message_pin (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_PIN"]], "message_plus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_PLUS"]], "message_question (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_QUESTION"]], "message_report (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_REPORT"]], "message_search (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_SEARCH"]], "message_share (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_SHARE"]], "message_star (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_STAR"]], "message_up (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_UP"]], "message_x (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_X"]], "meteor (viser.icon attribute)": [[33, "viser.Icon.METEOR"]], "meteor_off (viser.icon attribute)": [[33, "viser.Icon.METEOR_OFF"]], "michelin_bib_gourmand (viser.icon attribute)": [[33, "viser.Icon.MICHELIN_BIB_GOURMAND"]], "michelin_star (viser.icon attribute)": [[33, "viser.Icon.MICHELIN_STAR"]], "michelin_star_green (viser.icon attribute)": [[33, "viser.Icon.MICHELIN_STAR_GREEN"]], "mickey (viser.icon attribute)": [[33, "viser.Icon.MICKEY"]], "mickey_filled (viser.icon attribute)": [[33, "viser.Icon.MICKEY_FILLED"]], "microphone (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE"]], "microphone_2 (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE_2"]], "microphone_2_off (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE_2_OFF"]], "microphone_off (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE_OFF"]], "microscope (viser.icon attribute)": [[33, "viser.Icon.MICROSCOPE"]], "microscope_off (viser.icon attribute)": [[33, "viser.Icon.MICROSCOPE_OFF"]], "microwave (viser.icon attribute)": [[33, "viser.Icon.MICROWAVE"]], "microwave_off (viser.icon attribute)": [[33, "viser.Icon.MICROWAVE_OFF"]], "military_award (viser.icon attribute)": [[33, "viser.Icon.MILITARY_AWARD"]], "military_rank (viser.icon attribute)": [[33, "viser.Icon.MILITARY_RANK"]], "milk (viser.icon attribute)": [[33, "viser.Icon.MILK"]], "milkshake (viser.icon attribute)": [[33, "viser.Icon.MILKSHAKE"]], "milk_off (viser.icon attribute)": [[33, "viser.Icon.MILK_OFF"]], "minimize (viser.icon attribute)": [[33, "viser.Icon.MINIMIZE"]], "minus (viser.icon attribute)": [[33, "viser.Icon.MINUS"]], "minus_vertical (viser.icon attribute)": [[33, "viser.Icon.MINUS_VERTICAL"]], "mist (viser.icon attribute)": [[33, "viser.Icon.MIST"]], "mist_off (viser.icon attribute)": [[33, "viser.Icon.MIST_OFF"]], "mobiledata (viser.icon attribute)": [[33, "viser.Icon.MOBILEDATA"]], "mobiledata_off (viser.icon attribute)": [[33, "viser.Icon.MOBILEDATA_OFF"]], "moneybag (viser.icon attribute)": [[33, "viser.Icon.MONEYBAG"]], "mood_angry (viser.icon attribute)": [[33, "viser.Icon.MOOD_ANGRY"]], "mood_annoyed (viser.icon attribute)": [[33, "viser.Icon.MOOD_ANNOYED"]], "mood_annoyed_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_ANNOYED_2"]], "mood_boy (viser.icon attribute)": [[33, "viser.Icon.MOOD_BOY"]], "mood_check (viser.icon attribute)": [[33, "viser.Icon.MOOD_CHECK"]], "mood_cog (viser.icon attribute)": [[33, "viser.Icon.MOOD_COG"]], "mood_confuzed (viser.icon attribute)": [[33, "viser.Icon.MOOD_CONFUZED"]], "mood_confuzed_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_CONFUZED_FILLED"]], "mood_crazy_happy (viser.icon attribute)": [[33, "viser.Icon.MOOD_CRAZY_HAPPY"]], "mood_cry (viser.icon attribute)": [[33, "viser.Icon.MOOD_CRY"]], "mood_dollar (viser.icon attribute)": [[33, "viser.Icon.MOOD_DOLLAR"]], "mood_edit (viser.icon attribute)": [[33, "viser.Icon.MOOD_EDIT"]], "mood_empty (viser.icon attribute)": [[33, "viser.Icon.MOOD_EMPTY"]], "mood_empty_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_EMPTY_FILLED"]], "mood_happy (viser.icon attribute)": [[33, "viser.Icon.MOOD_HAPPY"]], "mood_happy_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_HAPPY_FILLED"]], "mood_heart (viser.icon attribute)": [[33, "viser.Icon.MOOD_HEART"]], "mood_kid (viser.icon attribute)": [[33, "viser.Icon.MOOD_KID"]], "mood_kid_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_KID_FILLED"]], "mood_look_left (viser.icon attribute)": [[33, "viser.Icon.MOOD_LOOK_LEFT"]], "mood_look_right (viser.icon attribute)": [[33, "viser.Icon.MOOD_LOOK_RIGHT"]], "mood_minus (viser.icon attribute)": [[33, "viser.Icon.MOOD_MINUS"]], "mood_nerd (viser.icon attribute)": [[33, "viser.Icon.MOOD_NERD"]], "mood_nervous (viser.icon attribute)": [[33, "viser.Icon.MOOD_NERVOUS"]], "mood_neutral (viser.icon attribute)": [[33, "viser.Icon.MOOD_NEUTRAL"]], "mood_neutral_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_NEUTRAL_FILLED"]], "mood_off (viser.icon attribute)": [[33, "viser.Icon.MOOD_OFF"]], "mood_pin (viser.icon attribute)": [[33, "viser.Icon.MOOD_PIN"]], "mood_plus (viser.icon attribute)": [[33, "viser.Icon.MOOD_PLUS"]], "mood_sad (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD"]], "mood_sad_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_2"]], "mood_sad_dizzy (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_DIZZY"]], "mood_sad_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_FILLED"]], "mood_sad_squint (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_SQUINT"]], "mood_search (viser.icon attribute)": [[33, "viser.Icon.MOOD_SEARCH"]], "mood_share (viser.icon attribute)": [[33, "viser.Icon.MOOD_SHARE"]], "mood_sick (viser.icon attribute)": [[33, "viser.Icon.MOOD_SICK"]], "mood_silence (viser.icon attribute)": [[33, "viser.Icon.MOOD_SILENCE"]], "mood_sing (viser.icon attribute)": [[33, "viser.Icon.MOOD_SING"]], "mood_smile (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE"]], "mood_smile_beam (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE_BEAM"]], "mood_smile_dizzy (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE_DIZZY"]], "mood_smile_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE_FILLED"]], "mood_suprised (viser.icon attribute)": [[33, "viser.Icon.MOOD_SUPRISED"]], "mood_tongue (viser.icon attribute)": [[33, "viser.Icon.MOOD_TONGUE"]], "mood_tongue_wink (viser.icon attribute)": [[33, "viser.Icon.MOOD_TONGUE_WINK"]], "mood_tongue_wink_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_TONGUE_WINK_2"]], "mood_unamused (viser.icon attribute)": [[33, "viser.Icon.MOOD_UNAMUSED"]], "mood_up (viser.icon attribute)": [[33, "viser.Icon.MOOD_UP"]], "mood_wink (viser.icon attribute)": [[33, "viser.Icon.MOOD_WINK"]], "mood_wink_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_WINK_2"]], "mood_wrrr (viser.icon attribute)": [[33, "viser.Icon.MOOD_WRRR"]], "mood_x (viser.icon attribute)": [[33, "viser.Icon.MOOD_X"]], "mood_xd (viser.icon attribute)": [[33, "viser.Icon.MOOD_XD"]], "moon (viser.icon attribute)": [[33, "viser.Icon.MOON"]], "moon_2 (viser.icon attribute)": [[33, "viser.Icon.MOON_2"]], "moon_filled (viser.icon attribute)": [[33, "viser.Icon.MOON_FILLED"]], "moon_off (viser.icon attribute)": [[33, "viser.Icon.MOON_OFF"]], "moon_stars (viser.icon attribute)": [[33, "viser.Icon.MOON_STARS"]], "moped (viser.icon attribute)": [[33, "viser.Icon.MOPED"]], "motorbike (viser.icon attribute)": [[33, "viser.Icon.MOTORBIKE"]], "mountain (viser.icon attribute)": [[33, "viser.Icon.MOUNTAIN"]], "mountain_off (viser.icon attribute)": [[33, "viser.Icon.MOUNTAIN_OFF"]], "mouse (viser.icon attribute)": [[33, "viser.Icon.MOUSE"]], "mouse_2 (viser.icon attribute)": [[33, "viser.Icon.MOUSE_2"]], "mouse_off (viser.icon attribute)": [[33, "viser.Icon.MOUSE_OFF"]], "moustache (viser.icon attribute)": [[33, "viser.Icon.MOUSTACHE"]], "movie (viser.icon attribute)": [[33, "viser.Icon.MOVIE"]], "movie_off (viser.icon attribute)": [[33, "viser.Icon.MOVIE_OFF"]], "mug (viser.icon attribute)": [[33, "viser.Icon.MUG"]], "mug_off (viser.icon attribute)": [[33, "viser.Icon.MUG_OFF"]], "multiplier_0_5x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_0_5X"]], "multiplier_1x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_1X"]], "multiplier_1_5x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_1_5X"]], "multiplier_2x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_2X"]], "mushroom (viser.icon attribute)": [[33, "viser.Icon.MUSHROOM"]], "mushroom_filled (viser.icon attribute)": [[33, "viser.Icon.MUSHROOM_FILLED"]], "mushroom_off (viser.icon attribute)": [[33, "viser.Icon.MUSHROOM_OFF"]], "music (viser.icon attribute)": [[33, "viser.Icon.MUSIC"]], "music_off (viser.icon attribute)": [[33, "viser.Icon.MUSIC_OFF"]], "navigation (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION"]], "navigation_filled (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION_FILLED"]], "navigation_north (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION_NORTH"]], "navigation_off (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION_OFF"]], "needle (viser.icon attribute)": [[33, "viser.Icon.NEEDLE"]], "needle_thread (viser.icon attribute)": [[33, "viser.Icon.NEEDLE_THREAD"]], "network (viser.icon attribute)": [[33, "viser.Icon.NETWORK"]], "network_off (viser.icon attribute)": [[33, "viser.Icon.NETWORK_OFF"]], "news (viser.icon attribute)": [[33, "viser.Icon.NEWS"]], "news_off (viser.icon attribute)": [[33, "viser.Icon.NEWS_OFF"]], "new_section (viser.icon attribute)": [[33, "viser.Icon.NEW_SECTION"]], "nfc (viser.icon attribute)": [[33, "viser.Icon.NFC"]], "nfc_off (viser.icon attribute)": [[33, "viser.Icon.NFC_OFF"]], "north_star (viser.icon attribute)": [[33, "viser.Icon.NORTH_STAR"]], "note (viser.icon attribute)": [[33, "viser.Icon.NOTE"]], "notebook (viser.icon attribute)": [[33, "viser.Icon.NOTEBOOK"]], "notebook_off (viser.icon attribute)": [[33, "viser.Icon.NOTEBOOK_OFF"]], "notes (viser.icon attribute)": [[33, "viser.Icon.NOTES"]], "notes_off (viser.icon attribute)": [[33, "viser.Icon.NOTES_OFF"]], "note_off (viser.icon attribute)": [[33, "viser.Icon.NOTE_OFF"]], "notification (viser.icon attribute)": [[33, "viser.Icon.NOTIFICATION"]], "notification_off (viser.icon attribute)": [[33, "viser.Icon.NOTIFICATION_OFF"]], "no_copyright (viser.icon attribute)": [[33, "viser.Icon.NO_COPYRIGHT"]], "no_creative_commons (viser.icon attribute)": [[33, "viser.Icon.NO_CREATIVE_COMMONS"]], "no_derivatives (viser.icon attribute)": [[33, "viser.Icon.NO_DERIVATIVES"]], "number (viser.icon attribute)": [[33, "viser.Icon.NUMBER"]], "numbers (viser.icon attribute)": [[33, "viser.Icon.NUMBERS"]], "number_0 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_0"]], "number_1 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_1"]], "number_2 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_2"]], "number_3 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_3"]], "number_4 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_4"]], "number_5 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_5"]], "number_6 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_6"]], "number_7 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_7"]], "number_8 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_8"]], "number_9 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_9"]], "nurse (viser.icon attribute)": [[33, "viser.Icon.NURSE"]], "octagon (viser.icon attribute)": [[33, "viser.Icon.OCTAGON"]], "octagon_filled (viser.icon attribute)": [[33, "viser.Icon.OCTAGON_FILLED"]], "octagon_off (viser.icon attribute)": [[33, "viser.Icon.OCTAGON_OFF"]], "octahedron (viser.icon attribute)": [[33, "viser.Icon.OCTAHEDRON"]], "octahedron_off (viser.icon attribute)": [[33, "viser.Icon.OCTAHEDRON_OFF"]], "octahedron_plus (viser.icon attribute)": [[33, "viser.Icon.OCTAHEDRON_PLUS"]], "old (viser.icon attribute)": [[33, "viser.Icon.OLD"]], "olympics (viser.icon attribute)": [[33, "viser.Icon.OLYMPICS"]], "olympics_off (viser.icon attribute)": [[33, "viser.Icon.OLYMPICS_OFF"]], "om (viser.icon attribute)": [[33, "viser.Icon.OM"]], "omega (viser.icon attribute)": [[33, "viser.Icon.OMEGA"]], "outbound (viser.icon attribute)": [[33, "viser.Icon.OUTBOUND"]], "outlet (viser.icon attribute)": [[33, "viser.Icon.OUTLET"]], "oval (viser.icon attribute)": [[33, "viser.Icon.OVAL"]], "oval_filled (viser.icon attribute)": [[33, "viser.Icon.OVAL_FILLED"]], "oval_vertical (viser.icon attribute)": [[33, "viser.Icon.OVAL_VERTICAL"]], "oval_vertical_filled (viser.icon attribute)": [[33, "viser.Icon.OVAL_VERTICAL_FILLED"]], "overline (viser.icon attribute)": [[33, "viser.Icon.OVERLINE"]], "package (viser.icon attribute)": [[33, "viser.Icon.PACKAGE"]], "packages (viser.icon attribute)": [[33, "viser.Icon.PACKAGES"]], "package_export (viser.icon attribute)": [[33, "viser.Icon.PACKAGE_EXPORT"]], "package_import (viser.icon attribute)": [[33, "viser.Icon.PACKAGE_IMPORT"]], "package_off (viser.icon attribute)": [[33, "viser.Icon.PACKAGE_OFF"]], "pacman (viser.icon attribute)": [[33, "viser.Icon.PACMAN"]], "page_break (viser.icon attribute)": [[33, "viser.Icon.PAGE_BREAK"]], "paint (viser.icon attribute)": [[33, "viser.Icon.PAINT"]], "paint_filled (viser.icon attribute)": [[33, "viser.Icon.PAINT_FILLED"]], "paint_off (viser.icon attribute)": [[33, "viser.Icon.PAINT_OFF"]], "palette (viser.icon attribute)": [[33, "viser.Icon.PALETTE"]], "palette_off (viser.icon attribute)": [[33, "viser.Icon.PALETTE_OFF"]], "panorama_horizontal (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_HORIZONTAL"]], "panorama_horizontal_off (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_HORIZONTAL_OFF"]], "panorama_vertical (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_VERTICAL"]], "panorama_vertical_off (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_VERTICAL_OFF"]], "paperclip (viser.icon attribute)": [[33, "viser.Icon.PAPERCLIP"]], "paper_bag (viser.icon attribute)": [[33, "viser.Icon.PAPER_BAG"]], "paper_bag_off (viser.icon attribute)": [[33, "viser.Icon.PAPER_BAG_OFF"]], "parachute (viser.icon attribute)": [[33, "viser.Icon.PARACHUTE"]], "parachute_off (viser.icon attribute)": [[33, "viser.Icon.PARACHUTE_OFF"]], "parentheses (viser.icon attribute)": [[33, "viser.Icon.PARENTHESES"]], "parentheses_off (viser.icon attribute)": [[33, "viser.Icon.PARENTHESES_OFF"]], "parking (viser.icon attribute)": [[33, "viser.Icon.PARKING"]], "parking_off (viser.icon attribute)": [[33, "viser.Icon.PARKING_OFF"]], "password (viser.icon attribute)": [[33, "viser.Icon.PASSWORD"]], "paw (viser.icon attribute)": [[33, "viser.Icon.PAW"]], "paw_filled (viser.icon attribute)": [[33, "viser.Icon.PAW_FILLED"]], "paw_off (viser.icon attribute)": [[33, "viser.Icon.PAW_OFF"]], "pdf (viser.icon attribute)": [[33, "viser.Icon.PDF"]], "peace (viser.icon attribute)": [[33, "viser.Icon.PEACE"]], "pencil (viser.icon attribute)": [[33, "viser.Icon.PENCIL"]], "pencil_minus (viser.icon attribute)": [[33, "viser.Icon.PENCIL_MINUS"]], "pencil_off (viser.icon attribute)": [[33, "viser.Icon.PENCIL_OFF"]], "pencil_plus (viser.icon attribute)": [[33, "viser.Icon.PENCIL_PLUS"]], "pennant (viser.icon attribute)": [[33, "viser.Icon.PENNANT"]], "pennant_2 (viser.icon attribute)": [[33, "viser.Icon.PENNANT_2"]], "pennant_2_filled (viser.icon attribute)": [[33, "viser.Icon.PENNANT_2_FILLED"]], "pennant_filled (viser.icon attribute)": [[33, "viser.Icon.PENNANT_FILLED"]], "pennant_off (viser.icon attribute)": [[33, "viser.Icon.PENNANT_OFF"]], "pentagon (viser.icon attribute)": [[33, "viser.Icon.PENTAGON"]], "pentagon_filled (viser.icon attribute)": [[33, "viser.Icon.PENTAGON_FILLED"]], "pentagon_off (viser.icon attribute)": [[33, "viser.Icon.PENTAGON_OFF"]], "pentagram (viser.icon attribute)": [[33, "viser.Icon.PENTAGRAM"]], "pepper (viser.icon attribute)": [[33, "viser.Icon.PEPPER"]], "pepper_off (viser.icon attribute)": [[33, "viser.Icon.PEPPER_OFF"]], "percentage (viser.icon attribute)": [[33, "viser.Icon.PERCENTAGE"]], "perfume (viser.icon attribute)": [[33, "viser.Icon.PERFUME"]], "perspective (viser.icon attribute)": [[33, "viser.Icon.PERSPECTIVE"]], "perspective_off (viser.icon attribute)": [[33, "viser.Icon.PERSPECTIVE_OFF"]], "phone (viser.icon attribute)": [[33, "viser.Icon.PHONE"]], "phone_call (viser.icon attribute)": [[33, "viser.Icon.PHONE_CALL"]], "phone_calling (viser.icon attribute)": [[33, "viser.Icon.PHONE_CALLING"]], "phone_check (viser.icon attribute)": [[33, "viser.Icon.PHONE_CHECK"]], "phone_filled (viser.icon attribute)": [[33, "viser.Icon.PHONE_FILLED"]], "phone_incoming (viser.icon attribute)": [[33, "viser.Icon.PHONE_INCOMING"]], "phone_off (viser.icon attribute)": [[33, "viser.Icon.PHONE_OFF"]], "phone_outgoing (viser.icon attribute)": [[33, "viser.Icon.PHONE_OUTGOING"]], "phone_pause (viser.icon attribute)": [[33, "viser.Icon.PHONE_PAUSE"]], "phone_plus (viser.icon attribute)": [[33, "viser.Icon.PHONE_PLUS"]], "phone_x (viser.icon attribute)": [[33, "viser.Icon.PHONE_X"]], "photo (viser.icon attribute)": [[33, "viser.Icon.PHOTO"]], "photo_ai (viser.icon attribute)": [[33, "viser.Icon.PHOTO_AI"]], "photo_bolt (viser.icon attribute)": [[33, "viser.Icon.PHOTO_BOLT"]], "photo_cancel (viser.icon attribute)": [[33, "viser.Icon.PHOTO_CANCEL"]], "photo_check (viser.icon attribute)": [[33, "viser.Icon.PHOTO_CHECK"]], "photo_code (viser.icon attribute)": [[33, "viser.Icon.PHOTO_CODE"]], "photo_cog (viser.icon attribute)": [[33, "viser.Icon.PHOTO_COG"]], "photo_dollar (viser.icon attribute)": [[33, "viser.Icon.PHOTO_DOLLAR"]], "photo_down (viser.icon attribute)": [[33, "viser.Icon.PHOTO_DOWN"]], "photo_edit (viser.icon attribute)": [[33, "viser.Icon.PHOTO_EDIT"]], "photo_exclamation (viser.icon attribute)": [[33, "viser.Icon.PHOTO_EXCLAMATION"]], "photo_filled (viser.icon attribute)": [[33, "viser.Icon.PHOTO_FILLED"]], "photo_heart (viser.icon attribute)": [[33, "viser.Icon.PHOTO_HEART"]], "photo_minus (viser.icon attribute)": [[33, "viser.Icon.PHOTO_MINUS"]], "photo_off (viser.icon attribute)": [[33, "viser.Icon.PHOTO_OFF"]], "photo_pause (viser.icon attribute)": [[33, "viser.Icon.PHOTO_PAUSE"]], "photo_pin (viser.icon attribute)": [[33, "viser.Icon.PHOTO_PIN"]], "photo_plus (viser.icon attribute)": [[33, "viser.Icon.PHOTO_PLUS"]], "photo_question (viser.icon attribute)": [[33, "viser.Icon.PHOTO_QUESTION"]], "photo_search (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SEARCH"]], "photo_sensor (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SENSOR"]], "photo_sensor_2 (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SENSOR_2"]], "photo_sensor_3 (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SENSOR_3"]], "photo_share (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SHARE"]], "photo_shield (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SHIELD"]], "photo_star (viser.icon attribute)": [[33, "viser.Icon.PHOTO_STAR"]], "photo_up (viser.icon attribute)": [[33, "viser.Icon.PHOTO_UP"]], "photo_x (viser.icon attribute)": [[33, "viser.Icon.PHOTO_X"]], "physotherapist (viser.icon attribute)": [[33, "viser.Icon.PHYSOTHERAPIST"]], "piano (viser.icon attribute)": [[33, "viser.Icon.PIANO"]], "pick (viser.icon attribute)": [[33, "viser.Icon.PICK"]], "picture_in_picture (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE"]], "picture_in_picture_off (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE_OFF"]], "picture_in_picture_on (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE_ON"]], "picture_in_picture_top (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE_TOP"]], "pig (viser.icon attribute)": [[33, "viser.Icon.PIG"]], "pig_money (viser.icon attribute)": [[33, "viser.Icon.PIG_MONEY"]], "pig_off (viser.icon attribute)": [[33, "viser.Icon.PIG_OFF"]], "pilcrow (viser.icon attribute)": [[33, "viser.Icon.PILCROW"]], "pill (viser.icon attribute)": [[33, "viser.Icon.PILL"]], "pills (viser.icon attribute)": [[33, "viser.Icon.PILLS"]], "pill_off (viser.icon attribute)": [[33, "viser.Icon.PILL_OFF"]], "pin (viser.icon attribute)": [[33, "viser.Icon.PIN"]], "ping_pong (viser.icon attribute)": [[33, "viser.Icon.PING_PONG"]], "pinned (viser.icon attribute)": [[33, "viser.Icon.PINNED"]], "pinned_filled (viser.icon attribute)": [[33, "viser.Icon.PINNED_FILLED"]], "pinned_off (viser.icon attribute)": [[33, "viser.Icon.PINNED_OFF"]], "pin_filled (viser.icon attribute)": [[33, "viser.Icon.PIN_FILLED"]], "pizza (viser.icon attribute)": [[33, "viser.Icon.PIZZA"]], "pizza_off (viser.icon attribute)": [[33, "viser.Icon.PIZZA_OFF"]], "placeholder (viser.icon attribute)": [[33, "viser.Icon.PLACEHOLDER"]], "plane (viser.icon attribute)": [[33, "viser.Icon.PLANE"]], "planet (viser.icon attribute)": [[33, "viser.Icon.PLANET"]], "planet_off (viser.icon attribute)": [[33, "viser.Icon.PLANET_OFF"]], "plane_arrival (viser.icon attribute)": [[33, "viser.Icon.PLANE_ARRIVAL"]], "plane_departure (viser.icon attribute)": [[33, "viser.Icon.PLANE_DEPARTURE"]], "plane_inflight (viser.icon attribute)": [[33, "viser.Icon.PLANE_INFLIGHT"]], "plane_off (viser.icon attribute)": [[33, "viser.Icon.PLANE_OFF"]], "plane_tilt (viser.icon attribute)": [[33, "viser.Icon.PLANE_TILT"]], "plant (viser.icon attribute)": [[33, "viser.Icon.PLANT"]], "plant_2 (viser.icon attribute)": [[33, "viser.Icon.PLANT_2"]], "plant_2_off (viser.icon attribute)": [[33, "viser.Icon.PLANT_2_OFF"]], "plant_off (viser.icon attribute)": [[33, "viser.Icon.PLANT_OFF"]], "player_eject (viser.icon attribute)": [[33, "viser.Icon.PLAYER_EJECT"]], "player_eject_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_EJECT_FILLED"]], "player_pause (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PAUSE"]], "player_pause_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PAUSE_FILLED"]], "player_play (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PLAY"]], "player_play_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PLAY_FILLED"]], "player_record (viser.icon attribute)": [[33, "viser.Icon.PLAYER_RECORD"]], "player_record_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_RECORD_FILLED"]], "player_skip_back (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_BACK"]], "player_skip_back_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_BACK_FILLED"]], "player_skip_forward (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_FORWARD"]], "player_skip_forward_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_FORWARD_FILLED"]], "player_stop (viser.icon attribute)": [[33, "viser.Icon.PLAYER_STOP"]], "player_stop_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_STOP_FILLED"]], "player_track_next (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_NEXT"]], "player_track_next_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_NEXT_FILLED"]], "player_track_prev (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_PREV"]], "player_track_prev_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_PREV_FILLED"]], "playlist (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST"]], "playlist_add (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST_ADD"]], "playlist_off (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST_OFF"]], "playlist_x (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST_X"]], "playstation_circle (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_CIRCLE"]], "playstation_square (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_SQUARE"]], "playstation_triangle (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_TRIANGLE"]], "playstation_x (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_X"]], "play_basketball (viser.icon attribute)": [[33, "viser.Icon.PLAY_BASKETBALL"]], "play_card (viser.icon attribute)": [[33, "viser.Icon.PLAY_CARD"]], "play_card_off (viser.icon attribute)": [[33, "viser.Icon.PLAY_CARD_OFF"]], "play_football (viser.icon attribute)": [[33, "viser.Icon.PLAY_FOOTBALL"]], "play_handball (viser.icon attribute)": [[33, "viser.Icon.PLAY_HANDBALL"]], "play_volleyball (viser.icon attribute)": [[33, "viser.Icon.PLAY_VOLLEYBALL"]], "plug (viser.icon attribute)": [[33, "viser.Icon.PLUG"]], "plug_connected (viser.icon attribute)": [[33, "viser.Icon.PLUG_CONNECTED"]], "plug_connected_x (viser.icon attribute)": [[33, "viser.Icon.PLUG_CONNECTED_X"]], "plug_off (viser.icon attribute)": [[33, "viser.Icon.PLUG_OFF"]], "plug_x (viser.icon attribute)": [[33, "viser.Icon.PLUG_X"]], "plus (viser.icon attribute)": [[33, "viser.Icon.PLUS"]], "plus_equal (viser.icon attribute)": [[33, "viser.Icon.PLUS_EQUAL"]], "plus_minus (viser.icon attribute)": [[33, "viser.Icon.PLUS_MINUS"]], "png (viser.icon attribute)": [[33, "viser.Icon.PNG"]], "podium (viser.icon attribute)": [[33, "viser.Icon.PODIUM"]], "podium_off (viser.icon attribute)": [[33, "viser.Icon.PODIUM_OFF"]], "point (viser.icon attribute)": [[33, "viser.Icon.POINT"]], "pointer (viser.icon attribute)": [[33, "viser.Icon.POINTER"]], "pointer_bolt (viser.icon attribute)": [[33, "viser.Icon.POINTER_BOLT"]], "pointer_cancel (viser.icon attribute)": [[33, "viser.Icon.POINTER_CANCEL"]], "pointer_check (viser.icon attribute)": [[33, "viser.Icon.POINTER_CHECK"]], "pointer_code (viser.icon attribute)": [[33, "viser.Icon.POINTER_CODE"]], "pointer_cog (viser.icon attribute)": [[33, "viser.Icon.POINTER_COG"]], "pointer_dollar (viser.icon attribute)": [[33, "viser.Icon.POINTER_DOLLAR"]], "pointer_down (viser.icon attribute)": [[33, "viser.Icon.POINTER_DOWN"]], "pointer_exclamation (viser.icon attribute)": [[33, "viser.Icon.POINTER_EXCLAMATION"]], "pointer_heart (viser.icon attribute)": [[33, "viser.Icon.POINTER_HEART"]], "pointer_minus (viser.icon attribute)": [[33, "viser.Icon.POINTER_MINUS"]], "pointer_off (viser.icon attribute)": [[33, "viser.Icon.POINTER_OFF"]], "pointer_pause (viser.icon attribute)": [[33, "viser.Icon.POINTER_PAUSE"]], "pointer_pin (viser.icon attribute)": [[33, "viser.Icon.POINTER_PIN"]], "pointer_plus (viser.icon attribute)": [[33, "viser.Icon.POINTER_PLUS"]], "pointer_question (viser.icon attribute)": [[33, "viser.Icon.POINTER_QUESTION"]], "pointer_search (viser.icon attribute)": [[33, "viser.Icon.POINTER_SEARCH"]], "pointer_share (viser.icon attribute)": [[33, "viser.Icon.POINTER_SHARE"]], "pointer_star (viser.icon attribute)": [[33, "viser.Icon.POINTER_STAR"]], "pointer_up (viser.icon attribute)": [[33, "viser.Icon.POINTER_UP"]], "pointer_x (viser.icon attribute)": [[33, "viser.Icon.POINTER_X"]], "point_filled (viser.icon attribute)": [[33, "viser.Icon.POINT_FILLED"]], "point_off (viser.icon attribute)": [[33, "viser.Icon.POINT_OFF"]], "pokeball (viser.icon attribute)": [[33, "viser.Icon.POKEBALL"]], "pokeball_off (viser.icon attribute)": [[33, "viser.Icon.POKEBALL_OFF"]], "poker_chip (viser.icon attribute)": [[33, "viser.Icon.POKER_CHIP"]], "polaroid (viser.icon attribute)": [[33, "viser.Icon.POLAROID"]], "polaroid_filled (viser.icon attribute)": [[33, "viser.Icon.POLAROID_FILLED"]], "polygon (viser.icon attribute)": [[33, "viser.Icon.POLYGON"]], "polygon_off (viser.icon attribute)": [[33, "viser.Icon.POLYGON_OFF"]], "poo (viser.icon attribute)": [[33, "viser.Icon.POO"]], "pool (viser.icon attribute)": [[33, "viser.Icon.POOL"]], "pool_off (viser.icon attribute)": [[33, "viser.Icon.POOL_OFF"]], "power (viser.icon attribute)": [[33, "viser.Icon.POWER"]], "pray (viser.icon attribute)": [[33, "viser.Icon.PRAY"]], "premium_rights (viser.icon attribute)": [[33, "viser.Icon.PREMIUM_RIGHTS"]], "prescription (viser.icon attribute)": [[33, "viser.Icon.PRESCRIPTION"]], "presentation (viser.icon attribute)": [[33, "viser.Icon.PRESENTATION"]], "presentation_analytics (viser.icon attribute)": [[33, "viser.Icon.PRESENTATION_ANALYTICS"]], "presentation_off (viser.icon attribute)": [[33, "viser.Icon.PRESENTATION_OFF"]], "printer (viser.icon attribute)": [[33, "viser.Icon.PRINTER"]], "printer_off (viser.icon attribute)": [[33, "viser.Icon.PRINTER_OFF"]], "prism (viser.icon attribute)": [[33, "viser.Icon.PRISM"]], "prism_off (viser.icon attribute)": [[33, "viser.Icon.PRISM_OFF"]], "prism_plus (viser.icon attribute)": [[33, "viser.Icon.PRISM_PLUS"]], "prison (viser.icon attribute)": [[33, "viser.Icon.PRISON"]], "progress (viser.icon attribute)": [[33, "viser.Icon.PROGRESS"]], "progress_alert (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_ALERT"]], "progress_bolt (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_BOLT"]], "progress_check (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_CHECK"]], "progress_down (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_DOWN"]], "progress_help (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_HELP"]], "progress_x (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_X"]], "prompt (viser.icon attribute)": [[33, "viser.Icon.PROMPT"]], "propeller (viser.icon attribute)": [[33, "viser.Icon.PROPELLER"]], "propeller_off (viser.icon attribute)": [[33, "viser.Icon.PROPELLER_OFF"]], "pumpkin_scary (viser.icon attribute)": [[33, "viser.Icon.PUMPKIN_SCARY"]], "puzzle (viser.icon attribute)": [[33, "viser.Icon.PUZZLE"]], "puzzle_2 (viser.icon attribute)": [[33, "viser.Icon.PUZZLE_2"]], "puzzle_filled (viser.icon attribute)": [[33, "viser.Icon.PUZZLE_FILLED"]], "puzzle_off (viser.icon attribute)": [[33, "viser.Icon.PUZZLE_OFF"]], "pyramid (viser.icon attribute)": [[33, "viser.Icon.PYRAMID"]], "pyramid_off (viser.icon attribute)": [[33, "viser.Icon.PYRAMID_OFF"]], "pyramid_plus (viser.icon attribute)": [[33, "viser.Icon.PYRAMID_PLUS"]], "qrcode (viser.icon attribute)": [[33, "viser.Icon.QRCODE"]], "qrcode_off (viser.icon attribute)": [[33, "viser.Icon.QRCODE_OFF"]], "question_mark (viser.icon attribute)": [[33, "viser.Icon.QUESTION_MARK"]], "quote (viser.icon attribute)": [[33, "viser.Icon.QUOTE"]], "quote_off (viser.icon attribute)": [[33, "viser.Icon.QUOTE_OFF"]], "radar (viser.icon attribute)": [[33, "viser.Icon.RADAR"]], "radar_2 (viser.icon attribute)": [[33, "viser.Icon.RADAR_2"]], "radar_off (viser.icon attribute)": [[33, "viser.Icon.RADAR_OFF"]], "radio (viser.icon attribute)": [[33, "viser.Icon.RADIO"]], "radioactive (viser.icon attribute)": [[33, "viser.Icon.RADIOACTIVE"]], "radioactive_filled (viser.icon attribute)": [[33, "viser.Icon.RADIOACTIVE_FILLED"]], "radioactive_off (viser.icon attribute)": [[33, "viser.Icon.RADIOACTIVE_OFF"]], "radio_off (viser.icon attribute)": [[33, "viser.Icon.RADIO_OFF"]], "radius_bottom_left (viser.icon attribute)": [[33, "viser.Icon.RADIUS_BOTTOM_LEFT"]], "radius_bottom_right (viser.icon attribute)": [[33, "viser.Icon.RADIUS_BOTTOM_RIGHT"]], "radius_top_left (viser.icon attribute)": [[33, "viser.Icon.RADIUS_TOP_LEFT"]], "radius_top_right (viser.icon attribute)": [[33, "viser.Icon.RADIUS_TOP_RIGHT"]], "rainbow (viser.icon attribute)": [[33, "viser.Icon.RAINBOW"]], "rainbow_off (viser.icon attribute)": [[33, "viser.Icon.RAINBOW_OFF"]], "rating_12_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_12_PLUS"]], "rating_14_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_14_PLUS"]], "rating_16_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_16_PLUS"]], "rating_18_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_18_PLUS"]], "rating_21_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_21_PLUS"]], "razor (viser.icon attribute)": [[33, "viser.Icon.RAZOR"]], "razor_electric (viser.icon attribute)": [[33, "viser.Icon.RAZOR_ELECTRIC"]], "receipt (viser.icon attribute)": [[33, "viser.Icon.RECEIPT"]], "receipt_2 (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_2"]], "receipt_off (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_OFF"]], "receipt_refund (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_REFUND"]], "receipt_tax (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_TAX"]], "recharging (viser.icon attribute)": [[33, "viser.Icon.RECHARGING"]], "record_mail (viser.icon attribute)": [[33, "viser.Icon.RECORD_MAIL"]], "record_mail_off (viser.icon attribute)": [[33, "viser.Icon.RECORD_MAIL_OFF"]], "rectangle (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE"]], "rectangle_filled (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_FILLED"]], "rectangle_rounded_bottom (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_ROUNDED_BOTTOM"]], "rectangle_rounded_top (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_ROUNDED_TOP"]], "rectangle_vertical (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_VERTICAL"]], "rectangle_vertical_filled (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_VERTICAL_FILLED"]], "rectangular_prism (viser.icon attribute)": [[33, "viser.Icon.RECTANGULAR_PRISM"]], "rectangular_prism_off (viser.icon attribute)": [[33, "viser.Icon.RECTANGULAR_PRISM_OFF"]], "rectangular_prism_plus (viser.icon attribute)": [[33, "viser.Icon.RECTANGULAR_PRISM_PLUS"]], "recycle (viser.icon attribute)": [[33, "viser.Icon.RECYCLE"]], "recycle_off (viser.icon attribute)": [[33, "viser.Icon.RECYCLE_OFF"]], "refresh (viser.icon attribute)": [[33, "viser.Icon.REFRESH"]], "refresh_alert (viser.icon attribute)": [[33, "viser.Icon.REFRESH_ALERT"]], "refresh_dot (viser.icon attribute)": [[33, "viser.Icon.REFRESH_DOT"]], "refresh_off (viser.icon attribute)": [[33, "viser.Icon.REFRESH_OFF"]], "regex (viser.icon attribute)": [[33, "viser.Icon.REGEX"]], "regex_off (viser.icon attribute)": [[33, "viser.Icon.REGEX_OFF"]], "registered (viser.icon attribute)": [[33, "viser.Icon.REGISTERED"]], "relation_many_to_many (viser.icon attribute)": [[33, "viser.Icon.RELATION_MANY_TO_MANY"]], "relation_one_to_many (viser.icon attribute)": [[33, "viser.Icon.RELATION_ONE_TO_MANY"]], "relation_one_to_one (viser.icon attribute)": [[33, "viser.Icon.RELATION_ONE_TO_ONE"]], "reload (viser.icon attribute)": [[33, "viser.Icon.RELOAD"]], "repeat (viser.icon attribute)": [[33, "viser.Icon.REPEAT"]], "repeat_off (viser.icon attribute)": [[33, "viser.Icon.REPEAT_OFF"]], "repeat_once (viser.icon attribute)": [[33, "viser.Icon.REPEAT_ONCE"]], "replace (viser.icon attribute)": [[33, "viser.Icon.REPLACE"]], "replace_filled (viser.icon attribute)": [[33, "viser.Icon.REPLACE_FILLED"]], "replace_off (viser.icon attribute)": [[33, "viser.Icon.REPLACE_OFF"]], "report (viser.icon attribute)": [[33, "viser.Icon.REPORT"]], "report_analytics (viser.icon attribute)": [[33, "viser.Icon.REPORT_ANALYTICS"]], "report_medical (viser.icon attribute)": [[33, "viser.Icon.REPORT_MEDICAL"]], "report_money (viser.icon attribute)": [[33, "viser.Icon.REPORT_MONEY"]], "report_off (viser.icon attribute)": [[33, "viser.Icon.REPORT_OFF"]], "report_search (viser.icon attribute)": [[33, "viser.Icon.REPORT_SEARCH"]], "reserved_line (viser.icon attribute)": [[33, "viser.Icon.RESERVED_LINE"]], "resize (viser.icon attribute)": [[33, "viser.Icon.RESIZE"]], "restore (viser.icon attribute)": [[33, "viser.Icon.RESTORE"]], "rewind_backward_10 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_10"]], "rewind_backward_15 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_15"]], "rewind_backward_20 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_20"]], "rewind_backward_30 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_30"]], "rewind_backward_40 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_40"]], "rewind_backward_5 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_5"]], "rewind_backward_50 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_50"]], "rewind_backward_60 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_60"]], "rewind_forward_10 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_10"]], "rewind_forward_15 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_15"]], "rewind_forward_20 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_20"]], "rewind_forward_30 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_30"]], "rewind_forward_40 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_40"]], "rewind_forward_5 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_5"]], "rewind_forward_50 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_50"]], "rewind_forward_60 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_60"]], "ribbon_health (viser.icon attribute)": [[33, "viser.Icon.RIBBON_HEALTH"]], "rings (viser.icon attribute)": [[33, "viser.Icon.RINGS"]], "ripple (viser.icon attribute)": [[33, "viser.Icon.RIPPLE"]], "ripple_off (viser.icon attribute)": [[33, "viser.Icon.RIPPLE_OFF"]], "road (viser.icon attribute)": [[33, "viser.Icon.ROAD"]], "road_off (viser.icon attribute)": [[33, "viser.Icon.ROAD_OFF"]], "road_sign (viser.icon attribute)": [[33, "viser.Icon.ROAD_SIGN"]], "robot (viser.icon attribute)": [[33, "viser.Icon.ROBOT"]], "robot_off (viser.icon attribute)": [[33, "viser.Icon.ROBOT_OFF"]], "rocket (viser.icon attribute)": [[33, "viser.Icon.ROCKET"]], "rocket_off (viser.icon attribute)": [[33, "viser.Icon.ROCKET_OFF"]], "rollercoaster (viser.icon attribute)": [[33, "viser.Icon.ROLLERCOASTER"]], "rollercoaster_off (viser.icon attribute)": [[33, "viser.Icon.ROLLERCOASTER_OFF"]], "roller_skating (viser.icon attribute)": [[33, "viser.Icon.ROLLER_SKATING"]], "rosette (viser.icon attribute)": [[33, "viser.Icon.ROSETTE"]], "rosette_filled (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_FILLED"]], "rosette_number_0 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_0"]], "rosette_number_1 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_1"]], "rosette_number_2 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_2"]], "rosette_number_3 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_3"]], "rosette_number_4 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_4"]], "rosette_number_5 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_5"]], "rosette_number_6 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_6"]], "rosette_number_7 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_7"]], "rosette_number_8 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_8"]], "rosette_number_9 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_9"]], "rotate (viser.icon attribute)": [[33, "viser.Icon.ROTATE"]], "rotate_2 (viser.icon attribute)": [[33, "viser.Icon.ROTATE_2"]], "rotate_360 (viser.icon attribute)": [[33, "viser.Icon.ROTATE_360"]], "rotate_clockwise (viser.icon attribute)": [[33, "viser.Icon.ROTATE_CLOCKWISE"]], "rotate_clockwise_2 (viser.icon attribute)": [[33, "viser.Icon.ROTATE_CLOCKWISE_2"]], "rotate_dot (viser.icon attribute)": [[33, "viser.Icon.ROTATE_DOT"]], "rotate_rectangle (viser.icon attribute)": [[33, "viser.Icon.ROTATE_RECTANGLE"]], "route (viser.icon attribute)": [[33, "viser.Icon.ROUTE"]], "router (viser.icon attribute)": [[33, "viser.Icon.ROUTER"]], "router_off (viser.icon attribute)": [[33, "viser.Icon.ROUTER_OFF"]], "route_2 (viser.icon attribute)": [[33, "viser.Icon.ROUTE_2"]], "route_off (viser.icon attribute)": [[33, "viser.Icon.ROUTE_OFF"]], "row_insert_bottom (viser.icon attribute)": [[33, "viser.Icon.ROW_INSERT_BOTTOM"]], "row_insert_top (viser.icon attribute)": [[33, "viser.Icon.ROW_INSERT_TOP"]], "row_remove (viser.icon attribute)": [[33, "viser.Icon.ROW_REMOVE"]], "rss (viser.icon attribute)": [[33, "viser.Icon.RSS"]], "rubber_stamp (viser.icon attribute)": [[33, "viser.Icon.RUBBER_STAMP"]], "rubber_stamp_off (viser.icon attribute)": [[33, "viser.Icon.RUBBER_STAMP_OFF"]], "ruler (viser.icon attribute)": [[33, "viser.Icon.RULER"]], "ruler_2 (viser.icon attribute)": [[33, "viser.Icon.RULER_2"]], "ruler_2_off (viser.icon attribute)": [[33, "viser.Icon.RULER_2_OFF"]], "ruler_3 (viser.icon attribute)": [[33, "viser.Icon.RULER_3"]], "ruler_measure (viser.icon attribute)": [[33, "viser.Icon.RULER_MEASURE"]], "ruler_off (viser.icon attribute)": [[33, "viser.Icon.RULER_OFF"]], "run (viser.icon attribute)": [[33, "viser.Icon.RUN"]], "sailboat (viser.icon attribute)": [[33, "viser.Icon.SAILBOAT"]], "sailboat_2 (viser.icon attribute)": [[33, "viser.Icon.SAILBOAT_2"]], "sailboat_off (viser.icon attribute)": [[33, "viser.Icon.SAILBOAT_OFF"]], "salad (viser.icon attribute)": [[33, "viser.Icon.SALAD"]], "salt (viser.icon attribute)": [[33, "viser.Icon.SALT"]], "satellite (viser.icon attribute)": [[33, "viser.Icon.SATELLITE"]], "satellite_off (viser.icon attribute)": [[33, "viser.Icon.SATELLITE_OFF"]], "sausage (viser.icon attribute)": [[33, "viser.Icon.SAUSAGE"]], "scale (viser.icon attribute)": [[33, "viser.Icon.SCALE"]], "scale_off (viser.icon attribute)": [[33, "viser.Icon.SCALE_OFF"]], "scale_outline (viser.icon attribute)": [[33, "viser.Icon.SCALE_OUTLINE"]], "scale_outline_off (viser.icon attribute)": [[33, "viser.Icon.SCALE_OUTLINE_OFF"]], "scan (viser.icon attribute)": [[33, "viser.Icon.SCAN"]], "scan_eye (viser.icon attribute)": [[33, "viser.Icon.SCAN_EYE"]], "schema (viser.icon attribute)": [[33, "viser.Icon.SCHEMA"]], "schema_off (viser.icon attribute)": [[33, "viser.Icon.SCHEMA_OFF"]], "school (viser.icon attribute)": [[33, "viser.Icon.SCHOOL"]], "school_bell (viser.icon attribute)": [[33, "viser.Icon.SCHOOL_BELL"]], "school_off (viser.icon attribute)": [[33, "viser.Icon.SCHOOL_OFF"]], "scissors (viser.icon attribute)": [[33, "viser.Icon.SCISSORS"]], "scissors_off (viser.icon attribute)": [[33, "viser.Icon.SCISSORS_OFF"]], "scooter (viser.icon attribute)": [[33, "viser.Icon.SCOOTER"]], "scooter_electric (viser.icon attribute)": [[33, "viser.Icon.SCOOTER_ELECTRIC"]], "scoreboard (viser.icon attribute)": [[33, "viser.Icon.SCOREBOARD"]], "screenshot (viser.icon attribute)": [[33, "viser.Icon.SCREENSHOT"]], "screen_share (viser.icon attribute)": [[33, "viser.Icon.SCREEN_SHARE"]], "screen_share_off (viser.icon attribute)": [[33, "viser.Icon.SCREEN_SHARE_OFF"]], "scribble (viser.icon attribute)": [[33, "viser.Icon.SCRIBBLE"]], "scribble_off (viser.icon attribute)": [[33, "viser.Icon.SCRIBBLE_OFF"]], "script (viser.icon attribute)": [[33, "viser.Icon.SCRIPT"]], "script_minus (viser.icon attribute)": [[33, "viser.Icon.SCRIPT_MINUS"]], "script_plus (viser.icon attribute)": [[33, "viser.Icon.SCRIPT_PLUS"]], "script_x (viser.icon attribute)": [[33, "viser.Icon.SCRIPT_X"]], "scuba_mask (viser.icon attribute)": [[33, "viser.Icon.SCUBA_MASK"]], "scuba_mask_off (viser.icon attribute)": [[33, "viser.Icon.SCUBA_MASK_OFF"]], "sdk (viser.icon attribute)": [[33, "viser.Icon.SDK"]], "search (viser.icon attribute)": [[33, "viser.Icon.SEARCH"]], "search_off (viser.icon attribute)": [[33, "viser.Icon.SEARCH_OFF"]], "section (viser.icon attribute)": [[33, "viser.Icon.SECTION"]], "section_sign (viser.icon attribute)": [[33, "viser.Icon.SECTION_SIGN"]], "seeding (viser.icon attribute)": [[33, "viser.Icon.SEEDING"]], "seeding_off (viser.icon attribute)": [[33, "viser.Icon.SEEDING_OFF"]], "select (viser.icon attribute)": [[33, "viser.Icon.SELECT"]], "selector (viser.icon attribute)": [[33, "viser.Icon.SELECTOR"]], "select_all (viser.icon attribute)": [[33, "viser.Icon.SELECT_ALL"]], "send (viser.icon attribute)": [[33, "viser.Icon.SEND"]], "send_off (viser.icon attribute)": [[33, "viser.Icon.SEND_OFF"]], "seo (viser.icon attribute)": [[33, "viser.Icon.SEO"]], "separator (viser.icon attribute)": [[33, "viser.Icon.SEPARATOR"]], "separator_horizontal (viser.icon attribute)": [[33, "viser.Icon.SEPARATOR_HORIZONTAL"]], "separator_vertical (viser.icon attribute)": [[33, "viser.Icon.SEPARATOR_VERTICAL"]], "server (viser.icon attribute)": [[33, "viser.Icon.SERVER"]], "server_2 (viser.icon attribute)": [[33, "viser.Icon.SERVER_2"]], "server_bolt (viser.icon attribute)": [[33, "viser.Icon.SERVER_BOLT"]], "server_cog (viser.icon attribute)": [[33, "viser.Icon.SERVER_COG"]], "server_off (viser.icon attribute)": [[33, "viser.Icon.SERVER_OFF"]], "servicemark (viser.icon attribute)": [[33, "viser.Icon.SERVICEMARK"]], "settings (viser.icon attribute)": [[33, "viser.Icon.SETTINGS"]], "settings_2 (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_2"]], "settings_automation (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_AUTOMATION"]], "settings_bolt (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_BOLT"]], "settings_cancel (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_CANCEL"]], "settings_check (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_CHECK"]], "settings_code (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_CODE"]], "settings_cog (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_COG"]], "settings_dollar (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_DOLLAR"]], "settings_down (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_DOWN"]], "settings_exclamation (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_EXCLAMATION"]], "settings_filled (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_FILLED"]], "settings_heart (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_HEART"]], "settings_minus (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_MINUS"]], "settings_off (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_OFF"]], "settings_pause (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_PAUSE"]], "settings_pin (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_PIN"]], "settings_plus (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_PLUS"]], "settings_question (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_QUESTION"]], "settings_search (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_SEARCH"]], "settings_share (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_SHARE"]], "settings_star (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_STAR"]], "settings_up (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_UP"]], "settings_x (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_X"]], "shadow (viser.icon attribute)": [[33, "viser.Icon.SHADOW"]], "shadow_off (viser.icon attribute)": [[33, "viser.Icon.SHADOW_OFF"]], "shape (viser.icon attribute)": [[33, "viser.Icon.SHAPE"]], "shape_2 (viser.icon attribute)": [[33, "viser.Icon.SHAPE_2"]], "shape_3 (viser.icon attribute)": [[33, "viser.Icon.SHAPE_3"]], "shape_off (viser.icon attribute)": [[33, "viser.Icon.SHAPE_OFF"]], "share (viser.icon attribute)": [[33, "viser.Icon.SHARE"]], "share_2 (viser.icon attribute)": [[33, "viser.Icon.SHARE_2"]], "share_3 (viser.icon attribute)": [[33, "viser.Icon.SHARE_3"]], "share_off (viser.icon attribute)": [[33, "viser.Icon.SHARE_OFF"]], "shield (viser.icon attribute)": [[33, "viser.Icon.SHIELD"]], "shield_bolt (viser.icon attribute)": [[33, "viser.Icon.SHIELD_BOLT"]], "shield_cancel (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CANCEL"]], "shield_check (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECK"]], "shield_checkered (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECKERED"]], "shield_checkered_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECKERED_FILLED"]], "shield_check_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECK_FILLED"]], "shield_chevron (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHEVRON"]], "shield_code (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CODE"]], "shield_cog (viser.icon attribute)": [[33, "viser.Icon.SHIELD_COG"]], "shield_dollar (viser.icon attribute)": [[33, "viser.Icon.SHIELD_DOLLAR"]], "shield_down (viser.icon attribute)": [[33, "viser.Icon.SHIELD_DOWN"]], "shield_exclamation (viser.icon attribute)": [[33, "viser.Icon.SHIELD_EXCLAMATION"]], "shield_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_FILLED"]], "shield_half (viser.icon attribute)": [[33, "viser.Icon.SHIELD_HALF"]], "shield_half_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_HALF_FILLED"]], "shield_heart (viser.icon attribute)": [[33, "viser.Icon.SHIELD_HEART"]], "shield_lock (viser.icon attribute)": [[33, "viser.Icon.SHIELD_LOCK"]], "shield_lock_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_LOCK_FILLED"]], "shield_minus (viser.icon attribute)": [[33, "viser.Icon.SHIELD_MINUS"]], "shield_off (viser.icon attribute)": [[33, "viser.Icon.SHIELD_OFF"]], "shield_pause (viser.icon attribute)": [[33, "viser.Icon.SHIELD_PAUSE"]], "shield_pin (viser.icon attribute)": [[33, "viser.Icon.SHIELD_PIN"]], "shield_plus (viser.icon attribute)": [[33, "viser.Icon.SHIELD_PLUS"]], "shield_question (viser.icon attribute)": [[33, "viser.Icon.SHIELD_QUESTION"]], "shield_search (viser.icon attribute)": [[33, "viser.Icon.SHIELD_SEARCH"]], "shield_share (viser.icon attribute)": [[33, "viser.Icon.SHIELD_SHARE"]], "shield_star (viser.icon attribute)": [[33, "viser.Icon.SHIELD_STAR"]], "shield_up (viser.icon attribute)": [[33, "viser.Icon.SHIELD_UP"]], "shield_x (viser.icon attribute)": [[33, "viser.Icon.SHIELD_X"]], "ship (viser.icon attribute)": [[33, "viser.Icon.SHIP"]], "ship_off (viser.icon attribute)": [[33, "viser.Icon.SHIP_OFF"]], "shirt (viser.icon attribute)": [[33, "viser.Icon.SHIRT"]], "shirt_filled (viser.icon attribute)": [[33, "viser.Icon.SHIRT_FILLED"]], "shirt_off (viser.icon attribute)": [[33, "viser.Icon.SHIRT_OFF"]], "shirt_sport (viser.icon attribute)": [[33, "viser.Icon.SHIRT_SPORT"]], "shi_jumping (viser.icon attribute)": [[33, "viser.Icon.SHI_JUMPING"]], "shoe (viser.icon attribute)": [[33, "viser.Icon.SHOE"]], "shoe_off (viser.icon attribute)": [[33, "viser.Icon.SHOE_OFF"]], "shopping_bag (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_BAG"]], "shopping_cart (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART"]], "shopping_cart_discount (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_DISCOUNT"]], "shopping_cart_off (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_OFF"]], "shopping_cart_plus (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_PLUS"]], "shopping_cart_x (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_X"]], "shovel (viser.icon attribute)": [[33, "viser.Icon.SHOVEL"]], "shredder (viser.icon attribute)": [[33, "viser.Icon.SHREDDER"]], "signal_2g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_2G"]], "signal_3g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_3G"]], "signal_4g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_4G"]], "signal_4g_plus (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_4G_PLUS"]], "signal_5g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_5G"]], "signal_6g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_6G"]], "signal_e (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_E"]], "signal_g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_G"]], "signal_h (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_H"]], "signal_h_plus (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_H_PLUS"]], "signal_lte (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_LTE"]], "signature (viser.icon attribute)": [[33, "viser.Icon.SIGNATURE"]], "signature_off (viser.icon attribute)": [[33, "viser.Icon.SIGNATURE_OFF"]], "sign_left (viser.icon attribute)": [[33, "viser.Icon.SIGN_LEFT"]], "sign_left_filled (viser.icon attribute)": [[33, "viser.Icon.SIGN_LEFT_FILLED"]], "sign_right (viser.icon attribute)": [[33, "viser.Icon.SIGN_RIGHT"]], "sign_right_filled (viser.icon attribute)": [[33, "viser.Icon.SIGN_RIGHT_FILLED"]], "sitemap (viser.icon attribute)": [[33, "viser.Icon.SITEMAP"]], "sitemap_off (viser.icon attribute)": [[33, "viser.Icon.SITEMAP_OFF"]], "skateboard (viser.icon attribute)": [[33, "viser.Icon.SKATEBOARD"]], "skateboarding (viser.icon attribute)": [[33, "viser.Icon.SKATEBOARDING"]], "skateboard_off (viser.icon attribute)": [[33, "viser.Icon.SKATEBOARD_OFF"]], "skull (viser.icon attribute)": [[33, "viser.Icon.SKULL"]], "slash (viser.icon attribute)": [[33, "viser.Icon.SLASH"]], "slashes (viser.icon attribute)": [[33, "viser.Icon.SLASHES"]], "sleigh (viser.icon attribute)": [[33, "viser.Icon.SLEIGH"]], "slice (viser.icon attribute)": [[33, "viser.Icon.SLICE"]], "slideshow (viser.icon attribute)": [[33, "viser.Icon.SLIDESHOW"]], "smart_home (viser.icon attribute)": [[33, "viser.Icon.SMART_HOME"]], "smart_home_off (viser.icon attribute)": [[33, "viser.Icon.SMART_HOME_OFF"]], "smoking (viser.icon attribute)": [[33, "viser.Icon.SMOKING"]], "smoking_no (viser.icon attribute)": [[33, "viser.Icon.SMOKING_NO"]], "snowflake (viser.icon attribute)": [[33, "viser.Icon.SNOWFLAKE"]], "snowflake_off (viser.icon attribute)": [[33, "viser.Icon.SNOWFLAKE_OFF"]], "snowman (viser.icon attribute)": [[33, "viser.Icon.SNOWMAN"]], "soccer_field (viser.icon attribute)": [[33, "viser.Icon.SOCCER_FIELD"]], "social (viser.icon attribute)": [[33, "viser.Icon.SOCIAL"]], "social_off (viser.icon attribute)": [[33, "viser.Icon.SOCIAL_OFF"]], "sock (viser.icon attribute)": [[33, "viser.Icon.SOCK"]], "sofa (viser.icon attribute)": [[33, "viser.Icon.SOFA"]], "sofa_off (viser.icon attribute)": [[33, "viser.Icon.SOFA_OFF"]], "solar_panel (viser.icon attribute)": [[33, "viser.Icon.SOLAR_PANEL"]], "solar_panel_2 (viser.icon attribute)": [[33, "viser.Icon.SOLAR_PANEL_2"]], "sort_0_9 (viser.icon attribute)": [[33, "viser.Icon.SORT_0_9"]], "sort_9_0 (viser.icon attribute)": [[33, "viser.Icon.SORT_9_0"]], "sort_ascending (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING"]], "sort_ascending_2 (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING_2"]], "sort_ascending_letters (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING_LETTERS"]], "sort_ascending_numbers (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING_NUMBERS"]], "sort_a_z (viser.icon attribute)": [[33, "viser.Icon.SORT_A_Z"]], "sort_descending (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING"]], "sort_descending_2 (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING_2"]], "sort_descending_letters (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING_LETTERS"]], "sort_descending_numbers (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING_NUMBERS"]], "sort_z_a (viser.icon attribute)": [[33, "viser.Icon.SORT_Z_A"]], "sos (viser.icon attribute)": [[33, "viser.Icon.SOS"]], "soup (viser.icon attribute)": [[33, "viser.Icon.SOUP"]], "soup_off (viser.icon attribute)": [[33, "viser.Icon.SOUP_OFF"]], "source_code (viser.icon attribute)": [[33, "viser.Icon.SOURCE_CODE"]], "space (viser.icon attribute)": [[33, "viser.Icon.SPACE"]], "space_off (viser.icon attribute)": [[33, "viser.Icon.SPACE_OFF"]], "spacing_horizontal (viser.icon attribute)": [[33, "viser.Icon.SPACING_HORIZONTAL"]], "spacing_vertical (viser.icon attribute)": [[33, "viser.Icon.SPACING_VERTICAL"]], "spade (viser.icon attribute)": [[33, "viser.Icon.SPADE"]], "spade_filled (viser.icon attribute)": [[33, "viser.Icon.SPADE_FILLED"]], "sparkles (viser.icon attribute)": [[33, "viser.Icon.SPARKLES"]], "speakerphone (viser.icon attribute)": [[33, "viser.Icon.SPEAKERPHONE"]], "speedboat (viser.icon attribute)": [[33, "viser.Icon.SPEEDBOAT"]], "sphere (viser.icon attribute)": [[33, "viser.Icon.SPHERE"]], "sphere_off (viser.icon attribute)": [[33, "viser.Icon.SPHERE_OFF"]], "sphere_plus (viser.icon attribute)": [[33, "viser.Icon.SPHERE_PLUS"]], "spider (viser.icon attribute)": [[33, "viser.Icon.SPIDER"]], "spiral (viser.icon attribute)": [[33, "viser.Icon.SPIRAL"]], "spiral_off (viser.icon attribute)": [[33, "viser.Icon.SPIRAL_OFF"]], "sport_billard (viser.icon attribute)": [[33, "viser.Icon.SPORT_BILLARD"]], "spray (viser.icon attribute)": [[33, "viser.Icon.SPRAY"]], "spy (viser.icon attribute)": [[33, "viser.Icon.SPY"]], "spy_off (viser.icon attribute)": [[33, "viser.Icon.SPY_OFF"]], "sql (viser.icon attribute)": [[33, "viser.Icon.SQL"]], "square (viser.icon attribute)": [[33, "viser.Icon.SQUARE"]], "squares_diagonal (viser.icon attribute)": [[33, "viser.Icon.SQUARES_DIAGONAL"]], "squares_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARES_FILLED"]], "square_0_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_0_FILLED"]], "square_1_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_1_FILLED"]], "square_2_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_2_FILLED"]], "square_3_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_3_FILLED"]], "square_4_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_4_FILLED"]], "square_5_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_5_FILLED"]], "square_6_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_6_FILLED"]], "square_7_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_7_FILLED"]], "square_8_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_8_FILLED"]], "square_9_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_9_FILLED"]], "square_arrow_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_DOWN"]], "square_arrow_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_LEFT"]], "square_arrow_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_RIGHT"]], "square_arrow_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_UP"]], "square_asterisk (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ASTERISK"]], "square_check (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHECK"]], "square_check_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHECK_FILLED"]], "square_chevrons_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_DOWN"]], "square_chevrons_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_LEFT"]], "square_chevrons_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_RIGHT"]], "square_chevrons_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_UP"]], "square_chevron_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_DOWN"]], "square_chevron_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_LEFT"]], "square_chevron_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_RIGHT"]], "square_chevron_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_UP"]], "square_dot (viser.icon attribute)": [[33, "viser.Icon.SQUARE_DOT"]], "square_f0 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F0"]], "square_f0_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F0_FILLED"]], "square_f1 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F1"]], "square_f1_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F1_FILLED"]], "square_f2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F2"]], "square_f2_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F2_FILLED"]], "square_f3 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F3"]], "square_f3_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F3_FILLED"]], "square_f4 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F4"]], "square_f4_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F4_FILLED"]], "square_f5 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F5"]], "square_f5_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F5_FILLED"]], "square_f6 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F6"]], "square_f6_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F6_FILLED"]], "square_f7 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F7"]], "square_f7_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F7_FILLED"]], "square_f8 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F8"]], "square_f8_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F8_FILLED"]], "square_f9 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F9"]], "square_f9_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F9_FILLED"]], "square_forbid (viser.icon attribute)": [[33, "viser.Icon.SQUARE_FORBID"]], "square_forbid_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_FORBID_2"]], "square_half (viser.icon attribute)": [[33, "viser.Icon.SQUARE_HALF"]], "square_key (viser.icon attribute)": [[33, "viser.Icon.SQUARE_KEY"]], "square_letter_a (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_A"]], "square_letter_b (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_B"]], "square_letter_c (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_C"]], "square_letter_d (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_D"]], "square_letter_e (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_E"]], "square_letter_f (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_F"]], "square_letter_g (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_G"]], "square_letter_h (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_H"]], "square_letter_i (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_I"]], "square_letter_j (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_J"]], "square_letter_k (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_K"]], "square_letter_l (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_L"]], "square_letter_m (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_M"]], "square_letter_n (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_N"]], "square_letter_o (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_O"]], "square_letter_p (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_P"]], "square_letter_q (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_Q"]], "square_letter_r (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_R"]], "square_letter_s (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_S"]], "square_letter_t (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_T"]], "square_letter_u (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_U"]], "square_letter_v (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_V"]], "square_letter_w (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_W"]], "square_letter_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_X"]], "square_letter_y (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_Y"]], "square_letter_z (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_Z"]], "square_minus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_MINUS"]], "square_number_0 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_0"]], "square_number_1 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_1"]], "square_number_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_2"]], "square_number_3 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_3"]], "square_number_4 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_4"]], "square_number_5 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_5"]], "square_number_6 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_6"]], "square_number_7 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_7"]], "square_number_8 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_8"]], "square_number_9 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_9"]], "square_off (viser.icon attribute)": [[33, "viser.Icon.SQUARE_OFF"]], "square_plus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_PLUS"]], "square_root (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROOT"]], "square_root_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROOT_2"]], "square_rotated (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED"]], "square_rotated_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_FILLED"]], "square_rotated_forbid (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_FORBID"]], "square_rotated_forbid_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_FORBID_2"]], "square_rotated_off (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_OFF"]], "square_rounded (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED"]], "square_rounded_arrow_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN"]], "square_rounded_arrow_down_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN_FILLED"]], "square_rounded_arrow_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT"]], "square_rounded_arrow_left_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT_FILLED"]], "square_rounded_arrow_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT"]], "square_rounded_arrow_right_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT_FILLED"]], "square_rounded_arrow_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_UP"]], "square_rounded_arrow_up_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_UP_FILLED"]], "square_rounded_check (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHECK"]], "square_rounded_check_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHECK_FILLED"]], "square_rounded_chevrons_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN"]], "square_rounded_chevrons_down_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"]], "square_rounded_chevrons_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT"]], "square_rounded_chevrons_left_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"]], "square_rounded_chevrons_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT"]], "square_rounded_chevrons_right_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"]], "square_rounded_chevrons_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP"]], "square_rounded_chevrons_up_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP_FILLED"]], "square_rounded_chevron_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN"]], "square_rounded_chevron_down_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"]], "square_rounded_chevron_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT"]], "square_rounded_chevron_left_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"]], "square_rounded_chevron_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT"]], "square_rounded_chevron_right_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"]], "square_rounded_chevron_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP"]], "square_rounded_chevron_up_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP_FILLED"]], "square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_FILLED"]], "square_rounded_letter_a (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_A"]], "square_rounded_letter_b (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_B"]], "square_rounded_letter_c (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_C"]], "square_rounded_letter_d (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_D"]], "square_rounded_letter_e (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_E"]], "square_rounded_letter_f (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_F"]], "square_rounded_letter_g (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_G"]], "square_rounded_letter_h (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_H"]], "square_rounded_letter_i (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_I"]], "square_rounded_letter_j (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_J"]], "square_rounded_letter_k (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_K"]], "square_rounded_letter_l (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_L"]], "square_rounded_letter_m (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_M"]], "square_rounded_letter_n (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_N"]], "square_rounded_letter_o (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_O"]], "square_rounded_letter_p (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_P"]], "square_rounded_letter_q (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_Q"]], "square_rounded_letter_r (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_R"]], "square_rounded_letter_s (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_S"]], "square_rounded_letter_t (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_T"]], "square_rounded_letter_u (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_U"]], "square_rounded_letter_v (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_V"]], "square_rounded_letter_w (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_W"]], "square_rounded_letter_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_X"]], "square_rounded_letter_y (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_Y"]], "square_rounded_letter_z (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_Z"]], "square_rounded_minus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_MINUS"]], "square_rounded_number_0 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_0"]], "square_rounded_number_0_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_0_FILLED"]], "square_rounded_number_1 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_1"]], "square_rounded_number_1_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_1_FILLED"]], "square_rounded_number_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_2"]], "square_rounded_number_2_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_2_FILLED"]], "square_rounded_number_3 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_3"]], "square_rounded_number_3_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_3_FILLED"]], "square_rounded_number_4 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_4"]], "square_rounded_number_4_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_4_FILLED"]], "square_rounded_number_5 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_5"]], "square_rounded_number_5_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_5_FILLED"]], "square_rounded_number_6 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_6"]], "square_rounded_number_6_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_6_FILLED"]], "square_rounded_number_7 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_7"]], "square_rounded_number_7_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_7_FILLED"]], "square_rounded_number_8 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_8"]], "square_rounded_number_8_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_8_FILLED"]], "square_rounded_number_9 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_9"]], "square_rounded_number_9_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_9_FILLED"]], "square_rounded_plus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_PLUS"]], "square_rounded_plus_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_PLUS_FILLED"]], "square_rounded_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_X"]], "square_rounded_x_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_X_FILLED"]], "square_toggle (viser.icon attribute)": [[33, "viser.Icon.SQUARE_TOGGLE"]], "square_toggle_horizontal (viser.icon attribute)": [[33, "viser.Icon.SQUARE_TOGGLE_HORIZONTAL"]], "square_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_X"]], "stack (viser.icon attribute)": [[33, "viser.Icon.STACK"]], "stack_2 (viser.icon attribute)": [[33, "viser.Icon.STACK_2"]], "stack_3 (viser.icon attribute)": [[33, "viser.Icon.STACK_3"]], "stack_pop (viser.icon attribute)": [[33, "viser.Icon.STACK_POP"]], "stack_push (viser.icon attribute)": [[33, "viser.Icon.STACK_PUSH"]], "stairs (viser.icon attribute)": [[33, "viser.Icon.STAIRS"]], "stairs_down (viser.icon attribute)": [[33, "viser.Icon.STAIRS_DOWN"]], "stairs_up (viser.icon attribute)": [[33, "viser.Icon.STAIRS_UP"]], "star (viser.icon attribute)": [[33, "viser.Icon.STAR"]], "stars (viser.icon attribute)": [[33, "viser.Icon.STARS"]], "stars_filled (viser.icon attribute)": [[33, "viser.Icon.STARS_FILLED"]], "stars_off (viser.icon attribute)": [[33, "viser.Icon.STARS_OFF"]], "star_filled (viser.icon attribute)": [[33, "viser.Icon.STAR_FILLED"]], "star_half (viser.icon attribute)": [[33, "viser.Icon.STAR_HALF"]], "star_half_filled (viser.icon attribute)": [[33, "viser.Icon.STAR_HALF_FILLED"]], "star_off (viser.icon attribute)": [[33, "viser.Icon.STAR_OFF"]], "status_change (viser.icon attribute)": [[33, "viser.Icon.STATUS_CHANGE"]], "steam (viser.icon attribute)": [[33, "viser.Icon.STEAM"]], "steering_wheel (viser.icon attribute)": [[33, "viser.Icon.STEERING_WHEEL"]], "steering_wheel_off (viser.icon attribute)": [[33, "viser.Icon.STEERING_WHEEL_OFF"]], "step_into (viser.icon attribute)": [[33, "viser.Icon.STEP_INTO"]], "step_out (viser.icon attribute)": [[33, "viser.Icon.STEP_OUT"]], "stereo_glasses (viser.icon attribute)": [[33, "viser.Icon.STEREO_GLASSES"]], "stethoscope (viser.icon attribute)": [[33, "viser.Icon.STETHOSCOPE"]], "stethoscope_off (viser.icon attribute)": [[33, "viser.Icon.STETHOSCOPE_OFF"]], "sticker (viser.icon attribute)": [[33, "viser.Icon.STICKER"]], "storm (viser.icon attribute)": [[33, "viser.Icon.STORM"]], "storm_off (viser.icon attribute)": [[33, "viser.Icon.STORM_OFF"]], "stretching (viser.icon attribute)": [[33, "viser.Icon.STRETCHING"]], "stretching_2 (viser.icon attribute)": [[33, "viser.Icon.STRETCHING_2"]], "strikethrough (viser.icon attribute)": [[33, "viser.Icon.STRIKETHROUGH"]], "submarine (viser.icon attribute)": [[33, "viser.Icon.SUBMARINE"]], "subscript (viser.icon attribute)": [[33, "viser.Icon.SUBSCRIPT"]], "subtask (viser.icon attribute)": [[33, "viser.Icon.SUBTASK"]], "sum (viser.icon attribute)": [[33, "viser.Icon.SUM"]], "sum_off (viser.icon attribute)": [[33, "viser.Icon.SUM_OFF"]], "sun (viser.icon attribute)": [[33, "viser.Icon.SUN"]], "sunglasses (viser.icon attribute)": [[33, "viser.Icon.SUNGLASSES"]], "sunrise (viser.icon attribute)": [[33, "viser.Icon.SUNRISE"]], "sunset (viser.icon attribute)": [[33, "viser.Icon.SUNSET"]], "sunset_2 (viser.icon attribute)": [[33, "viser.Icon.SUNSET_2"]], "sun_filled (viser.icon attribute)": [[33, "viser.Icon.SUN_FILLED"]], "sun_high (viser.icon attribute)": [[33, "viser.Icon.SUN_HIGH"]], "sun_low (viser.icon attribute)": [[33, "viser.Icon.SUN_LOW"]], "sun_moon (viser.icon attribute)": [[33, "viser.Icon.SUN_MOON"]], "sun_off (viser.icon attribute)": [[33, "viser.Icon.SUN_OFF"]], "sun_wind (viser.icon attribute)": [[33, "viser.Icon.SUN_WIND"]], "superscript (viser.icon attribute)": [[33, "viser.Icon.SUPERSCRIPT"]], "svg (viser.icon attribute)": [[33, "viser.Icon.SVG"]], "swimming (viser.icon attribute)": [[33, "viser.Icon.SWIMMING"]], "swipe (viser.icon attribute)": [[33, "viser.Icon.SWIPE"]], "switch (viser.icon attribute)": [[33, "viser.Icon.SWITCH"]], "switch_2 (viser.icon attribute)": [[33, "viser.Icon.SWITCH_2"]], "switch_3 (viser.icon attribute)": [[33, "viser.Icon.SWITCH_3"]], "switch_horizontal (viser.icon attribute)": [[33, "viser.Icon.SWITCH_HORIZONTAL"]], "switch_vertical (viser.icon attribute)": [[33, "viser.Icon.SWITCH_VERTICAL"]], "sword (viser.icon attribute)": [[33, "viser.Icon.SWORD"]], "swords (viser.icon attribute)": [[33, "viser.Icon.SWORDS"]], "sword_off (viser.icon attribute)": [[33, "viser.Icon.SWORD_OFF"]], "s_turn_down (viser.icon attribute)": [[33, "viser.Icon.S_TURN_DOWN"]], "s_turn_left (viser.icon attribute)": [[33, "viser.Icon.S_TURN_LEFT"]], "s_turn_right (viser.icon attribute)": [[33, "viser.Icon.S_TURN_RIGHT"]], "s_turn_up (viser.icon attribute)": [[33, "viser.Icon.S_TURN_UP"]], "table (viser.icon attribute)": [[33, "viser.Icon.TABLE"]], "table_alias (viser.icon attribute)": [[33, "viser.Icon.TABLE_ALIAS"]], "table_column (viser.icon attribute)": [[33, "viser.Icon.TABLE_COLUMN"]], "table_down (viser.icon attribute)": [[33, "viser.Icon.TABLE_DOWN"]], "table_export (viser.icon attribute)": [[33, "viser.Icon.TABLE_EXPORT"]], "table_filled (viser.icon attribute)": [[33, "viser.Icon.TABLE_FILLED"]], "table_heart (viser.icon attribute)": [[33, "viser.Icon.TABLE_HEART"]], "table_import (viser.icon attribute)": [[33, "viser.Icon.TABLE_IMPORT"]], "table_minus (viser.icon attribute)": [[33, "viser.Icon.TABLE_MINUS"]], "table_off (viser.icon attribute)": [[33, "viser.Icon.TABLE_OFF"]], "table_options (viser.icon attribute)": [[33, "viser.Icon.TABLE_OPTIONS"]], "table_plus (viser.icon attribute)": [[33, "viser.Icon.TABLE_PLUS"]], "table_row (viser.icon attribute)": [[33, "viser.Icon.TABLE_ROW"]], "table_share (viser.icon attribute)": [[33, "viser.Icon.TABLE_SHARE"]], "table_shortcut (viser.icon attribute)": [[33, "viser.Icon.TABLE_SHORTCUT"]], "tag (viser.icon attribute)": [[33, "viser.Icon.TAG"]], "tags (viser.icon attribute)": [[33, "viser.Icon.TAGS"]], "tags_off (viser.icon attribute)": [[33, "viser.Icon.TAGS_OFF"]], "tag_off (viser.icon attribute)": [[33, "viser.Icon.TAG_OFF"]], "tallymarks (viser.icon attribute)": [[33, "viser.Icon.TALLYMARKS"]], "tallymark_1 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_1"]], "tallymark_2 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_2"]], "tallymark_3 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_3"]], "tallymark_4 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_4"]], "tank (viser.icon attribute)": [[33, "viser.Icon.TANK"]], "target (viser.icon attribute)": [[33, "viser.Icon.TARGET"]], "target_arrow (viser.icon attribute)": [[33, "viser.Icon.TARGET_ARROW"]], "target_off (viser.icon attribute)": [[33, "viser.Icon.TARGET_OFF"]], "teapot (viser.icon attribute)": [[33, "viser.Icon.TEAPOT"]], "telescope (viser.icon attribute)": [[33, "viser.Icon.TELESCOPE"]], "telescope_off (viser.icon attribute)": [[33, "viser.Icon.TELESCOPE_OFF"]], "temperature (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE"]], "temperature_celsius (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_CELSIUS"]], "temperature_fahrenheit (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_FAHRENHEIT"]], "temperature_minus (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_MINUS"]], "temperature_off (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_OFF"]], "temperature_plus (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_PLUS"]], "template (viser.icon attribute)": [[33, "viser.Icon.TEMPLATE"]], "template_off (viser.icon attribute)": [[33, "viser.Icon.TEMPLATE_OFF"]], "tent (viser.icon attribute)": [[33, "viser.Icon.TENT"]], "tent_off (viser.icon attribute)": [[33, "viser.Icon.TENT_OFF"]], "terminal (viser.icon attribute)": [[33, "viser.Icon.TERMINAL"]], "terminal_2 (viser.icon attribute)": [[33, "viser.Icon.TERMINAL_2"]], "test_pipe (viser.icon attribute)": [[33, "viser.Icon.TEST_PIPE"]], "test_pipe_2 (viser.icon attribute)": [[33, "viser.Icon.TEST_PIPE_2"]], "test_pipe_off (viser.icon attribute)": [[33, "viser.Icon.TEST_PIPE_OFF"]], "tex (viser.icon attribute)": [[33, "viser.Icon.TEX"]], "texture (viser.icon attribute)": [[33, "viser.Icon.TEXTURE"]], "text_caption (viser.icon attribute)": [[33, "viser.Icon.TEXT_CAPTION"]], "text_color (viser.icon attribute)": [[33, "viser.Icon.TEXT_COLOR"]], "text_decrease (viser.icon attribute)": [[33, "viser.Icon.TEXT_DECREASE"]], "text_direction_ltr (viser.icon attribute)": [[33, "viser.Icon.TEXT_DIRECTION_LTR"]], "text_direction_rtl (viser.icon attribute)": [[33, "viser.Icon.TEXT_DIRECTION_RTL"]], "text_increase (viser.icon attribute)": [[33, "viser.Icon.TEXT_INCREASE"]], "text_orientation (viser.icon attribute)": [[33, "viser.Icon.TEXT_ORIENTATION"]], "text_plus (viser.icon attribute)": [[33, "viser.Icon.TEXT_PLUS"]], "text_recognition (viser.icon attribute)": [[33, "viser.Icon.TEXT_RECOGNITION"]], "text_resize (viser.icon attribute)": [[33, "viser.Icon.TEXT_RESIZE"]], "text_size (viser.icon attribute)": [[33, "viser.Icon.TEXT_SIZE"]], "text_spellcheck (viser.icon attribute)": [[33, "viser.Icon.TEXT_SPELLCHECK"]], "text_wrap (viser.icon attribute)": [[33, "viser.Icon.TEXT_WRAP"]], "text_wrap_disabled (viser.icon attribute)": [[33, "viser.Icon.TEXT_WRAP_DISABLED"]], "theater (viser.icon attribute)": [[33, "viser.Icon.THEATER"]], "thermometer (viser.icon attribute)": [[33, "viser.Icon.THERMOMETER"]], "thumb_down (viser.icon attribute)": [[33, "viser.Icon.THUMB_DOWN"]], "thumb_down_filled (viser.icon attribute)": [[33, "viser.Icon.THUMB_DOWN_FILLED"]], "thumb_down_off (viser.icon attribute)": [[33, "viser.Icon.THUMB_DOWN_OFF"]], "thumb_up (viser.icon attribute)": [[33, "viser.Icon.THUMB_UP"]], "thumb_up_filled (viser.icon attribute)": [[33, "viser.Icon.THUMB_UP_FILLED"]], "thumb_up_off (viser.icon attribute)": [[33, "viser.Icon.THUMB_UP_OFF"]], "ticket (viser.icon attribute)": [[33, "viser.Icon.TICKET"]], "ticket_off (viser.icon attribute)": [[33, "viser.Icon.TICKET_OFF"]], "tic_tac (viser.icon attribute)": [[33, "viser.Icon.TIC_TAC"]], "tie (viser.icon attribute)": [[33, "viser.Icon.TIE"]], "tilde (viser.icon attribute)": [[33, "viser.Icon.TILDE"]], "tilt_shift (viser.icon attribute)": [[33, "viser.Icon.TILT_SHIFT"]], "tilt_shift_off (viser.icon attribute)": [[33, "viser.Icon.TILT_SHIFT_OFF"]], "timeline (viser.icon attribute)": [[33, "viser.Icon.TIMELINE"]], "timeline_event (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT"]], "timeline_event_exclamation (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_EXCLAMATION"]], "timeline_event_minus (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_MINUS"]], "timeline_event_plus (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_PLUS"]], "timeline_event_text (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_TEXT"]], "timeline_event_x (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_X"]], "time_duration_0 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_0"]], "time_duration_10 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_10"]], "time_duration_15 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_15"]], "time_duration_30 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_30"]], "time_duration_45 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_45"]], "time_duration_5 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_5"]], "time_duration_60 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_60"]], "time_duration_90 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_90"]], "time_duration_off (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_OFF"]], "tir (viser.icon attribute)": [[33, "viser.Icon.TIR"]], "toggle_left (viser.icon attribute)": [[33, "viser.Icon.TOGGLE_LEFT"]], "toggle_right (viser.icon attribute)": [[33, "viser.Icon.TOGGLE_RIGHT"]], "toilet_paper (viser.icon attribute)": [[33, "viser.Icon.TOILET_PAPER"]], "toilet_paper_off (viser.icon attribute)": [[33, "viser.Icon.TOILET_PAPER_OFF"]], "toml (viser.icon attribute)": [[33, "viser.Icon.TOML"]], "tool (viser.icon attribute)": [[33, "viser.Icon.TOOL"]], "tools (viser.icon attribute)": [[33, "viser.Icon.TOOLS"]], "tools_kitchen (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN"]], "tools_kitchen_2 (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN_2"]], "tools_kitchen_2_off (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN_2_OFF"]], "tools_kitchen_off (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN_OFF"]], "tools_off (viser.icon attribute)": [[33, "viser.Icon.TOOLS_OFF"]], "tooltip (viser.icon attribute)": [[33, "viser.Icon.TOOLTIP"]], "topology_bus (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_BUS"]], "topology_complex (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_COMPLEX"]], "topology_full (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_FULL"]], "topology_full_hierarchy (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_FULL_HIERARCHY"]], "topology_ring (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_RING"]], "topology_ring_2 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_RING_2"]], "topology_ring_3 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_RING_3"]], "topology_star (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR"]], "topology_star_2 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_2"]], "topology_star_3 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_3"]], "topology_star_ring (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_RING"]], "topology_star_ring_2 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_RING_2"]], "topology_star_ring_3 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_RING_3"]], "torii (viser.icon attribute)": [[33, "viser.Icon.TORII"]], "tornado (viser.icon attribute)": [[33, "viser.Icon.TORNADO"]], "tournament (viser.icon attribute)": [[33, "viser.Icon.TOURNAMENT"]], "tower (viser.icon attribute)": [[33, "viser.Icon.TOWER"]], "tower_off (viser.icon attribute)": [[33, "viser.Icon.TOWER_OFF"]], "track (viser.icon attribute)": [[33, "viser.Icon.TRACK"]], "tractor (viser.icon attribute)": [[33, "viser.Icon.TRACTOR"]], "trademark (viser.icon attribute)": [[33, "viser.Icon.TRADEMARK"]], "traffic_cone (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_CONE"]], "traffic_cone_off (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_CONE_OFF"]], "traffic_lights (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_LIGHTS"]], "traffic_lights_off (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_LIGHTS_OFF"]], "train (viser.icon attribute)": [[33, "viser.Icon.TRAIN"]], "transfer_in (viser.icon attribute)": [[33, "viser.Icon.TRANSFER_IN"]], "transfer_out (viser.icon attribute)": [[33, "viser.Icon.TRANSFER_OUT"]], "transform (viser.icon attribute)": [[33, "viser.Icon.TRANSFORM"]], "transform_filled (viser.icon attribute)": [[33, "viser.Icon.TRANSFORM_FILLED"]], "transition_bottom (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_BOTTOM"]], "transition_left (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_LEFT"]], "transition_right (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_RIGHT"]], "transition_top (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_TOP"]], "trash (viser.icon attribute)": [[33, "viser.Icon.TRASH"]], "trash_filled (viser.icon attribute)": [[33, "viser.Icon.TRASH_FILLED"]], "trash_off (viser.icon attribute)": [[33, "viser.Icon.TRASH_OFF"]], "trash_x (viser.icon attribute)": [[33, "viser.Icon.TRASH_X"]], "trash_x_filled (viser.icon attribute)": [[33, "viser.Icon.TRASH_X_FILLED"]], "treadmill (viser.icon attribute)": [[33, "viser.Icon.TREADMILL"]], "tree (viser.icon attribute)": [[33, "viser.Icon.TREE"]], "trees (viser.icon attribute)": [[33, "viser.Icon.TREES"]], "trekking (viser.icon attribute)": [[33, "viser.Icon.TREKKING"]], "trending_down (viser.icon attribute)": [[33, "viser.Icon.TRENDING_DOWN"]], "trending_down_2 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_DOWN_2"]], "trending_down_3 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_DOWN_3"]], "trending_up (viser.icon attribute)": [[33, "viser.Icon.TRENDING_UP"]], "trending_up_2 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_UP_2"]], "trending_up_3 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_UP_3"]], "triangle (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE"]], "triangles (viser.icon attribute)": [[33, "viser.Icon.TRIANGLES"]], "triangle_filled (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_FILLED"]], "triangle_inverted (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_INVERTED"]], "triangle_inverted_filled (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_INVERTED_FILLED"]], "triangle_off (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_OFF"]], "triangle_square_circle (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_SQUARE_CIRCLE"]], "trident (viser.icon attribute)": [[33, "viser.Icon.TRIDENT"]], "trolley (viser.icon attribute)": [[33, "viser.Icon.TROLLEY"]], "trophy (viser.icon attribute)": [[33, "viser.Icon.TROPHY"]], "trophy_filled (viser.icon attribute)": [[33, "viser.Icon.TROPHY_FILLED"]], "trophy_off (viser.icon attribute)": [[33, "viser.Icon.TROPHY_OFF"]], "trowel (viser.icon attribute)": [[33, "viser.Icon.TROWEL"]], "truck (viser.icon attribute)": [[33, "viser.Icon.TRUCK"]], "truck_delivery (viser.icon attribute)": [[33, "viser.Icon.TRUCK_DELIVERY"]], "truck_loading (viser.icon attribute)": [[33, "viser.Icon.TRUCK_LOADING"]], "truck_off (viser.icon attribute)": [[33, "viser.Icon.TRUCK_OFF"]], "truck_return (viser.icon attribute)": [[33, "viser.Icon.TRUCK_RETURN"]], "txt (viser.icon attribute)": [[33, "viser.Icon.TXT"]], "typography (viser.icon attribute)": [[33, "viser.Icon.TYPOGRAPHY"]], "typography_off (viser.icon attribute)": [[33, "viser.Icon.TYPOGRAPHY_OFF"]], "ufo (viser.icon attribute)": [[33, "viser.Icon.UFO"]], "ufo_off (viser.icon attribute)": [[33, "viser.Icon.UFO_OFF"]], "umbrella (viser.icon attribute)": [[33, "viser.Icon.UMBRELLA"]], "umbrella_filled (viser.icon attribute)": [[33, "viser.Icon.UMBRELLA_FILLED"]], "umbrella_off (viser.icon attribute)": [[33, "viser.Icon.UMBRELLA_OFF"]], "underline (viser.icon attribute)": [[33, "viser.Icon.UNDERLINE"]], "unlink (viser.icon attribute)": [[33, "viser.Icon.UNLINK"]], "upload (viser.icon attribute)": [[33, "viser.Icon.UPLOAD"]], "urgent (viser.icon attribute)": [[33, "viser.Icon.URGENT"]], "usb (viser.icon attribute)": [[33, "viser.Icon.USB"]], "user (viser.icon attribute)": [[33, "viser.Icon.USER"]], "users (viser.icon attribute)": [[33, "viser.Icon.USERS"]], "users_group (viser.icon attribute)": [[33, "viser.Icon.USERS_GROUP"]], "users_minus (viser.icon attribute)": [[33, "viser.Icon.USERS_MINUS"]], "users_plus (viser.icon attribute)": [[33, "viser.Icon.USERS_PLUS"]], "user_bolt (viser.icon attribute)": [[33, "viser.Icon.USER_BOLT"]], "user_cancel (viser.icon attribute)": [[33, "viser.Icon.USER_CANCEL"]], "user_check (viser.icon attribute)": [[33, "viser.Icon.USER_CHECK"]], "user_circle (viser.icon attribute)": [[33, "viser.Icon.USER_CIRCLE"]], "user_code (viser.icon attribute)": [[33, "viser.Icon.USER_CODE"]], "user_cog (viser.icon attribute)": [[33, "viser.Icon.USER_COG"]], "user_dollar (viser.icon attribute)": [[33, "viser.Icon.USER_DOLLAR"]], "user_down (viser.icon attribute)": [[33, "viser.Icon.USER_DOWN"]], "user_edit (viser.icon attribute)": [[33, "viser.Icon.USER_EDIT"]], "user_exclamation (viser.icon attribute)": [[33, "viser.Icon.USER_EXCLAMATION"]], "user_heart (viser.icon attribute)": [[33, "viser.Icon.USER_HEART"]], "user_minus (viser.icon attribute)": [[33, "viser.Icon.USER_MINUS"]], "user_off (viser.icon attribute)": [[33, "viser.Icon.USER_OFF"]], "user_pause (viser.icon attribute)": [[33, "viser.Icon.USER_PAUSE"]], "user_pin (viser.icon attribute)": [[33, "viser.Icon.USER_PIN"]], "user_plus (viser.icon attribute)": [[33, "viser.Icon.USER_PLUS"]], "user_question (viser.icon attribute)": [[33, "viser.Icon.USER_QUESTION"]], "user_search (viser.icon attribute)": [[33, "viser.Icon.USER_SEARCH"]], "user_share (viser.icon attribute)": [[33, "viser.Icon.USER_SHARE"]], "user_shield (viser.icon attribute)": [[33, "viser.Icon.USER_SHIELD"]], "user_star (viser.icon attribute)": [[33, "viser.Icon.USER_STAR"]], "user_up (viser.icon attribute)": [[33, "viser.Icon.USER_UP"]], "user_x (viser.icon attribute)": [[33, "viser.Icon.USER_X"]], "uv_index (viser.icon attribute)": [[33, "viser.Icon.UV_INDEX"]], "ux_circle (viser.icon attribute)": [[33, "viser.Icon.UX_CIRCLE"]], "vaccine (viser.icon attribute)": [[33, "viser.Icon.VACCINE"]], "vaccine_bottle (viser.icon attribute)": [[33, "viser.Icon.VACCINE_BOTTLE"]], "vaccine_bottle_off (viser.icon attribute)": [[33, "viser.Icon.VACCINE_BOTTLE_OFF"]], "vaccine_off (viser.icon attribute)": [[33, "viser.Icon.VACCINE_OFF"]], "vacuum_cleaner (viser.icon attribute)": [[33, "viser.Icon.VACUUM_CLEANER"]], "variable (viser.icon attribute)": [[33, "viser.Icon.VARIABLE"]], "variable_minus (viser.icon attribute)": [[33, "viser.Icon.VARIABLE_MINUS"]], "variable_off (viser.icon attribute)": [[33, "viser.Icon.VARIABLE_OFF"]], "variable_plus (viser.icon attribute)": [[33, "viser.Icon.VARIABLE_PLUS"]], "vector (viser.icon attribute)": [[33, "viser.Icon.VECTOR"]], "vector_bezier (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER"]], "vector_bezier_2 (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER_2"]], "vector_bezier_arc (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER_ARC"]], "vector_bezier_circle (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER_CIRCLE"]], "vector_off (viser.icon attribute)": [[33, "viser.Icon.VECTOR_OFF"]], "vector_spline (viser.icon attribute)": [[33, "viser.Icon.VECTOR_SPLINE"]], "vector_triangle (viser.icon attribute)": [[33, "viser.Icon.VECTOR_TRIANGLE"]], "vector_triangle_off (viser.icon attribute)": [[33, "viser.Icon.VECTOR_TRIANGLE_OFF"]], "venus (viser.icon attribute)": [[33, "viser.Icon.VENUS"]], "versions (viser.icon attribute)": [[33, "viser.Icon.VERSIONS"]], "versions_filled (viser.icon attribute)": [[33, "viser.Icon.VERSIONS_FILLED"]], "versions_off (viser.icon attribute)": [[33, "viser.Icon.VERSIONS_OFF"]], "video (viser.icon attribute)": [[33, "viser.Icon.VIDEO"]], "video_minus (viser.icon attribute)": [[33, "viser.Icon.VIDEO_MINUS"]], "video_off (viser.icon attribute)": [[33, "viser.Icon.VIDEO_OFF"]], "video_plus (viser.icon attribute)": [[33, "viser.Icon.VIDEO_PLUS"]], "viewfinder (viser.icon attribute)": [[33, "viser.Icon.VIEWFINDER"]], "viewfinder_off (viser.icon attribute)": [[33, "viser.Icon.VIEWFINDER_OFF"]], "viewport_narrow (viser.icon attribute)": [[33, "viser.Icon.VIEWPORT_NARROW"]], "viewport_wide (viser.icon attribute)": [[33, "viser.Icon.VIEWPORT_WIDE"]], "view_360 (viser.icon attribute)": [[33, "viser.Icon.VIEW_360"]], "view_360_off (viser.icon attribute)": [[33, "viser.Icon.VIEW_360_OFF"]], "vinyl (viser.icon attribute)": [[33, "viser.Icon.VINYL"]], "vip (viser.icon attribute)": [[33, "viser.Icon.VIP"]], "vip_off (viser.icon attribute)": [[33, "viser.Icon.VIP_OFF"]], "virus (viser.icon attribute)": [[33, "viser.Icon.VIRUS"]], "virus_off (viser.icon attribute)": [[33, "viser.Icon.VIRUS_OFF"]], "virus_search (viser.icon attribute)": [[33, "viser.Icon.VIRUS_SEARCH"]], "vocabulary (viser.icon attribute)": [[33, "viser.Icon.VOCABULARY"]], "vocabulary_off (viser.icon attribute)": [[33, "viser.Icon.VOCABULARY_OFF"]], "volcano (viser.icon attribute)": [[33, "viser.Icon.VOLCANO"]], "volume (viser.icon attribute)": [[33, "viser.Icon.VOLUME"]], "volume_2 (viser.icon attribute)": [[33, "viser.Icon.VOLUME_2"]], "volume_3 (viser.icon attribute)": [[33, "viser.Icon.VOLUME_3"]], "volume_off (viser.icon attribute)": [[33, "viser.Icon.VOLUME_OFF"]], "walk (viser.icon attribute)": [[33, "viser.Icon.WALK"]], "wall (viser.icon attribute)": [[33, "viser.Icon.WALL"]], "wallet (viser.icon attribute)": [[33, "viser.Icon.WALLET"]], "wallet_off (viser.icon attribute)": [[33, "viser.Icon.WALLET_OFF"]], "wallpaper (viser.icon attribute)": [[33, "viser.Icon.WALLPAPER"]], "wallpaper_off (viser.icon attribute)": [[33, "viser.Icon.WALLPAPER_OFF"]], "wall_off (viser.icon attribute)": [[33, "viser.Icon.WALL_OFF"]], "wand (viser.icon attribute)": [[33, "viser.Icon.WAND"]], "wand_off (viser.icon attribute)": [[33, "viser.Icon.WAND_OFF"]], "wash (viser.icon attribute)": [[33, "viser.Icon.WASH"]], "wash_dry (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY"]], "wash_dryclean (viser.icon attribute)": [[33, "viser.Icon.WASH_DRYCLEAN"]], "wash_dryclean_off (viser.icon attribute)": [[33, "viser.Icon.WASH_DRYCLEAN_OFF"]], "wash_dry_1 (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_1"]], "wash_dry_2 (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_2"]], "wash_dry_3 (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_3"]], "wash_dry_a (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_A"]], "wash_dry_dip (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_DIP"]], "wash_dry_f (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_F"]], "wash_dry_flat (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_FLAT"]], "wash_dry_hang (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_HANG"]], "wash_dry_off (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_OFF"]], "wash_dry_p (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_P"]], "wash_dry_shade (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_SHADE"]], "wash_dry_w (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_W"]], "wash_eco (viser.icon attribute)": [[33, "viser.Icon.WASH_ECO"]], "wash_gentle (viser.icon attribute)": [[33, "viser.Icon.WASH_GENTLE"]], "wash_hand (viser.icon attribute)": [[33, "viser.Icon.WASH_HAND"]], "wash_machine (viser.icon attribute)": [[33, "viser.Icon.WASH_MACHINE"]], "wash_off (viser.icon attribute)": [[33, "viser.Icon.WASH_OFF"]], "wash_press (viser.icon attribute)": [[33, "viser.Icon.WASH_PRESS"]], "wash_temperature_1 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_1"]], "wash_temperature_2 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_2"]], "wash_temperature_3 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_3"]], "wash_temperature_4 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_4"]], "wash_temperature_5 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_5"]], "wash_temperature_6 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_6"]], "wash_tumble_dry (viser.icon attribute)": [[33, "viser.Icon.WASH_TUMBLE_DRY"]], "wash_tumble_off (viser.icon attribute)": [[33, "viser.Icon.WASH_TUMBLE_OFF"]], "waterpolo (viser.icon attribute)": [[33, "viser.Icon.WATERPOLO"]], "wave_saw_tool (viser.icon attribute)": [[33, "viser.Icon.WAVE_SAW_TOOL"]], "wave_sine (viser.icon attribute)": [[33, "viser.Icon.WAVE_SINE"]], "wave_square (viser.icon attribute)": [[33, "viser.Icon.WAVE_SQUARE"]], "webhook (viser.icon attribute)": [[33, "viser.Icon.WEBHOOK"]], "webhook_off (viser.icon attribute)": [[33, "viser.Icon.WEBHOOK_OFF"]], "weight (viser.icon attribute)": [[33, "viser.Icon.WEIGHT"]], "wheelchair (viser.icon attribute)": [[33, "viser.Icon.WHEELCHAIR"]], "wheelchair_off (viser.icon attribute)": [[33, "viser.Icon.WHEELCHAIR_OFF"]], "whirl (viser.icon attribute)": [[33, "viser.Icon.WHIRL"]], "wifi (viser.icon attribute)": [[33, "viser.Icon.WIFI"]], "wifi_0 (viser.icon attribute)": [[33, "viser.Icon.WIFI_0"]], "wifi_1 (viser.icon attribute)": [[33, "viser.Icon.WIFI_1"]], "wifi_2 (viser.icon attribute)": [[33, "viser.Icon.WIFI_2"]], "wifi_off (viser.icon attribute)": [[33, "viser.Icon.WIFI_OFF"]], "wind (viser.icon attribute)": [[33, "viser.Icon.WIND"]], "windmill (viser.icon attribute)": [[33, "viser.Icon.WINDMILL"]], "windmill_filled (viser.icon attribute)": [[33, "viser.Icon.WINDMILL_FILLED"]], "windmill_off (viser.icon attribute)": [[33, "viser.Icon.WINDMILL_OFF"]], "window (viser.icon attribute)": [[33, "viser.Icon.WINDOW"]], "window_maximize (viser.icon attribute)": [[33, "viser.Icon.WINDOW_MAXIMIZE"]], "window_minimize (viser.icon attribute)": [[33, "viser.Icon.WINDOW_MINIMIZE"]], "window_off (viser.icon attribute)": [[33, "viser.Icon.WINDOW_OFF"]], "windsock (viser.icon attribute)": [[33, "viser.Icon.WINDSOCK"]], "wind_off (viser.icon attribute)": [[33, "viser.Icon.WIND_OFF"]], "wiper (viser.icon attribute)": [[33, "viser.Icon.WIPER"]], "wiper_wash (viser.icon attribute)": [[33, "viser.Icon.WIPER_WASH"]], "woman (viser.icon attribute)": [[33, "viser.Icon.WOMAN"]], "wood (viser.icon attribute)": [[33, "viser.Icon.WOOD"]], "world (viser.icon attribute)": [[33, "viser.Icon.WORLD"]], "world_bolt (viser.icon attribute)": [[33, "viser.Icon.WORLD_BOLT"]], "world_cancel (viser.icon attribute)": [[33, "viser.Icon.WORLD_CANCEL"]], "world_check (viser.icon attribute)": [[33, "viser.Icon.WORLD_CHECK"]], "world_code (viser.icon attribute)": [[33, "viser.Icon.WORLD_CODE"]], "world_cog (viser.icon attribute)": [[33, "viser.Icon.WORLD_COG"]], "world_dollar (viser.icon attribute)": [[33, "viser.Icon.WORLD_DOLLAR"]], "world_down (viser.icon attribute)": [[33, "viser.Icon.WORLD_DOWN"]], "world_download (viser.icon attribute)": [[33, "viser.Icon.WORLD_DOWNLOAD"]], "world_exclamation (viser.icon attribute)": [[33, "viser.Icon.WORLD_EXCLAMATION"]], "world_heart (viser.icon attribute)": [[33, "viser.Icon.WORLD_HEART"]], "world_latitude (viser.icon attribute)": [[33, "viser.Icon.WORLD_LATITUDE"]], "world_longitude (viser.icon attribute)": [[33, "viser.Icon.WORLD_LONGITUDE"]], "world_minus (viser.icon attribute)": [[33, "viser.Icon.WORLD_MINUS"]], "world_off (viser.icon attribute)": [[33, "viser.Icon.WORLD_OFF"]], "world_pause (viser.icon attribute)": [[33, "viser.Icon.WORLD_PAUSE"]], "world_pin (viser.icon attribute)": [[33, "viser.Icon.WORLD_PIN"]], "world_plus (viser.icon attribute)": [[33, "viser.Icon.WORLD_PLUS"]], "world_question (viser.icon attribute)": [[33, "viser.Icon.WORLD_QUESTION"]], "world_search (viser.icon attribute)": [[33, "viser.Icon.WORLD_SEARCH"]], "world_share (viser.icon attribute)": [[33, "viser.Icon.WORLD_SHARE"]], "world_star (viser.icon attribute)": [[33, "viser.Icon.WORLD_STAR"]], "world_up (viser.icon attribute)": [[33, "viser.Icon.WORLD_UP"]], "world_upload (viser.icon attribute)": [[33, "viser.Icon.WORLD_UPLOAD"]], "world_www (viser.icon attribute)": [[33, "viser.Icon.WORLD_WWW"]], "world_x (viser.icon attribute)": [[33, "viser.Icon.WORLD_X"]], "wrecking_ball (viser.icon attribute)": [[33, "viser.Icon.WRECKING_BALL"]], "writing (viser.icon attribute)": [[33, "viser.Icon.WRITING"]], "writing_off (viser.icon attribute)": [[33, "viser.Icon.WRITING_OFF"]], "writing_sign (viser.icon attribute)": [[33, "viser.Icon.WRITING_SIGN"]], "writing_sign_off (viser.icon attribute)": [[33, "viser.Icon.WRITING_SIGN_OFF"]], "x (viser.icon attribute)": [[33, "viser.Icon.X"]], "xbox_a (viser.icon attribute)": [[33, "viser.Icon.XBOX_A"]], "xbox_b (viser.icon attribute)": [[33, "viser.Icon.XBOX_B"]], "xbox_x (viser.icon attribute)": [[33, "viser.Icon.XBOX_X"]], "xbox_y (viser.icon attribute)": [[33, "viser.Icon.XBOX_Y"]], "xd (viser.icon attribute)": [[33, "viser.Icon.XD"]], "yin_yang (viser.icon attribute)": [[33, "viser.Icon.YIN_YANG"]], "yin_yang_filled (viser.icon attribute)": [[33, "viser.Icon.YIN_YANG_FILLED"]], "yoga (viser.icon attribute)": [[33, "viser.Icon.YOGA"]], "zeppelin (viser.icon attribute)": [[33, "viser.Icon.ZEPPELIN"]], "zeppelin_off (viser.icon attribute)": [[33, "viser.Icon.ZEPPELIN_OFF"]], "zip (viser.icon attribute)": [[33, "viser.Icon.ZIP"]], "zodiac_aquarius (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_AQUARIUS"]], "zodiac_aries (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_ARIES"]], "zodiac_cancer (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_CANCER"]], "zodiac_capricorn (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_CAPRICORN"]], "zodiac_gemini (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_GEMINI"]], "zodiac_leo (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_LEO"]], "zodiac_libra (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_LIBRA"]], "zodiac_pisces (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_PISCES"]], "zodiac_sagittarius (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_SAGITTARIUS"]], "zodiac_scorpio (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_SCORPIO"]], "zodiac_taurus (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_TAURUS"]], "zodiac_virgo (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_VIRGO"]], "zoom_cancel (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CANCEL"]], "zoom_check (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CHECK"]], "zoom_check_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CHECK_FILLED"]], "zoom_code (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CODE"]], "zoom_exclamation (viser.icon attribute)": [[33, "viser.Icon.ZOOM_EXCLAMATION"]], "zoom_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_FILLED"]], "zoom_in (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN"]], "zoom_in_area (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN_AREA"]], "zoom_in_area_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN_AREA_FILLED"]], "zoom_in_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN_FILLED"]], "zoom_money (viser.icon attribute)": [[33, "viser.Icon.ZOOM_MONEY"]], "zoom_out (viser.icon attribute)": [[33, "viser.Icon.ZOOM_OUT"]], "zoom_out_area (viser.icon attribute)": [[33, "viser.Icon.ZOOM_OUT_AREA"]], "zoom_out_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_OUT_FILLED"]], "zoom_pan (viser.icon attribute)": [[33, "viser.Icon.ZOOM_PAN"]], "zoom_question (viser.icon attribute)": [[33, "viser.Icon.ZOOM_QUESTION"]], "zoom_replace (viser.icon attribute)": [[33, "viser.Icon.ZOOM_REPLACE"]], "zoom_reset (viser.icon attribute)": [[33, "viser.Icon.ZOOM_RESET"]], "zzz (viser.icon attribute)": [[33, "viser.Icon.ZZZ"]], "zzz_off (viser.icon attribute)": [[33, "viser.Icon.ZZZ_OFF"]], "__new__() (viser.iconname method)": [[33, "viser.IconName.__new__"]], "message (class in viser.infra)": [[35, "viser.infra.Message"]], "typescriptannotationoverride (class in viser.infra)": [[35, "viser.infra.TypeScriptAnnotationOverride"]], "websockclientconnection (class in viser.infra)": [[35, "viser.infra.WebsockClientConnection"]], "websockmessagehandler (class in viser.infra)": [[35, "viser.infra.WebsockMessageHandler"]], "websockserver (class in viser.infra)": [[35, "viser.infra.WebsockServer"]], "annotation (viser.infra.typescriptannotationoverride attribute)": [[35, "viser.infra.TypeScriptAnnotationOverride.annotation"]], "as_serializable_dict() (viser.infra.message method)": [[35, "viser.infra.Message.as_serializable_dict"]], "atomic() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.atomic"]], "atomic() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.atomic"]], "atomic() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.atomic"]], "deserialize() (viser.infra.message class method)": [[35, "viser.infra.Message.deserialize"]], "excluded_self_client (viser.infra.message attribute)": [[35, "viser.infra.Message.excluded_self_client"]], "flush() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.flush"]], "flush_client() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.flush_client"]], "generate_typescript_interfaces() (in module viser.infra)": [[35, "viser.infra.generate_typescript_interfaces"]], "get_subclasses() (viser.infra.message class method)": [[35, "viser.infra.Message.get_subclasses"]], "on_client_connect() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.on_client_connect"]], "on_client_disconnect() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.on_client_disconnect"]], "queue_message() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.queue_message"]], "queue_message() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.queue_message"]], "queue_message() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.queue_message"]], "redundancy_key() (viser.infra.message method)": [[35, "viser.infra.Message.redundancy_key"]], "register_handler() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.register_handler"]], "register_handler() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.register_handler"]], "register_handler() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.register_handler"]], "start() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.start"]], "start_recording() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.start_recording"]], "start_recording() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.start_recording"]], "start_recording() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.start_recording"]], "stop() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.stop"]], "unregister_handler() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.unregister_handler"]], "unregister_handler() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.unregister_handler"]], "unregister_handler() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.unregister_handler"]], "unsafe_send_message() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.unsafe_send_message"]], "viser.infra": [[35, "module-viser.infra"]], "sceneapi (class in viser)": [[36, "viser.SceneApi"]], "add_3d_gui_container() (viser.sceneapi method)": [[36, "viser.SceneApi.add_3d_gui_container"]], "add_batched_axes() (viser.sceneapi method)": [[36, "viser.SceneApi.add_batched_axes"]], "add_box() (viser.sceneapi method)": [[36, "viser.SceneApi.add_box"]], "add_camera_frustum() (viser.sceneapi method)": [[36, "viser.SceneApi.add_camera_frustum"]], "add_frame() (viser.sceneapi method)": [[36, "viser.SceneApi.add_frame"]], "add_glb() (viser.sceneapi method)": [[36, "viser.SceneApi.add_glb"]], "add_grid() (viser.sceneapi method)": [[36, "viser.SceneApi.add_grid"]], "add_icosphere() (viser.sceneapi method)": [[36, "viser.SceneApi.add_icosphere"]], "add_image() (viser.sceneapi method)": [[36, "viser.SceneApi.add_image"]], "add_label() (viser.sceneapi method)": [[36, "viser.SceneApi.add_label"]], "add_mesh_simple() (viser.sceneapi method)": [[36, "viser.SceneApi.add_mesh_simple"]], "add_mesh_skinned() (viser.sceneapi method)": [[36, "viser.SceneApi.add_mesh_skinned"]], "add_mesh_trimesh() (viser.sceneapi method)": [[36, "viser.SceneApi.add_mesh_trimesh"]], "add_point_cloud() (viser.sceneapi method)": [[36, "viser.SceneApi.add_point_cloud"]], "add_spline_catmull_rom() (viser.sceneapi method)": [[36, "viser.SceneApi.add_spline_catmull_rom"]], "add_spline_cubic_bezier() (viser.sceneapi method)": [[36, "viser.SceneApi.add_spline_cubic_bezier"]], "add_transform_controls() (viser.sceneapi method)": [[36, "viser.SceneApi.add_transform_controls"]], "on_pointer_callback_removed() (viser.sceneapi method)": [[36, "viser.SceneApi.on_pointer_callback_removed"]], "on_pointer_event() (viser.sceneapi method)": [[36, "viser.SceneApi.on_pointer_event"]], "remove_pointer_callback() (viser.sceneapi method)": [[36, "viser.SceneApi.remove_pointer_callback"]], "reset() (viser.sceneapi method)": [[36, "viser.SceneApi.reset"]], "set_background_image() (viser.sceneapi method)": [[36, "viser.SceneApi.set_background_image"]], "set_global_visibility() (viser.sceneapi method)": [[36, "viser.SceneApi.set_global_visibility"]], "set_up_direction() (viser.sceneapi method)": [[36, "viser.SceneApi.set_up_direction"]], "world_axes (viser.sceneapi attribute)": [[36, "viser.SceneApi.world_axes"]], "batchedaxeshandle (class in viser)": [[37, "viser.BatchedAxesHandle"]], "camerafrustumhandle (class in viser)": [[37, "viser.CameraFrustumHandle"]], "framehandle (class in viser)": [[37, "viser.FrameHandle"]], "gaussiansplathandle (class in viser)": [[37, "viser.GaussianSplatHandle"]], "glbhandle (class in viser)": [[37, "viser.GlbHandle"]], "gui3dcontainerhandle (class in viser)": [[37, "viser.Gui3dContainerHandle"]], "imagehandle (class in viser)": [[37, "viser.ImageHandle"]], "labelhandle (class in viser)": [[37, "viser.LabelHandle"]], "meshhandle (class in viser)": [[37, "viser.MeshHandle"]], "meshskinnedbonehandle (class in viser)": [[37, "viser.MeshSkinnedBoneHandle"]], "meshskinnedhandle (class in viser)": [[37, "viser.MeshSkinnedHandle"]], "pointcloudhandle (class in viser)": [[37, "viser.PointCloudHandle"]], "scenenodehandle (class in viser)": [[37, "viser.SceneNodeHandle"]], "transformcontrolshandle (class in viser)": [[37, "viser.TransformControlsHandle"]], "bones (viser.meshskinnedhandle attribute)": [[37, "viser.MeshSkinnedHandle.bones"]], "on_click() (viser.batchedaxeshandle method)": [[37, "viser.BatchedAxesHandle.on_click"]], "on_click() (viser.camerafrustumhandle method)": [[37, "viser.CameraFrustumHandle.on_click"]], "on_click() (viser.framehandle method)": [[37, "viser.FrameHandle.on_click"]], "on_click() (viser.gaussiansplathandle method)": [[37, "viser.GaussianSplatHandle.on_click"]], "on_click() (viser.glbhandle method)": [[37, "viser.GlbHandle.on_click"]], "on_click() (viser.imagehandle method)": [[37, "viser.ImageHandle.on_click"]], "on_click() (viser.meshhandle method)": [[37, "viser.MeshHandle.on_click"]], "on_click() (viser.meshskinnedhandle method)": [[37, "viser.MeshSkinnedHandle.on_click"]], "on_click() (viser.transformcontrolshandle method)": [[37, "viser.TransformControlsHandle.on_click"]], "on_update() (viser.transformcontrolshandle method)": [[37, "viser.TransformControlsHandle.on_update"]], "position (viser.batchedaxeshandle property)": [[37, "viser.BatchedAxesHandle.position"]], "position (viser.camerafrustumhandle property)": [[37, "viser.CameraFrustumHandle.position"]], "position (viser.framehandle property)": [[37, "viser.FrameHandle.position"]], "position (viser.gaussiansplathandle property)": [[37, "viser.GaussianSplatHandle.position"]], "position (viser.glbhandle property)": [[37, "viser.GlbHandle.position"]], "position (viser.gui3dcontainerhandle property)": [[37, "viser.Gui3dContainerHandle.position"]], "position (viser.imagehandle property)": [[37, "viser.ImageHandle.position"]], "position (viser.labelhandle property)": [[37, "viser.LabelHandle.position"]], "position (viser.meshhandle property)": [[37, "viser.MeshHandle.position"]], "position (viser.meshskinnedbonehandle property)": [[37, "viser.MeshSkinnedBoneHandle.position"]], "position (viser.meshskinnedhandle property)": [[37, "viser.MeshSkinnedHandle.position"]], "position (viser.pointcloudhandle property)": [[37, "viser.PointCloudHandle.position"]], "position (viser.scenenodehandle property)": [[37, "viser.SceneNodeHandle.position"]], "position (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.position"]], "remove() (viser.batchedaxeshandle method)": [[37, "viser.BatchedAxesHandle.remove"]], "remove() (viser.camerafrustumhandle method)": [[37, "viser.CameraFrustumHandle.remove"]], "remove() (viser.framehandle method)": [[37, "viser.FrameHandle.remove"]], "remove() (viser.gaussiansplathandle method)": [[37, "viser.GaussianSplatHandle.remove"]], "remove() (viser.glbhandle method)": [[37, "viser.GlbHandle.remove"]], "remove() (viser.gui3dcontainerhandle method)": [[37, "viser.Gui3dContainerHandle.remove"]], "remove() (viser.imagehandle method)": [[37, "viser.ImageHandle.remove"]], "remove() (viser.labelhandle method)": [[37, "viser.LabelHandle.remove"]], "remove() (viser.meshhandle method)": [[37, "viser.MeshHandle.remove"]], "remove() (viser.meshskinnedhandle method)": [[37, "viser.MeshSkinnedHandle.remove"]], "remove() (viser.pointcloudhandle method)": [[37, "viser.PointCloudHandle.remove"]], "remove() (viser.scenenodehandle method)": [[37, "viser.SceneNodeHandle.remove"]], "remove() (viser.transformcontrolshandle method)": [[37, "viser.TransformControlsHandle.remove"]], "update_timestamp (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.update_timestamp"]], "visible (viser.batchedaxeshandle property)": [[37, "viser.BatchedAxesHandle.visible"]], "visible (viser.camerafrustumhandle property)": [[37, "viser.CameraFrustumHandle.visible"]], "visible (viser.framehandle property)": [[37, "viser.FrameHandle.visible"]], "visible (viser.gaussiansplathandle property)": [[37, "viser.GaussianSplatHandle.visible"]], "visible (viser.glbhandle property)": [[37, "viser.GlbHandle.visible"]], "visible (viser.gui3dcontainerhandle property)": [[37, "viser.Gui3dContainerHandle.visible"]], "visible (viser.imagehandle property)": [[37, "viser.ImageHandle.visible"]], "visible (viser.labelhandle property)": [[37, "viser.LabelHandle.visible"]], "visible (viser.meshhandle property)": [[37, "viser.MeshHandle.visible"]], "visible (viser.meshskinnedhandle property)": [[37, "viser.MeshSkinnedHandle.visible"]], "visible (viser.pointcloudhandle property)": [[37, "viser.PointCloudHandle.visible"]], "visible (viser.scenenodehandle property)": [[37, "viser.SceneNodeHandle.visible"]], "visible (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.visible"]], "wxyz (viser.batchedaxeshandle property)": [[37, "viser.BatchedAxesHandle.wxyz"]], "wxyz (viser.camerafrustumhandle property)": [[37, "viser.CameraFrustumHandle.wxyz"]], "wxyz (viser.framehandle property)": [[37, "viser.FrameHandle.wxyz"]], "wxyz (viser.gaussiansplathandle property)": [[37, "viser.GaussianSplatHandle.wxyz"]], "wxyz (viser.glbhandle property)": [[37, "viser.GlbHandle.wxyz"]], "wxyz (viser.gui3dcontainerhandle property)": [[37, "viser.Gui3dContainerHandle.wxyz"]], "wxyz (viser.imagehandle property)": [[37, "viser.ImageHandle.wxyz"]], "wxyz (viser.labelhandle property)": [[37, "viser.LabelHandle.wxyz"]], "wxyz (viser.meshhandle property)": [[37, "viser.MeshHandle.wxyz"]], "wxyz (viser.meshskinnedbonehandle property)": [[37, "viser.MeshSkinnedBoneHandle.wxyz"]], "wxyz (viser.meshskinnedhandle property)": [[37, "viser.MeshSkinnedHandle.wxyz"]], "wxyz (viser.pointcloudhandle property)": [[37, "viser.PointCloudHandle.wxyz"]], "wxyz (viser.scenenodehandle property)": [[37, "viser.SceneNodeHandle.wxyz"]], "wxyz (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.wxyz"]], "viserserver (class in viser)": [[38, "viser.ViserServer"]], "atomic() (viser.viserserver method)": [[38, "viser.ViserServer.atomic"]], "disconnect_share_url() (viser.viserserver method)": [[38, "viser.ViserServer.disconnect_share_url"]], "flush() (viser.viserserver method)": [[38, "viser.ViserServer.flush"]], "get_clients() (viser.viserserver method)": [[38, "viser.ViserServer.get_clients"]], "get_host() (viser.viserserver method)": [[38, "viser.ViserServer.get_host"]], "get_port() (viser.viserserver method)": [[38, "viser.ViserServer.get_port"]], "gui (viser.viserserver attribute)": [[38, "viser.ViserServer.gui"]], "on_client_connect() (viser.viserserver method)": [[38, "viser.ViserServer.on_client_connect"]], "on_client_disconnect() (viser.viserserver method)": [[38, "viser.ViserServer.on_client_disconnect"]], "request_share_url() (viser.viserserver method)": [[38, "viser.ViserServer.request_share_url"]], "scene (viser.viserserver attribute)": [[38, "viser.ViserServer.scene"]], "send_file_download() (viser.viserserver method)": [[38, "viser.ViserServer.send_file_download"]], "stop() (viser.viserserver method)": [[38, "viser.ViserServer.stop"]], "matrixliegroup (class in viser.transforms)": [[39, "viser.transforms.MatrixLieGroup"]], "se2 (class in viser.transforms)": [[39, "viser.transforms.SE2"]], "se3 (class in viser.transforms)": [[39, "viser.transforms.SE3"]], "sebase (class in viser.transforms)": [[39, "viser.transforms.SEBase"]], "so2 (class in viser.transforms)": [[39, "viser.transforms.SO2"]], "so3 (class in viser.transforms)": [[39, "viser.transforms.SO3"]], "sobase (class in viser.transforms)": [[39, "viser.transforms.SOBase"]], "__matmul__() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.__matmul__"]], "__matmul__() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.__matmul__"]], "__matmul__() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.__matmul__"]], "__matmul__() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.__matmul__"]], "__matmul__() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.__matmul__"]], "__matmul__() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.__matmul__"]], "__matmul__() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.__matmul__"]], "adjoint() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.adjoint"]], "adjoint() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.adjoint"]], "adjoint() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.adjoint"]], "adjoint() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.adjoint"]], "adjoint() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.adjoint"]], "adjoint() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.adjoint"]], "adjoint() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.adjoint"]], "apply() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.apply"]], "apply() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.apply"]], "apply() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.apply"]], "apply() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.apply"]], "apply() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.apply"]], "apply() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.apply"]], "apply() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.apply"]], "as_matrix() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.as_matrix"]], "as_matrix() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.as_matrix"]], "as_matrix() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.as_matrix"]], "as_matrix() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.as_matrix"]], "as_matrix() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.as_matrix"]], "as_matrix() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.as_matrix"]], "as_matrix() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.as_matrix"]], "as_quaternion_xyzw() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.as_quaternion_xyzw"]], "as_radians() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.as_radians"]], "as_rpy_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.as_rpy_radians"]], "compute_pitch_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.compute_pitch_radians"]], "compute_roll_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.compute_roll_radians"]], "compute_yaw_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.compute_yaw_radians"]], "exp() (viser.transforms.matrixliegroup class method)": [[39, "viser.transforms.MatrixLieGroup.exp"]], "exp() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.exp"]], "exp() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.exp"]], "exp() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.exp"]], "exp() (viser.transforms.so2 class method)": [[39, "viser.transforms.SO2.exp"]], "exp() (viser.transforms.so3 class method)": [[39, "viser.transforms.SO3.exp"]], "exp() (viser.transforms.sobase class method)": [[39, "viser.transforms.SOBase.exp"]], "from_matrix() (viser.transforms.matrixliegroup class method)": [[39, "viser.transforms.MatrixLieGroup.from_matrix"]], "from_matrix() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_matrix"]], "from_matrix() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_matrix"]], "from_matrix() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_matrix"]], "from_matrix() (viser.transforms.so2 class method)": [[39, "viser.transforms.SO2.from_matrix"]], "from_matrix() (viser.transforms.so3 class method)": [[39, "viser.transforms.SO3.from_matrix"]], "from_matrix() (viser.transforms.sobase class method)": [[39, "viser.transforms.SOBase.from_matrix"]], "from_quaternion_xyzw() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_quaternion_xyzw"]], "from_radians() (viser.transforms.so2 static method)": [[39, "viser.transforms.SO2.from_radians"]], "from_rotation() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_rotation"]], "from_rotation() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_rotation"]], "from_rotation() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_rotation"]], "from_rotation_and_translation() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_rotation_and_translation"]], "from_rpy_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_rpy_radians"]], "from_translation() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_translation"]], "from_translation() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_translation"]], "from_translation() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_translation"]], "from_x_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_x_radians"]], "from_xy_theta() (viser.transforms.se2 static method)": [[39, "viser.transforms.SE2.from_xy_theta"]], "from_y_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_y_radians"]], "from_z_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_z_radians"]], "get_batch_axes() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.get_batch_axes"]], "get_batch_axes() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.get_batch_axes"]], "get_batch_axes() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.get_batch_axes"]], "get_batch_axes() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.get_batch_axes"]], "get_batch_axes() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.get_batch_axes"]], "identity() (viser.transforms.matrixliegroup class method)": [[39, "viser.transforms.MatrixLieGroup.identity"]], "identity() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.identity"]], "identity() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.identity"]], "identity() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.identity"]], "identity() (viser.transforms.so2 class method)": [[39, "viser.transforms.SO2.identity"]], "identity() (viser.transforms.so3 class method)": [[39, "viser.transforms.SO3.identity"]], "identity() (viser.transforms.sobase class method)": [[39, "viser.transforms.SOBase.identity"]], "inverse() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.inverse"]], "inverse() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.inverse"]], "inverse() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.inverse"]], "inverse() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.inverse"]], "inverse() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.inverse"]], "inverse() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.inverse"]], "inverse() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.inverse"]], "log() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.log"]], "log() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.log"]], "log() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.log"]], "log() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.log"]], "log() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.log"]], "log() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.log"]], "log() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.log"]], "matrix_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.matrix_dim"]], "matrix_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.matrix_dim"]], "matrix_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.matrix_dim"]], "matrix_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.matrix_dim"]], "matrix_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.matrix_dim"]], "matrix_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.matrix_dim"]], "matrix_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.matrix_dim"]], "multiply() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.multiply"]], "multiply() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.multiply"]], "multiply() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.multiply"]], "multiply() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.multiply"]], "multiply() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.multiply"]], "multiply() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.multiply"]], "multiply() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.multiply"]], "normalize() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.normalize"]], "normalize() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.normalize"]], "normalize() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.normalize"]], "normalize() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.normalize"]], "normalize() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.normalize"]], "normalize() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.normalize"]], "normalize() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.normalize"]], "parameters() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.parameters"]], "parameters() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.parameters"]], "parameters() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.parameters"]], "parameters() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.parameters"]], "parameters() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.parameters"]], "parameters() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.parameters"]], "parameters() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.parameters"]], "parameters_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.parameters_dim"]], "parameters_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.parameters_dim"]], "parameters_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.parameters_dim"]], "parameters_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.parameters_dim"]], "parameters_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.parameters_dim"]], "parameters_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.parameters_dim"]], "parameters_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.parameters_dim"]], "rotation() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.rotation"]], "rotation() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.rotation"]], "rotation() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.rotation"]], "space_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.space_dim"]], "space_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.space_dim"]], "space_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.space_dim"]], "space_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.space_dim"]], "space_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.space_dim"]], "space_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.space_dim"]], "space_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.space_dim"]], "tangent_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.tangent_dim"]], "tangent_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.tangent_dim"]], "tangent_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.tangent_dim"]], "tangent_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.tangent_dim"]], "tangent_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.tangent_dim"]], "tangent_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.tangent_dim"]], "tangent_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.tangent_dim"]], "translation() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.translation"]], "translation() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.translation"]], "translation() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.translation"]], "unit_complex (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.unit_complex"]], "unit_complex_xy (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.unit_complex_xy"]], "viser.transforms": [[39, "module-viser.transforms"]], "wxyz (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.wxyz"]], "wxyz_xyz (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.wxyz_xyz"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["camera_handles", "client_handles", "conventions", "development", "events", "examples/00_coordinate_frames", "examples/01_image", "examples/02_gui", "examples/03_gui_callbacks", "examples/04_camera_poses", "examples/05_camera_commands", "examples/06_mesh", "examples/07_record3d_visualizer", "examples/08_smpl_visualizer", "examples/09_urdf_visualizer", "examples/10_realsense", "examples/11_colmap_visualizer", "examples/12_click_meshes", "examples/13_theming", "examples/14_markdown", "examples/15_gui_in_scene", "examples/16_modal", "examples/17_background_composite", "examples/18_splines", "examples/19_get_renders", "examples/20_scene_pointer", "examples/21_set_up_direction", "examples/22_games", "examples/23_plotly", "examples/23_smpl_visualizer_skinned", "extras", "gui_api", "gui_handles", "icons", "index", "infrastructure", "scene_api", "scene_handles", "server", "transforms"], "filenames": ["camera_handles.md", "client_handles.md", "conventions.md", "development.md", "events.md", "examples/00_coordinate_frames.rst", "examples/01_image.rst", "examples/02_gui.rst", "examples/03_gui_callbacks.rst", "examples/04_camera_poses.rst", "examples/05_camera_commands.rst", "examples/06_mesh.rst", "examples/07_record3d_visualizer.rst", "examples/08_smpl_visualizer.rst", "examples/09_urdf_visualizer.rst", "examples/10_realsense.rst", "examples/11_colmap_visualizer.rst", "examples/12_click_meshes.rst", "examples/13_theming.rst", "examples/14_markdown.rst", "examples/15_gui_in_scene.rst", "examples/16_modal.rst", "examples/17_background_composite.rst", "examples/18_splines.rst", "examples/19_get_renders.rst", "examples/20_scene_pointer.rst", "examples/21_set_up_direction.rst", "examples/22_games.rst", "examples/23_plotly.rst", "examples/23_smpl_visualizer_skinned.rst", "extras.md", "gui_api.md", "gui_handles.md", "icons.md", "index.md", "infrastructure.md", "scene_api.md", "scene_handles.md", "server.md", "transforms.md"], "titles": ["Camera Handles", "Client Handles", "Frame Conventions", "Development", "Events", "Coordinate frames", "Images", "GUI basics", "GUI callbacks", "Camera poses", "Camera commands", "Meshes", "Record3D visualizer", "SMPL model visualizer", "Robot URDF visualizer", "RealSense visualizer", "COLMAP visualizer", "Mesh click events", "Theming", "Markdown Demonstration", "3D GUI Elements", "Modal basics", "Depth compositing", "Splines", "Get Renders", "Scene pointer events.", "Set Up Direction", "Games", "Plotly.", "Visualizer for SMPL human body models. Requires a .npz model file.", "Record3D + URDF Helpers", "GUI API", "GUI Handles", "Icons", "viser", "Communication", "Scene API", "Scene Handles", "Viser Server", "Transforms"], "terms": {"class": [0, 1, 4, 13, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39], "viser": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 39], "camerahandl": [0, 1, 9], "sourc": [0, 1, 3, 4, 30, 31, 32, 33, 35, 36, 37, 38, 39], "A": [0, 1, 3, 14, 15, 30, 31, 32, 36, 37], "read": [0, 1, 7, 9, 10, 13, 15, 29, 32, 36, 37], "write": [0, 1, 3, 7, 10, 32, 33, 37], "state": [0, 1, 31, 32, 36, 37, 38], "particular": [0, 7, 35], "client": [0, 4, 7, 9, 10, 16, 20, 21, 24, 25, 31, 32, 34, 35, 36, 37, 38], "typic": [0, 3, 36, 39], "access": [0, 33, 38], "via": [0, 1, 3, 18, 32, 33, 36, 37, 38, 39], "clienthandl": [0, 1, 4, 9, 10, 20, 21, 25, 30, 32, 37, 38], "properti": [0, 4, 32, 37], "thi": [0, 1, 2, 3, 4, 5, 9, 13, 14, 16, 20, 21, 22, 25, 28, 29, 31, 32, 35, 36, 37, 38, 39], "correspond": [0, 2, 3, 4, 10, 35], "wxyz": [0, 2, 5, 6, 8, 9, 10, 11, 12, 13, 16, 20, 25, 27, 29, 36, 37, 39], "ndarrai": [0, 13, 15, 25, 29, 30, 31, 36, 37, 39], "ani": [0, 1, 3, 8, 14, 30, 35, 36, 38, 39], "dtype": [0, 6, 7, 15, 22, 30, 39], "float64": 0, "r": [0, 2, 15, 28, 29, 33, 37], "p_world": 0, "t": [0, 2, 12, 15, 16, 25, 28, 32, 33, 35, 37, 38], "p_camera": 0, "synchron": [0, 1, 3, 18, 32, 35, 37, 38], "automat": [0, 3, 7, 10, 31, 32, 35, 36, 37, 38], "when": [0, 1, 3, 4, 7, 8, 10, 12, 13, 14, 15, 20, 22, 29, 32, 35, 36, 37, 38], "assign": [0, 2, 32, 37], "posit": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 20, 22, 23, 24, 25, 27, 29, 30, 32, 35, 36, 37, 38], "The": [0, 2, 3, 14, 17, 21, 31, 33, 35, 36], "look_at": [0, 10, 20], "point": [0, 2, 7, 8, 12, 15, 16, 33, 36, 37, 39], "up_direct": [0, 16], "vector": [0, 7, 31, 33, 36, 39], "ar": [0, 1, 2, 3, 4, 5, 7, 8, 10, 13, 17, 25, 29, 31, 32, 33, 35, 36, 37, 38, 39], "maintain": 0, "updat": [0, 1, 4, 7, 8, 9, 12, 13, 14, 25, 28, 29, 30, 32, 35, 38], "which": [0, 2, 3, 4, 31, 32, 36, 37, 38, 39], "mean": [0, 36], "often": [0, 36], "also": [0, 1, 3, 8, 10, 14, 15, 36], "affect": [0, 4, 36], "fov": [0, 9, 12, 16, 25, 36], "float": [0, 4, 7, 13, 14, 18, 28, 29, 30, 31, 32, 33, 36, 37, 39], "vertic": [0, 11, 13, 25, 27, 29, 33, 36], "field": [0, 2, 33, 35, 36, 39], "view": [0, 13, 15, 25, 29, 33, 36], "radian": [0, 36, 39], "aspect": [0, 9, 12, 16, 25, 28, 31, 32, 33, 36], "canva": 0, "width": [0, 8, 16, 18, 24, 31, 33, 36], "divid": [0, 33, 36], "height": [0, 8, 16, 24, 27, 31, 33, 36], "Not": 0, "update_timestamp": [0, 9, 32, 37], "look": [0, 33], "set": [0, 2, 3, 4, 5, 7, 10, 12, 13, 14, 16, 20, 25, 28, 29, 31, 32, 33, 35, 36, 37, 39], "up": [0, 2, 16, 25, 33, 36], "direct": [0, 4, 16, 25, 33, 36], "on_upd": [0, 8, 9, 12, 13, 14, 16, 19, 26, 29, 32, 37], "callback": [0, 4, 7, 17, 25, 32, 35, 36, 37, 38], "callabl": [0, 32, 35, 36, 37, 38], "none": [0, 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38], "attach": [0, 8, 32, 35, 36, 37, 38], "run": [0, 3, 9, 33, 34, 35, 36, 38], "new": [0, 9, 17, 31, 33, 35, 36], "messag": [0, 1, 25, 31, 33, 35, 38], "i": [0, 1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 21, 23, 24, 25, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39], "receiv": [0, 35], "paramet": [0, 1, 2, 10, 13, 29, 30, 31, 32, 35, 36, 37, 38, 39], "return": [0, 1, 13, 15, 20, 25, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39], "type": [0, 1, 3, 4, 15, 20, 25, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39], "get_rend": [0, 24], "int": [0, 1, 4, 10, 12, 13, 15, 16, 17, 20, 27, 29, 30, 31, 35, 36, 38, 39], "transport_format": 0, "liter": [0, 4, 27, 31, 32, 36], "png": [0, 6, 18, 28, 33, 36], "jpeg": [0, 6, 36], "request": [0, 33, 38], "render": [0, 6, 22, 30, 34, 36, 37], "from": [0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 24, 25, 27, 28, 29, 30, 32, 35, 36, 37, 38, 39], "block": [0, 15, 33, 34, 38], "until": [0, 38], "": [0, 1, 8, 13, 16, 24, 25, 29, 30, 33, 35, 36, 38, 39], "done": [0, 3, 15, 24, 36], "numpi": [0, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 20, 22, 23, 24, 25, 27, 28, 29, 36, 39], "arrai": [0, 7, 10, 12, 13, 14, 15, 16, 20, 25, 29, 36, 39], "imag": [0, 4, 12, 16, 18, 22, 24, 25, 28, 31, 36, 37], "should": [0, 1, 2, 3, 10, 13, 14, 20, 29, 31, 32, 33, 35, 36, 38, 39], "browser": [0, 3, 33, 38], "transport": [0, 36], "format": [0, 3, 6, 15, 33, 36], "lossi": 0, "h": [0, 16, 33, 36], "w": [0, 3, 16, 33, 36, 39], "3": [0, 2, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 20, 22, 23, 24, 25, 27, 28, 29, 31, 33, 36, 39], "rgb": [0, 12, 15, 16, 30, 31, 36], "lossless": 0, "4": [0, 6, 7, 10, 12, 13, 17, 20, 27, 29, 33, 36, 39], "rgba": [0, 31], "can": [0, 1, 2, 3, 6, 7, 8, 9, 10, 14, 20, 22, 25, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39], "caus": 0, "memori": 0, "issu": 0, "frontend": [0, 3], "call": [0, 2, 8, 32, 33, 36, 38], "too": 0, "quickli": 0, "higher": 0, "resolut": 0, "creat": [1, 7, 10, 14, 20, 25, 27, 28, 32, 36, 37, 38], "each": [1, 2, 10, 20, 27, 31, 32, 36, 37, 39], "connect": [1, 3, 7, 9, 10, 15, 20, 27, 32, 33, 34, 35, 37, 38], "server": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36, 37], "us": [1, 2, 3, 4, 6, 7, 15, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39], "commun": [1, 3, 33], "just": [1, 8, 14, 15], "one": [1, 3, 10, 12, 17, 33, 36, 38], "well": [1, 37, 39], "camera": [1, 15, 16, 20, 24, 25, 33, 34, 36, 37], "similar": [1, 36], "viserserv": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 37, 38], "expos": [1, 2], "scene": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 27, 29, 30, 34, 38], "gui": [1, 4, 9, 12, 13, 14, 16, 17, 18, 19, 21, 24, 25, 26, 27, 28, 29, 33, 34, 35, 36, 37, 38], "interfac": [1, 3, 14, 31, 35, 36, 39], "If": [1, 2, 3, 36, 39], "exampl": [1, 3, 5, 6, 7, 9, 20, 21, 22, 24, 25, 28, 30, 34, 35, 37, 38, 39], "sceneapi": [1, 2, 36, 38], "add_point_cloud": [1, 7, 8, 12, 15, 16, 36, 38], "method": [1, 18, 35, 36, 38], "element": [1, 4, 7, 8, 13, 16, 18, 29, 31, 32, 33, 35, 36, 37, 38, 39], "local": [1, 2, 13, 14, 29, 32, 36, 37, 38], "onli": [1, 4, 7, 32, 35, 36], "specif": [1, 32, 35, 36, 37], "interact": [1, 10, 13, 20, 25, 29, 31, 32, 34, 36, 37, 38], "3d": [1, 2, 4, 6, 22, 28, 33, 34, 36, 37, 38, 39], "guiapi": [1, 31, 33, 38], "client_id": [1, 4, 9, 35], "uniqu": [1, 35], "id": [1, 4, 9, 16, 33, 38], "manipul": [1, 36], "viewport": [1, 24, 33], "flush": [1, 10, 12, 27, 35, 38], "outgo": [1, 33, 35, 38], "buffer": [1, 33, 35, 38], "immedi": [1, 35, 38], "sent": [1, 35, 38], "default": [1, 2, 31, 34, 35, 36, 38, 39], "thei": [1, 25, 35, 38], "window": [1, 31, 33, 35, 38], "atom": [1, 10, 12, 20, 33, 35, 38], "contextmanag": [1, 15, 38], "context": [1, 15, 31, 32, 35, 36, 37, 38], "where": [1, 2, 25, 31, 32, 35, 36, 38], "all": [1, 2, 5, 9, 12, 13, 16, 25, 29, 31, 32, 33, 35, 36, 37, 38], "group": [1, 31, 32, 33, 35, 38, 39], "appli": [1, 14, 18, 30, 35, 36, 38, 39], "treat": [1, 35, 38], "soft": [1, 35, 38], "constraint": [1, 35, 38], "help": [1, 14, 26, 33, 35, 36, 38], "thing": [1, 35, 38], "like": [1, 2, 3, 4, 33, 35, 36, 38], "anim": [1, 7, 31, 35, 38], "we": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 22, 25, 29, 31, 32, 33, 35, 36, 38], "want": [1, 22, 35, 36, 38], "orient": [1, 2, 10, 13, 20, 29, 33, 35, 36, 37, 38], "happen": [1, 10, 32, 35, 38], "manag": [1, 15, 35, 38], "send_file_download": [1, 24, 38], "filenam": [1, 38], "str": [1, 9, 11, 14, 25, 30, 31, 32, 33, 35, 36, 38], "content": [1, 7, 18, 19, 21, 31, 32, 33, 36, 38], "byte": [1, 7, 24, 35, 36, 38], "chunk_siz": [1, 38], "1048576": [1, 38], "send": [1, 6, 7, 13, 16, 24, 29, 33, 35, 38], "file": [1, 3, 7, 13, 14, 30, 31, 33, 36, 38], "download": [1, 3, 13, 29, 33, 38], "name": [1, 5, 7, 11, 12, 13, 16, 17, 22, 25, 29, 30, 33, 35, 36, 38, 39], "infer": [1, 32, 38], "mime": [1, 31, 38], "number": [1, 7, 31, 33, 36, 38], "time": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 38], "In": [2, 3, 5, 10, 20, 22, 39], "note": [2, 3, 15, 25, 33, 39], "describ": 2, "object": [2, 30, 31, 35, 36, 37, 38, 39], "add": [2, 5, 6, 7, 8, 12, 14, 25, 30, 31, 32, 33, 36, 38], "instanti": [2, 32, 38], "node": [2, 4, 5, 7, 20, 36, 37], "structur": [2, 13, 27, 29], "determin": [2, 21, 36], "base_link": 2, "shoulder": 2, "wrist": 2, "signifi": 2, "three": [2, 33], "child": [2, 36], "transform": [2, 10, 11, 12, 13, 16, 20, 25, 27, 29, 33, 34, 36, 37], "given": [2, 27, 36], "both": [2, 20, 31, 33, 35, 36], "its": 2, "move": [2, 10, 14, 20, 25, 33, 37], "Its": 2, "parent": [2, 6, 11, 12, 13, 16, 19, 25, 29, 36], "unaffect": 2, "defin": [2, 3, 4, 5, 13, 29, 35, 36, 37], "pair": [2, 15], "unit": [2, 3], "quaternion": [2, 36, 37, 39], "term": [2, 36, 39], "alwai": 2, "4d": [2, 33], "translat": [2, 10, 16, 20, 35, 36, 39], "These": [2, 5, 10, 35, 37], "p_": 2, "mathrm": 2, "begin": 2, "bmatrix": 2, "end": [2, 31, 33], "1": [2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 15, 16, 17, 19, 20, 22, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 39], "form": [2, 33, 36], "so": [2, 13, 25, 29, 33, 39], "matrix": [2, 33, 39], "mathbb": 2, "space": [2, 33, 36, 39], "z": [2, 8, 28, 33, 36, 39], "upward": 2, "overridden": [2, 36], "set_up_direct": [2, 13, 25, 26, 29, 36], "python": [2, 24, 33, 34, 35, 36], "api": [2, 24, 33, 34, 38], "colmap": 2, "opencv": [2, 4, 25, 36], "forward": [2, 13, 29, 33, 36], "y": [2, 8, 13, 17, 25, 28, 29, 33, 36, 39], "right": [2, 4, 33, 36], "x": [2, 8, 13, 17, 25, 27, 28, 29, 33, 36, 39], "confusingli": 2, "differ": [2, 31, 33, 36, 38, 39], "nerfstudio": [2, 18], "adopt": 2, "opengl": [2, 36], "blender": [2, 33, 36], "convers": [2, 36], "between": [2, 3, 14, 17, 31, 32, 37, 38, 39], "two": [2, 3, 15, 27, 31, 33, 38], "simpl": [2, 11, 17, 33], "180": [2, 18], "degre": 2, "rotat": [2, 10, 16, 20, 33, 36, 39], "around": [2, 10, 20, 28], "axi": [2, 8, 25, 29, 33, 36, 39], "outlin": [3, 33], "current": [3, 4, 9, 12, 15, 16, 18, 32, 33, 35, 36], "practic": 3, "tool": [3, 33, 34], "workflow": 3, "assum": 3, "repositori": 3, "clone": 3, "recommend": 3, "an": [3, 4, 7, 13, 27, 29, 30, 31, 33, 34, 35, 36, 38, 39], "edit": [3, 7, 33], "ideal": 3, "virtual": 3, "environ": 3, "eg": 3, "conda": 3, "packag": [3, 14, 31, 33], "cd": 3, "pip": [3, 34], "e": [3, 25, 33, 36], "depend": [3, 34], "after": [3, 32, 34], "script": [3, 30, 33, 34], "runnabl": 3, "few": 3, "them": [3, 9, 17, 20, 36], "requir": [3, 13, 14, 15, 31, 35], "asset": [3, 6, 11, 12, 16, 19, 25, 28, 33, 36], "lint": 3, "check": [3, 18, 25, 33], "first": [3, 13, 25, 29, 31, 33, 38, 39], "dev": 3, "pre": [3, 7], "commit": [3, 33], "It": [3, 13, 14, 29, 36], "would": 3, "hard": [3, 13, 29], "test": [3, 25, 33, 36], "reli": [3, 38], "static": [3, 32, 39], "robust": 3, "To": [3, 11, 12, 16, 25, 34, 35, 38], "your": 3, "code": [3, 33], "you": [3, 34, 35], "follow": [3, 36, 39], "backend": 3, "share": [3, 12, 18, 31, 33, 35, 36, 38], "definit": [3, 35, 39], "On": [3, 38], "dataclass": [3, 13, 29, 35, 39], "src": 3, "_messag": [3, 4], "py": [3, 14], "typescript": [3, 33, 35], "websocketmessag": 3, "tsx": 3, "ones": [3, 13, 22, 25, 29], "manual": [3, 31, 33, 36], "modifi": [3, 25], "instead": [3, 4], "chang": [3, 7, 12, 13, 29, 33], "made": 3, "sync_message_def": 3, "For": [3, 4, 10, 16, 20, 32, 35, 36], "start": [3, 14, 15, 18, 28, 33, 35], "launch": [3, 35, 38], "relev": 3, "good": 3, "place": [3, 12, 32, 36, 37, 39], "05_camera_command": 3, "url": [3, 34, 38], "print": [3, 7, 9, 11, 12, 16, 24, 34, 35], "http": [3, 13, 14, 18, 29, 33, 34, 35], "localhost": [3, 34], "8080": [3, 34], "open": [3, 20, 28, 31, 33], "built": 3, "version": [3, 33], "react": [3, 33], "websocket": [3, 35], "applic": [3, 35, 38], "detect": [3, 9, 31, 32, 35, 37], "startup": 3, "re": [3, 12, 13, 29, 35], "build": [3, 33, 34, 35], "okai": 3, "quick": 3, "faster": [3, 36], "iter": [3, 33], "reflect": [3, 7], "make": [3, 13, 22, 23, 25, 29], "without": 3, "full": [3, 25, 33], "more": [3, 21, 39], "step": [3, 7, 8, 12, 13, 14, 16, 26, 29, 31, 33], "nodej": [3, 33], "yarn": 3, "directori": [3, 16, 31], "web": [3, 34, 35, 38], "address": [3, 33, 38], "need": [3, 13, 25, 29, 32], "tab": [3, 13, 29, 31, 32], "prettier": 3, "npx": 3, "small": [4, 18, 31, 33], "pass": 4, "function": [4, 32, 33, 36], "click": [4, 8, 10, 12, 20, 25, 27, 31, 32, 33, 34, 36, 37], "trigger": [4, 36], "scenepointerev": [4, 25, 36], "pointer": [4, 33, 36], "event_typ": [4, 25, 36], "scenepointereventtyp": 4, "wa": [4, 10, 32], "support": [4, 10, 14, 18, 19, 36, 37], "box": [4, 13, 17, 22, 25, 29, 33, 36], "select": [4, 17, 25, 33, 34, 36], "ray_origin": [4, 25], "tupl": [4, 13, 15, 29, 30, 31, 32, 36, 37, 39], "origin": [4, 10, 20, 25, 36, 38], "rai": [4, 25], "world": [4, 7, 33, 36], "coordin": [4, 10, 15, 17, 20, 25, 36, 37, 39], "ray_direct": [4, 25], "screen_po": [4, 25], "list": [4, 12, 13, 14, 25, 28, 29, 33, 35], "screen": [4, 33], "0": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36], "upper": [4, 14, 25, 33], "left": [4, 25, 28, 33], "corner": [4, 25, 33], "bottom": [4, 33], "includ": [4, 18, 34], "min": [4, 7, 8, 12, 13, 14, 16, 25, 29, 31, 33], "max": [4, 7, 8, 12, 13, 14, 16, 29, 31, 33, 36], "deprec": 4, "scenenodepointerev": [4, 37], "target": [4, 30, 33, 39], "tscenenodehandl": [4, 37], "guievent": [4, 16, 24, 32], "inform": [4, 35, 36], "associ": [4, 32, 38], "input": [4, 7, 14, 21, 31, 32, 33, 34], "tguihandl": [4, 32], "basic": 5, "visual": [5, 6, 11, 25, 28, 30, 31, 32, 33, 34, 36, 37, 38], "hierarch": 5, "tree": [5, 30, 33, 36], "branch": [5, 33], "rel": [5, 31, 37], "import": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 33], "random": [5, 6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 29, 33], "while": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "true": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 36, 38], "some": [5, 7, 12, 23, 27], "viewer": [5, 6], "add_fram": [5, 8, 10, 12, 16, 20, 36, 37], "2": [5, 6, 9, 11, 12, 13, 14, 15, 16, 19, 23, 25, 27, 28, 29, 31, 33, 36, 39], "leaf": [5, 33], "sleep": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "5": [5, 7, 8, 10, 11, 13, 17, 20, 22, 23, 24, 25, 27, 29, 33, 36], "remov": [5, 14, 15, 19, 20, 25, 27, 32, 33, 36, 37], "backgrond": 6, "displai": [6, 17, 20, 31, 36], "behind": 6, "nerf": [6, 18, 22], "textur": [6, 15, 33], "pathlib": [6, 11, 12, 13, 16, 19, 25, 29], "path": [6, 11, 12, 13, 14, 16, 19, 25, 29, 30, 31, 35, 36], "imageio": [6, 16, 24], "v3": [6, 16, 24], "iio": [6, 16, 24], "onp": [6, 7, 8, 10, 11, 12, 13, 14, 16, 20, 22, 23, 24, 25, 27, 28, 29, 36, 39], "def": [6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29], "main": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 29, 31, 38], "background": [6, 22, 36], "set_background_imag": [6, 22, 36], "imread": [6, 16], "__file__": [6, 11, 12, 16, 19, 25], "cal_logo": [6, 28], "add_imag": [6, 36], "img": [6, 16, 18, 22], "nois": 6, "randint": [6, 8, 22], "256": [6, 8], "size": [6, 7, 8, 10, 13, 16, 20, 22, 23, 24, 29, 31, 33, 36], "400": 6, "uint8": [6, 7, 15, 22, 30], "1e": [6, 14, 16], "__name__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 29], "__main__": [6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 21, 23, 24, 26, 27, 28, 29], "common": [7, 33, 36], "slider": [7, 8, 12, 14, 31, 34, 36], "checkbox": [7, 19, 31, 33, 34], "add_fold": [7, 8, 12, 17, 31], "gui_count": 7, "add_numb": [7, 16, 17, 31], "counter": [7, 17, 19, 33], "initial_valu": [7, 8, 9, 12, 13, 14, 16, 17, 18, 19, 21, 26, 29, 31], "disabl": [7, 9, 12, 17, 25, 31, 32, 33, 36], "gui_slid": 7, "add_slid": [7, 8, 12, 13, 14, 16, 29, 31], "100": [7, 12, 16, 23, 31, 39], "gui_progress": 7, "add_progress_bar": [7, 31], "25": [7, 27], "gui_vector2": 7, "add_vector2": [7, 31], "gui_vector3": 7, "add_vector3": [7, 13, 26, 29, 31], "text": [7, 10, 18, 31, 33, 34, 36], "toggl": [7, 12, 33, 35], "gui_checkbox_hid": 7, "add_checkbox": [7, 8, 12, 13, 18, 19, 29, 31], "hide": [7, 12, 32, 33, 36], "fals": [7, 12, 13, 16, 25, 29, 31, 36], "gui_text": 7, "add_text": [7, 9, 21, 31], "hello": 7, "gui_button": 7, "add_button": [7, 8, 12, 13, 14, 16, 18, 19, 20, 21, 24, 25, 27, 29, 31, 33, 38], "button": [7, 8, 12, 14, 18, 19, 24, 25, 31, 32, 34], "gui_checkbox_dis": 7, "gui_rgb": [7, 13, 29], "add_rgb": [7, 13, 18, 29, 31], "color": [7, 8, 12, 13, 15, 16, 17, 18, 23, 24, 25, 27, 28, 29, 30, 31, 33, 36], "255": [7, 13, 22, 27, 29, 36], "gui_multi_slid": 7, "add_multi_slid": [7, 31], "multi": [7, 31], "30": [7, 12, 15, 18, 23, 24, 27, 33], "mark": [7, 31, 33], "50": [7, 28, 33], "70": 7, "7": [7, 25, 27, 33, 39], "99": [7, 28], "gui_slider_posit": 7, "10": [7, 8, 11, 12, 14, 15, 17, 18, 22, 23, 24, 25, 27, 28, 33, 36], "gui_upload_button": 7, "add_upload_button": [7, 31], "upload": [7, 31, 33], "icon": [7, 13, 18, 25, 29, 31, 32], "on_upload": 7, "_": [7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 29], "valu": [7, 8, 12, 13, 14, 16, 17, 18, 19, 21, 26, 29, 31, 32, 35, 39], "len": [7, 16, 25], "gener": [7, 13, 24, 25, 29, 33, 35, 36, 39], "cloud": [7, 8, 12, 15, 16, 33, 36, 37], "point_posit": 7, "uniform": [7, 10, 20, 23, 24], "low": [7, 33], "high": [7, 33, 38], "5000": 7, "color_coeff": 7, "shape": [7, 11, 12, 13, 15, 16, 25, 29, 33, 36, 39], "point_cloud": [7, 8, 12, 15], "float32": [7, 15, 22, 30], "tile": 7, "reshap": [7, 15, 25], "astyp": [7, 15], "point_shap": [7, 12, 36], "circl": [7, 33, 36], "visibl": [7, 9, 12, 13, 19, 26, 29, 31, 32, 36, 37], "handl": [7, 13, 17, 25, 29, 31, 35, 36, 38], "linspac": [7, 27, 28], "int64": 7, "01": [7, 12, 13, 26, 27, 28, 29], "asynchron": [8, 35], "usag": 8, "soon": 8, "get": [8, 9, 11, 12, 13, 15, 16, 18, 25, 29, 32, 33, 35, 39], "typing_extens": [8, 27], "assert_nev": [8, 27], "gui_reset_scen": 8, "reset": [8, 13, 14, 16, 24, 25, 27, 29, 31, 33, 36], "gui_plan": 8, "add_dropdown": [8, 14, 18, 31], "grid": [8, 17, 33, 36], "plane": [8, 25, 33, 36], "xz": [8, 36], "xy": [8, 33, 36], "yx": [8, 36], "yz": [8, 36], "zx": [8, 36], "zy": [8, 36], "update_plan": 8, "add_grid": [8, 36], "20": [8, 10, 12, 20, 24, 28, 33, 36], "width_seg": [8, 36], "height_seg": [8, 36], "lambda": [8, 14, 18, 21, 25, 27, 33], "control": [8, 12, 13, 16, 18, 29, 31, 32, 33, 34, 36, 37], "gui_show_fram": 8, "show": [8, 9, 18, 20, 21, 22, 25, 31, 32, 33, 36, 38], "frame": [8, 10, 12, 15, 16, 20, 25, 27, 30, 33, 36, 37, 39], "gui_show_everyth": 8, "everyth": [8, 36], "gui_axi": 8, "gui_include_z": 8, "dropdown": [8, 31, 32], "option": [8, 10, 12, 15, 20, 30, 31, 32, 33, 35, 36], "els": [8, 14, 17, 18, 27], "gui_loc": 8, "locat": [8, 25, 33, 36], "05": [8, 11, 12, 13, 16, 25, 29], "gui_num_point": 8, "1000": [8, 22, 35, 36], "200_000": 8, "10_000": 8, "draw_fram": 8, "po": 8, "elif": [8, 27], "show_ax": [8, 12, 36], "axes_length": [8, 12, 16, 36], "draw_point": 8, "num_point": 8, "normal": [8, 10, 13, 20, 23, 24, 29, 39], "here": [8, 13, 19, 29], "whenev": [8, 9, 13, 29], "item": [8, 9, 14], "set_global_vis": [8, 36], "on_click": [8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 24, 25, 27, 29, 32, 37], "final": 8, "let": [8, 32], "initi": [8, 14, 31, 36], "loop": [8, 12, 13, 29, 33, 36], "infinit": 8, "how": [9, 22, 25], "world_ax": [9, 19, 26, 36], "on_client_connect": [9, 10, 20, 21, 25, 35, 38], "f": [9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 27, 29, 33, 36], "gui_info": 9, "get_client": [9, 16, 38], "kei": [9, 25, 33, 35, 36], "twxyz": 9, "tposit": 9, "tfov": 9, "taspect": 9, "tlast": 9, "addit": 10, "sync": 10, "tf": [10, 11, 12, 13, 16, 20, 25, 27, 29], "num_fram": [10, 12, 20, 30], "handler": [10, 20, 35], "rng": [10, 20], "default_rng": [10, 20], "make_fram": [10, 20], "sampl": [10, 13, 20, 29], "linalg": [10, 13, 20, 25, 29], "norm": [10, 13, 20, 25, 29], "label": [10, 13, 14, 17, 18, 20, 28, 29, 31, 32, 36, 37, 38], "frame_": [10, 16, 20], "add_label": [10, 36], "t_world_curr": [10, 20], "se3": [10, 16, 20, 25, 39], "from_rotation_and_transl": [10, 16, 20, 25, 39], "so3": [10, 11, 12, 13, 16, 20, 25, 27, 29, 39], "t_world_target": [10, 20], "from_transl": [10, 20, 39], "t_current_target": [10, 20], "invers": [10, 16, 20, 25, 39], "j": [10, 17, 20, 27, 33], "rang": [10, 12, 13, 15, 17, 20, 23, 24, 27, 29], "t_world_set": [10, 20], "exp": [10, 12, 13, 20, 29, 39], "log": [10, 13, 20, 29, 39], "19": [10, 20], "togeth": 10, "prevent": 10, "jitter": 10, "might": 10, "befor": 10, "other": [10, 35, 39], "60": [10, 12, 20, 33], "mous": [10, 20, 33], "orbit": [10, 20], "demo": [11, 12, 16, 25], "data": [11, 12, 16, 25, 28, 33], "see": [11, 12, 13, 14, 16, 25, 29, 38], "download_dragon_mesh": [11, 25], "sh": [11, 12, 16, 25], "trimesh": [11, 22, 25, 27, 36], "load_mesh": [11, 25], "dragon": [11, 25], "obj": [11, 25], "assert": [11, 13, 15, 16, 24, 29], "isinst": 11, "apply_scal": [11, 25], "face": [11, 13, 27, 29, 33, 36], "load": [11, 12, 13, 14, 16, 29, 30, 31, 33, 36], "add_mesh_simpl": [11, 13, 27, 36], "from_x_radian": [11, 39], "pi": [11, 12, 14, 27, 28, 33], "add_mesh_trimesh": [11, 22, 25, 27, 36], "smooth": [11, 36], "pars": 12, "stream": [12, 15], "captur": [12, 30, 33], "download_record3d_d": 12, "tyro": [12, 13, 14, 16, 29], "extra": [12, 14, 16, 30], "tqdm": [12, 15, 16], "auto": [12, 15, 16, 33], "data_path": 12, "record3d_d": 12, "downsample_factor": [12, 16, 30], "max_fram": 12, "bool": [12, 13, 29, 30, 31, 32, 35, 36, 37, 38], "request_share_url": [12, 38], "loader": [12, 14, 33], "record3dload": [12, 30], "playback": [12, 35], "ui": [12, 33], "gui_timestep": 12, "timestep": 12, "gui_next_fram": 12, "next": [12, 33], "gui_prev_fram": 12, "prev": [12, 33], "gui_plai": 12, "plai": [12, 27, 33], "gui_framer": 12, "fp": [12, 15], "gui_framerate_opt": 12, "add_button_group": [12, 31], "framer": [12, 33], "prev_timestep": 12, "nonloc": [12, 16, 20, 27], "current_timestep": 12, "frame_nod": 12, "framehandl": [12, 16, 36, 37], "get_fram": [12, 30], "get_point_cloud": [12, 30], "base": [12, 17, 25, 34, 35, 36, 37, 39], "append": [12, 13, 14, 24, 25, 29], "point_siz": [12, 15, 16, 36], "round": [12, 33, 36], "frustum": [12, 16, 33, 36, 37], "arctan2": [12, 16], "k": [12, 27, 30, 33], "add_camera_frustum": [12, 16, 36], "scale": [12, 13, 16, 25, 27, 29, 30, 33, 36], "15": [12, 16, 21, 33], "from_matrix": [12, 29, 39], "t_world_camera": [12, 16, 30], "ax": [12, 33, 36, 39], "axes_radiu": [12, 16, 36], "005": [12, 16], "enumer": [12, 13, 29], "cli": [12, 13, 14, 16, 29], "human": 13, "bodi": 13, "npz": 13, "instruct": [13, 29], "github": [13, 14, 18, 29, 33], "com": [13, 14, 18, 29], "vchouta": [13, 29], "smplx": [13, 29], "readm": [13, 29], "ov": [13, 29], "__future__": [13, 14, 15, 25, 29], "annot": [13, 14, 15, 25, 29, 35, 36], "np": [13, 15, 29], "frozen": [13, 29], "smploutput": [13, 29], "t_world_joint": [13, 29], "num_joint": [13, 29], "t_parent_joint": [13, 29], "smplhelper": [13, 29], "helper": [13, 14, 29], "famili": [13, 29], "implement": [13, 27, 29, 35, 39], "__init__": [13, 29], "self": [13, 29, 32, 36, 37, 39], "model_path": [13, 29], "suffix": [13, 29], "lower": [13, 14, 29, 33], "body_dict": [13, 29], "dict": [13, 28, 29, 30, 35, 38], "allow_pickl": [13, 29], "_j_regressor": [13, 29], "j_regressor": [13, 29], "_weight": [13, 29], "weight": [13, 29, 33, 36], "_v_templat": [13, 29], "v_templat": [13, 29], "_posedir": [13, 29], "posedir": [13, 29], "_shapedir": [13, 29], "shapedir": [13, 29], "_face": [13, 29], "num_beta": [13, 29], "parent_idx": [13, 29], "kintree_t": [13, 29], "get_output": [13, 29], "beta": [13, 29, 33], "joint_rotmat": [13, 29], "joint": [13, 14, 29, 30], "pose": [13, 29, 37, 39], "ident": [13, 29, 39], "v_tpose": [13, 29], "einsum": [13, 29], "vxb": [13, 29], "b": [13, 28, 29, 33, 36, 38], "vx": [13, 29, 39], "j_tpose": [13, 29], "jv": [13, 29], "jx": [13, 29], "se": [13, 29, 33, 39], "zero": [13, 29, 33], "ey": [13, 29, 33], "kinemat": [13, 29, 36], "copi": [13, 29, 33, 38], "linear": [13, 29], "blend": [13, 29], "skin": [13, 29, 36, 37], "pose_delta": [13, 29], "flatten": [13, 29], "v_blend": [13, 29], "byn": [13, 29], "n": [13, 15, 29, 33, 36, 39], "v_delta": [13, 29], "v_pose": [13, 29], "jxy": [13, 29], "vj": [13, 29], "vjy": [13, 29], "configure_them": [13, 16, 18, 20, 25, 27, 29, 31], "control_layout": [13, 16, 18, 29, 31], "collaps": [13, 16, 18, 29, 31, 33], "ll": [13, 29], "comput": [13, 15, 29, 31, 33, 39], "mesh": [13, 14, 22, 25, 27, 29, 30, 36, 37], "gui_el": [13, 29], "make_gui_el": [13, 29], "do": [13, 29, 36], "noth": [13, 29], "02": [13, 29], "continu": [13, 16, 29], "output": [13, 16, 29, 39], "smpl_output": [13, 29], "gui_beta": [13, 29], "gui_joint": [13, 14, 29], "as_matrix": [13, 25, 29, 39], "wirefram": [13, 29, 36], "gui_wirefram": [13, 29], "match": [13, 25, 29, 31], "gizmo": [13, 29, 33, 34, 36, 37], "transform_control": [13, 29], "guielement": [13, 29], "contain": [13, 29, 32, 33, 36, 37, 39], "guiinputhandl": [13, 14, 29, 31, 32], "transformcontrolshandl": [13, 29, 36, 37], "flag": [13, 29, 33, 35], "flip": [13, 29, 33], "tab_group": [13, 29], "add_tab_group": [13, 29, 31], "set_chang": [13, 29], "out": [13, 29, 33], "later": [13, 29], "add_tab": [13, 29, 32], "viewfind": [13, 29, 33], "90": [13, 29, 33, 36], "200": [13, 29, 36], "gui_show_control": [13, 29], "gui_reset_shap": [13, 29], "gui_random_shap": [13, 29], "loc": [13, 29], "angl": [13, 14, 29, 30, 33, 39], "gui_reset_joint": [13, 29], "gui_random_joint": [13, 29], "uniformli": [13, 29], "directli": [13, 20, 29, 38], "convert": [13, 29, 35], "quat": [13, 29], "set_callback_in_closur": [13, 29], "prefixed_joint_nam": [13, 29], "prefix": [13, 29], "joint_": [13, 29], "add_transform_control": [13, 29, 36], "depth_test": [13, 29, 36], "75": [13, 29], "count": [13, 29], "disable_ax": [13, 29, 36], "disable_slid": [13, 29, 36], "axisangl": [13, 29], "descript": [13, 14, 18, 29, 33], "__doc__": [13, 29], "yourdfpi": [14, 30], "robot_descript": 14, "work": [14, 31, 32, 37, 38], "clemens": 14, "viserurdf": [14, 30], "lightweight": 14, "take": [14, 39], "load_robot_descript": 14, "subset": 14, "avail": [14, 15], "robot_model_list": 14, "panda_descript": 14, "ur10_descript": 14, "ur3_descript": 14, "ur5_descript": 14, "cassie_descript": 14, "skydio_x2_descript": 14, "allegro_hand_descript": 14, "barrett_hand_descript": 14, "robotiq_2f85_descript": 14, "atlas_drc_descript": 14, "atlas_v4_descript": 14, "draco3_descript": 14, "g1_descript": 14, "h1_descript": 14, "anymal_c_descript": 14, "go2_descript": 14, "mini_cheetah_descript": 14, "logic": [14, 33], "initial_angl": 14, "update_robot_model": 14, "robot_nam": 14, "loading_mod": 14, "add_mod": [14, 21, 31], "add_markdown": [14, 18, 19, 21, 31], "termin": [14, 33], "progress": [14, 31, 33, 37], "ad": [14, 32, 33, 35, 36, 37, 38], "u": [14, 26, 32, 33], "etc": [14, 34, 36], "urdf_or_path": [14, 30], "close": [14, 15, 20, 21, 33, 36, 38], "clear": [14, 25, 33], "joint_nam": 14, "get_actuated_joint_limit": [14, 30], "configur": [14, 15, 30, 31], "update_cfg": [14, 30], "robot_model_nam": 14, "model": [14, 16, 33], "reset_button": 14, "g": [14, 25, 33, 36], "zip": [14, 33], "d": [15, 33], "pyrealsense2": 15, "contextlib": 15, "npt": 15, "ignor": [15, 25, 28, 36], "realsense_pipelin": 15, "yield": 15, "pipelin": 15, "depth": [15, 30, 36], "config": 15, "pipeline_wrapp": 15, "resolv": [15, 31], "enable_stream": 15, "z16": 15, "rgb8": 15, "point_cloud_arrays_from_fram": 15, "depth_fram": 15, "color_fram": 15, "map": [15, 30, 33, 38], "process": 15, "could": [15, 16, 38], "tune": 15, "pointcloud": 15, "decim": [15, 33], "decimation_filt": 15, "set_opt": 15, "filter_magnitud": 15, "downsampl": [15, 16], "calcul": [15, 33], "intrins": [15, 25], "map_to": 15, "texture_uv": 15, "asanyarrai": 15, "get_texture_coordin": 15, "color_imag": 15, "get_data": 15, "color_h": 15, "color_w": 15, "aren": 15, "our": [15, 31, 32, 36, 39], "clamp": 15, "pixel": 15, "clip": 15, "get_vertic": 15, "int32": 15, "10000000": 15, "wait": 15, "coher": 15, "wait_for_fram": 15, "get_depth_fram": 15, "get_color_fram": 15, "spars": 16, "reconstruct": 16, "download_colmap_garden": 16, "read_cameras_binari": 16, "read_images_binari": 16, "read_points3d_binari": 16, "colmap_path": 16, "colmap_garden": 16, "images_path": 16, "images_8": 16, "arg": 16, "factor": [16, 30, 36], "titlebar_cont": [16, 18, 25, 31], "info": [16, 33], "bin": 16, "points3d": 16, "gui_reset_up": 16, "hint": [16, 17, 31], "event": [16, 24, 27, 33, 35, 36, 37], "gui_point": 16, "50_000": 16, "gui_fram": 16, "gui_point_s": 16, "visualize_colmap": 16, "optim": 16, "ton": 16, "p_id": 16, "xyz": [16, 39], "points_select": 16, "choic": [16, 36], "replac": [16, 17, 33], "pcd": 16, "interpret": 16, "img_id": 16, "im": 16, "shuffl": [16, 33], "sort": [16, 33], "attach_callback": 16, "camerafrustumhandl": [16, 36, 37], "cam": 16, "camera_id": 16, "skip": [16, 33], "don": [16, 33, 35], "exist": 16, "image_filenam": 16, "qvec": 16, "tvec": 16, "pinhol": 16, "param": 16, "fx": 16, "fy": 16, "cx": 16, "cy": 16, "expect": 16, "got": 16, "need_upd": 16, "index": [17, 30, 33], "last": [17, 32, 33, 39], "matplotlib": 17, "grid_shap": 17, "x_valu": 17, "y_valu": 17, "add_swappable_mesh": 17, "swap": 17, "grai": [17, 31], "sphere": [17, 25, 27, 33, 36], "chosen": 17, "colormap": 17, "tab20": 17, "create_mesh": 17, "8": [17, 33], "add_box": [17, 27, 36], "sphere_": 17, "dimens": [17, 27, 33, 36, 39], "add_icospher": [17, 27, 36], "radiu": [17, 25, 27, 33, 36], "old": [17, 33], "becaus": 17, "same": [17, 31, 35, 36, 39], "light": [18, 33], "titlebarbutton": 18, "titlebarconfig": [18, 25, 31], "titlebarimag": 18, "href": 18, "studio": [18, 33], "project": [18, 25, 32, 39], "document": 18, "doc": 18, "image_url_light": 18, "_static": 18, "logo": [18, 31], "image_url_dark": 18, "dark": [18, 31], "image_alt": 18, "titlebar_them": 18, "gui_theme_cod": 18, "yet": 18, "titlebar": 18, "dark_mod": [18, 20, 27, 31], "mode": [18, 31], "show_logo": [18, 31], "show_share_button": [18, 31], "brand_color": [18, 25, 31], "brand": [18, 31, 33], "230": 18, "layout": [18, 28, 31, 33], "fix": [18, 31, 36], "control_width": [18, 31], "medium": [18, 31, 33], "larg": [18, 31, 33], "synchronize_them": 18, "ha": 19, "mdx": 19, "markdown_count": 19, "absolut": 19, "blurb": 19, "markdown_sourc": 19, "mdx_exampl": 19, "read_text": 19, "markdown_blurb": 19, "image_root": [19, 31], "add_3d_gui_contain": [20, 36], "allow": [20, 32, 36, 38], "standard": [20, 36, 39], "incorpor": 20, "action": [20, 39], "perform": [20, 33], "displayed_3d_contain": 20, "gui3dcontainerhandl": [20, 36, 37], "previous": [20, 35], "go_to": 20, "go": [20, 28, 31, 32, 33], "randomize_orient": 20, "bit": 20, "below": [21, 31], "titl": [21, 28, 31], "gui_titl": 21, "my": [21, 33], "modal_button": 21, "insid": [21, 25, 36], "2d": [22, 25, 31, 36, 37, 38, 39], "occlud": 22, "geometri": [22, 30, 33], "creation": [22, 25, 27, 36], "squar": [22, 33, 36, 39], "middl": [22, 33], "portal": 22, "250": 22, "750": 22, "cube": [22, 33], "ball": [23, 33], "add_spline_catmull_rom": [23, 24, 27, 36], "catmull_": [23, 24], "tension": [23, 24, 36], "line_width": [23, 24, 36], "segment": [23, 36], "control_point": [23, 36], "add_spline_cubic_bezi": [23, 36], "cubic_bezier_": 23, "gif": [24, 33], "720": 24, "1280": 24, "imwrit": 24, "extens": 24, "specifi": [25, 31, 33], "intersect": [25, 33], "cast": [25, 33], "theme": 25, "130": 25, "150": 25, "mesh_handl": 25, "hit_pos_handl": 25, "glbhandl": [25, 36, 37], "oper": [25, 39], "per": 25, "basi": 25, "global": [25, 26, 31, 36], "give": 25, "nice": 25, "click_button_handl": 25, "on_pointer_ev": [25, 36], "r_world_mesh": 25, "r_mesh_world": 25, "intersector": 25, "ray_triangl": 25, "raymeshintersector": 25, "hit_po": 25, "intersects_loc": 25, "remove_pointer_callback": [25, 36], "hit": 25, "distanc": 25, "hit_pos_mesh": 25, "icospher": [25, 36], "vertex_color": 25, "hit_pos_": 25, "on_pointer_callback_remov": [25, 36], "rect": [25, 36], "paint_button_handl": 25, "paint": [25, 33], "put": [25, 33], "r_camera_world": 25, "hstack": 25, "onto": [25, 35], "vertices_proj": 25, "tan": 25, "sure": 25, "lie": [25, 39], "onc": [25, 33, 36], "mask": [25, 30, 33], "whether": [25, 31, 36, 37], "9": [25, 33], "clear_button_handl": 25, "gui_up": 26, "player": [27, 33], "play_connect_4": 27, "tic": [27, 33], "tac": [27, 33], "toe": 27, "play_tic_tac_to": 27, "num_row": 27, "6": [27, 28, 33, 39], "num_col": 27, "whose_turn": 27, "red": [27, 31], "yellow": [27, 31], "pieces_in_col": 27, "board": [27, 33], "col": 27, "row": [27, 33], "annulu": 27, "45": [27, 33], "55": 27, "125": 27, "from_y_radian": [27, 39], "column": [27, 33], "setup_column": 27, "drop": [27, 33], "piec": 27, "cylind": [27, 33], "game_piec": 27, "row_anim": 27, "o": [27, 33], "gridlin": 27, "127": 27, "from_z_radian": [27, 39], "draw_symbol": 27, "symbol": [27, 33], "draw": [27, 36], "cell": [27, 33, 36], "35": 27, "setup_cel": 27, "clickabl": 27, "plot": [28, 31], "express": 28, "px": 28, "graph_object": 28, "pil": 28, "create_sinusoidal_wav": 28, "figur": [28, 31, 32], "sinusoid": 28, "wave": [28, 33], "x_data": 28, "y_data": 28, "sin": [28, 39], "fig": 28, "line": [28, 33, 36], "margin": [28, 33], "tight": [28, 36], "automargin": 28, "update_layout": 28, "l": [28, 33], "reduc": 28, "line_plot_tim": 28, "line_plot": 28, "add_plotli": [28, 31], "imshow": 28, "scatter": 28, "scatter_3d": 28, "iri": 28, "sepal_length": 28, "sepal_width": 28, "petal_width": 28, "speci": 28, "legend": 28, "yanchor": 28, "top": [28, 33, 36, 38], "xanchor": 28, "bone_wxyz": [29, 36], "bone_posit": [29, 36], "skinned_handl": 29, "add_mesh_skin": [29, 36], "skin_weight": [29, 36], "stack": [29, 33], "bone": [29, 33, 36, 37], "util": 30, "record3dfram": 30, "singl": [30, 35, 36, 38], "either": [30, 31, 36], "resiz": [30, 33, 36], "root_node_nam": 30, "root": [30, 31, 33, 35, 37], "mesh_color_overrid": 30, "overrid": [30, 35], "order": [30, 31, 32, 33], "actuat": 30, "limit": [30, 36], "get_actuated_joint_nam": 30, "individu": [31, 35, 36], "set_panel_label": 31, "appear": 31, "panel": [31, 32, 33, 38], "front": [31, 36], "bar": [31, 33], "boolean": [31, 36], "indic": [31, 36], "enabl": 31, "integ": [31, 38], "repres": [31, 36], "expand_by_default": 31, "guifolderhandl": [31, 32], "folder": [31, 32, 33], "popul": 31, "smallest": 31, "compon": [31, 33, 38], "guimodalhandl": 31, "modal": 31, "popup": 31, "guitabgrouphandl": [31, 32], "guimarkdownhandl": [31, 32], "markdown": [31, 32, 33], "guiplotlyhandl": [31, 32], "plotli": [31, 32], "instal": 31, "ratio": [31, 32, 33, 36], "pink": 31, "grape": 31, "violet": 31, "indigo": 31, "blue": 31, "cyan": 31, "green": [31, 33], "lime": 31, "orang": 31, "teal": 31, "iconnam": [31, 32, 33], "guibuttonhandl": [31, 32], "everi": 31, "back": [31, 33, 36], "hover": 31, "mime_typ": 31, "guiuploadbuttonhandl": 31, "filter": [31, 33, 35], "sequenc": 31, "tliteralstr": 31, "guibuttongrouphandl": [31, 32], "tstring": 31, "intorfloat": 31, "user": [31, 32, 33], "bound": 31, "precis": [31, 39], "minimum": 31, "maximum": 31, "length": [31, 36, 39], "guidropdownhandl": [31, 32], "guiprogressbarhandl": 31, "stripe": [31, 33], "numer": 31, "provid": [31, 35, 36, 38], "string": [31, 36, 38], "min_rang": 31, "fixed_endpoint": 31, "endpoint": 31, "picker": [31, 33], "add_rgba": 31, "func": [32, 36, 37], "thread": [32, 33, 38], "__post_init__": 32, "regist": [32, 33, 35], "ourself": 32, "construct": [32, 39], "disallow": 32, "dictat": 32, "perman": [32, 37], "timestamp": 32, "temporarili": 32, "press": [32, 33], "cannot": 32, "style": [32, 33], "stringtyp": 32, "care": 32, "about": [32, 36], "consist": 32, "possibl": 32, "most": [32, 36], "flexibl": 32, "declar": 32, "guitabhandl": 32, "enum": 33, "alia": 33, "__new__": 33, "kwarg": 33, "referenc": 33, "tabler": 33, "subclass": [33, 35], "reason": 33, "thousand": [33, 36], "result": 33, "hundr": 33, "millisecond": 33, "icon_123": 33, "123": 33, "icon_24_hour": 33, "24": 33, "hour": 33, "icon_2fa": 33, "2fa": 33, "icon_360": 33, "360": 33, "icon_360_view": 33, "icon_3d_cube_spher": 33, "icon_3d_cube_sphere_off": 33, "off": 33, "icon_3d_rot": 33, "a_b": 33, "a_b_2": 33, "a_b_off": 33, "abacu": 33, "abacus_off": 33, "abc": [33, 35, 39], "access_point": 33, "access_point_off": 33, "accessible_off": 33, "accessible_off_fil": 33, "fill": 33, "activ": [33, 36], "activity_heartbeat": 33, "heartbeat": 33, "ad_2": 33, "ad_circl": 33, "ad_circle_fil": 33, "ad_circle_off": 33, "ad_fil": 33, "ad_off": 33, "address_book": 33, "book": 33, "address_book_off": 33, "adjust": 33, "adjustments_alt": 33, "alt": 33, "adjustments_bolt": 33, "bolt": 33, "adjustments_cancel": 33, "cancel": 33, "adjustments_check": 33, "adjustments_cod": 33, "adjustments_cog": 33, "cog": 33, "adjustments_dollar": 33, "dollar": 33, "adjustments_down": 33, "down": [33, 36], "adjustments_exclam": 33, "exclam": 33, "adjustments_fil": 33, "adjustments_heart": 33, "heart": 33, "adjustments_horizont": 33, "horizont": 33, "adjustments_minu": 33, "minu": 33, "adjustments_off": 33, "adjustments_paus": 33, "paus": 33, "adjustments_pin": 33, "pin": 33, "adjustments_plu": 33, "plu": 33, "adjustments_quest": 33, "question": 33, "adjustments_search": 33, "search": 33, "adjustments_shar": 33, "adjustments_star": 33, "star": 33, "adjustments_up": 33, "adjustments_x": 33, "aerial_lift": 33, "aerial": 33, "lift": 33, "affili": 33, "affiliate_fil": 33, "air_balloon": 33, "air": 33, "balloon": 33, "air_condit": 33, "condit": 33, "air_conditioning_dis": 33, "alarm": 33, "alarm_fil": 33, "alarm_minu": 33, "alarm_minus_fil": 33, "alarm_off": 33, "alarm_plu": 33, "alarm_plus_fil": 33, "alarm_snooz": 33, "snooz": 33, "alarm_snooze_fil": 33, "album": 33, "album_off": 33, "alert_circl": 33, "alert": 33, "alert_circle_fil": 33, "alert_hexagon": 33, "hexagon": 33, "alert_hexagon_fil": 33, "alert_octagon": 33, "octagon": 33, "alert_octagon_fil": 33, "alert_smal": 33, "alert_squar": 33, "alert_square_fil": 33, "alert_square_round": 33, "alert_square_rounded_fil": 33, "alert_triangl": 33, "triangl": 33, "alert_triangle_fil": 33, "alien": 33, "alien_fil": 33, "align_box_bottom_cent": 33, "align": 33, "center": 33, "align_box_bottom_center_fil": 33, "align_box_bottom_left": 33, "align_box_bottom_left_fil": 33, "align_box_bottom_right": 33, "align_box_bottom_right_fil": 33, "align_box_center_bottom": 33, "align_box_center_middl": 33, "align_box_center_middle_fil": 33, "align_box_center_stretch": 33, "stretch": 33, "align_box_center_top": 33, "align_box_left_bottom": 33, "align_box_left_bottom_fil": 33, "align_box_left_middl": 33, "align_box_left_middle_fil": 33, "align_box_left_stretch": 33, "align_box_left_top": 33, "align_box_left_top_fil": 33, "align_box_right_bottom": 33, "align_box_right_bottom_fil": 33, "align_box_right_middl": 33, "align_box_right_middle_fil": 33, "align_box_right_stretch": 33, "align_box_right_top": 33, "align_box_right_top_fil": 33, "align_box_top_cent": 33, "align_box_top_center_fil": 33, "align_box_top_left": 33, "align_box_top_left_fil": 33, "align_box_top_right": 33, "align_box_top_right_fil": 33, "align_cent": 33, "align_justifi": 33, "justifi": 33, "align_left": 33, "align_right": 33, "alpha": 33, "alphabet_cyril": 33, "alphabet": 33, "cyril": 33, "alphabet_greek": 33, "greek": 33, "alphabet_latin": 33, "latin": 33, "ambul": 33, "ampersand": 33, "analyz": 33, "analyze_fil": 33, "analyze_off": 33, "anchor": 33, "anchor_off": 33, "ankh": 33, "antenna": 33, "antenna_bars_1": 33, "antenna_bars_2": 33, "antenna_bars_3": 33, "antenna_bars_4": 33, "antenna_bars_5": 33, "antenna_bars_off": 33, "antenna_off": 33, "apertur": 33, "aperture_off": 33, "api_app": 33, "app": 33, "api_app_off": 33, "api_off": 33, "app_window": 33, "app_window_fil": 33, "appl": 33, "apps_fil": 33, "apps_off": 33, "archiv": 33, "archive_fil": 33, "archive_off": 33, "armchair": 33, "armchair_2": 33, "armchair_2_off": 33, "armchair_off": 33, "arrow_autofit_cont": 33, "arrow": 33, "autofit": 33, "arrow_autofit_content_fil": 33, "arrow_autofit_down": 33, "arrow_autofit_height": 33, "arrow_autofit_left": 33, "arrow_autofit_right": 33, "arrow_autofit_up": 33, "arrow_autofit_width": 33, "arrow_back": 33, "arrow_back_up": 33, "arrow_back_up_doubl": 33, "doubl": [33, 36], "arrow_badge_down": 33, "badg": 33, "arrow_badge_down_fil": 33, "arrow_badge_left": 33, "arrow_badge_left_fil": 33, "arrow_badge_right": 33, "arrow_badge_right_fil": 33, "arrow_badge_up": 33, "arrow_badge_up_fil": 33, "arrow_bar_both": 33, "arrow_bar_down": 33, "arrow_bar_left": 33, "arrow_bar_right": 33, "arrow_bar_to_down": 33, "arrow_bar_to_left": 33, "arrow_bar_to_right": 33, "arrow_bar_to_up": 33, "arrow_bar_up": 33, "arrow_bear_left": 33, "bear": 33, "arrow_bear_left_2": 33, "arrow_bear_right": 33, "arrow_bear_right_2": 33, "arrow_big_down": 33, "big": 33, "arrow_big_down_fil": 33, "arrow_big_down_lin": 33, "arrow_big_down_line_fil": 33, "arrow_big_down_lines_fil": 33, "arrow_big_left": 33, "arrow_big_left_fil": 33, "arrow_big_left_lin": 33, "arrow_big_left_line_fil": 33, "arrow_big_left_lines_fil": 33, "arrow_big_right": 33, "arrow_big_right_fil": 33, "arrow_big_right_lin": 33, "arrow_big_right_line_fil": 33, "arrow_big_right_lines_fil": 33, "arrow_big_up": 33, "arrow_big_up_fil": 33, "arrow_big_up_lin": 33, "arrow_big_up_line_fil": 33, "arrow_big_up_lines_fil": 33, "arrow_bounc": 33, "bounc": 33, "arrow_capsul": 33, "capsul": 33, "arrow_curve_left": 33, "curv": [33, 36], "arrow_curve_right": 33, "arrow_down": 33, "arrow_down_bar": 33, "arrow_down_circl": 33, "arrow_down_left": 33, "arrow_down_left_circl": 33, "arrow_down_rhombu": 33, "rhombu": 33, "arrow_down_right": 33, "arrow_down_right_circl": 33, "arrow_down_squar": 33, "arrow_down_tail": 33, "tail": 33, "arrow_elbow_left": 33, "elbow": 33, "arrow_elbow_right": 33, "arrow_fork": 33, "fork": 33, "arrow_forward": 33, "arrow_forward_up": 33, "arrow_forward_up_doubl": 33, "arrow_guid": 33, "guid": 33, "arrow_iter": 33, "arrow_left": 33, "arrow_left_bar": 33, "arrow_left_circl": 33, "arrow_left_rhombu": 33, "arrow_left_right": 33, "arrow_left_squar": 33, "arrow_left_tail": 33, "arrow_loop_left": 33, "arrow_loop_left_2": 33, "arrow_loop_right": 33, "arrow_loop_right_2": 33, "arrow_merg": 33, "merg": 33, "arrow_merge_both": 33, "arrow_merge_left": 33, "arrow_merge_right": 33, "arrow_move_down": 33, "arrow_move_left": 33, "arrow_move_right": 33, "arrow_move_up": 33, "arrow_narrow_down": 33, "narrow": 33, "arrow_narrow_left": 33, "arrow_narrow_right": 33, "arrow_narrow_up": 33, "arrow_ramp_left": 33, "ramp": 33, "arrow_ramp_left_2": 33, "arrow_ramp_left_3": 33, "arrow_ramp_right": 33, "arrow_ramp_right_2": 33, "arrow_ramp_right_3": 33, "arrow_right": 33, "arrow_right_bar": 33, "arrow_right_circl": 33, "arrow_right_rhombu": 33, "arrow_right_squar": 33, "arrow_right_tail": 33, "arrow_rotary_first_left": 33, "rotari": 33, "arrow_rotary_first_right": 33, "arrow_rotary_last_left": 33, "arrow_rotary_last_right": 33, "arrow_rotary_left": 33, "arrow_rotary_right": 33, "arrow_rotary_straight": 33, "straight": 33, "arrow_roundabout_left": 33, "roundabout": 33, "arrow_roundabout_right": 33, "arrow_sharp_turn_left": 33, "sharp": 33, "turn": 33, "arrow_sharp_turn_right": 33, "arrow_up": 33, "arrow_up_bar": 33, "arrow_up_circl": 33, "arrow_up_left": 33, "arrow_up_left_circl": 33, "arrow_up_rhombu": 33, "arrow_up_right": 33, "arrow_up_right_circl": 33, "arrow_up_squar": 33, "arrow_up_tail": 33, "arrow_wave_left_down": 33, "arrow_wave_left_up": 33, "arrow_wave_right_down": 33, "arrow_wave_right_up": 33, "arrow_zig_zag": 33, "zig": 33, "zag": 33, "arrows_cross": 33, "cross": 33, "arrows_diagon": 33, "diagon": 33, "arrows_diagonal_2": 33, "arrows_diagonal_minim": 33, "minim": 33, "arrows_diagonal_minimize_2": 33, "arrows_diff": 33, "diff": 33, "arrows_double_ne_sw": 33, "ne": 33, "sw": 33, "arrows_double_nw_s": 33, "nw": 33, "arrows_double_se_nw": 33, "arrows_double_sw_n": 33, "arrows_down": 33, "arrows_down_up": 33, "arrows_exchang": 33, "exchang": 33, "arrows_exchange_2": 33, "arrows_horizont": 33, "arrows_join": 33, "join": 33, "arrows_join_2": 33, "arrows_left": 33, "arrows_left_down": 33, "arrows_left_right": 33, "arrows_maxim": 33, "maxim": 33, "arrows_minim": 33, "arrows_mov": 33, "arrows_move_horizont": 33, "arrows_move_vert": 33, "arrows_random": 33, "arrows_right": 33, "arrows_right_down": 33, "arrows_right_left": 33, "arrows_shuffl": 33, "arrows_shuffle_2": 33, "arrows_sort": 33, "arrows_split": 33, "split": 33, "arrows_split_2": 33, "arrows_transfer_down": 33, "transfer": 33, "arrows_transfer_up": 33, "arrows_up": 33, "arrows_up_down": 33, "arrows_up_left": 33, "arrows_up_right": 33, "arrows_vert": 33, "artboard": 33, "artboard_fil": 33, "artboard_off": 33, "articl": 33, "article_filled_fil": 33, "article_off": 33, "aspect_ratio": 33, "aspect_ratio_fil": 33, "aspect_ratio_off": 33, "assembli": 33, "assembly_off": 33, "asterisk": 33, "asterisk_simpl": 33, "AT": 33, "at_off": 33, "atom_2": 33, "atom_2_fil": 33, "atom_off": 33, "augmented_r": 33, "augment": 33, "realiti": 33, "augmented_reality_2": 33, "augmented_reality_off": 33, "award": 33, "award_fil": 33, "award_off": 33, "axis_x": 33, "axis_i": 33, "baby_bottl": 33, "babi": 33, "bottl": 33, "baby_carriag": 33, "carriag": 33, "backho": 33, "backpack": 33, "backpack_off": 33, "backslash": 33, "backspac": 33, "backspace_fil": 33, "badge_3d": 33, "badge_4k": 33, "4k": 33, "badge_8k": 33, "8k": 33, "badge_ad": 33, "badge_ar": 33, "badge_cc": 33, "cc": 33, "badge_fil": 33, "badge_hd": 33, "hd": 33, "badge_off": 33, "badge_sd": 33, "sd": 33, "badge_tm": 33, "tm": 33, "badge_vo": 33, "vo": 33, "badge_vr": 33, "vr": 33, "badge_wc": 33, "wc": 33, "badges_fil": 33, "badges_off": 33, "baguett": 33, "ball_american_footbal": 33, "american": 33, "footbal": 33, "ball_american_football_off": 33, "ball_basebal": 33, "basebal": 33, "ball_basketbal": 33, "basketbal": 33, "ball_bowl": 33, "bowl": 33, "ball_footbal": 33, "ball_football_off": 33, "ball_tenni": 33, "tenni": 33, "ball_volleybal": 33, "volleybal": 33, "balloon_fil": 33, "balloon_off": 33, "ballpen": 33, "ballpen_fil": 33, "ballpen_off": 33, "ban": 33, "bandag": 33, "bandage_fil": 33, "bandage_off": 33, "barbel": 33, "barbell_off": 33, "barcod": 33, "barcode_off": 33, "barrel": 33, "barrel_off": 33, "barrier_block": 33, "barrier": 33, "barrier_block_off": 33, "baselin": 33, "baseline_density_larg": 33, "densiti": 33, "baseline_density_medium": 33, "baseline_density_smal": 33, "basket": 33, "basket_fil": 33, "basket_off": 33, "bat": 33, "bath": 33, "bath_fil": 33, "bath_off": 33, "batteri": 33, "battery_1": 33, "battery_1_fil": 33, "battery_2": 33, "battery_2_fil": 33, "battery_3": 33, "battery_3_fil": 33, "battery_4": 33, "battery_4_fil": 33, "battery_automot": 33, "automot": 33, "battery_charg": 33, "charg": 33, "battery_charging_2": 33, "battery_eco": 33, "eco": 33, "battery_fil": 33, "battery_off": 33, "beach": 33, "beach_off": 33, "bed": 33, "bed_fil": 33, "bed_off": 33, "beer": 33, "beer_fil": 33, "beer_off": 33, "bell": 33, "bell_bolt": 33, "bell_cancel": 33, "bell_check": 33, "bell_cod": 33, "bell_cog": 33, "bell_dollar": 33, "bell_down": 33, "bell_exclam": 33, "bell_fil": 33, "bell_heart": 33, "bell_minu": 33, "bell_minus_fil": 33, "bell_off": 33, "bell_paus": 33, "bell_pin": 33, "bell_plu": 33, "bell_plus_fil": 33, "bell_quest": 33, "bell_ring": 33, "ring": 33, "bell_ringing_2": 33, "bell_ringing_2_fil": 33, "bell_ringing_fil": 33, "bell_school": 33, "school": 33, "bell_search": 33, "bell_shar": 33, "bell_star": 33, "bell_up": 33, "bell_x": 33, "bell_x_fil": 33, "bell_z": 33, "bell_z_fil": 33, "bibl": 33, "bike": 33, "bike_off": 33, "binari": [33, 36], "binary_off": 33, "binary_tre": 33, "binary_tree_2": 33, "biohazard": 33, "biohazard_off": 33, "blade": 33, "blade_fil": 33, "bleach": 33, "bleach_chlorin": 33, "chlorin": 33, "bleach_no_chlorin": 33, "bleach_off": 33, "blockquot": 33, "bluetooth": 33, "bluetooth_connect": 33, "bluetooth_off": 33, "bluetooth_x": 33, "blur": 33, "blur_off": 33, "bmp": 33, "bold": 33, "bold_off": 33, "bolt_off": 33, "bomb": 33, "bomb_fil": 33, "bone_off": 33, "bong": 33, "bong_off": 33, "book_2": 33, "book_download": 33, "book_fil": 33, "book_off": 33, "book_upload": 33, "bookmark": 33, "bookmark_edit": 33, "bookmark_fil": 33, "bookmark_minu": 33, "bookmark_off": 33, "bookmark_plu": 33, "bookmark_quest": 33, "bookmarks_off": 33, "books_off": 33, "border_al": 33, "border": 33, "border_bottom": 33, "border_corn": 33, "border_horizont": 33, "border_inn": 33, "inner": 33, "border_left": 33, "border_non": 33, "border_out": 33, "outer": 33, "border_radiu": 33, "border_right": 33, "border_sid": 33, "side": [33, 36], "border_styl": 33, "border_style_2": 33, "border_top": 33, "border_vert": 33, "bottle_fil": 33, "bottle_off": 33, "bounce_left": 33, "bounce_right": 33, "bow": 33, "box_align_bottom": 33, "box_align_bottom_fil": 33, "box_align_bottom_left": 33, "box_align_bottom_left_fil": 33, "box_align_bottom_right": 33, "box_align_bottom_right_fil": 33, "box_align_left": 33, "box_align_left_fil": 33, "box_align_right": 33, "box_align_right_fil": 33, "box_align_top": 33, "box_align_top_fil": 33, "box_align_top_left": 33, "box_align_top_left_fil": 33, "box_align_top_right": 33, "box_align_top_right_fil": 33, "box_margin": 33, "box_model": 33, "box_model_2": 33, "box_model_2_off": 33, "box_model_off": 33, "box_multipl": 33, "multipl": [33, 36, 39], "box_multiple_0": 33, "box_multiple_1": 33, "box_multiple_2": 33, "box_multiple_3": 33, "box_multiple_4": 33, "box_multiple_5": 33, "box_multiple_6": 33, "box_multiple_7": 33, "box_multiple_8": 33, "box_multiple_9": 33, "box_off": 33, "box_pad": 33, "pad": 33, "box_seam": 33, "seam": 33, "brace": 33, "braces_off": 33, "bracket": 33, "brackets_contain": 33, "brackets_contain_end": 33, "brackets_contain_start": 33, "brackets_off": 33, "braill": 33, "brain": 33, "brand_4chan": 33, "4chan": 33, "brand_abstract": 33, "abstract": [33, 35, 39], "brand_adob": 33, "adob": 33, "brand_adonis_j": 33, "adoni": 33, "brand_airbnb": 33, "airbnb": 33, "brand_airt": 33, "airtabl": 33, "brand_algolia": 33, "algolia": 33, "brand_alipai": 33, "alipai": 33, "brand_alpine_j": 33, "alpin": 33, "brand_amazon": 33, "amazon": 33, "brand_amd": 33, "amd": 33, "brand_amigo": 33, "amigo": 33, "brand_among_u": 33, "among": 33, "brand_android": 33, "android": 33, "brand_angular": 33, "angular": 33, "brand_ans": 33, "ansibl": 33, "brand_ao3": 33, "ao3": 33, "brand_appgalleri": 33, "appgalleri": 33, "brand_appl": 33, "brand_apple_arcad": 33, "arcad": 33, "brand_apple_podcast": 33, "podcast": 33, "brand_appstor": 33, "appstor": 33, "brand_asana": 33, "asana": 33, "brand_aw": 33, "aw": 33, "brand_azur": 33, "azur": 33, "brand_backbon": 33, "backbon": 33, "brand_badoo": 33, "badoo": 33, "brand_baidu": 33, "baidu": 33, "brand_bandcamp": 33, "bandcamp": 33, "brand_bandlab": 33, "bandlab": 33, "brand_beat": 33, "beat": 33, "brand_beh": 33, "behanc": 33, "brand_bilibili": 33, "bilibili": 33, "brand_bin": 33, "binanc": 33, "brand_b": 33, "bing": 33, "brand_bitbucket": 33, "bitbucket": 33, "brand_blackberri": 33, "blackberri": 33, "brand_blend": 33, "brand_blogg": 33, "blogger": 33, "brand_book": 33, "brand_bootstrap": 33, "bootstrap": 33, "brand_bulma": 33, "bulma": 33, "brand_bumbl": 33, "bumbl": 33, "brand_bunpo": 33, "bunpo": 33, "brand_c_sharp": 33, "c": 33, "brand_cak": 33, "cake": 33, "brand_cakephp": 33, "cakephp": 33, "brand_campaignmonitor": 33, "campaignmonitor": 33, "brand_carbon": 33, "carbon": 33, "brand_cashapp": 33, "cashapp": 33, "brand_chrom": 33, "chrome": 33, "brand_cinema_4d": 33, "cinema": 33, "brand_citymapp": 33, "citymapp": 33, "brand_cloudflar": 33, "cloudflar": 33, "brand_codecov": 33, "codecov": 33, "brand_codepen": 33, "codepen": 33, "brand_codesandbox": 33, "codesandbox": 33, "brand_cohost": 33, "cohost": 33, "brand_coinbas": 33, "coinbas": 33, "brand_comedy_centr": 33, "comedi": 33, "central": 33, "brand_coreo": 33, "coreo": 33, "brand_couchdb": 33, "couchdb": 33, "brand_couchsurf": 33, "couchsurf": 33, "brand_cpp": 33, "cpp": 33, "brand_craft": 33, "craft": 33, "brand_crunchbas": 33, "crunchbas": 33, "brand_css3": 33, "css3": 33, "brand_ctemplar": 33, "ctemplar": 33, "brand_cucumb": 33, "cucumb": 33, "brand_cupra": 33, "cupra": 33, "brand_cypress": 33, "cypress": 33, "brand_d3": 33, "d3": 33, "brand_days_count": 33, "dai": 33, "brand_dco": 33, "dco": 33, "brand_debian": 33, "debian": 33, "brand_deez": 33, "deezer": 33, "brand_deliveroo": 33, "deliveroo": 33, "brand_deno": 33, "deno": 33, "brand_denodo": 33, "denodo": 33, "brand_deviantart": 33, "deviantart": 33, "brand_digg": 33, "digg": 33, "brand_dingtalk": 33, "dingtalk": 33, "brand_discord": 33, "discord": 33, "brand_discord_fil": 33, "brand_disnei": 33, "disnei": 33, "brand_disqu": 33, "disqu": 33, "brand_django": 33, "django": 33, "brand_dock": 33, "docker": 33, "brand_doctrin": 33, "doctrin": 33, "brand_dolby_digit": 33, "dolbi": 33, "digit": 33, "brand_douban": 33, "douban": 33, "brand_dribbbl": 33, "dribbbl": 33, "brand_dribbble_fil": 33, "brand_drop": 33, "brand_drup": 33, "drupal": 33, "brand_edg": 33, "edg": 33, "brand_elast": 33, "elast": 33, "brand_electronic_art": 33, "electron": 33, "art": 33, "brand_emb": 33, "ember": 33, "brand_envato": 33, "envato": 33, "brand_etsi": 33, "etsi": 33, "brand_evernot": 33, "evernot": 33, "brand_facebook": 33, "facebook": 33, "brand_facebook_fil": 33, "brand_feedli": 33, "feedli": 33, "brand_figma": 33, "figma": 33, "brand_filezilla": 33, "filezilla": 33, "brand_find": 33, "finder": 33, "brand_firebas": 33, "firebas": 33, "brand_firefox": 33, "firefox": 33, "brand_fiverr": 33, "fiverr": 33, "brand_flickr": 33, "flickr": 33, "brand_flightradar24": 33, "flightradar24": 33, "brand_flipboard": 33, "flipboard": 33, "brand_flutt": 33, "flutter": 33, "brand_fortnit": 33, "fortnit": 33, "brand_foursquar": 33, "foursquar": 33, "brand_fram": 33, "brand_framer_mot": 33, "motion": 33, "brand_funim": 33, "funim": 33, "brand_gatsbi": 33, "gatsbi": 33, "brand_git": 33, "git": 33, "brand_github": 33, "brand_github_copilot": 33, "copilot": 33, "brand_github_fil": 33, "brand_gitlab": 33, "gitlab": 33, "brand_gmail": 33, "gmail": 33, "brand_golang": 33, "golang": 33, "brand_googl": 33, "googl": 33, "brand_google_analyt": 33, "analyt": 33, "brand_google_big_queri": 33, "queri": 33, "brand_google_dr": 33, "drive": 33, "brand_google_fit": 33, "fit": 33, "brand_google_hom": 33, "home": 33, "brand_google_map": 33, "brand_google_on": 33, "brand_google_photo": 33, "photo": 33, "brand_google_plai": 33, "brand_google_podcast": 33, "brand_grammarli": 33, "grammarli": 33, "brand_graphql": 33, "graphql": 33, "brand_gravatar": 33, "gravatar": 33, "brand_grindr": 33, "grindr": 33, "brand_guardian": 33, "guardian": 33, "brand_gumroad": 33, "gumroad": 33, "brand_hbo": 33, "hbo": 33, "brand_headlessui": 33, "headlessui": 33, "brand_hexo": 33, "hexo": 33, "brand_hipchat": 33, "hipchat": 33, "brand_html5": 33, "html5": 33, "brand_inertia": 33, "inertia": 33, "brand_instagram": 33, "instagram": 33, "brand_intercom": 33, "intercom": 33, "brand_itch": 33, "itch": 33, "brand_javascript": 33, "javascript": 33, "brand_juejin": 33, "juejin": 33, "brand_kbin": 33, "kbin": 33, "brand_kick": 33, "kick": 33, "brand_kickstart": 33, "kickstart": 33, "brand_kotlin": 33, "kotlin": 33, "brand_laravel": 33, "laravel": 33, "brand_lastfm": 33, "lastfm": 33, "brand_leetcod": 33, "leetcod": 33, "brand_letterboxd": 33, "letterboxd": 33, "brand_lin": 33, "brand_linkedin": 33, "linkedin": 33, "brand_linktre": 33, "linktre": 33, "brand_linqpad": 33, "linqpad": 33, "brand_loom": 33, "loom": 33, "brand_mailgun": 33, "mailgun": 33, "brand_mantin": 33, "mantin": 33, "brand_mastercard": 33, "mastercard": 33, "brand_mastodon": 33, "mastodon": 33, "brand_matrix": 33, "brand_mcdonald": 33, "mcdonald": 33, "brand_medium": 33, "brand_merced": 33, "merced": 33, "brand_messeng": 33, "messeng": 33, "brand_meta": 33, "meta": 33, "brand_microsoft_team": 33, "microsoft": 33, "team": 33, "brand_minecraft": 33, "minecraft": 33, "brand_miniprogram": 33, "miniprogram": 33, "brand_mixpanel": 33, "mixpanel": 33, "brand_mondai": 33, "mondai": 33, "brand_mongodb": 33, "mongodb": 33, "brand_my_oppo": 33, "oppo": 33, "brand_mysql": 33, "mysql": 33, "brand_national_geograph": 33, "nation": 33, "geograph": 33, "brand_nem": 33, "nem": 33, "brand_netbean": 33, "netbean": 33, "brand_netease_mus": 33, "neteas": 33, "music": 33, "brand_netflix": 33, "netflix": 33, "brand_nexo": 33, "nexo": 33, "brand_nextcloud": 33, "nextcloud": 33, "brand_nextj": 33, "nextj": 33, "brand_nodej": 33, "brand_nord_vpn": 33, "nord": 33, "vpn": 33, "brand_not": 33, "notion": 33, "brand_npm": 33, "npm": 33, "brand_nuxt": 33, "nuxt": 33, "brand_nytim": 33, "nytim": 33, "brand_oauth": 33, "oauth": 33, "brand_offic": 33, "offic": 33, "brand_ok_ru": 33, "ok": 33, "ru": 33, "brand_onedr": 33, "onedr": 33, "brand_onlyfan": 33, "onlyfan": 33, "brand_open_sourc": 33, "brand_openai": 33, "openai": 33, "brand_openvpn": 33, "openvpn": 33, "brand_opera": 33, "opera": 33, "brand_pagekit": 33, "pagekit": 33, "brand_patreon": 33, "patreon": 33, "brand_payp": 33, "paypal": 33, "brand_paypal_fil": 33, "brand_paypai": 33, "paypai": 33, "brand_peanut": 33, "peanut": 33, "brand_pepsi": 33, "pepsi": 33, "brand_php": 33, "php": 33, "brand_picsart": 33, "picsart": 33, "brand_pinterest": 33, "pinterest": 33, "brand_planetscal": 33, "planetscal": 33, "brand_pocket": 33, "pocket": 33, "brand_polym": 33, "polym": 33, "brand_powershel": 33, "powershel": 33, "brand_prisma": 33, "prisma": 33, "brand_producthunt": 33, "producthunt": 33, "brand_pushbullet": 33, "pushbullet": 33, "brand_pushov": 33, "pushov": 33, "brand_python": 33, "brand_qq": 33, "qq": 33, "brand_radix_ui": 33, "radix": 33, "brand_react": 33, "brand_react_n": 33, "nativ": 33, "brand_reason": 33, "brand_reddit": 33, "reddit": 33, "brand_redhat": 33, "redhat": 33, "brand_redux": 33, "redux": 33, "brand_revolut": 33, "revolut": 33, "brand_rumbl": 33, "rumbl": 33, "brand_rust": 33, "rust": 33, "brand_safari": 33, "safari": 33, "brand_samsungpass": 33, "samsungpass": 33, "brand_sass": 33, "sass": 33, "brand_sentri": 33, "sentri": 33, "brand_sharik": 33, "sharik": 33, "brand_shazam": 33, "shazam": 33, "brand_shope": 33, "shope": 33, "brand_sketch": 33, "sketch": 33, "brand_skyp": 33, "skype": 33, "brand_slack": 33, "slack": 33, "brand_snapchat": 33, "snapchat": 33, "brand_snapse": 33, "snapse": 33, "brand_snowflak": 33, "snowflak": 33, "brand_socket_io": 33, "socket": 33, "io": 33, "brand_solidj": 33, "solidj": 33, "brand_soundcloud": 33, "soundcloud": 33, "brand_spacehei": 33, "spacehei": 33, "brand_speedtest": 33, "speedtest": 33, "brand_spotifi": 33, "spotifi": 33, "brand_stackoverflow": 33, "stackoverflow": 33, "brand_stackshar": 33, "stackshar": 33, "brand_steam": 33, "steam": 33, "brand_storj": 33, "storj": 33, "brand_storybook": 33, "storybook": 33, "brand_storytel": 33, "storytel": 33, "brand_strava": 33, "strava": 33, "brand_strip": 33, "brand_sublime_text": 33, "sublim": 33, "brand_sugar": 33, "sugar": 33, "brand_supabas": 33, "supabas": 33, "brand_superhuman": 33, "superhuman": 33, "brand_supernova": 33, "supernova": 33, "brand_surfshark": 33, "surfshark": 33, "brand_svelt": 33, "svelt": 33, "brand_swift": 33, "swift": 33, "brand_symfoni": 33, "symfoni": 33, "brand_tabl": 33, "brand_tailwind": 33, "tailwind": 33, "brand_taobao": 33, "taobao": 33, "brand_t": 33, "ted": 33, "brand_telegram": 33, "telegram": 33, "brand_terraform": 33, "terraform": 33, "brand_teth": 33, "tether": 33, "brand_threej": 33, "threej": 33, "brand_tid": 33, "tidal": 33, "brand_tikto_fil": 33, "tikto": 33, "brand_tiktok": 33, "tiktok": 33, "brand_tind": 33, "tinder": 33, "brand_topbuzz": 33, "topbuzz": 33, "brand_torchain": 33, "torchain": 33, "brand_toyota": 33, "toyota": 33, "brand_trello": 33, "trello": 33, "brand_tripadvisor": 33, "tripadvisor": 33, "brand_tumblr": 33, "tumblr": 33, "brand_twilio": 33, "twilio": 33, "brand_twitch": 33, "twitch": 33, "brand_twitt": 33, "twitter": 33, "brand_twitter_fil": 33, "brand_typescript": 33, "brand_ub": 33, "uber": 33, "brand_ubuntu": 33, "ubuntu": 33, "brand_un": 33, "uniti": 33, "brand_unsplash": 33, "unsplash": 33, "brand_upwork": 33, "upwork": 33, "brand_valor": 33, "valor": 33, "brand_vercel": 33, "vercel": 33, "brand_vimeo": 33, "vimeo": 33, "brand_vint": 33, "vint": 33, "brand_visa": 33, "visa": 33, "brand_visual_studio": 33, "brand_vit": 33, "vite": 33, "brand_vivaldi": 33, "vivaldi": 33, "brand_vk": 33, "vk": 33, "brand_vlc": 33, "vlc": 33, "brand_volkswagen": 33, "volkswagen": 33, "brand_vsco": 33, "vsco": 33, "brand_vscod": 33, "vscode": 33, "brand_vu": 33, "vue": 33, "brand_walmart": 33, "walmart": 33, "brand_waz": 33, "waze": 33, "brand_webflow": 33, "webflow": 33, "brand_wechat": 33, "wechat": 33, "brand_weibo": 33, "weibo": 33, "brand_whatsapp": 33, "whatsapp": 33, "brand_wikipedia": 33, "wikipedia": 33, "brand_window": 33, "brand_windi": 33, "windi": 33, "brand_wish": 33, "wish": 33, "brand_wix": 33, "wix": 33, "brand_wordpress": 33, "wordpress": 33, "brand_xamarin": 33, "xamarin": 33, "brand_xbox": 33, "xbox": 33, "brand_x": 33, "xing": 33, "brand_yahoo": 33, "yahoo": 33, "brand_yandex": 33, "yandex": 33, "brand_yats": 33, "yats": 33, "brand_ycombin": 33, "ycombin": 33, "brand_youtub": 33, "youtub": 33, "brand_youtube_kid": 33, "kid": 33, "brand_zalando": 33, "zalando": 33, "brand_zapi": 33, "zapier": 33, "brand_zeit": 33, "zeit": 33, "brand_zhihu": 33, "zhihu": 33, "brand_zoom": 33, "zoom": 33, "brand_zulip": 33, "zulip": 33, "brand_zwift": 33, "zwift": 33, "bread": 33, "bread_off": 33, "briefcas": 33, "briefcase_off": 33, "bright": 33, "brightness_2": 33, "brightness_down": 33, "brightness_half": 33, "half": 33, "brightness_off": 33, "brightness_up": 33, "broadcast": [33, 35, 39], "broadcast_off": 33, "browser_check": 33, "browser_off": 33, "browser_plu": 33, "browser_x": 33, "brush": 33, "brush_off": 33, "bucket": 33, "bucket_droplet": 33, "droplet": 33, "bucket_off": 33, "bug": 33, "bug_off": 33, "building_arch": 33, "arch": 33, "building_bank": 33, "bank": 33, "building_bridg": 33, "bridg": 33, "building_bridge_2": 33, "building_broadcast_tow": 33, "tower": 33, "building_carousel": 33, "carousel": 33, "building_castl": 33, "castl": 33, "building_church": 33, "church": 33, "building_circu": 33, "circu": 33, "building_commun": 33, "building_cottag": 33, "cottag": 33, "building_est": 33, "estat": 33, "building_factori": 33, "factori": 33, "building_factory_2": 33, "building_fortress": 33, "fortress": 33, "building_hospit": 33, "hospit": 33, "building_lighthous": 33, "lighthous": 33, "building_monu": 33, "monument": 33, "building_mosqu": 33, "mosqu": 33, "building_pavilion": 33, "pavilion": 33, "building_skyscrap": 33, "skyscrap": 33, "building_stadium": 33, "stadium": 33, "building_stor": 33, "store": 33, "building_tunnel": 33, "tunnel": [33, 38], "building_warehous": 33, "warehous": 33, "building_wind_turbin": 33, "wind": 33, "turbin": 33, "bulb": 33, "bulb_fil": 33, "bulb_off": 33, "bulldoz": 33, "bu": 33, "bus_off": 33, "bus_stop": 33, "stop": [33, 35, 38], "businessplan": 33, "butterfli": 33, "cactu": 33, "cactus_off": 33, "cake_off": 33, "calculator_off": 33, "calendar": 33, "calendar_bolt": 33, "calendar_cancel": 33, "calendar_check": 33, "calendar_cod": 33, "calendar_cog": 33, "calendar_dollar": 33, "calendar_down": 33, "calendar_du": 33, "due": 33, "calendar_ev": 33, "calendar_exclam": 33, "calendar_heart": 33, "calendar_minu": 33, "calendar_off": 33, "calendar_paus": 33, "calendar_pin": 33, "calendar_plu": 33, "calendar_quest": 33, "calendar_repeat": 33, "repeat": 33, "calendar_search": 33, "calendar_shar": 33, "calendar_star": 33, "calendar_stat": 33, "stat": 33, "calendar_tim": 33, "calendar_up": 33, "calendar_x": 33, "camera_bolt": 33, "camera_cancel": 33, "camera_check": 33, "camera_cod": 33, "camera_cog": 33, "camera_dollar": 33, "camera_down": 33, "camera_exclam": 33, "camera_fil": 33, "camera_heart": 33, "camera_minu": 33, "camera_off": 33, "camera_paus": 33, "camera_pin": 33, "camera_plu": 33, "camera_quest": 33, "camera_rot": 33, "camera_search": 33, "camera_selfi": 33, "selfi": 33, "camera_shar": 33, "camera_star": 33, "camera_up": 33, "camera_x": 33, "camper": 33, "campfir": 33, "candl": 33, "candi": 33, "candy_off": 33, "cane": 33, "cannabi": 33, "capsule_horizont": 33, "capture_off": 33, "car": 33, "car_cran": 33, "crane": 33, "car_crash": 33, "crash": 33, "car_off": 33, "car_turbin": 33, "caravan": 33, "cardboard": 33, "cardboards_off": 33, "card": 33, "caret_down": 33, "caret": 33, "caret_left": 33, "caret_right": 33, "caret_up": 33, "carousel_horizont": 33, "carousel_horizontal_fil": 33, "carousel_vert": 33, "carousel_vertical_fil": 33, "carrot": 33, "carrot_off": 33, "cash": 33, "cash_banknot": 33, "banknot": 33, "cash_banknote_off": 33, "cash_off": 33, "cast_off": 33, "cat": 33, "categori": 33, "category_2": 33, "ce": 33, "ce_off": 33, "cell_signal_1": 33, "signal": 33, "cell_signal_2": 33, "cell_signal_3": 33, "cell_signal_4": 33, "cell_signal_5": 33, "cell_signal_off": 33, "certif": 33, "certificate_2": 33, "certificate_2_off": 33, "certificate_off": 33, "chair_director": 33, "chair": 33, "director": 33, "chalkboard": 33, "chalkboard_off": 33, "charging_pil": 33, "pile": 33, "chart_arc": 33, "chart": 33, "arc": 33, "chart_arcs_3": 33, "chart_area": 33, "area": 33, "chart_area_fil": 33, "chart_area_lin": 33, "chart_area_line_fil": 33, "chart_arrow": 33, "chart_arrows_vert": 33, "chart_bar": 33, "chart_bar_off": 33, "chart_bubbl": 33, "bubbl": 33, "chart_bubble_fil": 33, "chart_candl": 33, "chart_candle_fil": 33, "chart_circl": 33, "chart_donut": 33, "donut": 33, "chart_donut_2": 33, "chart_donut_3": 33, "chart_donut_4": 33, "chart_donut_fil": 33, "chart_dot": 33, "dot": 33, "chart_dots_2": 33, "chart_dots_3": 33, "chart_grid_dot": 33, "chart_histogram": 33, "histogram": 33, "chart_infograph": 33, "infograph": 33, "chart_lin": 33, "chart_pi": 33, "pie": 33, "chart_pie_2": 33, "chart_pie_3": 33, "chart_pie_4": 33, "chart_pie_fil": 33, "chart_pie_off": 33, "chart_ppf": 33, "ppf": 33, "chart_radar": 33, "radar": 33, "chart_sankei": 33, "sankei": 33, "chart_treemap": 33, "treemap": 33, "checklist": 33, "checkup_list": 33, "checkup": 33, "chees": 33, "chef_hat": 33, "chef": 33, "hat": 33, "chef_hat_off": 33, "cherri": 33, "cherry_fil": 33, "chess": 33, "chess_bishop": 33, "bishop": 33, "chess_bishop_fil": 33, "chess_fil": 33, "chess_k": 33, "king": 33, "chess_king_fil": 33, "chess_knight": 33, "knight": 33, "chess_knight_fil": 33, "chess_queen": 33, "queen": 33, "chess_queen_fil": 33, "chess_rook": 33, "rook": 33, "chess_rook_fil": 33, "chevron_compact_down": 33, "chevron": 33, "compact": 33, "chevron_compact_left": 33, "chevron_compact_right": 33, "chevron_compact_up": 33, "chevron_down": 33, "chevron_down_left": 33, "chevron_down_right": 33, "chevron_left": 33, "chevron_left_pip": 33, "pipe": 33, "chevron_right": 33, "chevron_right_pip": 33, "chevron_up": 33, "chevron_up_left": 33, "chevron_up_right": 33, "chevrons_down": 33, "chevrons_down_left": 33, "chevrons_down_right": 33, "chevrons_left": 33, "chevrons_right": 33, "chevrons_up": 33, "chevrons_up_left": 33, "chevrons_up_right": 33, "chisel": 33, "christmas_tre": 33, "christma": 33, "christmas_tree_off": 33, "circle_0_fil": 33, "circle_1_fil": 33, "circle_2_fil": 33, "circle_3_fil": 33, "circle_4_fil": 33, "circle_5_fil": 33, "circle_6_fil": 33, "circle_7_fil": 33, "circle_8_fil": 33, "circle_9_fil": 33, "circle_arrow_down": 33, "circle_arrow_down_fil": 33, "circle_arrow_down_left": 33, "circle_arrow_down_left_fil": 33, "circle_arrow_down_right": 33, "circle_arrow_down_right_fil": 33, "circle_arrow_left": 33, "circle_arrow_left_fil": 33, "circle_arrow_right": 33, "circle_arrow_right_fil": 33, "circle_arrow_up": 33, "circle_arrow_up_fil": 33, "circle_arrow_up_left": 33, "circle_arrow_up_left_fil": 33, "circle_arrow_up_right": 33, "circle_arrow_up_right_fil": 33, "circle_caret_down": 33, "circle_caret_left": 33, "circle_caret_right": 33, "circle_caret_up": 33, "circle_check": 33, "circle_check_fil": 33, "circle_chevron_down": 33, "circle_chevron_left": 33, "circle_chevron_right": 33, "circle_chevron_up": 33, "circle_chevrons_down": 33, "circle_chevrons_left": 33, "circle_chevrons_right": 33, "circle_chevrons_up": 33, "circle_dash": 33, "dash": 33, "circle_dot": 33, "circle_dot_fil": 33, "circle_fil": 33, "circle_half": 33, "circle_half_2": 33, "circle_half_vert": 33, "circle_kei": 33, "circle_key_fil": 33, "circle_letter_a": 33, "letter": 33, "circle_letter_b": 33, "circle_letter_c": 33, "circle_letter_d": 33, "circle_letter_": 33, "circle_letter_f": 33, "circle_letter_g": 33, "circle_letter_h": 33, "circle_letter_i": 33, "circle_letter_j": 33, "circle_letter_k": 33, "circle_letter_l": 33, "circle_letter_m": 33, "m": 33, "circle_letter_n": 33, "circle_letter_o": 33, "circle_letter_p": 33, "p": 33, "circle_letter_q": 33, "q": 33, "circle_letter_r": 33, "circle_letter_t": 33, "circle_letter_u": 33, "circle_letter_v": 33, "v": [33, 36], "circle_letter_w": 33, "circle_letter_x": 33, "circle_letter_z": 33, "circle_minu": 33, "circle_number_0": 33, "circle_number_1": 33, "circle_number_2": 33, "circle_number_3": 33, "circle_number_4": 33, "circle_number_5": 33, "circle_number_6": 33, "circle_number_7": 33, "circle_number_8": 33, "circle_number_9": 33, "circle_off": 33, "circle_plu": 33, "circle_rectangl": 33, "rectangl": 33, "circle_rectangle_off": 33, "circle_squar": 33, "circle_triangl": 33, "circle_x": 33, "circle_x_fil": 33, "circles_fil": 33, "circles_rel": 33, "relat": 33, "circuit_ammet": 33, "circuit": 33, "ammet": 33, "circuit_batteri": 33, "circuit_bulb": 33, "circuit_capacitor": 33, "capacitor": 33, "circuit_capacitor_polar": 33, "polar": 33, "circuit_cel": 33, "circuit_cell_plu": 33, "circuit_changeov": 33, "changeov": 33, "circuit_diod": 33, "diod": 33, "circuit_diode_zen": 33, "zener": 33, "circuit_ground": 33, "ground": [33, 36], "circuit_ground_digit": 33, "circuit_inductor": 33, "inductor": 33, "circuit_motor": 33, "motor": 33, "circuit_pushbutton": 33, "pushbutton": 33, "circuit_resistor": 33, "resistor": 33, "circuit_switch_clos": 33, "switch": [33, 39], "circuit_switch_open": 33, "circuit_voltmet": 33, "voltmet": 33, "clear_al": 33, "clear_format": 33, "clipboard": 33, "clipboard_check": 33, "clipboard_copi": 33, "clipboard_data": 33, "clipboard_heart": 33, "clipboard_list": 33, "clipboard_off": 33, "clipboard_plu": 33, "clipboard_text": 33, "clipboard_typographi": 33, "typographi": 33, "clipboard_x": 33, "clock": 33, "clock_2": 33, "clock_bolt": 33, "clock_cancel": 33, "clock_check": 33, "clock_cod": 33, "clock_cog": 33, "clock_dollar": 33, "clock_down": 33, "clock_edit": 33, "clock_exclam": 33, "clock_fil": 33, "clock_heart": 33, "clock_hour_1": 33, "clock_hour_10": 33, "clock_hour_11": 33, "11": 33, "clock_hour_12": 33, "12": 33, "clock_hour_2": 33, "clock_hour_3": 33, "clock_hour_4": 33, "clock_hour_5": 33, "clock_hour_6": 33, "clock_hour_7": 33, "clock_hour_8": 33, "clock_hour_9": 33, "clock_minu": 33, "clock_off": 33, "clock_paus": 33, "clock_pin": 33, "clock_plai": 33, "clock_plu": 33, "clock_quest": 33, "clock_record": 33, "record": [33, 35], "clock_search": 33, "clock_shar": 33, "clock_shield": 33, "shield": 33, "clock_star": 33, "clock_stop": 33, "clock_up": 33, "clock_x": 33, "clothes_rack": 33, "cloth": 33, "rack": 33, "clothes_rack_off": 33, "cloud_bolt": 33, "cloud_cancel": 33, "cloud_check": 33, "cloud_cod": 33, "cloud_cog": 33, "cloud_comput": 33, "cloud_data_connect": 33, "cloud_dollar": 33, "cloud_down": 33, "cloud_download": 33, "cloud_exclam": 33, "cloud_fil": 33, "cloud_fog": 33, "fog": 33, "cloud_heart": 33, "cloud_lock": 33, "lock": 33, "cloud_lock_open": 33, "cloud_minu": 33, "cloud_off": 33, "cloud_paus": 33, "cloud_pin": 33, "cloud_plu": 33, "cloud_quest": 33, "cloud_rain": 33, "rain": 33, "cloud_search": 33, "cloud_shar": 33, "cloud_snow": 33, "snow": 33, "cloud_star": 33, "cloud_storm": 33, "storm": 33, "cloud_up": 33, "cloud_upload": 33, "cloud_x": 33, "clover": 33, "clover_2": 33, "club": 33, "clubs_fil": 33, "code_asterix": 33, "asterix": 33, "code_circl": 33, "code_circle_2": 33, "code_dot": 33, "code_minu": 33, "code_off": 33, "code_plu": 33, "coffe": 33, "coffee_off": 33, "coffin": 33, "coin": 33, "coin_bitcoin": 33, "bitcoin": 33, "coin_euro": 33, "euro": 33, "coin_monero": 33, "monero": 33, "coin_off": 33, "coin_pound": 33, "pound": 33, "coin_rupe": 33, "rupe": 33, "coin_yen": 33, "yen": 33, "coin_yuan": 33, "yuan": 33, "color_filt": 33, "color_pick": 33, "color_picker_off": 33, "color_swatch": 33, "swatch": 33, "color_swatch_off": 33, "column_insert_left": 33, "insert": 33, "column_insert_right": 33, "column_remov": 33, "columns_1": 33, "columns_2": 33, "columns_3": 33, "columns_off": 33, "comet": 33, "command": 33, "command_off": 33, "compass": 33, "compass_off": 33, "components_off": 33, "cone": 33, "cone_2": 33, "cone_off": 33, "cone_plu": 33, "confetti": 33, "confetti_off": 33, "confuciu": 33, "container_off": 33, "contrast": 33, "contrast_2": 33, "contrast_2_off": 33, "contrast_off": 33, "cooker": 33, "cooki": 33, "cookie_man": 33, "man": 33, "cookie_off": 33, "copy_off": 33, "copyleft": 33, "copyleft_fil": 33, "copyleft_off": 33, "copyright": 33, "copyright_fil": 33, "copyright_off": 33, "corner_down_left": 33, "corner_down_left_doubl": 33, "corner_down_right": 33, "corner_down_right_doubl": 33, "corner_left_down": 33, "corner_left_down_doubl": 33, "corner_left_up": 33, "corner_left_up_doubl": 33, "corner_right_down": 33, "corner_right_down_doubl": 33, "corner_right_up": 33, "corner_right_up_doubl": 33, "corner_up_left": 33, "corner_up_left_doubl": 33, "corner_up_right": 33, "corner_up_right_doubl": 33, "cpu": 33, "cpu_2": 33, "cpu_off": 33, "crane_off": 33, "creative_common": 33, "creativ": 33, "creative_commons_bi": 33, "creative_commons_nc": 33, "nc": 33, "creative_commons_nd": 33, "nd": 33, "creative_commons_off": 33, "creative_commons_sa": 33, "sa": 33, "creative_commons_zero": 33, "credit_card": 33, "credit": 33, "credit_card_off": 33, "cricket": 33, "crop": 33, "cross_fil": 33, "cross_off": 33, "crosshair": 33, "crown": 33, "crown_off": 33, "crutch": 33, "crutches_off": 33, "crystal_bal": 33, "crystal": 33, "csv": 33, "cube_off": 33, "cube_plu": 33, "cube_send": 33, "cube_unfold": 33, "unfold": 33, "cup": 33, "cup_off": 33, "curl": 33, "curly_loop": 33, "curli": 33, "currenc": 33, "currency_afghani": 33, "afghani": 33, "currency_bahraini": 33, "bahraini": 33, "currency_baht": 33, "baht": 33, "currency_bitcoin": 33, "currency_c": 33, "cent": 33, "currency_dinar": 33, "dinar": 33, "currency_dirham": 33, "dirham": 33, "currency_dogecoin": 33, "dogecoin": 33, "currency_dollar": 33, "currency_dollar_australian": 33, "australian": 33, "currency_dollar_brunei": 33, "brunei": 33, "currency_dollar_canadian": 33, "canadian": 33, "currency_dollar_guyanes": 33, "guyanes": 33, "currency_dollar_off": 33, "currency_dollar_singapor": 33, "singapor": 33, "currency_dollar_zimbabwean": 33, "zimbabwean": 33, "currency_dong": 33, "dong": 33, "currency_dram": 33, "dram": 33, "currency_ethereum": 33, "ethereum": 33, "currency_euro": 33, "currency_euro_off": 33, "currency_florin": 33, "florin": 33, "currency_forint": 33, "forint": 33, "currency_frank": 33, "frank": 33, "currency_guarani": 33, "guarani": 33, "currency_hryvnia": 33, "hryvnia": 33, "currency_iranian_ri": 33, "iranian": 33, "rial": 33, "currency_kip": 33, "kip": 33, "currency_krone_czech": 33, "krone": 33, "czech": 33, "currency_krone_danish": 33, "danish": 33, "currency_krone_swedish": 33, "swedish": 33, "currency_lari": 33, "lari": 33, "currency_leu": 33, "leu": 33, "currency_lira": 33, "lira": 33, "currency_litecoin": 33, "litecoin": 33, "currency_lyd": 33, "lyd": 33, "currency_manat": 33, "manat": 33, "currency_monero": 33, "currency_naira": 33, "naira": 33, "currency_nano": 33, "nano": 33, "currency_off": 33, "currency_paanga": 33, "paanga": 33, "currency_peso": 33, "peso": 33, "currency_pound": 33, "currency_pound_off": 33, "currency_quetz": 33, "quetzal": 33, "currency_r": 33, "real": 33, "currency_renminbi": 33, "renminbi": 33, "currency_rippl": 33, "rippl": 33, "currency_riy": 33, "riyal": 33, "currency_rubel": 33, "rubel": 33, "currency_rufiyaa": 33, "rufiyaa": 33, "currency_rupe": 33, "currency_rupee_nepales": 33, "nepales": 33, "currency_shekel": 33, "shekel": 33, "currency_solana": 33, "solana": 33, "currency_som": 33, "som": 33, "currency_taka": 33, "taka": 33, "currency_teng": 33, "teng": 33, "currency_tugrik": 33, "tugrik": 33, "currency_won": 33, "won": [33, 35], "currency_yen": 33, "currency_yen_off": 33, "currency_yuan": 33, "currency_zloti": 33, "zloti": 33, "current_loc": 33, "current_location_off": 33, "cursor_off": 33, "cursor": 33, "cursor_text": 33, "cut": 33, "cylinder_off": 33, "cylinder_plu": 33, "dashboard": 33, "dashboard_off": 33, "databas": 33, "database_cog": 33, "database_dollar": 33, "database_edit": 33, "database_exclam": 33, "database_export": 33, "export": 33, "database_heart": 33, "database_import": 33, "database_leak": 33, "leak": 33, "database_minu": 33, "database_off": 33, "database_plu": 33, "database_search": 33, "database_shar": 33, "database_star": 33, "database_x": 33, "deer": 33, "delta": 33, "dental": 33, "dental_broken": 33, "broken": 33, "dental_off": 33, "deselect": 33, "detail": 33, "details_off": 33, "device_airpod": 33, "devic": 33, "airpod": 33, "device_airpods_cas": 33, "case": [33, 36], "device_airtag": 33, "airtag": 33, "device_analyt": 33, "device_audio_tap": 33, "audio": 33, "tape": 33, "device_camera_phon": 33, "phone": 33, "device_cctv": 33, "cctv": 33, "device_cctv_off": 33, "device_computer_camera": 33, "device_computer_camera_off": 33, "device_desktop": 33, "desktop": 33, "device_desktop_analyt": 33, "device_desktop_bolt": 33, "device_desktop_cancel": 33, "device_desktop_check": 33, "device_desktop_cod": 33, "device_desktop_cog": 33, "device_desktop_dollar": 33, "device_desktop_down": 33, "device_desktop_exclam": 33, "device_desktop_heart": 33, "device_desktop_minu": 33, "device_desktop_off": 33, "device_desktop_paus": 33, "device_desktop_pin": 33, "device_desktop_plu": 33, "device_desktop_quest": 33, "device_desktop_search": 33, "device_desktop_shar": 33, "device_desktop_star": 33, "device_desktop_up": 33, "device_desktop_x": 33, "device_floppi": 33, "floppi": 33, "device_gamepad": 33, "gamepad": 33, "device_gamepad_2": 33, "device_heart_monitor": 33, "monitor": 33, "device_heart_monitor_fil": 33, "device_imac": 33, "imac": 33, "device_imac_bolt": 33, "device_imac_cancel": 33, "device_imac_check": 33, "device_imac_cod": 33, "device_imac_cog": 33, "device_imac_dollar": 33, "device_imac_down": 33, "device_imac_exclam": 33, "device_imac_heart": 33, "device_imac_minu": 33, "device_imac_off": 33, "device_imac_paus": 33, "device_imac_pin": 33, "device_imac_plu": 33, "device_imac_quest": 33, "device_imac_search": 33, "device_imac_shar": 33, "device_imac_star": 33, "device_imac_up": 33, "device_imac_x": 33, "device_ipad": 33, "ipad": 33, "device_ipad_bolt": 33, "device_ipad_cancel": 33, "device_ipad_check": 33, "device_ipad_cod": 33, "device_ipad_cog": 33, "device_ipad_dollar": 33, "device_ipad_down": 33, "device_ipad_exclam": 33, "device_ipad_heart": 33, "device_ipad_horizont": 33, "device_ipad_horizontal_bolt": 33, "device_ipad_horizontal_cancel": 33, "device_ipad_horizontal_check": 33, "device_ipad_horizontal_cod": 33, "device_ipad_horizontal_cog": 33, "device_ipad_horizontal_dollar": 33, "device_ipad_horizontal_down": 33, "device_ipad_horizontal_exclam": 33, "device_ipad_horizontal_heart": 33, "device_ipad_horizontal_minu": 33, "device_ipad_horizontal_off": 33, "device_ipad_horizontal_paus": 33, "device_ipad_horizontal_pin": 33, "device_ipad_horizontal_plu": 33, "device_ipad_horizontal_quest": 33, "device_ipad_horizontal_search": 33, "device_ipad_horizontal_shar": 33, "device_ipad_horizontal_star": 33, "device_ipad_horizontal_up": 33, "device_ipad_horizontal_x": 33, "device_ipad_minu": 33, "device_ipad_off": 33, "device_ipad_paus": 33, "device_ipad_pin": 33, "device_ipad_plu": 33, "device_ipad_quest": 33, "device_ipad_search": 33, "device_ipad_shar": 33, "device_ipad_star": 33, "device_ipad_up": 33, "device_ipad_x": 33, "device_landline_phon": 33, "landlin": 33, "device_laptop": 33, "laptop": 33, "device_laptop_off": 33, "device_mobil": 33, "mobil": [33, 39], "device_mobile_bolt": 33, "device_mobile_cancel": 33, "device_mobile_charg": 33, "device_mobile_check": 33, "device_mobile_cod": 33, "device_mobile_cog": 33, "device_mobile_dollar": 33, "device_mobile_down": 33, "device_mobile_exclam": 33, "device_mobile_fil": 33, "device_mobile_heart": 33, "device_mobile_messag": 33, "device_mobile_minu": 33, "device_mobile_off": 33, "device_mobile_paus": 33, "device_mobile_pin": 33, "device_mobile_plu": 33, "device_mobile_quest": 33, "device_mobile_rot": 33, "device_mobile_search": 33, "device_mobile_shar": 33, "device_mobile_star": 33, "device_mobile_up": 33, "device_mobile_vibr": 33, "vibrat": 33, "device_mobile_x": 33, "device_nintendo": 33, "nintendo": 33, "device_nintendo_off": 33, "device_remot": 33, "remot": 33, "device_sd_card": 33, "device_sim": 33, "sim": 33, "device_sim_1": 33, "device_sim_2": 33, "device_sim_3": 33, "device_speak": 33, "speaker": 33, "device_speaker_off": 33, "device_tablet": 33, "tablet": 33, "device_tablet_bolt": 33, "device_tablet_cancel": 33, "device_tablet_check": 33, "device_tablet_cod": 33, "device_tablet_cog": 33, "device_tablet_dollar": 33, "device_tablet_down": 33, "device_tablet_exclam": 33, "device_tablet_fil": 33, "device_tablet_heart": 33, "device_tablet_minu": 33, "device_tablet_off": 33, "device_tablet_paus": 33, "device_tablet_pin": 33, "device_tablet_plu": 33, "device_tablet_quest": 33, "device_tablet_search": 33, "device_tablet_shar": 33, "device_tablet_star": 33, "device_tablet_up": 33, "device_tablet_x": 33, "device_tv": 33, "tv": 33, "device_tv_off": 33, "device_tv_old": 33, "device_vision_pro": 33, "vision": 33, "pro": 33, "device_watch": 33, "watch": 33, "device_watch_bolt": 33, "device_watch_cancel": 33, "device_watch_check": 33, "device_watch_cod": 33, "device_watch_cog": 33, "device_watch_dollar": 33, "device_watch_down": 33, "device_watch_exclam": 33, "device_watch_heart": 33, "device_watch_minu": 33, "device_watch_off": 33, "device_watch_paus": 33, "device_watch_pin": 33, "device_watch_plu": 33, "device_watch_quest": 33, "device_watch_search": 33, "device_watch_shar": 33, "device_watch_star": 33, "device_watch_stat": 33, "device_watch_stats_2": 33, "device_watch_up": 33, "device_watch_x": 33, "devices_2": 33, "devices_bolt": 33, "devices_cancel": 33, "devices_check": 33, "devices_cod": 33, "devices_cog": 33, "devices_dollar": 33, "devices_down": 33, "devices_exclam": 33, "devices_heart": 33, "devices_minu": 33, "devices_off": 33, "devices_paus": 33, "devices_pc": 33, "pc": 33, "devices_pc_off": 33, "devices_pin": 33, "devices_plu": 33, "devices_quest": 33, "devices_search": 33, "devices_shar": 33, "devices_star": 33, "devices_up": 33, "devices_x": 33, "diabolo": 33, "diabolo_off": 33, "diabolo_plu": 33, "dialpad": 33, "dialpad_fil": 33, "dialpad_off": 33, "diamond": [33, 36], "diamond_fil": 33, "diamond_off": 33, "diamonds_fil": 33, "dice": 33, "dice_1": 33, "dice_1_fil": 33, "dice_2": 33, "dice_2_fil": 33, "dice_3": 33, "dice_3_fil": 33, "dice_4": 33, "dice_4_fil": 33, "dice_5": 33, "dice_5_fil": 33, "dice_6": 33, "dice_6_fil": 33, "dice_fil": 33, "direction_horizont": 33, "direction_sign": 33, "sign": 33, "direction_sign_fil": 33, "direction_sign_off": 33, "directions_off": 33, "disabled_2": 33, "disabled_off": 33, "disc": 33, "disc_golf": 33, "golf": 33, "disc_off": 33, "discount": 33, "discount_2": 33, "discount_2_off": 33, "discount_check": 33, "discount_check_fil": 33, "discount_off": 33, "dna": 33, "dna_2": 33, "dna_2_off": 33, "dna_off": 33, "dog": 33, "dog_bowl": 33, "door": 33, "door_ent": 33, "enter": 33, "door_exit": 33, "exit": 33, "door_off": 33, "dots_circle_horizont": 33, "dots_diagon": 33, "dots_diagonal_2": 33, "dots_vert": 33, "download_off": 33, "drag_drop": 33, "drag": 33, "drag_drop_2": 33, "drone": 33, "drone_off": 33, "drop_circl": 33, "droplet_bolt": 33, "droplet_cancel": 33, "droplet_check": 33, "droplet_cod": 33, "droplet_cog": 33, "droplet_dollar": 33, "droplet_down": 33, "droplet_exclam": 33, "droplet_fil": 33, "droplet_filled_2": 33, "droplet_half": 33, "droplet_half_2": 33, "droplet_half_fil": 33, "droplet_heart": 33, "droplet_minu": 33, "droplet_off": 33, "droplet_paus": 33, "droplet_pin": 33, "droplet_plu": 33, "droplet_quest": 33, "droplet_search": 33, "droplet_shar": 33, "droplet_star": 33, "droplet_up": 33, "droplet_x": 33, "dual_screen": 33, "dual": 33, "e_passport": 33, "passport": 33, "ear": 33, "ear_off": 33, "ease_in": 33, "eas": 33, "ease_in_control_point": 33, "ease_in_out": 33, "ease_in_out_control_point": 33, "ease_out": 33, "ease_out_control_point": 33, "edit_circl": 33, "edit_circle_off": 33, "edit_off": 33, "egg": 33, "egg_crack": 33, "crack": 33, "egg_fil": 33, "egg_fri": 33, "fri": 33, "egg_off": 33, "elev": 33, "elevator_off": 33, "emergency_b": 33, "emerg": 33, "empath": 33, "empathize_off": 33, "emphasi": 33, "engin": 33, "engine_off": 33, "equal": 33, "equal_doubl": 33, "equal_not": 33, "eras": 33, "eraser_off": 33, "error_404": 33, "error": 33, "404": 33, "error_404_off": 33, "exchange_off": 33, "exclamation_circl": 33, "exclamation_mark": 33, "exclamation_mark_off": 33, "explicit": 33, "explicit_off": 33, "exposur": 33, "exposure_0": 33, "exposure_minus_1": 33, "exposure_minus_2": 33, "exposure_off": 33, "exposure_plus_1": 33, "exposure_plus_2": 33, "external_link": 33, "extern": [33, 38], "link": 33, "external_link_off": 33, "eye_check": 33, "eye_clos": 33, "eye_cog": 33, "eye_edit": 33, "eye_exclam": 33, "eye_fil": 33, "eye_heart": 33, "eye_off": 33, "eye_t": 33, "tabl": 33, "eye_x": 33, "eyeglass": 33, "eyeglass_2": 33, "eyeglass_off": 33, "face_id": 33, "face_id_error": 33, "face_mask": 33, "face_mask_off": 33, "fall": 33, "feather": 33, "feather_off": 33, "fenc": 33, "fence_off": 33, "fidget_spinn": 33, "fidget": 33, "spinner": 33, "file_3d": 33, "file_alert": 33, "file_analyt": 33, "file_arrow_left": 33, "file_arrow_right": 33, "file_barcod": 33, "file_broken": 33, "file_certif": 33, "file_chart": 33, "file_check": 33, "file_cod": 33, "file_code_2": 33, "file_cv": 33, "cv": 33, "file_databas": 33, "file_delta": 33, "file_descript": 33, "file_diff": 33, "file_digit": 33, "file_dislik": 33, "dislik": 33, "file_dollar": 33, "file_dot": 33, "file_download": 33, "file_euro": 33, "file_export": 33, "file_fil": 33, "file_funct": 33, "file_horizont": 33, "file_import": 33, "file_infin": 33, "infin": 33, "file_info": 33, "file_invoic": 33, "invoic": 33, "file_lambda": 33, "file_lik": 33, "file_minu": 33, "file_mus": 33, "file_off": 33, "file_orient": 33, "file_pencil": 33, "pencil": 33, "file_perc": 33, "percent": 33, "file_phon": 33, "file_plu": 33, "file_pow": 33, "power": 33, "file_report": 33, "report": 33, "file_rss": 33, "rss": 33, "file_scissor": 33, "scissor": 33, "file_search": 33, "file_set": 33, "file_shredd": 33, "shredder": 33, "file_sign": 33, "file_spreadsheet": 33, "spreadsheet": 33, "file_stack": 33, "file_star": 33, "file_symlink": 33, "symlink": 33, "file_text": 33, "file_text_ai": 33, "ai": 33, "file_tim": 33, "file_typographi": 33, "file_unknown": 33, "unknown": 33, "file_upload": 33, "file_vector": 33, "file_x": 33, "file_x_fil": 33, "file_zip": 33, "files_off": 33, "filter_cog": 33, "filter_dollar": 33, "filter_edit": 33, "filter_minu": 33, "filter_off": 33, "filter_plu": 33, "filter_star": 33, "filter_x": 33, "fingerprint": 33, "fingerprint_off": 33, "fire_extinguish": 33, "fire": 33, "extinguish": 33, "fire_hydr": 33, "hydrant": 33, "fire_hydrant_off": 33, "firetruck": 33, "first_aid_kit": 33, "aid": 33, "kit": 33, "first_aid_kit_off": 33, "fish": 33, "fish_bon": 33, "fish_christian": 33, "christian": 33, "fish_hook": 33, "hook": 33, "fish_hook_off": 33, "fish_off": 33, "flag_2": 33, "flag_2_fil": 33, "flag_2_off": 33, "flag_3": 33, "flag_3_fil": 33, "flag_fil": 33, "flag_off": 33, "flame": 33, "flame_off": 33, "flare": 33, "flask": 33, "flask_2": 33, "flask_2_off": 33, "flask_off": 33, "flip_flop": 33, "flop": 33, "flip_horizont": 33, "flip_vert": 33, "float_cent": 33, "float_left": 33, "float_non": 33, "float_right": 33, "flower": 33, "flower_off": 33, "focu": 33, "focus_2": 33, "focus_auto": 33, "focus_cent": 33, "fold": 33, "fold_down": 33, "fold_up": 33, "folder_bolt": 33, "folder_cancel": 33, "folder_check": 33, "folder_cod": 33, "folder_cog": 33, "folder_dollar": 33, "folder_down": 33, "folder_exclam": 33, "folder_fil": 33, "folder_heart": 33, "folder_minu": 33, "folder_off": 33, "folder_open": 33, "folder_paus": 33, "folder_pin": 33, "folder_plu": 33, "folder_quest": 33, "folder_search": 33, "folder_shar": 33, "folder_star": 33, "folder_symlink": 33, "folder_up": 33, "folder_x": 33, "folders_off": 33, "forbid": 33, "forbid_2": 33, "forklift": 33, "fountain": 33, "fountain_off": 33, "frame_off": 33, "free_right": 33, "free": 33, "freeze_column": 33, "freez": 33, "freeze_row": 33, "freeze_row_column": 33, "fridg": 33, "fridge_off": 33, "friend": 33, "friends_off": 33, "frustum_off": 33, "frustum_plu": 33, "function_off": 33, "garden_cart": 33, "garden": 33, "cart": 33, "garden_cart_off": 33, "gas_stat": 33, "ga": 33, "station": 33, "gas_station_off": 33, "gaug": 33, "gauge_off": 33, "gavel": 33, "gender_agend": 33, "gender": 33, "agend": 33, "gender_androgyn": 33, "androgyn": 33, "gender_bigend": 33, "bigend": 33, "gender_demiboi": 33, "demiboi": 33, "gender_demigirl": 33, "demigirl": 33, "gender_epicen": 33, "epicen": 33, "gender_femal": 33, "femal": 33, "gender_femm": 33, "femm": 33, "gender_genderfluid": 33, "genderfluid": 33, "gender_genderless": 33, "genderless": 33, "gender_genderqu": 33, "genderqu": 33, "gender_hermaphrodit": 33, "hermaphrodit": 33, "gender_intergend": 33, "intergend": 33, "gender_mal": 33, "male": 33, "gender_neutroi": 33, "neutroi": 33, "gender_third": 33, "third": 33, "gender_transgend": 33, "transgend": 33, "gender_trasvesti": 33, "trasvesti": 33, "ghost": 33, "ghost_2": 33, "ghost_2_fil": 33, "ghost_fil": 33, "ghost_off": 33, "gift": 33, "gift_card": 33, "gift_off": 33, "git_branch": 33, "git_branch_delet": 33, "delet": 33, "git_cherry_pick": 33, "pick": 33, "git_commit": 33, "git_compar": 33, "compar": 33, "git_fork": 33, "git_merg": 33, "git_pull_request": 33, "pull": 33, "git_pull_request_clos": 33, "git_pull_request_draft": 33, "draft": 33, "glass": 33, "glass_ful": 33, "glass_off": 33, "globe": 33, "globe_off": 33, "go_gam": 33, "game": 33, "golf_off": 33, "gp": 33, "gradient": 33, "grain": 33, "graph": 33, "graph_off": 33, "grave": 33, "grave_2": 33, "grid_dot": 33, "grid_pattern": 33, "pattern": 33, "grill": 33, "grill_fork": 33, "grill_off": 33, "grill_spatula": 33, "spatula": 33, "grip_horizont": 33, "grip": 33, "grip_vert": 33, "growth": 33, "guitar_pick": 33, "guitar": 33, "guitar_pick_fil": 33, "h_1": 33, "h_2": 33, "h_3": 33, "h_4": 33, "h_5": 33, "h_6": 33, "hammer": 33, "hammer_off": 33, "hand_click": 33, "hand": 33, "hand_fing": 33, "finger": 33, "hand_finger_off": 33, "hand_grab": 33, "grab": [33, 39], "hand_little_fing": 33, "littl": 33, "hand_middle_fing": 33, "hand_mov": 33, "hand_off": 33, "hand_ring_fing": 33, "hand_rock": 33, "rock": 33, "hand_sanit": 33, "sanit": 33, "hand_stop": 33, "hand_three_fing": 33, "hand_two_fing": 33, "hanger": 33, "hanger_2": 33, "hanger_off": 33, "hash": 33, "haze": 33, "haze_moon": 33, "moon": 33, "hdr": 33, "head": 33, "heading_off": 33, "headphon": 33, "headphones_fil": 33, "headphones_off": 33, "headset": 33, "headset_off": 33, "health_recognit": 33, "health": 33, "recognit": 33, "heart_broken": 33, "heart_fil": 33, "heart_handshak": 33, "handshak": 33, "heart_minu": 33, "heart_off": 33, "heart_plu": 33, "heart_rate_monitor": 33, "rate": 33, "hearts_off": 33, "helicopt": 33, "helicopter_land": 33, "land": 33, "helmet": 33, "helmet_off": 33, "help_circl": 33, "help_circle_fil": 33, "help_hexagon": 33, "help_hexagon_fil": 33, "help_octagon": 33, "help_octagon_fil": 33, "help_off": 33, "help_smal": 33, "help_squar": 33, "help_square_fil": 33, "help_square_round": 33, "help_square_rounded_fil": 33, "help_triangl": 33, "help_triangle_fil": 33, "hemispher": 33, "hemisphere_off": 33, "hemisphere_plu": 33, "hexagon_0_fil": 33, "hexagon_1_fil": 33, "hexagon_2_fil": 33, "hexagon_3_fil": 33, "hexagon_3d": 33, "hexagon_4_fil": 33, "hexagon_5_fil": 33, "hexagon_6_fil": 33, "hexagon_7_fil": 33, "hexagon_8_fil": 33, "hexagon_9_fil": 33, "hexagon_fil": 33, "hexagon_letter_a": 33, "hexagon_letter_b": 33, "hexagon_letter_c": 33, "hexagon_letter_d": 33, "hexagon_letter_": 33, "hexagon_letter_f": 33, "hexagon_letter_g": 33, "hexagon_letter_h": 33, "hexagon_letter_i": 33, "hexagon_letter_j": 33, "hexagon_letter_k": 33, "hexagon_letter_l": 33, "hexagon_letter_m": 33, "hexagon_letter_n": 33, "hexagon_letter_o": 33, "hexagon_letter_p": 33, "hexagon_letter_q": 33, "hexagon_letter_r": 33, "hexagon_letter_t": 33, "hexagon_letter_u": 33, "hexagon_letter_v": 33, "hexagon_letter_w": 33, "hexagon_letter_x": 33, "hexagon_letter_z": 33, "hexagon_number_0": 33, "hexagon_number_1": 33, "hexagon_number_2": 33, "hexagon_number_3": 33, "hexagon_number_4": 33, "hexagon_number_5": 33, "hexagon_number_6": 33, "hexagon_number_7": 33, "hexagon_number_8": 33, "hexagon_number_9": 33, "hexagon_off": 33, "hexagonal_pr": 33, "prism": 33, "hexagonal_prism_off": 33, "hexagonal_prism_plu": 33, "hexagonal_pyramid": 33, "pyramid": 33, "hexagonal_pyramid_off": 33, "hexagonal_pyramid_plu": 33, "hexagons_off": 33, "hierarchi": 33, "hierarchy_2": 33, "hierarchy_3": 33, "hierarchy_off": 33, "highlight": 33, "highlight_off": 33, "histori": 33, "history_off": 33, "history_toggl": 33, "home_2": 33, "home_bolt": 33, "home_cancel": 33, "home_check": 33, "home_cog": 33, "home_dollar": 33, "home_dot": 33, "home_down": 33, "home_eco": 33, "home_edit": 33, "home_exclam": 33, "home_hand": 33, "home_heart": 33, "home_infin": 33, "home_link": 33, "home_minu": 33, "home_mov": 33, "home_off": 33, "home_plu": 33, "home_quest": 33, "home_ribbon": 33, "ribbon": 33, "home_search": 33, "home_shar": 33, "home_shield": 33, "home_sign": 33, "home_star": 33, "home_stat": 33, "home_up": 33, "home_x": 33, "horse_toi": 33, "hors": 33, "toi": 33, "hotel_servic": 33, "hotel": 33, "servic": 33, "hourglass": 33, "hourglass_empti": 33, "empti": 33, "hourglass_fil": 33, "hourglass_high": 33, "hourglass_low": 33, "hourglass_off": 33, "html": 33, "http_connect": 33, "http_delet": 33, "http_get": 33, "http_head": 33, "http_option": 33, "http_patch": 33, "patch": 33, "http_post": 33, "post": 33, "http_put": 33, "http_que": 33, "que": 33, "http_trace": 33, "trace": 33, "ice_cream": 33, "ic": 33, "cream": 33, "ice_cream_2": 33, "ice_cream_off": 33, "ice_sk": 33, "skate": 33, "icons_off": 33, "id_badg": 33, "id_badge_2": 33, "id_badge_off": 33, "id_off": 33, "inbox": 33, "inbox_off": 33, "indent_decreas": 33, "indent": 33, "decreas": 33, "indent_increas": 33, "increas": 33, "infinity_off": 33, "info_circl": 33, "info_circle_fil": 33, "info_hexagon": 33, "info_hexagon_fil": 33, "info_octagon": 33, "info_octagon_fil": 33, "info_smal": 33, "info_squar": 33, "info_square_fil": 33, "info_square_round": 33, "info_square_rounded_fil": 33, "info_triangl": 33, "info_triangle_fil": 33, "inner_shadow_bottom": 33, "shadow": 33, "inner_shadow_bottom_fil": 33, "inner_shadow_bottom_left": 33, "inner_shadow_bottom_left_fil": 33, "inner_shadow_bottom_right": 33, "inner_shadow_bottom_right_fil": 33, "inner_shadow_left": 33, "inner_shadow_left_fil": 33, "inner_shadow_right": 33, "inner_shadow_right_fil": 33, "inner_shadow_top": 33, "inner_shadow_top_fil": 33, "inner_shadow_top_left": 33, "inner_shadow_top_left_fil": 33, "inner_shadow_top_right": 33, "inner_shadow_top_right_fil": 33, "input_search": 33, "iron": 33, "ironing_1": 33, "ironing_2": 33, "ironing_3": 33, "ironing_off": 33, "ironing_steam": 33, "ironing_steam_off": 33, "irregular_polyhedron": 33, "irregular": 33, "polyhedron": 33, "irregular_polyhedron_off": 33, "irregular_polyhedron_plu": 33, "ital": 33, "jacket": 33, "jetpack": 33, "jewish_star": 33, "jewish": 33, "jewish_star_fil": 33, "jpg": 33, "json": 33, "jump_rop": 33, "jump": 33, "rope": 33, "karat": 33, "kayak": 33, "kere": 33, "key_off": 33, "keyboard": 33, "keyboard_hid": 33, "keyboard_off": 33, "keyboard_show": 33, "keyfram": 33, "keyframe_align_cent": 33, "keyframe_align_horizont": 33, "keyframe_align_vert": 33, "ladder": 33, "ladder_off": 33, "lamp": 33, "lamp_2": 33, "lamp_off": 33, "lane": 33, "languag": 33, "language_hiragana": 33, "hiragana": 33, "language_katakana": 33, "katakana": 33, "language_off": 33, "lasso": 33, "lasso_off": 33, "lasso_polygon": 33, "polygon": 33, "layers_differ": 33, "layer": 33, "layers_intersect": 33, "layers_intersect_2": 33, "layers_link": 33, "layers_off": 33, "layers_subtract": 33, "subtract": 33, "layers_union": 33, "union": 33, "layout_2": 33, "layout_align_bottom": 33, "layout_align_cent": 33, "layout_align_left": 33, "layout_align_middl": 33, "layout_align_right": 33, "layout_align_top": 33, "layout_board": 33, "layout_board_split": 33, "layout_bottombar": 33, "bottombar": 33, "layout_bottombar_collaps": 33, "layout_bottombar_expand": 33, "expand": 33, "layout_card": 33, "layout_collag": 33, "collag": 33, "layout_column": 33, "layout_dashboard": 33, "layout_distribute_horizont": 33, "distribut": 33, "layout_distribute_vert": 33, "layout_grid": 33, "layout_grid_add": 33, "layout_grid_remov": 33, "layout_kanban": 33, "kanban": 33, "layout_list": 33, "layout_navbar": 33, "navbar": 33, "layout_navbar_collaps": 33, "layout_navbar_expand": 33, "layout_off": 33, "layout_row": 33, "layout_sidebar": 33, "sidebar": 33, "layout_sidebar_left_collaps": 33, "layout_sidebar_left_expand": 33, "layout_sidebar_right": 33, "layout_sidebar_right_collaps": 33, "layout_sidebar_right_expand": 33, "leaf_off": 33, "lego": 33, "lego_off": 33, "lemon": 33, "lemon_2": 33, "letter_a": 33, "letter_b": 33, "letter_c": 33, "letter_cas": 33, "letter_case_low": 33, "letter_case_toggl": 33, "letter_case_upp": 33, "letter_d": 33, "letter_": 33, "letter_f": 33, "letter_g": 33, "letter_h": 33, "letter_i": 33, "letter_j": 33, "letter_k": 33, "letter_l": 33, "letter_m": 33, "letter_n": 33, "letter_o": 33, "letter_p": 33, "letter_q": 33, "letter_r": 33, "letter_spac": 33, "letter_t": 33, "letter_u": 33, "letter_v": 33, "letter_w": 33, "letter_x": 33, "letter_z": 33, "licens": 33, "license_off": 33, "lifebuoi": 33, "lifebuoy_off": 33, "lighter": 33, "line_dash": 33, "line_dot": 33, "line_height": 33, "link_off": 33, "list_check": 33, "list_detail": 33, "list_numb": 33, "list_search": 33, "list_tre": 33, "live_photo": 33, "live": 33, "live_photo_off": 33, "live_view": 33, "load_balanc": 33, "balanc": 33, "loader_2": 33, "loader_3": 33, "loader_quart": 33, "quarter": 33, "location_broken": 33, "location_fil": 33, "location_off": 33, "lock_access": 33, "lock_access_off": 33, "lock_bolt": 33, "lock_cancel": 33, "lock_check": 33, "lock_cod": 33, "lock_cog": 33, "lock_dollar": 33, "lock_down": 33, "lock_exclam": 33, "lock_heart": 33, "lock_minu": 33, "lock_off": 33, "lock_open": 33, "lock_open_off": 33, "lock_paus": 33, "lock_pin": 33, "lock_plu": 33, "lock_quest": 33, "lock_search": 33, "lock_shar": 33, "lock_squar": 33, "lock_square_round": 33, "lock_square_rounded_fil": 33, "lock_star": 33, "lock_up": 33, "lock_x": 33, "logic_and": 33, "logic_buff": 33, "logic_nand": 33, "nand": 33, "logic_nor": 33, "nor": 33, "logic_not": 33, "logic_or": 33, "logic_xnor": 33, "xnor": 33, "logic_xor": 33, "xor": 33, "login": 33, "logout": 33, "logout_2": 33, "lollipop": 33, "lollipop_off": 33, "luggag": 33, "luggage_off": 33, "lung": 33, "lungs_off": 33, "macro": 33, "macro_off": 33, "magnet": 33, "magnet_off": 33, "mail": 33, "mail_ai": 33, "mail_bolt": 33, "mail_cancel": 33, "mail_check": 33, "mail_cod": 33, "mail_cog": 33, "mail_dollar": 33, "mail_down": 33, "mail_exclam": 33, "mail_fast": 33, "fast": 33, "mail_fil": 33, "mail_forward": 33, "mail_heart": 33, "mail_minu": 33, "mail_off": 33, "mail_open": 33, "mail_opened_fil": 33, "mail_paus": 33, "mail_pin": 33, "mail_plu": 33, "mail_quest": 33, "mail_search": 33, "mail_shar": 33, "mail_star": 33, "mail_up": 33, "mail_x": 33, "mailbox": 33, "mailbox_off": 33, "manual_gearbox": 33, "gearbox": 33, "map_2": 33, "map_off": 33, "map_pin": 33, "map_pin_bolt": 33, "map_pin_cancel": 33, "map_pin_check": 33, "map_pin_cod": 33, "map_pin_cog": 33, "map_pin_dollar": 33, "map_pin_down": 33, "map_pin_exclam": 33, "map_pin_fil": 33, "map_pin_heart": 33, "map_pin_minu": 33, "map_pin_off": 33, "map_pin_paus": 33, "map_pin_pin": 33, "map_pin_plu": 33, "map_pin_quest": 33, "map_pin_search": 33, "map_pin_shar": 33, "map_pin_star": 33, "map_pin_up": 33, "map_pin_x": 33, "map_search": 33, "markdown_off": 33, "marque": 33, "marquee_2": 33, "marquee_off": 33, "mar": 33, "mask_off": 33, "masks_theat": 33, "theater": 33, "masks_theater_off": 33, "massag": 33, "matchstick": 33, "math": 33, "math_1_divide_2": 33, "math_1_divide_3": 33, "math_avg": 33, "avg": 33, "math_equal_great": 33, "greater": 33, "math_equal_low": 33, "math_funct": 33, "math_function_off": 33, "math_function_i": 33, "math_great": 33, "math_integr": 33, "integr": [33, 39], "math_integral_x": 33, "math_low": 33, "math_max": 33, "math_min": 33, "math_not": 33, "math_off": 33, "math_pi": 33, "math_pi_divide_2": 33, "math_symbol": 33, "math_x_divide_2": 33, "math_x_divide_i": 33, "math_x_divide_y_2": 33, "math_x_minus_x": 33, "math_x_minus_i": 33, "math_x_plus_x": 33, "math_x_plus_i": 33, "math_xi": 33, "math_y_minus_i": 33, "math_y_plus_i": 33, "maximize_off": 33, "meat": 33, "meat_off": 33, "medal": 33, "medal_2": 33, "medical_cross": 33, "medic": 33, "medical_cross_circl": 33, "medical_cross_fil": 33, "medical_cross_off": 33, "medicine_syrup": 33, "medicin": 33, "syrup": 33, "meepl": 33, "menorah": 33, "menu": 33, "menu_2": 33, "menu_deep": 33, "deep": 33, "menu_ord": 33, "message_2": 33, "message_2_bolt": 33, "message_2_cancel": 33, "message_2_check": 33, "message_2_cod": 33, "message_2_cog": 33, "message_2_dollar": 33, "message_2_down": 33, "message_2_exclam": 33, "message_2_heart": 33, "message_2_minu": 33, "message_2_off": 33, "message_2_paus": 33, "message_2_pin": 33, "message_2_plu": 33, "message_2_quest": 33, "message_2_search": 33, "message_2_shar": 33, "message_2_star": 33, "message_2_up": 33, "message_2_x": 33, "message_bolt": 33, "message_cancel": 33, "message_chatbot": 33, "chatbot": 33, "message_check": 33, "message_circl": 33, "message_circle_2": 33, "message_circle_2_fil": 33, "message_circle_bolt": 33, "message_circle_cancel": 33, "message_circle_check": 33, "message_circle_cod": 33, "message_circle_cog": 33, "message_circle_dollar": 33, "message_circle_down": 33, "message_circle_exclam": 33, "message_circle_heart": 33, "message_circle_minu": 33, "message_circle_off": 33, "message_circle_paus": 33, "message_circle_pin": 33, "message_circle_plu": 33, "message_circle_quest": 33, "message_circle_search": 33, "message_circle_shar": 33, "message_circle_star": 33, "message_circle_up": 33, "message_circle_x": 33, "message_cod": 33, "message_cog": 33, "message_dollar": 33, "message_dot": 33, "message_down": 33, "message_exclam": 33, "message_forward": 33, "message_heart": 33, "message_languag": 33, "message_minu": 33, "message_off": 33, "message_paus": 33, "message_pin": 33, "message_plu": 33, "message_quest": 33, "message_report": 33, "message_search": 33, "message_shar": 33, "message_star": 33, "message_up": 33, "message_x": 33, "messages_off": 33, "meteor": 33, "meteor_off": 33, "michelin_bib_gourmand": 33, "michelin": 33, "bib": 33, "gourmand": 33, "michelin_star": 33, "michelin_star_green": 33, "mickei": 33, "mickey_fil": 33, "microphon": 33, "microphone_2": 33, "microphone_2_off": 33, "microphone_off": 33, "microscop": 33, "microscope_off": 33, "microwav": 33, "microwave_off": 33, "military_award": 33, "militari": 33, "military_rank": 33, "rank": 33, "milk": 33, "milk_off": 33, "milkshak": 33, "minus_vert": 33, "mist": 33, "mist_off": 33, "mobiledata": 33, "mobiledata_off": 33, "moneybag": 33, "mood_angri": 33, "mood": 33, "angri": 33, "mood_annoi": 33, "annoi": 33, "mood_annoyed_2": 33, "mood_boi": 33, "boi": 33, "mood_check": 33, "mood_cog": 33, "mood_confuz": 33, "confuz": 33, "mood_confuzed_fil": 33, "mood_crazy_happi": 33, "crazi": 33, "happi": 33, "mood_cri": 33, "cry": 33, "mood_dollar": 33, "mood_edit": 33, "mood_empti": 33, "mood_empty_fil": 33, "mood_happi": 33, "mood_happy_fil": 33, "mood_heart": 33, "mood_kid": 33, "mood_kid_fil": 33, "mood_look_left": 33, "mood_look_right": 33, "mood_minu": 33, "mood_nerd": 33, "nerd": 33, "mood_nerv": 33, "nervou": 33, "mood_neutr": 33, "neutral": 33, "mood_neutral_fil": 33, "mood_off": 33, "mood_pin": 33, "mood_plu": 33, "mood_sad": 33, "sad": 33, "mood_sad_2": 33, "mood_sad_dizzi": 33, "dizzi": 33, "mood_sad_fil": 33, "mood_sad_squint": 33, "squint": 33, "mood_search": 33, "mood_shar": 33, "mood_sick": 33, "sick": 33, "mood_sil": 33, "silenc": 33, "mood_s": 33, "sing": 33, "mood_smil": 33, "smile": 33, "mood_smile_beam": 33, "beam": 33, "mood_smile_dizzi": 33, "mood_smile_fil": 33, "mood_supris": 33, "supris": 33, "mood_tongu": 33, "tongu": 33, "mood_tongue_wink": 33, "wink": 33, "mood_tongue_wink_2": 33, "mood_unamus": 33, "unamus": 33, "mood_up": 33, "mood_wink": 33, "mood_wink_2": 33, "mood_wrrr": 33, "wrrr": 33, "mood_x": 33, "mood_xd": 33, "xd": 33, "moon_2": 33, "moon_fil": 33, "moon_off": 33, "moon_star": 33, "mope": 33, "motorbik": 33, "mountain": 33, "mountain_off": 33, "mouse_2": 33, "mouse_off": 33, "moustach": 33, "movi": 33, "movie_off": 33, "mug": 33, "mug_off": 33, "multiplier_0_5x": 33, "multipli": [33, 39], "5x": 33, "multiplier_1_5x": 33, "multiplier_1x": 33, "1x": 33, "multiplier_2x": 33, "2x": 33, "mushroom": 33, "mushroom_fil": 33, "mushroom_off": 33, "music_off": 33, "navig": [33, 34], "navigation_fil": 33, "navigation_north": 33, "north": 33, "navigation_off": 33, "needl": 33, "needle_thread": 33, "network": 33, "network_off": 33, "new_sect": 33, "section": [33, 36], "news_off": 33, "nfc": 33, "nfc_off": 33, "no_copyright": 33, "no_creative_common": 33, "no_deriv": 33, "deriv": 33, "north_star": 33, "note_off": 33, "notebook": 33, "notebook_off": 33, "notes_off": 33, "notif": 33, "notification_off": 33, "number_0": 33, "number_1": 33, "number_2": 33, "number_3": 33, "number_4": 33, "number_5": 33, "number_6": 33, "number_7": 33, "number_8": 33, "number_9": 33, "nurs": 33, "octagon_fil": 33, "octagon_off": 33, "octahedron": 33, "octahedron_off": 33, "octahedron_plu": 33, "olymp": 33, "olympics_off": 33, "om": 33, "omega": [33, 39], "outbound": 33, "outlet": 33, "oval": 33, "oval_fil": 33, "oval_vert": 33, "oval_vertical_fil": 33, "overlin": 33, "package_export": 33, "package_import": 33, "package_off": 33, "pacman": 33, "page_break": 33, "page": 33, "break": 33, "paint_fil": 33, "paint_off": 33, "palett": 33, "palette_off": 33, "panorama_horizont": 33, "panorama": 33, "panorama_horizontal_off": 33, "panorama_vert": 33, "panorama_vertical_off": 33, "paper_bag": 33, "paper": 33, "bag": 33, "paper_bag_off": 33, "paperclip": 33, "parachut": 33, "parachute_off": 33, "parenthes": 33, "parentheses_off": 33, "park": 33, "parking_off": 33, "password": 33, "paw": 33, "paw_fil": 33, "paw_off": 33, "pdf": 33, "peac": 33, "pencil_minu": 33, "pencil_off": 33, "pencil_plu": 33, "pennant": 33, "pennant_2": 33, "pennant_2_fil": 33, "pennant_fil": 33, "pennant_off": 33, "pentagon": 33, "pentagon_fil": 33, "pentagon_off": 33, "pentagram": 33, "pepper": 33, "pepper_off": 33, "percentag": 33, "perfum": 33, "perspect": [33, 36], "perspective_off": 33, "phone_cal": 33, "phone_check": 33, "phone_fil": 33, "phone_incom": 33, "incom": [33, 35], "phone_off": 33, "phone_outgo": 33, "phone_paus": 33, "phone_plu": 33, "phone_x": 33, "photo_ai": 33, "photo_bolt": 33, "photo_cancel": 33, "photo_check": 33, "photo_cod": 33, "photo_cog": 33, "photo_dollar": 33, "photo_down": 33, "photo_edit": 33, "photo_exclam": 33, "photo_fil": 33, "photo_heart": 33, "photo_minu": 33, "photo_off": 33, "photo_paus": 33, "photo_pin": 33, "photo_plu": 33, "photo_quest": 33, "photo_search": 33, "photo_sensor": 33, "sensor": 33, "photo_sensor_2": 33, "photo_sensor_3": 33, "photo_shar": 33, "photo_shield": 33, "photo_star": 33, "photo_up": 33, "photo_x": 33, "physotherapist": 33, "piano": 33, "picture_in_pictur": 33, "pictur": 33, "picture_in_picture_off": 33, "picture_in_picture_on": 33, "picture_in_picture_top": 33, "pig": 33, "pig_monei": 33, "monei": 33, "pig_off": 33, "pilcrow": 33, "pill": 33, "pill_off": 33, "pin_fil": 33, "ping_pong": 33, "ping": 33, "pong": 33, "pinned_fil": 33, "pinned_off": 33, "pizza": 33, "pizza_off": 33, "placehold": 33, "plane_arriv": 33, "arriv": 33, "plane_departur": 33, "departur": 33, "plane_inflight": 33, "inflight": 33, "plane_off": 33, "plane_tilt": 33, "tilt": 33, "planet": 33, "planet_off": 33, "plant": 33, "plant_2": 33, "plant_2_off": 33, "plant_off": 33, "play_basketbal": 33, "play_card": 33, "play_card_off": 33, "play_footbal": 33, "play_handbal": 33, "handbal": 33, "play_volleybal": 33, "player_eject": 33, "eject": 33, "player_eject_fil": 33, "player_paus": 33, "player_pause_fil": 33, "player_plai": 33, "player_play_fil": 33, "player_record": 33, "player_record_fil": 33, "player_skip_back": 33, "player_skip_back_fil": 33, "player_skip_forward": 33, "player_skip_forward_fil": 33, "player_stop": 33, "player_stop_fil": 33, "player_track_next": 33, "track": 33, "player_track_next_fil": 33, "player_track_prev": 33, "player_track_prev_fil": 33, "playlist": 33, "playlist_add": 33, "playlist_off": 33, "playlist_x": 33, "playstation_circl": 33, "playstat": 33, "playstation_squar": 33, "playstation_triangl": 33, "playstation_x": 33, "plug": 33, "plug_connect": 33, "plug_connected_x": 33, "plug_off": 33, "plug_x": 33, "plus_equ": 33, "plus_minu": 33, "podium": 33, "podium_off": 33, "point_fil": 33, "point_off": 33, "pointer_bolt": 33, "pointer_cancel": 33, "pointer_check": 33, "pointer_cod": 33, "pointer_cog": 33, "pointer_dollar": 33, "pointer_down": 33, "pointer_exclam": 33, "pointer_heart": 33, "pointer_minu": 33, "pointer_off": 33, "pointer_paus": 33, "pointer_pin": 33, "pointer_plu": 33, "pointer_quest": 33, "pointer_search": 33, "pointer_shar": 33, "pointer_star": 33, "pointer_up": 33, "pointer_x": 33, "pokebal": 33, "pokeball_off": 33, "poker_chip": 33, "poker": 33, "chip": 33, "polaroid": 33, "polaroid_fil": 33, "polygon_off": 33, "poo": 33, "pool": 33, "pool_off": 33, "prai": 33, "premium_right": 33, "premium": 33, "prescript": 33, "present": 33, "presentation_analyt": 33, "presentation_off": 33, "printer": 33, "printer_off": 33, "prism_off": 33, "prism_plu": 33, "prison": 33, "progress_alert": 33, "progress_bolt": 33, "progress_check": 33, "progress_down": 33, "progress_help": 33, "progress_x": 33, "prompt": 33, "propel": 33, "propeller_off": 33, "pumpkin_scari": 33, "pumpkin": 33, "scari": 33, "puzzl": 33, "puzzle_2": 33, "puzzle_fil": 33, "puzzle_off": 33, "pyramid_off": 33, "pyramid_plu": 33, "qrcode": 33, "qrcode_off": 33, "question_mark": 33, "quot": 33, "quote_off": 33, "radar_2": 33, "radar_off": 33, "radio": 33, "radio_off": 33, "radioact": 33, "radioactive_fil": 33, "radioactive_off": 33, "radius_bottom_left": 33, "radius_bottom_right": 33, "radius_top_left": 33, "radius_top_right": 33, "rainbow": 33, "rainbow_off": 33, "rating_12_plu": 33, "rating_14_plu": 33, "14": 33, "rating_16_plu": 33, "16": 33, "rating_18_plu": 33, "18": 33, "rating_21_plu": 33, "21": 33, "razor": 33, "razor_electr": 33, "electr": 33, "receipt": 33, "receipt_2": 33, "receipt_off": 33, "receipt_refund": 33, "refund": 33, "receipt_tax": 33, "tax": 33, "recharg": 33, "record_mail": 33, "record_mail_off": 33, "rectangle_fil": 33, "rectangle_rounded_bottom": 33, "rectangle_rounded_top": 33, "rectangle_vert": 33, "rectangle_vertical_fil": 33, "rectangular_pr": 33, "rectangular": 33, "rectangular_prism_off": 33, "rectangular_prism_plu": 33, "recycl": 33, "recycle_off": 33, "refresh": 33, "refresh_alert": 33, "refresh_dot": 33, "refresh_off": 33, "regex": 33, "regex_off": 33, "relation_many_to_mani": 33, "mani": [33, 36], "relation_one_to_mani": 33, "relation_one_to_on": 33, "reload": 33, "repeat_off": 33, "repeat_onc": 33, "replace_fil": 33, "replace_off": 33, "report_analyt": 33, "report_med": 33, "report_monei": 33, "report_off": 33, "report_search": 33, "reserved_lin": 33, "reserv": 33, "restor": 33, "rewind_backward_10": 33, "rewind": 33, "backward": [33, 35], "rewind_backward_15": 33, "rewind_backward_20": 33, "rewind_backward_30": 33, "rewind_backward_40": 33, "40": 33, "rewind_backward_5": 33, "rewind_backward_50": 33, "rewind_backward_60": 33, "rewind_forward_10": 33, "rewind_forward_15": 33, "rewind_forward_20": 33, "rewind_forward_30": 33, "rewind_forward_40": 33, "rewind_forward_5": 33, "rewind_forward_50": 33, "rewind_forward_60": 33, "ribbon_health": 33, "ripple_off": 33, "road": 33, "road_off": 33, "road_sign": 33, "robot": [33, 39], "robot_off": 33, "rocket": 33, "rocket_off": 33, "roller_sk": 33, "roller": 33, "rollercoast": 33, "rollercoaster_off": 33, "rosett": 33, "rosette_fil": 33, "rosette_number_0": 33, "rosette_number_1": 33, "rosette_number_2": 33, "rosette_number_3": 33, "rosette_number_4": 33, "rosette_number_5": 33, "rosette_number_6": 33, "rosette_number_7": 33, "rosette_number_8": 33, "rosette_number_9": 33, "rotate_2": 33, "rotate_360": 33, "rotate_clockwis": 33, "clockwis": 33, "rotate_clockwise_2": 33, "rotate_dot": 33, "rotate_rectangl": 33, "rout": 33, "route_2": 33, "route_off": 33, "router": 33, "router_off": 33, "row_insert_bottom": 33, "row_insert_top": 33, "row_remov": 33, "rubber_stamp": 33, "rubber": 33, "stamp": 33, "rubber_stamp_off": 33, "ruler": 33, "ruler_2": 33, "ruler_2_off": 33, "ruler_3": 33, "ruler_measur": 33, "measur": 33, "ruler_off": 33, "s_turn_down": 33, "s_turn_left": 33, "s_turn_right": 33, "s_turn_up": 33, "sailboat": 33, "sailboat_2": 33, "sailboat_off": 33, "salad": 33, "salt": 33, "satellit": 33, "satellite_off": 33, "sausag": 33, "scale_off": 33, "scale_outlin": 33, "scale_outline_off": 33, "scan": 33, "scan_ey": 33, "schema": 33, "schema_off": 33, "school_bel": 33, "school_off": 33, "scissors_off": 33, "scooter": 33, "scooter_electr": 33, "scoreboard": 33, "screen_shar": 33, "screen_share_off": 33, "screenshot": 33, "scribbl": 33, "scribble_off": 33, "script_minu": 33, "script_plu": 33, "script_x": 33, "scuba_mask": 33, "scuba": 33, "scuba_mask_off": 33, "sdk": 33, "search_off": 33, "section_sign": 33, "seed": 33, "seeding_off": 33, "select_al": 33, "selector": 33, "send_off": 33, "seo": 33, "separ": 33, "separator_horizont": 33, "separator_vert": 33, "server_2": 33, "server_bolt": 33, "server_cog": 33, "server_off": 33, "servicemark": 33, "settings_2": 33, "settings_autom": 33, "autom": 33, "settings_bolt": 33, "settings_cancel": 33, "settings_check": 33, "settings_cod": 33, "settings_cog": 33, "settings_dollar": 33, "settings_down": 33, "settings_exclam": 33, "settings_fil": 33, "settings_heart": 33, "settings_minu": 33, "settings_off": 33, "settings_paus": 33, "settings_pin": 33, "settings_plu": 33, "settings_quest": 33, "settings_search": 33, "settings_shar": 33, "settings_star": 33, "settings_up": 33, "settings_x": 33, "shadow_off": 33, "shape_2": 33, "shape_3": 33, "shape_off": 33, "share_2": 33, "share_3": 33, "share_off": 33, "shi_jump": 33, "shi": 33, "shield_bolt": 33, "shield_cancel": 33, "shield_check": 33, "shield_check_fil": 33, "checker": 33, "shield_checkered_fil": 33, "shield_chevron": 33, "shield_cod": 33, "shield_cog": 33, "shield_dollar": 33, "shield_down": 33, "shield_exclam": 33, "shield_fil": 33, "shield_half": 33, "shield_half_fil": 33, "shield_heart": 33, "shield_lock": 33, "shield_lock_fil": 33, "shield_minu": 33, "shield_off": 33, "shield_paus": 33, "shield_pin": 33, "shield_plu": 33, "shield_quest": 33, "shield_search": 33, "shield_shar": 33, "shield_star": 33, "shield_up": 33, "shield_x": 33, "ship": 33, "ship_off": 33, "shirt": 33, "shirt_fil": 33, "shirt_off": 33, "shirt_sport": 33, "sport": 33, "shoe": 33, "shoe_off": 33, "shopping_bag": 33, "shop": 33, "shopping_cart": 33, "shopping_cart_discount": 33, "shopping_cart_off": 33, "shopping_cart_plu": 33, "shopping_cart_x": 33, "shovel": 33, "sign_left": 33, "sign_left_fil": 33, "sign_right": 33, "sign_right_fil": 33, "signal_2g": 33, "2g": 33, "signal_3g": 33, "3g": 33, "signal_4g": 33, "4g": 33, "signal_4g_plu": 33, "signal_5g": 33, "5g": 33, "signal_6g": 33, "6g": 33, "signal_": 33, "signal_g": 33, "signal_h": 33, "signal_h_plu": 33, "signal_lt": 33, "lte": 33, "signatur": 33, "signature_off": 33, "sitemap": 33, "sitemap_off": 33, "skateboard": 33, "skateboard_off": 33, "skull": 33, "slash": 33, "sleigh": 33, "slice": 33, "slideshow": 33, "smart_hom": 33, "smart": 33, "smart_home_off": 33, "smoke": 33, "smoking_no": 33, "snowflake_off": 33, "snowman": 33, "soccer_field": 33, "soccer": 33, "social": 33, "social_off": 33, "sock": 33, "sofa": 33, "sofa_off": 33, "solar_panel": 33, "solar": 33, "solar_panel_2": 33, "sort_0_9": 33, "sort_9_0": 33, "sort_a_z": 33, "sort_ascend": 33, "ascend": 33, "sort_ascending_2": 33, "sort_ascending_lett": 33, "sort_ascending_numb": 33, "sort_descend": 33, "descend": 33, "sort_descending_2": 33, "sort_descending_lett": 33, "sort_descending_numb": 33, "sort_z_a": 33, "soup": 33, "soup_off": 33, "source_cod": 33, "space_off": 33, "spacing_horizont": 33, "spacing_vert": 33, "spade": 33, "spade_fil": 33, "sparkl": [33, 36], "speakerphon": 33, "speedboat": 33, "sphere_off": 33, "sphere_plu": 33, "spider": 33, "spiral": 33, "spiral_off": 33, "sport_billard": 33, "billard": 33, "sprai": 33, "spy": 33, "spy_off": 33, "sql": 33, "square_0_fil": 33, "square_1_fil": 33, "square_2_fil": 33, "square_3_fil": 33, "square_4_fil": 33, "square_5_fil": 33, "square_6_fil": 33, "square_7_fil": 33, "square_8_fil": 33, "square_9_fil": 33, "square_arrow_down": 33, "square_arrow_left": 33, "square_arrow_right": 33, "square_arrow_up": 33, "square_asterisk": 33, "square_check": 33, "square_check_fil": 33, "square_chevron_down": 33, "square_chevron_left": 33, "square_chevron_right": 33, "square_chevron_up": 33, "square_chevrons_down": 33, "square_chevrons_left": 33, "square_chevrons_right": 33, "square_chevrons_up": 33, "square_dot": 33, "square_f0": 33, "f0": 33, "square_f0_fil": 33, "square_f1": 33, "f1": 33, "square_f1_fil": 33, "square_f2": 33, "f2": 33, "square_f2_fil": 33, "square_f3": 33, "f3": 33, "square_f3_fil": 33, "square_f4": 33, "f4": 33, "square_f4_fil": 33, "square_f5": 33, "f5": 33, "square_f5_fil": 33, "square_f6": 33, "f6": 33, "square_f6_fil": 33, "square_f7": 33, "f7": 33, "square_f7_fil": 33, "square_f8": 33, "f8": 33, "square_f8_fil": 33, "square_f9": 33, "f9": 33, "square_f9_fil": 33, "square_forbid": 33, "square_forbid_2": 33, "square_half": 33, "square_kei": 33, "square_letter_a": 33, "square_letter_b": 33, "square_letter_c": 33, "square_letter_d": 33, "square_letter_": 33, "square_letter_f": 33, "square_letter_g": 33, "square_letter_h": 33, "square_letter_i": 33, "square_letter_j": 33, "square_letter_k": 33, "square_letter_l": 33, "square_letter_m": 33, "square_letter_n": 33, "square_letter_o": 33, "square_letter_p": 33, "square_letter_q": 33, "square_letter_r": 33, "square_letter_t": 33, "square_letter_u": 33, "square_letter_v": 33, "square_letter_w": 33, "square_letter_x": 33, "square_letter_z": 33, "square_minu": 33, "square_number_0": 33, "square_number_1": 33, "square_number_2": 33, "square_number_3": 33, "square_number_4": 33, "square_number_5": 33, "square_number_6": 33, "square_number_7": 33, "square_number_8": 33, "square_number_9": 33, "square_off": 33, "square_plu": 33, "square_root": 33, "square_root_2": 33, "square_rot": 33, "square_rotated_fil": 33, "square_rotated_forbid": 33, "square_rotated_forbid_2": 33, "square_rotated_off": 33, "square_round": 33, "square_rounded_arrow_down": 33, "square_rounded_arrow_down_fil": 33, "square_rounded_arrow_left": 33, "square_rounded_arrow_left_fil": 33, "square_rounded_arrow_right": 33, "square_rounded_arrow_right_fil": 33, "square_rounded_arrow_up": 33, "square_rounded_arrow_up_fil": 33, "square_rounded_check": 33, "square_rounded_check_fil": 33, "square_rounded_chevron_down": 33, "square_rounded_chevron_down_fil": 33, "square_rounded_chevron_left": 33, "square_rounded_chevron_left_fil": 33, "square_rounded_chevron_right": 33, "square_rounded_chevron_right_fil": 33, "square_rounded_chevron_up": 33, "square_rounded_chevron_up_fil": 33, "square_rounded_chevrons_down": 33, "square_rounded_chevrons_down_fil": 33, "square_rounded_chevrons_left": 33, "square_rounded_chevrons_left_fil": 33, "square_rounded_chevrons_right": 33, "square_rounded_chevrons_right_fil": 33, "square_rounded_chevrons_up": 33, "square_rounded_chevrons_up_fil": 33, "square_rounded_fil": 33, "square_rounded_letter_a": 33, "square_rounded_letter_b": 33, "square_rounded_letter_c": 33, "square_rounded_letter_d": 33, "square_rounded_letter_": 33, "square_rounded_letter_f": 33, "square_rounded_letter_g": 33, "square_rounded_letter_h": 33, "square_rounded_letter_i": 33, "square_rounded_letter_j": 33, "square_rounded_letter_k": 33, "square_rounded_letter_l": 33, "square_rounded_letter_m": 33, "square_rounded_letter_n": 33, "square_rounded_letter_o": 33, "square_rounded_letter_p": 33, "square_rounded_letter_q": 33, "square_rounded_letter_r": 33, "square_rounded_letter_t": 33, "square_rounded_letter_u": 33, "square_rounded_letter_v": 33, "square_rounded_letter_w": 33, "square_rounded_letter_x": 33, "square_rounded_letter_z": 33, "square_rounded_minu": 33, "square_rounded_number_0": 33, "square_rounded_number_0_fil": 33, "square_rounded_number_1": 33, "square_rounded_number_1_fil": 33, "square_rounded_number_2": 33, "square_rounded_number_2_fil": 33, "square_rounded_number_3": 33, "square_rounded_number_3_fil": 33, "square_rounded_number_4": 33, "square_rounded_number_4_fil": 33, "square_rounded_number_5": 33, "square_rounded_number_5_fil": 33, "square_rounded_number_6": 33, "square_rounded_number_6_fil": 33, "square_rounded_number_7": 33, "square_rounded_number_7_fil": 33, "square_rounded_number_8": 33, "square_rounded_number_8_fil": 33, "square_rounded_number_9": 33, "square_rounded_number_9_fil": 33, "square_rounded_plu": 33, "square_rounded_plus_fil": 33, "square_rounded_x": 33, "square_rounded_x_fil": 33, "square_toggl": 33, "square_toggle_horizont": 33, "square_x": 33, "squares_diagon": 33, "squares_fil": 33, "stack_2": 33, "stack_3": 33, "stack_pop": 33, "pop": 33, "stack_push": 33, "push": [33, 35], "stair": 33, "stairs_down": 33, "stairs_up": 33, "star_fil": 33, "star_half": 33, "star_half_fil": 33, "star_off": 33, "stars_fil": 33, "stars_off": 33, "status_chang": 33, "statu": 33, "steering_wheel": 33, "steer": 33, "wheel": 33, "steering_wheel_off": 33, "step_into": 33, "step_out": 33, "stereo_glass": 33, "stereo": 33, "stethoscop": 33, "stethoscope_off": 33, "sticker": 33, "storm_off": 33, "stretching_2": 33, "strikethrough": 33, "submarin": 33, "subscript": 33, "subtask": 33, "sum": 33, "sum_off": 33, "sun": 33, "sun_fil": 33, "sun_high": 33, "sun_low": 33, "sun_moon": 33, "sun_off": 33, "sun_wind": 33, "sunglass": 33, "sunris": 33, "sunset": 33, "sunset_2": 33, "superscript": 33, "svg": 33, "swim": 33, "swipe": 33, "switch_2": 33, "switch_3": 33, "switch_horizont": 33, "switch_vert": 33, "sword": 33, "sword_off": 33, "table_alia": 33, "table_column": 33, "table_down": 33, "table_export": 33, "table_fil": 33, "table_heart": 33, "table_import": 33, "table_minu": 33, "table_off": 33, "table_opt": 33, "table_plu": 33, "table_row": 33, "table_shar": 33, "table_shortcut": 33, "shortcut": 33, "tag": 33, "tag_off": 33, "tags_off": 33, "tallymark_1": 33, "tallymark": 33, "tallymark_2": 33, "tallymark_3": 33, "tallymark_4": 33, "tank": 33, "target_arrow": 33, "target_off": 33, "teapot": 33, "telescop": 33, "telescope_off": 33, "temperatur": 33, "temperature_celsiu": 33, "celsiu": 33, "temperature_fahrenheit": 33, "fahrenheit": 33, "temperature_minu": 33, "temperature_off": 33, "temperature_plu": 33, "templat": 33, "template_off": 33, "tent": 33, "tent_off": 33, "terminal_2": 33, "test_pip": 33, "test_pipe_2": 33, "test_pipe_off": 33, "tex": 33, "text_capt": 33, "caption": 33, "text_color": 33, "text_decreas": 33, "text_direction_ltr": 33, "ltr": 33, "text_direction_rtl": 33, "rtl": 33, "text_increas": 33, "text_orient": 33, "text_plu": 33, "text_recognit": 33, "text_res": 33, "text_siz": 33, "text_spellcheck": 33, "spellcheck": 33, "text_wrap": 33, "wrap": [33, 35], "text_wrap_dis": 33, "thermomet": 33, "thumb_down": 33, "thumb": 33, "thumb_down_fil": 33, "thumb_down_off": 33, "thumb_up": 33, "thumb_up_fil": 33, "thumb_up_off": 33, "tic_tac": 33, "ticket": 33, "ticket_off": 33, "tie": 33, "tild": 33, "tilt_shift": 33, "shift": 33, "tilt_shift_off": 33, "time_duration_0": 33, "durat": 33, "time_duration_10": 33, "time_duration_15": 33, "time_duration_30": 33, "time_duration_45": 33, "time_duration_5": 33, "time_duration_60": 33, "time_duration_90": 33, "time_duration_off": 33, "timelin": 33, "timeline_ev": 33, "timeline_event_exclam": 33, "timeline_event_minu": 33, "timeline_event_plu": 33, "timeline_event_text": 33, "timeline_event_x": 33, "tir": 33, "toggle_left": 33, "toggle_right": 33, "toilet_pap": 33, "toilet": 33, "toilet_paper_off": 33, "toml": 33, "tools_kitchen": 33, "kitchen": 33, "tools_kitchen_2": 33, "tools_kitchen_2_off": 33, "tools_kitchen_off": 33, "tools_off": 33, "tooltip": 33, "topology_bu": 33, "topologi": 33, "topology_complex": 33, "complex": [33, 36], "topology_ful": 33, "topology_full_hierarchi": 33, "topology_r": 33, "topology_ring_2": 33, "topology_ring_3": 33, "topology_star": 33, "topology_star_2": 33, "topology_star_3": 33, "topology_star_r": 33, "topology_star_ring_2": 33, "topology_star_ring_3": 33, "torii": 33, "tornado": 33, "tournament": 33, "tower_off": 33, "tractor": 33, "trademark": 33, "traffic_con": 33, "traffic": 33, "traffic_cone_off": 33, "traffic_light": 33, "traffic_lights_off": 33, "train": 33, "transfer_in": 33, "transfer_out": 33, "transform_fil": 33, "transition_bottom": 33, "transit": 33, "transition_left": 33, "transition_right": 33, "transition_top": 33, "trash": 33, "trash_fil": 33, "trash_off": 33, "trash_x": 33, "trash_x_fil": 33, "treadmil": 33, "trekk": 33, "trending_down": 33, "trend": 33, "trending_down_2": 33, "trending_down_3": 33, "trending_up": 33, "trending_up_2": 33, "trending_up_3": 33, "triangle_fil": 33, "triangle_invert": 33, "invert": 33, "triangle_inverted_fil": 33, "triangle_off": 33, "triangle_square_circl": 33, "trident": 33, "trollei": 33, "trophi": 33, "trophy_fil": 33, "trophy_off": 33, "trowel": 33, "truck": 33, "truck_deliveri": 33, "deliveri": 33, "truck_load": 33, "truck_off": 33, "truck_return": 33, "txt": 33, "typography_off": 33, "ufo": 33, "ufo_off": 33, "umbrella": 33, "umbrella_fil": 33, "umbrella_off": 33, "underlin": 33, "unlink": 33, "urgent": 33, "usb": 33, "user_bolt": 33, "user_cancel": 33, "user_check": 33, "user_circl": 33, "user_cod": 33, "user_cog": 33, "user_dollar": 33, "user_down": 33, "user_edit": 33, "user_exclam": 33, "user_heart": 33, "user_minu": 33, "user_off": 33, "user_paus": 33, "user_pin": 33, "user_plu": 33, "user_quest": 33, "user_search": 33, "user_shar": 33, "user_shield": 33, "user_star": 33, "user_up": 33, "user_x": 33, "users_group": 33, "users_minu": 33, "users_plu": 33, "uv_index": 33, "uv": 33, "ux_circl": 33, "ux": 33, "vaccin": 33, "vaccine_bottl": 33, "vaccine_bottle_off": 33, "vaccine_off": 33, "vacuum_clean": 33, "vacuum": 33, "cleaner": 33, "variabl": 33, "variable_minu": 33, "variable_off": 33, "variable_plu": 33, "vector_bezi": 33, "bezier": [33, 36], "vector_bezier_2": 33, "vector_bezier_arc": 33, "vector_bezier_circl": 33, "vector_off": 33, "vector_splin": 33, "spline": [33, 36], "vector_triangl": 33, "vector_triangle_off": 33, "venu": 33, "versions_fil": 33, "versions_off": 33, "video": 33, "video_minu": 33, "video_off": 33, "video_plu": 33, "view_360": 33, "view_360_off": 33, "viewfinder_off": 33, "viewport_narrow": 33, "viewport_wid": 33, "wide": 33, "vinyl": 33, "vip": 33, "vip_off": 33, "viru": 33, "virus_off": 33, "virus_search": 33, "vocabulari": 33, "vocabulary_off": 33, "volcano": 33, "volum": 33, "volume_2": 33, "volume_3": 33, "volume_off": 33, "walk": 33, "wall": 33, "wall_off": 33, "wallet": 33, "wallet_off": 33, "wallpap": 33, "wallpaper_off": 33, "wand": 33, "wand_off": 33, "wash": 33, "wash_dri": 33, "dry": 33, "wash_dry_1": 33, "wash_dry_2": 33, "wash_dry_3": 33, "wash_dry_a": 33, "wash_dry_dip": 33, "dip": 33, "wash_dry_f": 33, "wash_dry_flat": 33, "flat": [33, 36], "wash_dry_hang": 33, "hang": 33, "wash_dry_off": 33, "wash_dry_p": 33, "wash_dry_shad": 33, "shade": [33, 36], "wash_dry_w": 33, "wash_dryclean": 33, "dryclean": 33, "wash_dryclean_off": 33, "wash_eco": 33, "wash_gentl": 33, "gentl": 33, "wash_hand": 33, "wash_machin": 33, "machin": 33, "wash_off": 33, "wash_press": 33, "wash_temperature_1": 33, "wash_temperature_2": 33, "wash_temperature_3": 33, "wash_temperature_4": 33, "wash_temperature_5": 33, "wash_temperature_6": 33, "wash_tumble_dri": 33, "tumbl": 33, "wash_tumble_off": 33, "waterpolo": 33, "wave_saw_tool": 33, "saw": 33, "wave_sin": 33, "sine": 33, "wave_squar": 33, "webhook": 33, "webhook_off": 33, "wheelchair": 33, "wheelchair_off": 33, "whirl": 33, "wifi": 33, "wifi_0": 33, "wifi_1": 33, "wifi_2": 33, "wifi_off": 33, "wind_off": 33, "windmil": 33, "windmill_fil": 33, "windmill_off": 33, "window_maxim": 33, "window_minim": 33, "window_off": 33, "windsock": 33, "wiper": 33, "wiper_wash": 33, "woman": 33, "wood": 33, "world_bolt": 33, "world_cancel": 33, "world_check": 33, "world_cod": 33, "world_cog": 33, "world_dollar": 33, "world_down": 33, "world_download": 33, "world_exclam": 33, "world_heart": 33, "world_latitud": 33, "latitud": 33, "world_longitud": 33, "longitud": 33, "world_minu": 33, "world_off": 33, "world_paus": 33, "world_pin": 33, "world_plu": 33, "world_quest": 33, "world_search": 33, "world_shar": 33, "world_star": 33, "world_up": 33, "world_upload": 33, "world_www": 33, "www": 33, "world_x": 33, "wrecking_bal": 33, "wreck": 33, "writing_off": 33, "writing_sign": 33, "writing_sign_off": 33, "xbox_a": 33, "xbox_b": 33, "xbox_x": 33, "xbox_i": 33, "yin_yang": 33, "yin": 33, "yang": 33, "yin_yang_fil": 33, "yoga": 33, "zeppelin": 33, "zeppelin_off": 33, "zodiac_aquariu": 33, "zodiac": 33, "aquariu": 33, "zodiac_ari": 33, "ari": 33, "zodiac_canc": 33, "cancer": 33, "zodiac_capricorn": 33, "capricorn": 33, "zodiac_gemini": 33, "gemini": 33, "zodiac_leo": 33, "leo": 33, "zodiac_libra": 33, "libra": 33, "zodiac_pisc": 33, "pisc": 33, "zodiac_sagittariu": 33, "sagittariu": 33, "zodiac_scorpio": 33, "scorpio": 33, "zodiac_tauru": 33, "tauru": 33, "zodiac_virgo": 33, "virgo": 33, "zoom_cancel": 33, "zoom_check": 33, "zoom_check_fil": 33, "zoom_cod": 33, "zoom_exclam": 33, "zoom_fil": 33, "zoom_in": 33, "zoom_in_area": 33, "zoom_in_area_fil": 33, "zoom_in_fil": 33, "zoom_monei": 33, "zoom_out": 33, "zoom_out_area": 33, "zoom_out_fil": 33, "zoom_pan": 33, "pan": 33, "zoom_quest": 33, "zoom_replac": 33, "zoom_reset": 33, "zzz": 33, "zzz_off": 33, "librari": [34, 36], "featur": [34, 36, 38], "primit": [34, 36, 38], "programmat": 34, "entir": 34, "easi": 34, "over": [34, 36, 39], "ssh": 34, "infra": 35, "infrastructur": 35, "port": [35, 38, 39], "what": 35, "under": [35, 36, 37], "hood": [35, 36], "unless": 35, "scratch": 35, "websockclientconnect": 35, "websockmessagehandl": 35, "listen": [35, 36], "unsafe_send_messag": 35, "queue_messag": 35, "safe": 35, "register_handl": 35, "message_cl": 35, "tmessag": 35, "clientid": 35, "start_record": 35, "recordhandl": 35, "serial": 35, "unregister_handl": 35, "unregist": 35, "mix": 35, "websockserv": 35, "By": [35, 36], "retriev": 35, "host": [35, 38], "bind": [35, 38], "message_class": 35, "have": [35, 36, 38], "argument": [35, 36], "futur": 35, "http_server_root": 35, "verbos": [35, 38], "client_api_vers": 35, "compat": 35, "cb": [35, 38], "newli": [35, 38], "on_client_disconnect": [35, 38], "disconnect": [35, 38], "queue": 35, "persist": 35, "cull": 35, "redundancy_kei": 35, "flush_client": 35, "excluded_self_cli": 35, "as_serializable_dict": 35, "classmethod": [35, 39], "deseri": 35, "get_subclass": 35, "recurs": 35, "redund": 35, "keep": 35, "latest": 35, "typescriptannotationoverrid": 35, "generate_typescript_interfac": 35, "ro": 36, "altern": 36, "maya": 36, "hidden": 36, "ve": 36, "except": 36, "add_glb": 36, "glb_data": 36, "gltf": 36, "glb": [36, 37], "simpler": 36, "programat": 36, "pygltflib": 36, "payload": 36, "r_pl": 36, "t_pl": 36, "curve_typ": 36, "centripet": 36, "chordal": 36, "catmullrom": 36, "scenenodehandl": [36, 37], "catmul": 36, "rom": 36, "interpol": 36, "algorithm": 36, "cubic": 36, "jpeg_qual": 36, "represent": [36, 37, 39], "understand": 36, "coverag": 36, "convent": [36, 39], "qualiti": 36, "025": 36, "origin_radiu": 36, "trajectori": 36, "ten": 36, "batch": [36, 37, 39], "add_batched_ax": 36, "mai": 36, "better": 36, "than": 36, "batched_wxyz": 36, "batched_posit": 36, "batchedaxeshandl": [36, 37], "overlap": 36, "significantli": 36, "primari": 36, "wxyzs_batch": 36, "nx4": 36, "positions_batch": 36, "nx3": 36, "instanc": 36, "much": 36, "cell_color": 36, "cell_thick": 36, "cell_siz": 36, "section_color": 36, "140": 36, "section_thick": 36, "section_s": 36, "refer": [36, 39], "along": 36, "thick": 36, "labelhandl": [36, 37], "pointcloudhandl": [36, 37], "opac": 36, "materi": 36, "toon3": 36, "toon5": 36, "flat_shad": 36, "meshskinnedhandl": [36, 37], "deform": 36, "vertex": 36, "nest": 36, "opaqu": 36, "surfac": 36, "meshhandl": [36, 37], "intern": [36, 39], "subdivis": 36, "composit": 36, "render_width": 36, "render_height": 36, "imagehandl": [36, 37], "auto_transform": 36, "active_ax": 36, "disable_rot": 36, "translation_limit": 36, "rotation_limit": 36, "exactli": 36, "anoth": [36, 39], "on_scene_pointer_remov": 36, "p_parent": 37, "p_local": 37, "equival": 37, "doe": 37, "meshskinnedbonehandl": 37, "gaussiansplathandl": 37, "gaussian": 37, "splat": 37, "still": 37, "develop": 37, "level": 38, "core": 38, "shown": 38, "belong": 38, "get_host": 38, "get_port": 38, "public": 38, "establish": 38, "afterward": 38, "experiment": 38, "shouldn": 38, "critic": 38, "fail": 38, "disconnect_share_url": 38, "dictionari": 38, "rigid": 39, "jaxli": 39, "parameter": 39, "matrixliegroup": 39, "matrix_dim": 39, "classvar": 39, "parameters_dim": 39, "underli": 39, "tangent_dim": 39, "tangent": 39, "space_dim": 39, "__matmul__": 39, "overload": 39, "batch_ax": 39, "lead": 39, "member": 39, "representaiton": 39, "homogen": 39, "compos": 39, "expm": 39, "wedg": 39, "exponenti": 39, "vee": 39, "logm": 39, "adjoint": 39, "grouptyp": 39, "adj_t": 39, "twist": 39, "wrench": 39, "jacobian": 39, "across": 39, "get_batch_ax": 39, "sebas": 39, "containedsotyp": 39, "special": 39, "euclidean": 39, "dimension": 39, "from_rot": 39, "sobas": 39, "orthogon": 39, "se2": 39, "so2": 39, "proper": 39, "rule": 39, "co": 39, "vy": 39, "unit_complex_xi": 39, "from_xy_theta": 39, "theta": 39, "qw": 39, "qx": 39, "qy": 39, "qz": 39, "vz": 39, "omega_x": 39, "omega_i": 39, "omega_z": 39, "wxyz_xyz": 39, "onpt": 39, "unit_complex": 39, "from_radian": 39, "scalar": 39, "as_radian": 39, "from_rpy_radian": 39, "roll": 39, "pitch": 39, "yaw": 39, "euler": 39, "zyx": 39, "second": 39, "from_quaternion_xyzw": 39, "xyzw": 39, "constructor": 39, "as_quaternion_xyzw": 39, "as_rpy_radian": 39, "rollpitchyaw": 39, "compute_roll_radian": 39, "compute_pitch_radian": 39, "compute_yaw_radian": 39}, "objects": {"viser": [[37, 0, 1, "", "BatchedAxesHandle"], [37, 0, 1, "", "CameraFrustumHandle"], [0, 0, 1, "", "CameraHandle"], [1, 0, 1, "", "ClientHandle"], [37, 0, 1, "", "FrameHandle"], [37, 0, 1, "", "GaussianSplatHandle"], [37, 0, 1, "", "GlbHandle"], [37, 0, 1, "", "Gui3dContainerHandle"], [31, 0, 1, "", "GuiApi"], [32, 0, 1, "", "GuiButtonGroupHandle"], [32, 0, 1, "", "GuiButtonHandle"], [32, 0, 1, "", "GuiDropdownHandle"], [4, 0, 1, "", "GuiEvent"], [32, 0, 1, "", "GuiFolderHandle"], [32, 0, 1, "", "GuiInputHandle"], [32, 0, 1, "", "GuiMarkdownHandle"], [32, 0, 1, "", "GuiPlotlyHandle"], [32, 0, 1, "", "GuiTabGroupHandle"], [32, 0, 1, "", "GuiTabHandle"], [33, 0, 1, "", "Icon"], [33, 0, 1, "", "IconName"], [37, 0, 1, "", "ImageHandle"], [37, 0, 1, "", "LabelHandle"], [37, 0, 1, "", "MeshHandle"], [37, 0, 1, "", "MeshSkinnedBoneHandle"], [37, 0, 1, "", "MeshSkinnedHandle"], [37, 0, 1, "", "PointCloudHandle"], [36, 0, 1, "", "SceneApi"], [37, 0, 1, "", "SceneNodeHandle"], [4, 0, 1, "", "SceneNodePointerEvent"], [4, 0, 1, "", "ScenePointerEvent"], [37, 0, 1, "", "TransformControlsHandle"], [38, 0, 1, "", "ViserServer"], [30, 4, 0, "-", "extras"], [35, 4, 0, "-", "infra"], [39, 4, 0, "-", "transforms"]], "viser.BatchedAxesHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.CameraFrustumHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.CameraHandle": [[0, 2, 1, "", "aspect"], [0, 2, 1, "", "client"], [0, 2, 1, "", "fov"], [0, 1, 1, "", "get_render"], [0, 2, 1, "", "look_at"], [0, 1, 1, "", "on_update"], [0, 2, 1, "", "position"], [0, 2, 1, "", "up_direction"], [0, 2, 1, "", "update_timestamp"], [0, 2, 1, "", "wxyz"]], "viser.ClientHandle": [[1, 1, 1, "", "atomic"], [1, 3, 1, "", "camera"], [1, 3, 1, "", "client_id"], [1, 1, 1, "", "flush"], [1, 3, 1, "", "gui"], [1, 3, 1, "", "scene"], [1, 1, 1, "", "send_file_download"]], "viser.FrameHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.GaussianSplatHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.GlbHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.Gui3dContainerHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.GuiApi": [[31, 1, 1, "", "add_button"], [31, 1, 1, "", "add_button_group"], [31, 1, 1, "", "add_checkbox"], [31, 1, 1, "", "add_dropdown"], [31, 1, 1, "", "add_folder"], [31, 1, 1, "", "add_markdown"], [31, 1, 1, "", "add_modal"], [31, 1, 1, "", "add_multi_slider"], [31, 1, 1, "", "add_number"], [31, 1, 1, "", "add_plotly"], [31, 1, 1, "", "add_progress_bar"], [31, 1, 1, "", "add_rgb"], [31, 1, 1, "", "add_rgba"], [31, 1, 1, "", "add_slider"], [31, 1, 1, "", "add_tab_group"], [31, 1, 1, "", "add_text"], [31, 1, 1, "", "add_upload_button"], [31, 1, 1, "", "add_vector2"], [31, 1, 1, "", "add_vector3"], [31, 1, 1, "", "configure_theme"], [31, 1, 1, "", "reset"], [31, 1, 1, "", "set_panel_label"]], "viser.GuiButtonGroupHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_click"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiButtonHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_click"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiDropdownHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_update"], [32, 2, 1, "", "options"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "target"]], "viser.GuiFolderHandle": [[32, 2, 1, "", "order"], [32, 1, 1, "", "remove"]], "viser.GuiInputHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "disabled"], [32, 1, 1, "", "on_update"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "update_timestamp"], [32, 2, 1, "", "value"], [32, 2, 1, "", "visible"]], "viser.GuiMarkdownHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "content"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "visible"]], "viser.GuiPlotlyHandle": [[32, 1, 1, "", "__post_init__"], [32, 2, 1, "", "aspect"], [32, 2, 1, "", "figure"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"], [32, 2, 1, "", "visible"]], "viser.GuiTabGroupHandle": [[32, 1, 1, "", "add_tab"], [32, 2, 1, "", "order"], [32, 1, 1, "", "remove"]], "viser.GuiTabHandle": [[32, 1, 1, "", "remove"]], "viser.Icon": [[33, 3, 1, "", "ABACUS"], [33, 3, 1, "", "ABACUS_OFF"], [33, 3, 1, "", "ABC"], [33, 3, 1, "", "ACCESSIBLE"], [33, 3, 1, "", "ACCESSIBLE_OFF"], [33, 3, 1, "", "ACCESSIBLE_OFF_FILLED"], [33, 3, 1, "", "ACCESS_POINT"], [33, 3, 1, "", "ACCESS_POINT_OFF"], [33, 3, 1, "", "ACTIVITY"], [33, 3, 1, "", "ACTIVITY_HEARTBEAT"], [33, 3, 1, "", "AD"], [33, 3, 1, "", "ADDRESS_BOOK"], [33, 3, 1, "", "ADDRESS_BOOK_OFF"], [33, 3, 1, "", "ADJUSTMENTS"], [33, 3, 1, "", "ADJUSTMENTS_ALT"], [33, 3, 1, "", "ADJUSTMENTS_BOLT"], [33, 3, 1, "", "ADJUSTMENTS_CANCEL"], [33, 3, 1, "", "ADJUSTMENTS_CHECK"], [33, 3, 1, "", "ADJUSTMENTS_CODE"], [33, 3, 1, "", "ADJUSTMENTS_COG"], [33, 3, 1, "", "ADJUSTMENTS_DOLLAR"], [33, 3, 1, "", "ADJUSTMENTS_DOWN"], [33, 3, 1, "", "ADJUSTMENTS_EXCLAMATION"], [33, 3, 1, "", "ADJUSTMENTS_FILLED"], [33, 3, 1, "", "ADJUSTMENTS_HEART"], [33, 3, 1, "", "ADJUSTMENTS_HORIZONTAL"], [33, 3, 1, "", "ADJUSTMENTS_MINUS"], [33, 3, 1, "", "ADJUSTMENTS_OFF"], [33, 3, 1, "", "ADJUSTMENTS_PAUSE"], [33, 3, 1, "", "ADJUSTMENTS_PIN"], [33, 3, 1, "", "ADJUSTMENTS_PLUS"], [33, 3, 1, "", "ADJUSTMENTS_QUESTION"], [33, 3, 1, "", "ADJUSTMENTS_SEARCH"], [33, 3, 1, "", "ADJUSTMENTS_SHARE"], [33, 3, 1, "", "ADJUSTMENTS_STAR"], [33, 3, 1, "", "ADJUSTMENTS_UP"], [33, 3, 1, "", "ADJUSTMENTS_X"], [33, 3, 1, "", "AD_2"], [33, 3, 1, "", "AD_CIRCLE"], [33, 3, 1, "", "AD_CIRCLE_FILLED"], [33, 3, 1, "", "AD_CIRCLE_OFF"], [33, 3, 1, "", "AD_FILLED"], [33, 3, 1, "", "AD_OFF"], [33, 3, 1, "", "AERIAL_LIFT"], [33, 3, 1, "", "AFFILIATE"], [33, 3, 1, "", "AFFILIATE_FILLED"], [33, 3, 1, "", "AIR_BALLOON"], [33, 3, 1, "", "AIR_CONDITIONING"], [33, 3, 1, "", "AIR_CONDITIONING_DISABLED"], [33, 3, 1, "", "ALARM"], [33, 3, 1, "", "ALARM_FILLED"], [33, 3, 1, "", "ALARM_MINUS"], [33, 3, 1, "", "ALARM_MINUS_FILLED"], [33, 3, 1, "", "ALARM_OFF"], [33, 3, 1, "", "ALARM_PLUS"], [33, 3, 1, "", "ALARM_PLUS_FILLED"], [33, 3, 1, "", "ALARM_SNOOZE"], [33, 3, 1, "", "ALARM_SNOOZE_FILLED"], [33, 3, 1, "", "ALBUM"], [33, 3, 1, "", "ALBUM_OFF"], [33, 3, 1, "", "ALERT_CIRCLE"], [33, 3, 1, "", "ALERT_CIRCLE_FILLED"], [33, 3, 1, "", "ALERT_HEXAGON"], [33, 3, 1, "", "ALERT_HEXAGON_FILLED"], [33, 3, 1, "", "ALERT_OCTAGON"], [33, 3, 1, "", "ALERT_OCTAGON_FILLED"], [33, 3, 1, "", "ALERT_SMALL"], [33, 3, 1, "", "ALERT_SQUARE"], [33, 3, 1, "", "ALERT_SQUARE_FILLED"], [33, 3, 1, "", "ALERT_SQUARE_ROUNDED"], [33, 3, 1, "", "ALERT_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "ALERT_TRIANGLE"], [33, 3, 1, "", "ALERT_TRIANGLE_FILLED"], [33, 3, 1, "", "ALIEN"], [33, 3, 1, "", "ALIEN_FILLED"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_CENTER_FILLED"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_LEFT_FILLED"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT"], [33, 3, 1, "", "ALIGN_BOX_BOTTOM_RIGHT_FILLED"], [33, 3, 1, "", "ALIGN_BOX_CENTER_BOTTOM"], [33, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE"], [33, 3, 1, "", "ALIGN_BOX_CENTER_MIDDLE_FILLED"], [33, 3, 1, "", "ALIGN_BOX_CENTER_STRETCH"], [33, 3, 1, "", "ALIGN_BOX_CENTER_TOP"], [33, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM"], [33, 3, 1, "", "ALIGN_BOX_LEFT_BOTTOM_FILLED"], [33, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE"], [33, 3, 1, "", "ALIGN_BOX_LEFT_MIDDLE_FILLED"], [33, 3, 1, "", "ALIGN_BOX_LEFT_STRETCH"], [33, 3, 1, "", "ALIGN_BOX_LEFT_TOP"], [33, 3, 1, "", "ALIGN_BOX_LEFT_TOP_FILLED"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_BOTTOM_FILLED"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_MIDDLE_FILLED"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_STRETCH"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_TOP"], [33, 3, 1, "", "ALIGN_BOX_RIGHT_TOP_FILLED"], [33, 3, 1, "", "ALIGN_BOX_TOP_CENTER"], [33, 3, 1, "", "ALIGN_BOX_TOP_CENTER_FILLED"], [33, 3, 1, "", "ALIGN_BOX_TOP_LEFT"], [33, 3, 1, "", "ALIGN_BOX_TOP_LEFT_FILLED"], [33, 3, 1, "", "ALIGN_BOX_TOP_RIGHT"], [33, 3, 1, "", "ALIGN_BOX_TOP_RIGHT_FILLED"], [33, 3, 1, "", "ALIGN_CENTER"], [33, 3, 1, "", "ALIGN_JUSTIFIED"], [33, 3, 1, "", "ALIGN_LEFT"], [33, 3, 1, "", "ALIGN_RIGHT"], [33, 3, 1, "", "ALPHA"], [33, 3, 1, "", "ALPHABET_CYRILLIC"], [33, 3, 1, "", "ALPHABET_GREEK"], [33, 3, 1, "", "ALPHABET_LATIN"], [33, 3, 1, "", "AMBULANCE"], [33, 3, 1, "", "AMPERSAND"], [33, 3, 1, "", "ANALYZE"], [33, 3, 1, "", "ANALYZE_FILLED"], [33, 3, 1, "", "ANALYZE_OFF"], [33, 3, 1, "", "ANCHOR"], [33, 3, 1, "", "ANCHOR_OFF"], [33, 3, 1, "", "ANGLE"], [33, 3, 1, "", "ANKH"], [33, 3, 1, "", "ANTENNA"], [33, 3, 1, "", "ANTENNA_BARS_1"], [33, 3, 1, "", "ANTENNA_BARS_2"], [33, 3, 1, "", "ANTENNA_BARS_3"], [33, 3, 1, "", "ANTENNA_BARS_4"], [33, 3, 1, "", "ANTENNA_BARS_5"], [33, 3, 1, "", "ANTENNA_BARS_OFF"], [33, 3, 1, "", "ANTENNA_OFF"], [33, 3, 1, "", "APERTURE"], [33, 3, 1, "", "APERTURE_OFF"], [33, 3, 1, "", "API"], [33, 3, 1, "", "API_APP"], [33, 3, 1, "", "API_APP_OFF"], [33, 3, 1, "", "API_OFF"], [33, 3, 1, "", "APPLE"], [33, 3, 1, "", "APPS"], [33, 3, 1, "", "APPS_FILLED"], [33, 3, 1, "", "APPS_OFF"], [33, 3, 1, "", "APP_WINDOW"], [33, 3, 1, "", "APP_WINDOW_FILLED"], [33, 3, 1, "", "ARCHIVE"], [33, 3, 1, "", "ARCHIVE_FILLED"], [33, 3, 1, "", "ARCHIVE_OFF"], [33, 3, 1, "", "ARMCHAIR"], [33, 3, 1, "", "ARMCHAIR_2"], [33, 3, 1, "", "ARMCHAIR_2_OFF"], [33, 3, 1, "", "ARMCHAIR_OFF"], [33, 3, 1, "", "ARROWS_CROSS"], [33, 3, 1, "", "ARROWS_DIAGONAL"], [33, 3, 1, "", "ARROWS_DIAGONAL_2"], [33, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE"], [33, 3, 1, "", "ARROWS_DIAGONAL_MINIMIZE_2"], [33, 3, 1, "", "ARROWS_DIFF"], [33, 3, 1, "", "ARROWS_DOUBLE_NE_SW"], [33, 3, 1, "", "ARROWS_DOUBLE_NW_SE"], [33, 3, 1, "", "ARROWS_DOUBLE_SE_NW"], [33, 3, 1, "", "ARROWS_DOUBLE_SW_NE"], [33, 3, 1, "", "ARROWS_DOWN"], [33, 3, 1, "", "ARROWS_DOWN_UP"], [33, 3, 1, "", "ARROWS_EXCHANGE"], [33, 3, 1, "", "ARROWS_EXCHANGE_2"], [33, 3, 1, "", "ARROWS_HORIZONTAL"], [33, 3, 1, "", "ARROWS_JOIN"], [33, 3, 1, "", "ARROWS_JOIN_2"], [33, 3, 1, "", "ARROWS_LEFT"], [33, 3, 1, "", "ARROWS_LEFT_DOWN"], [33, 3, 1, "", "ARROWS_LEFT_RIGHT"], [33, 3, 1, "", "ARROWS_MAXIMIZE"], [33, 3, 1, "", "ARROWS_MINIMIZE"], [33, 3, 1, "", "ARROWS_MOVE"], [33, 3, 1, "", "ARROWS_MOVE_HORIZONTAL"], [33, 3, 1, "", "ARROWS_MOVE_VERTICAL"], [33, 3, 1, "", "ARROWS_RANDOM"], [33, 3, 1, "", "ARROWS_RIGHT"], [33, 3, 1, "", "ARROWS_RIGHT_DOWN"], [33, 3, 1, "", "ARROWS_RIGHT_LEFT"], [33, 3, 1, "", "ARROWS_SHUFFLE"], [33, 3, 1, "", "ARROWS_SHUFFLE_2"], [33, 3, 1, "", "ARROWS_SORT"], [33, 3, 1, "", "ARROWS_SPLIT"], [33, 3, 1, "", "ARROWS_SPLIT_2"], [33, 3, 1, "", "ARROWS_TRANSFER_DOWN"], [33, 3, 1, "", "ARROWS_TRANSFER_UP"], [33, 3, 1, "", "ARROWS_UP"], [33, 3, 1, "", "ARROWS_UP_DOWN"], [33, 3, 1, "", "ARROWS_UP_LEFT"], [33, 3, 1, "", "ARROWS_UP_RIGHT"], [33, 3, 1, "", "ARROWS_VERTICAL"], [33, 3, 1, "", "ARROW_AUTOFIT_CONTENT"], [33, 3, 1, "", "ARROW_AUTOFIT_CONTENT_FILLED"], [33, 3, 1, "", "ARROW_AUTOFIT_DOWN"], [33, 3, 1, "", "ARROW_AUTOFIT_HEIGHT"], [33, 3, 1, "", "ARROW_AUTOFIT_LEFT"], [33, 3, 1, "", "ARROW_AUTOFIT_RIGHT"], [33, 3, 1, "", "ARROW_AUTOFIT_UP"], [33, 3, 1, "", "ARROW_AUTOFIT_WIDTH"], [33, 3, 1, "", "ARROW_BACK"], [33, 3, 1, "", "ARROW_BACK_UP"], [33, 3, 1, "", "ARROW_BACK_UP_DOUBLE"], [33, 3, 1, "", "ARROW_BADGE_DOWN"], [33, 3, 1, "", "ARROW_BADGE_DOWN_FILLED"], [33, 3, 1, "", "ARROW_BADGE_LEFT"], [33, 3, 1, "", "ARROW_BADGE_LEFT_FILLED"], [33, 3, 1, "", "ARROW_BADGE_RIGHT"], [33, 3, 1, "", "ARROW_BADGE_RIGHT_FILLED"], [33, 3, 1, "", "ARROW_BADGE_UP"], [33, 3, 1, "", "ARROW_BADGE_UP_FILLED"], [33, 3, 1, "", "ARROW_BAR_BOTH"], [33, 3, 1, "", "ARROW_BAR_DOWN"], [33, 3, 1, "", "ARROW_BAR_LEFT"], [33, 3, 1, "", "ARROW_BAR_RIGHT"], [33, 3, 1, "", "ARROW_BAR_TO_DOWN"], [33, 3, 1, "", "ARROW_BAR_TO_LEFT"], [33, 3, 1, "", "ARROW_BAR_TO_RIGHT"], [33, 3, 1, "", "ARROW_BAR_TO_UP"], [33, 3, 1, "", "ARROW_BAR_UP"], [33, 3, 1, "", "ARROW_BEAR_LEFT"], [33, 3, 1, "", "ARROW_BEAR_LEFT_2"], [33, 3, 1, "", "ARROW_BEAR_RIGHT"], [33, 3, 1, "", "ARROW_BEAR_RIGHT_2"], [33, 3, 1, "", "ARROW_BIG_DOWN"], [33, 3, 1, "", "ARROW_BIG_DOWN_FILLED"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINE"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINES"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_DOWN_LINE_FILLED"], [33, 3, 1, "", "ARROW_BIG_LEFT"], [33, 3, 1, "", "ARROW_BIG_LEFT_FILLED"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINE"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINES"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_LEFT_LINE_FILLED"], [33, 3, 1, "", "ARROW_BIG_RIGHT"], [33, 3, 1, "", "ARROW_BIG_RIGHT_FILLED"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINE"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINES"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_RIGHT_LINE_FILLED"], [33, 3, 1, "", "ARROW_BIG_UP"], [33, 3, 1, "", "ARROW_BIG_UP_FILLED"], [33, 3, 1, "", "ARROW_BIG_UP_LINE"], [33, 3, 1, "", "ARROW_BIG_UP_LINES"], [33, 3, 1, "", "ARROW_BIG_UP_LINES_FILLED"], [33, 3, 1, "", "ARROW_BIG_UP_LINE_FILLED"], [33, 3, 1, "", "ARROW_BOUNCE"], [33, 3, 1, "", "ARROW_CAPSULE"], [33, 3, 1, "", "ARROW_CURVE_LEFT"], [33, 3, 1, "", "ARROW_CURVE_RIGHT"], [33, 3, 1, "", "ARROW_DOWN"], [33, 3, 1, "", "ARROW_DOWN_BAR"], [33, 3, 1, "", "ARROW_DOWN_CIRCLE"], [33, 3, 1, "", "ARROW_DOWN_LEFT"], [33, 3, 1, "", "ARROW_DOWN_LEFT_CIRCLE"], [33, 3, 1, "", "ARROW_DOWN_RHOMBUS"], [33, 3, 1, "", "ARROW_DOWN_RIGHT"], [33, 3, 1, "", "ARROW_DOWN_RIGHT_CIRCLE"], [33, 3, 1, "", "ARROW_DOWN_SQUARE"], [33, 3, 1, "", "ARROW_DOWN_TAIL"], [33, 3, 1, "", "ARROW_ELBOW_LEFT"], [33, 3, 1, "", "ARROW_ELBOW_RIGHT"], [33, 3, 1, "", "ARROW_FORK"], [33, 3, 1, "", "ARROW_FORWARD"], [33, 3, 1, "", "ARROW_FORWARD_UP"], [33, 3, 1, "", "ARROW_FORWARD_UP_DOUBLE"], [33, 3, 1, "", "ARROW_GUIDE"], [33, 3, 1, "", "ARROW_ITERATION"], [33, 3, 1, "", "ARROW_LEFT"], [33, 3, 1, "", "ARROW_LEFT_BAR"], [33, 3, 1, "", "ARROW_LEFT_CIRCLE"], [33, 3, 1, "", "ARROW_LEFT_RHOMBUS"], [33, 3, 1, "", "ARROW_LEFT_RIGHT"], [33, 3, 1, "", "ARROW_LEFT_SQUARE"], [33, 3, 1, "", "ARROW_LEFT_TAIL"], [33, 3, 1, "", "ARROW_LOOP_LEFT"], [33, 3, 1, "", "ARROW_LOOP_LEFT_2"], [33, 3, 1, "", "ARROW_LOOP_RIGHT"], [33, 3, 1, "", "ARROW_LOOP_RIGHT_2"], [33, 3, 1, "", "ARROW_MERGE"], [33, 3, 1, "", "ARROW_MERGE_BOTH"], [33, 3, 1, "", "ARROW_MERGE_LEFT"], [33, 3, 1, "", "ARROW_MERGE_RIGHT"], [33, 3, 1, "", "ARROW_MOVE_DOWN"], [33, 3, 1, "", "ARROW_MOVE_LEFT"], [33, 3, 1, "", "ARROW_MOVE_RIGHT"], [33, 3, 1, "", "ARROW_MOVE_UP"], [33, 3, 1, "", "ARROW_NARROW_DOWN"], [33, 3, 1, "", "ARROW_NARROW_LEFT"], [33, 3, 1, "", "ARROW_NARROW_RIGHT"], [33, 3, 1, "", "ARROW_NARROW_UP"], [33, 3, 1, "", "ARROW_RAMP_LEFT"], [33, 3, 1, "", "ARROW_RAMP_LEFT_2"], [33, 3, 1, "", "ARROW_RAMP_LEFT_3"], [33, 3, 1, "", "ARROW_RAMP_RIGHT"], [33, 3, 1, "", "ARROW_RAMP_RIGHT_2"], [33, 3, 1, "", "ARROW_RAMP_RIGHT_3"], [33, 3, 1, "", "ARROW_RIGHT"], [33, 3, 1, "", "ARROW_RIGHT_BAR"], [33, 3, 1, "", "ARROW_RIGHT_CIRCLE"], [33, 3, 1, "", "ARROW_RIGHT_RHOMBUS"], [33, 3, 1, "", "ARROW_RIGHT_SQUARE"], [33, 3, 1, "", "ARROW_RIGHT_TAIL"], [33, 3, 1, "", "ARROW_ROTARY_FIRST_LEFT"], [33, 3, 1, "", "ARROW_ROTARY_FIRST_RIGHT"], [33, 3, 1, "", "ARROW_ROTARY_LAST_LEFT"], [33, 3, 1, "", "ARROW_ROTARY_LAST_RIGHT"], [33, 3, 1, "", "ARROW_ROTARY_LEFT"], [33, 3, 1, "", "ARROW_ROTARY_RIGHT"], [33, 3, 1, "", "ARROW_ROTARY_STRAIGHT"], [33, 3, 1, "", "ARROW_ROUNDABOUT_LEFT"], [33, 3, 1, "", "ARROW_ROUNDABOUT_RIGHT"], [33, 3, 1, "", "ARROW_SHARP_TURN_LEFT"], [33, 3, 1, "", "ARROW_SHARP_TURN_RIGHT"], [33, 3, 1, "", "ARROW_UP"], [33, 3, 1, "", "ARROW_UP_BAR"], [33, 3, 1, "", "ARROW_UP_CIRCLE"], [33, 3, 1, "", "ARROW_UP_LEFT"], [33, 3, 1, "", "ARROW_UP_LEFT_CIRCLE"], [33, 3, 1, "", "ARROW_UP_RHOMBUS"], [33, 3, 1, "", "ARROW_UP_RIGHT"], [33, 3, 1, "", "ARROW_UP_RIGHT_CIRCLE"], [33, 3, 1, "", "ARROW_UP_SQUARE"], [33, 3, 1, "", "ARROW_UP_TAIL"], [33, 3, 1, "", "ARROW_WAVE_LEFT_DOWN"], [33, 3, 1, "", "ARROW_WAVE_LEFT_UP"], [33, 3, 1, "", "ARROW_WAVE_RIGHT_DOWN"], [33, 3, 1, "", "ARROW_WAVE_RIGHT_UP"], [33, 3, 1, "", "ARROW_ZIG_ZAG"], [33, 3, 1, "", "ARTBOARD"], [33, 3, 1, "", "ARTBOARD_FILLED"], [33, 3, 1, "", "ARTBOARD_OFF"], [33, 3, 1, "", "ARTICLE"], [33, 3, 1, "", "ARTICLE_FILLED_FILLED"], [33, 3, 1, "", "ARTICLE_OFF"], [33, 3, 1, "", "ASPECT_RATIO"], [33, 3, 1, "", "ASPECT_RATIO_FILLED"], [33, 3, 1, "", "ASPECT_RATIO_OFF"], [33, 3, 1, "", "ASSEMBLY"], [33, 3, 1, "", "ASSEMBLY_OFF"], [33, 3, 1, "", "ASSET"], [33, 3, 1, "", "ASTERISK"], [33, 3, 1, "", "ASTERISK_SIMPLE"], [33, 3, 1, "", "AT"], [33, 3, 1, "", "ATOM"], [33, 3, 1, "", "ATOM_2"], [33, 3, 1, "", "ATOM_2_FILLED"], [33, 3, 1, "", "ATOM_OFF"], [33, 3, 1, "", "AT_OFF"], [33, 3, 1, "", "AUGMENTED_REALITY"], [33, 3, 1, "", "AUGMENTED_REALITY_2"], [33, 3, 1, "", "AUGMENTED_REALITY_OFF"], [33, 3, 1, "", "AWARD"], [33, 3, 1, "", "AWARD_FILLED"], [33, 3, 1, "", "AWARD_OFF"], [33, 3, 1, "", "AXE"], [33, 3, 1, "", "AXIS_X"], [33, 3, 1, "", "AXIS_Y"], [33, 3, 1, "", "A_B"], [33, 3, 1, "", "A_B_2"], [33, 3, 1, "", "A_B_OFF"], [33, 3, 1, "", "BABY_BOTTLE"], [33, 3, 1, "", "BABY_CARRIAGE"], [33, 3, 1, "", "BACKHOE"], [33, 3, 1, "", "BACKPACK"], [33, 3, 1, "", "BACKPACK_OFF"], [33, 3, 1, "", "BACKSLASH"], [33, 3, 1, "", "BACKSPACE"], [33, 3, 1, "", "BACKSPACE_FILLED"], [33, 3, 1, "", "BADGE"], [33, 3, 1, "", "BADGES"], [33, 3, 1, "", "BADGES_FILLED"], [33, 3, 1, "", "BADGES_OFF"], [33, 3, 1, "", "BADGE_3D"], [33, 3, 1, "", "BADGE_4K"], [33, 3, 1, "", "BADGE_8K"], [33, 3, 1, "", "BADGE_AD"], [33, 3, 1, "", "BADGE_AR"], [33, 3, 1, "", "BADGE_CC"], [33, 3, 1, "", "BADGE_FILLED"], [33, 3, 1, "", "BADGE_HD"], [33, 3, 1, "", "BADGE_OFF"], [33, 3, 1, "", "BADGE_SD"], [33, 3, 1, "", "BADGE_TM"], [33, 3, 1, "", "BADGE_VO"], [33, 3, 1, "", "BADGE_VR"], [33, 3, 1, "", "BADGE_WC"], [33, 3, 1, "", "BAGUETTE"], [33, 3, 1, "", "BALLOON"], [33, 3, 1, "", "BALLOON_FILLED"], [33, 3, 1, "", "BALLOON_OFF"], [33, 3, 1, "", "BALLPEN"], [33, 3, 1, "", "BALLPEN_FILLED"], [33, 3, 1, "", "BALLPEN_OFF"], [33, 3, 1, "", "BALL_AMERICAN_FOOTBALL"], [33, 3, 1, "", "BALL_AMERICAN_FOOTBALL_OFF"], [33, 3, 1, "", "BALL_BASEBALL"], [33, 3, 1, "", "BALL_BASKETBALL"], [33, 3, 1, "", "BALL_BOWLING"], [33, 3, 1, "", "BALL_FOOTBALL"], [33, 3, 1, "", "BALL_FOOTBALL_OFF"], [33, 3, 1, "", "BALL_TENNIS"], [33, 3, 1, "", "BALL_VOLLEYBALL"], [33, 3, 1, "", "BAN"], [33, 3, 1, "", "BANDAGE"], [33, 3, 1, "", "BANDAGE_FILLED"], [33, 3, 1, "", "BANDAGE_OFF"], [33, 3, 1, "", "BARBELL"], [33, 3, 1, "", "BARBELL_OFF"], [33, 3, 1, "", "BARCODE"], [33, 3, 1, "", "BARCODE_OFF"], [33, 3, 1, "", "BARREL"], [33, 3, 1, "", "BARREL_OFF"], [33, 3, 1, "", "BARRIER_BLOCK"], [33, 3, 1, "", "BARRIER_BLOCK_OFF"], [33, 3, 1, "", "BASELINE"], [33, 3, 1, "", "BASELINE_DENSITY_LARGE"], [33, 3, 1, "", "BASELINE_DENSITY_MEDIUM"], [33, 3, 1, "", "BASELINE_DENSITY_SMALL"], [33, 3, 1, "", "BASKET"], [33, 3, 1, "", "BASKET_FILLED"], [33, 3, 1, "", "BASKET_OFF"], [33, 3, 1, "", "BAT"], [33, 3, 1, "", "BATH"], [33, 3, 1, "", "BATH_FILLED"], [33, 3, 1, "", "BATH_OFF"], [33, 3, 1, "", "BATTERY"], [33, 3, 1, "", "BATTERY_1"], [33, 3, 1, "", "BATTERY_1_FILLED"], [33, 3, 1, "", "BATTERY_2"], [33, 3, 1, "", "BATTERY_2_FILLED"], [33, 3, 1, "", "BATTERY_3"], [33, 3, 1, "", "BATTERY_3_FILLED"], [33, 3, 1, "", "BATTERY_4"], [33, 3, 1, "", "BATTERY_4_FILLED"], [33, 3, 1, "", "BATTERY_AUTOMOTIVE"], [33, 3, 1, "", "BATTERY_CHARGING"], [33, 3, 1, "", "BATTERY_CHARGING_2"], [33, 3, 1, "", "BATTERY_ECO"], [33, 3, 1, "", "BATTERY_FILLED"], [33, 3, 1, "", "BATTERY_OFF"], [33, 3, 1, "", "BEACH"], [33, 3, 1, "", "BEACH_OFF"], [33, 3, 1, "", "BED"], [33, 3, 1, "", "BED_FILLED"], [33, 3, 1, "", "BED_OFF"], [33, 3, 1, "", "BEER"], [33, 3, 1, "", "BEER_FILLED"], [33, 3, 1, "", "BEER_OFF"], [33, 3, 1, "", "BELL"], [33, 3, 1, "", "BELL_BOLT"], [33, 3, 1, "", "BELL_CANCEL"], [33, 3, 1, "", "BELL_CHECK"], [33, 3, 1, "", "BELL_CODE"], [33, 3, 1, "", "BELL_COG"], [33, 3, 1, "", "BELL_DOLLAR"], [33, 3, 1, "", "BELL_DOWN"], [33, 3, 1, "", "BELL_EXCLAMATION"], [33, 3, 1, "", "BELL_FILLED"], [33, 3, 1, "", "BELL_HEART"], [33, 3, 1, "", "BELL_MINUS"], [33, 3, 1, "", "BELL_MINUS_FILLED"], [33, 3, 1, "", "BELL_OFF"], [33, 3, 1, "", "BELL_PAUSE"], [33, 3, 1, "", "BELL_PIN"], [33, 3, 1, "", "BELL_PLUS"], [33, 3, 1, "", "BELL_PLUS_FILLED"], [33, 3, 1, "", "BELL_QUESTION"], [33, 3, 1, "", "BELL_RINGING"], [33, 3, 1, "", "BELL_RINGING_2"], [33, 3, 1, "", "BELL_RINGING_2_FILLED"], [33, 3, 1, "", "BELL_RINGING_FILLED"], [33, 3, 1, "", "BELL_SCHOOL"], [33, 3, 1, "", "BELL_SEARCH"], [33, 3, 1, "", "BELL_SHARE"], [33, 3, 1, "", "BELL_STAR"], [33, 3, 1, "", "BELL_UP"], [33, 3, 1, "", "BELL_X"], [33, 3, 1, "", "BELL_X_FILLED"], [33, 3, 1, "", "BELL_Z"], [33, 3, 1, "", "BELL_Z_FILLED"], [33, 3, 1, "", "BETA"], [33, 3, 1, "", "BIBLE"], [33, 3, 1, "", "BIKE"], [33, 3, 1, "", "BIKE_OFF"], [33, 3, 1, "", "BINARY"], [33, 3, 1, "", "BINARY_OFF"], [33, 3, 1, "", "BINARY_TREE"], [33, 3, 1, "", "BINARY_TREE_2"], [33, 3, 1, "", "BIOHAZARD"], [33, 3, 1, "", "BIOHAZARD_OFF"], [33, 3, 1, "", "BLADE"], [33, 3, 1, "", "BLADE_FILLED"], [33, 3, 1, "", "BLEACH"], [33, 3, 1, "", "BLEACH_CHLORINE"], [33, 3, 1, "", "BLEACH_NO_CHLORINE"], [33, 3, 1, "", "BLEACH_OFF"], [33, 3, 1, "", "BLOCKQUOTE"], [33, 3, 1, "", "BLUETOOTH"], [33, 3, 1, "", "BLUETOOTH_CONNECTED"], [33, 3, 1, "", "BLUETOOTH_OFF"], [33, 3, 1, "", "BLUETOOTH_X"], [33, 3, 1, "", "BLUR"], [33, 3, 1, "", "BLUR_OFF"], [33, 3, 1, "", "BMP"], [33, 3, 1, "", "BOLD"], [33, 3, 1, "", "BOLD_OFF"], [33, 3, 1, "", "BOLT"], [33, 3, 1, "", "BOLT_OFF"], [33, 3, 1, "", "BOMB"], [33, 3, 1, "", "BOMB_FILLED"], [33, 3, 1, "", "BONE"], [33, 3, 1, "", "BONE_OFF"], [33, 3, 1, "", "BONG"], [33, 3, 1, "", "BONG_OFF"], [33, 3, 1, "", "BOOK"], [33, 3, 1, "", "BOOKMARK"], [33, 3, 1, "", "BOOKMARKS"], [33, 3, 1, "", "BOOKMARKS_OFF"], [33, 3, 1, "", "BOOKMARK_EDIT"], [33, 3, 1, "", "BOOKMARK_FILLED"], [33, 3, 1, "", "BOOKMARK_MINUS"], [33, 3, 1, "", "BOOKMARK_OFF"], [33, 3, 1, "", "BOOKMARK_PLUS"], [33, 3, 1, "", "BOOKMARK_QUESTION"], [33, 3, 1, "", "BOOKS"], [33, 3, 1, "", "BOOKS_OFF"], [33, 3, 1, "", "BOOK_2"], [33, 3, 1, "", "BOOK_DOWNLOAD"], [33, 3, 1, "", "BOOK_FILLED"], [33, 3, 1, "", "BOOK_OFF"], [33, 3, 1, "", "BOOK_UPLOAD"], [33, 3, 1, "", "BORDER_ALL"], [33, 3, 1, "", "BORDER_BOTTOM"], [33, 3, 1, "", "BORDER_CORNERS"], [33, 3, 1, "", "BORDER_HORIZONTAL"], [33, 3, 1, "", "BORDER_INNER"], [33, 3, 1, "", "BORDER_LEFT"], [33, 3, 1, "", "BORDER_NONE"], [33, 3, 1, "", "BORDER_OUTER"], [33, 3, 1, "", "BORDER_RADIUS"], [33, 3, 1, "", "BORDER_RIGHT"], [33, 3, 1, "", "BORDER_SIDES"], [33, 3, 1, "", "BORDER_STYLE"], [33, 3, 1, "", "BORDER_STYLE_2"], [33, 3, 1, "", "BORDER_TOP"], [33, 3, 1, "", "BORDER_VERTICAL"], [33, 3, 1, "", "BOTTLE"], [33, 3, 1, "", "BOTTLE_FILLED"], [33, 3, 1, "", "BOTTLE_OFF"], [33, 3, 1, "", "BOUNCE_LEFT"], [33, 3, 1, "", "BOUNCE_RIGHT"], [33, 3, 1, "", "BOW"], [33, 3, 1, "", "BOWL"], [33, 3, 1, "", "BOX"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_FILLED"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_LEFT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT"], [33, 3, 1, "", "BOX_ALIGN_BOTTOM_RIGHT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_LEFT"], [33, 3, 1, "", "BOX_ALIGN_LEFT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_RIGHT"], [33, 3, 1, "", "BOX_ALIGN_RIGHT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_TOP"], [33, 3, 1, "", "BOX_ALIGN_TOP_FILLED"], [33, 3, 1, "", "BOX_ALIGN_TOP_LEFT"], [33, 3, 1, "", "BOX_ALIGN_TOP_LEFT_FILLED"], [33, 3, 1, "", "BOX_ALIGN_TOP_RIGHT"], [33, 3, 1, "", "BOX_ALIGN_TOP_RIGHT_FILLED"], [33, 3, 1, "", "BOX_MARGIN"], [33, 3, 1, "", "BOX_MODEL"], [33, 3, 1, "", "BOX_MODEL_2"], [33, 3, 1, "", "BOX_MODEL_2_OFF"], [33, 3, 1, "", "BOX_MODEL_OFF"], [33, 3, 1, "", "BOX_MULTIPLE"], [33, 3, 1, "", "BOX_MULTIPLE_0"], [33, 3, 1, "", "BOX_MULTIPLE_1"], [33, 3, 1, "", "BOX_MULTIPLE_2"], [33, 3, 1, "", "BOX_MULTIPLE_3"], [33, 3, 1, "", "BOX_MULTIPLE_4"], [33, 3, 1, "", "BOX_MULTIPLE_5"], [33, 3, 1, "", "BOX_MULTIPLE_6"], [33, 3, 1, "", "BOX_MULTIPLE_7"], [33, 3, 1, "", "BOX_MULTIPLE_8"], [33, 3, 1, "", "BOX_MULTIPLE_9"], [33, 3, 1, "", "BOX_OFF"], [33, 3, 1, "", "BOX_PADDING"], [33, 3, 1, "", "BOX_SEAM"], [33, 3, 1, "", "BRACES"], [33, 3, 1, "", "BRACES_OFF"], [33, 3, 1, "", "BRACKETS"], [33, 3, 1, "", "BRACKETS_CONTAIN"], [33, 3, 1, "", "BRACKETS_CONTAIN_END"], [33, 3, 1, "", "BRACKETS_CONTAIN_START"], [33, 3, 1, "", "BRACKETS_OFF"], [33, 3, 1, "", "BRAILLE"], [33, 3, 1, "", "BRAIN"], [33, 3, 1, "", "BRAND_4CHAN"], [33, 3, 1, "", "BRAND_ABSTRACT"], [33, 3, 1, "", "BRAND_ADOBE"], [33, 3, 1, "", "BRAND_ADONIS_JS"], [33, 3, 1, "", "BRAND_AIRBNB"], [33, 3, 1, "", "BRAND_AIRTABLE"], [33, 3, 1, "", "BRAND_ALGOLIA"], [33, 3, 1, "", "BRAND_ALIPAY"], [33, 3, 1, "", "BRAND_ALPINE_JS"], [33, 3, 1, "", "BRAND_AMAZON"], [33, 3, 1, "", "BRAND_AMD"], [33, 3, 1, "", "BRAND_AMIGO"], [33, 3, 1, "", "BRAND_AMONG_US"], [33, 3, 1, "", "BRAND_ANDROID"], [33, 3, 1, "", "BRAND_ANGULAR"], [33, 3, 1, "", "BRAND_ANSIBLE"], [33, 3, 1, "", "BRAND_AO3"], [33, 3, 1, "", "BRAND_APPGALLERY"], [33, 3, 1, "", "BRAND_APPLE"], [33, 3, 1, "", "BRAND_APPLE_ARCADE"], [33, 3, 1, "", "BRAND_APPLE_PODCAST"], [33, 3, 1, "", "BRAND_APPSTORE"], [33, 3, 1, "", "BRAND_ASANA"], [33, 3, 1, "", "BRAND_AWS"], [33, 3, 1, "", "BRAND_AZURE"], [33, 3, 1, "", "BRAND_BACKBONE"], [33, 3, 1, "", "BRAND_BADOO"], [33, 3, 1, "", "BRAND_BAIDU"], [33, 3, 1, "", "BRAND_BANDCAMP"], [33, 3, 1, "", "BRAND_BANDLAB"], [33, 3, 1, "", "BRAND_BEATS"], [33, 3, 1, "", "BRAND_BEHANCE"], [33, 3, 1, "", "BRAND_BILIBILI"], [33, 3, 1, "", "BRAND_BINANCE"], [33, 3, 1, "", "BRAND_BING"], [33, 3, 1, "", "BRAND_BITBUCKET"], [33, 3, 1, "", "BRAND_BLACKBERRY"], [33, 3, 1, "", "BRAND_BLENDER"], [33, 3, 1, "", "BRAND_BLOGGER"], [33, 3, 1, "", "BRAND_BOOKING"], [33, 3, 1, "", "BRAND_BOOTSTRAP"], [33, 3, 1, "", "BRAND_BULMA"], [33, 3, 1, "", "BRAND_BUMBLE"], [33, 3, 1, "", "BRAND_BUNPO"], [33, 3, 1, "", "BRAND_CAKE"], [33, 3, 1, "", "BRAND_CAKEPHP"], [33, 3, 1, "", "BRAND_CAMPAIGNMONITOR"], [33, 3, 1, "", "BRAND_CARBON"], [33, 3, 1, "", "BRAND_CASHAPP"], [33, 3, 1, "", "BRAND_CHROME"], [33, 3, 1, "", "BRAND_CINEMA_4D"], [33, 3, 1, "", "BRAND_CITYMAPPER"], [33, 3, 1, "", "BRAND_CLOUDFLARE"], [33, 3, 1, "", "BRAND_CODECOV"], [33, 3, 1, "", "BRAND_CODEPEN"], [33, 3, 1, "", "BRAND_CODESANDBOX"], [33, 3, 1, "", "BRAND_COHOST"], [33, 3, 1, "", "BRAND_COINBASE"], [33, 3, 1, "", "BRAND_COMEDY_CENTRAL"], [33, 3, 1, "", "BRAND_COREOS"], [33, 3, 1, "", "BRAND_COUCHDB"], [33, 3, 1, "", "BRAND_COUCHSURFING"], [33, 3, 1, "", "BRAND_CPP"], [33, 3, 1, "", "BRAND_CRAFT"], [33, 3, 1, "", "BRAND_CRUNCHBASE"], [33, 3, 1, "", "BRAND_CSS3"], [33, 3, 1, "", "BRAND_CTEMPLAR"], [33, 3, 1, "", "BRAND_CUCUMBER"], [33, 3, 1, "", "BRAND_CUPRA"], [33, 3, 1, "", "BRAND_CYPRESS"], [33, 3, 1, "", "BRAND_C_SHARP"], [33, 3, 1, "", "BRAND_D3"], [33, 3, 1, "", "BRAND_DAYS_COUNTER"], [33, 3, 1, "", "BRAND_DCOS"], [33, 3, 1, "", "BRAND_DEBIAN"], [33, 3, 1, "", "BRAND_DEEZER"], [33, 3, 1, "", "BRAND_DELIVEROO"], [33, 3, 1, "", "BRAND_DENO"], [33, 3, 1, "", "BRAND_DENODO"], [33, 3, 1, "", "BRAND_DEVIANTART"], [33, 3, 1, "", "BRAND_DIGG"], [33, 3, 1, "", "BRAND_DINGTALK"], [33, 3, 1, "", "BRAND_DISCORD"], [33, 3, 1, "", "BRAND_DISCORD_FILLED"], [33, 3, 1, "", "BRAND_DISNEY"], [33, 3, 1, "", "BRAND_DISQUS"], [33, 3, 1, "", "BRAND_DJANGO"], [33, 3, 1, "", "BRAND_DOCKER"], [33, 3, 1, "", "BRAND_DOCTRINE"], [33, 3, 1, "", "BRAND_DOLBY_DIGITAL"], [33, 3, 1, "", "BRAND_DOUBAN"], [33, 3, 1, "", "BRAND_DRIBBBLE"], [33, 3, 1, "", "BRAND_DRIBBBLE_FILLED"], [33, 3, 1, "", "BRAND_DROPS"], [33, 3, 1, "", "BRAND_DRUPAL"], [33, 3, 1, "", "BRAND_EDGE"], [33, 3, 1, "", "BRAND_ELASTIC"], [33, 3, 1, "", "BRAND_ELECTRONIC_ARTS"], [33, 3, 1, "", "BRAND_EMBER"], [33, 3, 1, "", "BRAND_ENVATO"], [33, 3, 1, "", "BRAND_ETSY"], [33, 3, 1, "", "BRAND_EVERNOTE"], [33, 3, 1, "", "BRAND_FACEBOOK"], [33, 3, 1, "", "BRAND_FACEBOOK_FILLED"], [33, 3, 1, "", "BRAND_FEEDLY"], [33, 3, 1, "", "BRAND_FIGMA"], [33, 3, 1, "", "BRAND_FILEZILLA"], [33, 3, 1, "", "BRAND_FINDER"], [33, 3, 1, "", "BRAND_FIREBASE"], [33, 3, 1, "", "BRAND_FIREFOX"], [33, 3, 1, "", "BRAND_FIVERR"], [33, 3, 1, "", "BRAND_FLICKR"], [33, 3, 1, "", "BRAND_FLIGHTRADAR24"], [33, 3, 1, "", "BRAND_FLIPBOARD"], [33, 3, 1, "", "BRAND_FLUTTER"], [33, 3, 1, "", "BRAND_FORTNITE"], [33, 3, 1, "", "BRAND_FOURSQUARE"], [33, 3, 1, "", "BRAND_FRAMER"], [33, 3, 1, "", "BRAND_FRAMER_MOTION"], [33, 3, 1, "", "BRAND_FUNIMATION"], [33, 3, 1, "", "BRAND_GATSBY"], [33, 3, 1, "", "BRAND_GIT"], [33, 3, 1, "", "BRAND_GITHUB"], [33, 3, 1, "", "BRAND_GITHUB_COPILOT"], [33, 3, 1, "", "BRAND_GITHUB_FILLED"], [33, 3, 1, "", "BRAND_GITLAB"], [33, 3, 1, "", "BRAND_GMAIL"], [33, 3, 1, "", "BRAND_GOLANG"], [33, 3, 1, "", "BRAND_GOOGLE"], [33, 3, 1, "", "BRAND_GOOGLE_ANALYTICS"], [33, 3, 1, "", "BRAND_GOOGLE_BIG_QUERY"], [33, 3, 1, "", "BRAND_GOOGLE_DRIVE"], [33, 3, 1, "", "BRAND_GOOGLE_FIT"], [33, 3, 1, "", "BRAND_GOOGLE_HOME"], [33, 3, 1, "", "BRAND_GOOGLE_MAPS"], [33, 3, 1, "", "BRAND_GOOGLE_ONE"], [33, 3, 1, "", "BRAND_GOOGLE_PHOTOS"], [33, 3, 1, "", "BRAND_GOOGLE_PLAY"], [33, 3, 1, "", "BRAND_GOOGLE_PODCASTS"], [33, 3, 1, "", "BRAND_GRAMMARLY"], [33, 3, 1, "", "BRAND_GRAPHQL"], [33, 3, 1, "", "BRAND_GRAVATAR"], [33, 3, 1, "", "BRAND_GRINDR"], [33, 3, 1, "", "BRAND_GUARDIAN"], [33, 3, 1, "", "BRAND_GUMROAD"], [33, 3, 1, "", "BRAND_HBO"], [33, 3, 1, "", "BRAND_HEADLESSUI"], [33, 3, 1, "", "BRAND_HEXO"], [33, 3, 1, "", "BRAND_HIPCHAT"], [33, 3, 1, "", "BRAND_HTML5"], [33, 3, 1, "", "BRAND_INERTIA"], [33, 3, 1, "", "BRAND_INSTAGRAM"], [33, 3, 1, "", "BRAND_INTERCOM"], [33, 3, 1, "", "BRAND_ITCH"], [33, 3, 1, "", "BRAND_JAVASCRIPT"], [33, 3, 1, "", "BRAND_JUEJIN"], [33, 3, 1, "", "BRAND_KBIN"], [33, 3, 1, "", "BRAND_KICK"], [33, 3, 1, "", "BRAND_KICKSTARTER"], [33, 3, 1, "", "BRAND_KOTLIN"], [33, 3, 1, "", "BRAND_LARAVEL"], [33, 3, 1, "", "BRAND_LASTFM"], [33, 3, 1, "", "BRAND_LEETCODE"], [33, 3, 1, "", "BRAND_LETTERBOXD"], [33, 3, 1, "", "BRAND_LINE"], [33, 3, 1, "", "BRAND_LINKEDIN"], [33, 3, 1, "", "BRAND_LINKTREE"], [33, 3, 1, "", "BRAND_LINQPAD"], [33, 3, 1, "", "BRAND_LOOM"], [33, 3, 1, "", "BRAND_MAILGUN"], [33, 3, 1, "", "BRAND_MANTINE"], [33, 3, 1, "", "BRAND_MASTERCARD"], [33, 3, 1, "", "BRAND_MASTODON"], [33, 3, 1, "", "BRAND_MATRIX"], [33, 3, 1, "", "BRAND_MCDONALDS"], [33, 3, 1, "", "BRAND_MEDIUM"], [33, 3, 1, "", "BRAND_MERCEDES"], [33, 3, 1, "", "BRAND_MESSENGER"], [33, 3, 1, "", "BRAND_META"], [33, 3, 1, "", "BRAND_MICROSOFT_TEAMS"], [33, 3, 1, "", "BRAND_MINECRAFT"], [33, 3, 1, "", "BRAND_MINIPROGRAM"], [33, 3, 1, "", "BRAND_MIXPANEL"], [33, 3, 1, "", "BRAND_MONDAY"], [33, 3, 1, "", "BRAND_MONGODB"], [33, 3, 1, "", "BRAND_MYSQL"], [33, 3, 1, "", "BRAND_MY_OPPO"], [33, 3, 1, "", "BRAND_NATIONAL_GEOGRAPHIC"], [33, 3, 1, "", "BRAND_NEM"], [33, 3, 1, "", "BRAND_NETBEANS"], [33, 3, 1, "", "BRAND_NETEASE_MUSIC"], [33, 3, 1, "", "BRAND_NETFLIX"], [33, 3, 1, "", "BRAND_NEXO"], [33, 3, 1, "", "BRAND_NEXTCLOUD"], [33, 3, 1, "", "BRAND_NEXTJS"], [33, 3, 1, "", "BRAND_NODEJS"], [33, 3, 1, "", "BRAND_NORD_VPN"], [33, 3, 1, "", "BRAND_NOTION"], [33, 3, 1, "", "BRAND_NPM"], [33, 3, 1, "", "BRAND_NUXT"], [33, 3, 1, "", "BRAND_NYTIMES"], [33, 3, 1, "", "BRAND_OAUTH"], [33, 3, 1, "", "BRAND_OFFICE"], [33, 3, 1, "", "BRAND_OK_RU"], [33, 3, 1, "", "BRAND_ONEDRIVE"], [33, 3, 1, "", "BRAND_ONLYFANS"], [33, 3, 1, "", "BRAND_OPENAI"], [33, 3, 1, "", "BRAND_OPENVPN"], [33, 3, 1, "", "BRAND_OPEN_SOURCE"], [33, 3, 1, "", "BRAND_OPERA"], [33, 3, 1, "", "BRAND_PAGEKIT"], [33, 3, 1, "", "BRAND_PATREON"], [33, 3, 1, "", "BRAND_PAYPAL"], [33, 3, 1, "", "BRAND_PAYPAL_FILLED"], [33, 3, 1, "", "BRAND_PAYPAY"], [33, 3, 1, "", "BRAND_PEANUT"], [33, 3, 1, "", "BRAND_PEPSI"], [33, 3, 1, "", "BRAND_PHP"], [33, 3, 1, "", "BRAND_PICSART"], [33, 3, 1, "", "BRAND_PINTEREST"], [33, 3, 1, "", "BRAND_PLANETSCALE"], [33, 3, 1, "", "BRAND_POCKET"], [33, 3, 1, "", "BRAND_POLYMER"], [33, 3, 1, "", "BRAND_POWERSHELL"], [33, 3, 1, "", "BRAND_PRISMA"], [33, 3, 1, "", "BRAND_PRODUCTHUNT"], [33, 3, 1, "", "BRAND_PUSHBULLET"], [33, 3, 1, "", "BRAND_PUSHOVER"], [33, 3, 1, "", "BRAND_PYTHON"], [33, 3, 1, "", "BRAND_QQ"], [33, 3, 1, "", "BRAND_RADIX_UI"], [33, 3, 1, "", "BRAND_REACT"], [33, 3, 1, "", "BRAND_REACT_NATIVE"], [33, 3, 1, "", "BRAND_REASON"], [33, 3, 1, "", "BRAND_REDDIT"], [33, 3, 1, "", "BRAND_REDHAT"], [33, 3, 1, "", "BRAND_REDUX"], [33, 3, 1, "", "BRAND_REVOLUT"], [33, 3, 1, "", "BRAND_RUMBLE"], [33, 3, 1, "", "BRAND_RUST"], [33, 3, 1, "", "BRAND_SAFARI"], [33, 3, 1, "", "BRAND_SAMSUNGPASS"], [33, 3, 1, "", "BRAND_SASS"], [33, 3, 1, "", "BRAND_SENTRY"], [33, 3, 1, "", "BRAND_SHARIK"], [33, 3, 1, "", "BRAND_SHAZAM"], [33, 3, 1, "", "BRAND_SHOPEE"], [33, 3, 1, "", "BRAND_SKETCH"], [33, 3, 1, "", "BRAND_SKYPE"], [33, 3, 1, "", "BRAND_SLACK"], [33, 3, 1, "", "BRAND_SNAPCHAT"], [33, 3, 1, "", "BRAND_SNAPSEED"], [33, 3, 1, "", "BRAND_SNOWFLAKE"], [33, 3, 1, "", "BRAND_SOCKET_IO"], [33, 3, 1, "", "BRAND_SOLIDJS"], [33, 3, 1, "", "BRAND_SOUNDCLOUD"], [33, 3, 1, "", "BRAND_SPACEHEY"], [33, 3, 1, "", "BRAND_SPEEDTEST"], [33, 3, 1, "", "BRAND_SPOTIFY"], [33, 3, 1, "", "BRAND_STACKOVERFLOW"], [33, 3, 1, "", "BRAND_STACKSHARE"], [33, 3, 1, "", "BRAND_STEAM"], [33, 3, 1, "", "BRAND_STORJ"], [33, 3, 1, "", "BRAND_STORYBOOK"], [33, 3, 1, "", "BRAND_STORYTEL"], [33, 3, 1, "", "BRAND_STRAVA"], [33, 3, 1, "", "BRAND_STRIPE"], [33, 3, 1, "", "BRAND_SUBLIME_TEXT"], [33, 3, 1, "", "BRAND_SUGARIZER"], [33, 3, 1, "", "BRAND_SUPABASE"], [33, 3, 1, "", "BRAND_SUPERHUMAN"], [33, 3, 1, "", "BRAND_SUPERNOVA"], [33, 3, 1, "", "BRAND_SURFSHARK"], [33, 3, 1, "", "BRAND_SVELTE"], [33, 3, 1, "", "BRAND_SWIFT"], [33, 3, 1, "", "BRAND_SYMFONY"], [33, 3, 1, "", "BRAND_TABLER"], [33, 3, 1, "", "BRAND_TAILWIND"], [33, 3, 1, "", "BRAND_TAOBAO"], [33, 3, 1, "", "BRAND_TED"], [33, 3, 1, "", "BRAND_TELEGRAM"], [33, 3, 1, "", "BRAND_TERRAFORM"], [33, 3, 1, "", "BRAND_TETHER"], [33, 3, 1, "", "BRAND_THREEJS"], [33, 3, 1, "", "BRAND_TIDAL"], [33, 3, 1, "", "BRAND_TIKTOK"], [33, 3, 1, "", "BRAND_TIKTO_FILLED"], [33, 3, 1, "", "BRAND_TINDER"], [33, 3, 1, "", "BRAND_TOPBUZZ"], [33, 3, 1, "", "BRAND_TORCHAIN"], [33, 3, 1, "", "BRAND_TOYOTA"], [33, 3, 1, "", "BRAND_TRELLO"], [33, 3, 1, "", "BRAND_TRIPADVISOR"], [33, 3, 1, "", "BRAND_TUMBLR"], [33, 3, 1, "", "BRAND_TWILIO"], [33, 3, 1, "", "BRAND_TWITCH"], [33, 3, 1, "", "BRAND_TWITTER"], [33, 3, 1, "", "BRAND_TWITTER_FILLED"], [33, 3, 1, "", "BRAND_TYPESCRIPT"], [33, 3, 1, "", "BRAND_UBER"], [33, 3, 1, "", "BRAND_UBUNTU"], [33, 3, 1, "", "BRAND_UNITY"], [33, 3, 1, "", "BRAND_UNSPLASH"], [33, 3, 1, "", "BRAND_UPWORK"], [33, 3, 1, "", "BRAND_VALORANT"], [33, 3, 1, "", "BRAND_VERCEL"], [33, 3, 1, "", "BRAND_VIMEO"], [33, 3, 1, "", "BRAND_VINTED"], [33, 3, 1, "", "BRAND_VISA"], [33, 3, 1, "", "BRAND_VISUAL_STUDIO"], [33, 3, 1, "", "BRAND_VITE"], [33, 3, 1, "", "BRAND_VIVALDI"], [33, 3, 1, "", "BRAND_VK"], [33, 3, 1, "", "BRAND_VLC"], [33, 3, 1, "", "BRAND_VOLKSWAGEN"], [33, 3, 1, "", "BRAND_VSCO"], [33, 3, 1, "", "BRAND_VSCODE"], [33, 3, 1, "", "BRAND_VUE"], [33, 3, 1, "", "BRAND_WALMART"], [33, 3, 1, "", "BRAND_WAZE"], [33, 3, 1, "", "BRAND_WEBFLOW"], [33, 3, 1, "", "BRAND_WECHAT"], [33, 3, 1, "", "BRAND_WEIBO"], [33, 3, 1, "", "BRAND_WHATSAPP"], [33, 3, 1, "", "BRAND_WIKIPEDIA"], [33, 3, 1, "", "BRAND_WINDOWS"], [33, 3, 1, "", "BRAND_WINDY"], [33, 3, 1, "", "BRAND_WISH"], [33, 3, 1, "", "BRAND_WIX"], [33, 3, 1, "", "BRAND_WORDPRESS"], [33, 3, 1, "", "BRAND_XAMARIN"], [33, 3, 1, "", "BRAND_XBOX"], [33, 3, 1, "", "BRAND_XING"], [33, 3, 1, "", "BRAND_YAHOO"], [33, 3, 1, "", "BRAND_YANDEX"], [33, 3, 1, "", "BRAND_YATSE"], [33, 3, 1, "", "BRAND_YCOMBINATOR"], [33, 3, 1, "", "BRAND_YOUTUBE"], [33, 3, 1, "", "BRAND_YOUTUBE_KIDS"], [33, 3, 1, "", "BRAND_ZALANDO"], [33, 3, 1, "", "BRAND_ZAPIER"], [33, 3, 1, "", "BRAND_ZEIT"], [33, 3, 1, "", "BRAND_ZHIHU"], [33, 3, 1, "", "BRAND_ZOOM"], [33, 3, 1, "", "BRAND_ZULIP"], [33, 3, 1, "", "BRAND_ZWIFT"], [33, 3, 1, "", "BREAD"], [33, 3, 1, "", "BREAD_OFF"], [33, 3, 1, "", "BRIEFCASE"], [33, 3, 1, "", "BRIEFCASE_OFF"], [33, 3, 1, "", "BRIGHTNESS"], [33, 3, 1, "", "BRIGHTNESS_2"], [33, 3, 1, "", "BRIGHTNESS_DOWN"], [33, 3, 1, "", "BRIGHTNESS_HALF"], [33, 3, 1, "", "BRIGHTNESS_OFF"], [33, 3, 1, "", "BRIGHTNESS_UP"], [33, 3, 1, "", "BROADCAST"], [33, 3, 1, "", "BROADCAST_OFF"], [33, 3, 1, "", "BROWSER"], [33, 3, 1, "", "BROWSER_CHECK"], [33, 3, 1, "", "BROWSER_OFF"], [33, 3, 1, "", "BROWSER_PLUS"], [33, 3, 1, "", "BROWSER_X"], [33, 3, 1, "", "BRUSH"], [33, 3, 1, "", "BRUSH_OFF"], [33, 3, 1, "", "BUCKET"], [33, 3, 1, "", "BUCKET_DROPLET"], [33, 3, 1, "", "BUCKET_OFF"], [33, 3, 1, "", "BUG"], [33, 3, 1, "", "BUG_OFF"], [33, 3, 1, "", "BUILDING"], [33, 3, 1, "", "BUILDING_ARCH"], [33, 3, 1, "", "BUILDING_BANK"], [33, 3, 1, "", "BUILDING_BRIDGE"], [33, 3, 1, "", "BUILDING_BRIDGE_2"], [33, 3, 1, "", "BUILDING_BROADCAST_TOWER"], [33, 3, 1, "", "BUILDING_CAROUSEL"], [33, 3, 1, "", "BUILDING_CASTLE"], [33, 3, 1, "", "BUILDING_CHURCH"], [33, 3, 1, "", "BUILDING_CIRCUS"], [33, 3, 1, "", "BUILDING_COMMUNITY"], [33, 3, 1, "", "BUILDING_COTTAGE"], [33, 3, 1, "", "BUILDING_ESTATE"], [33, 3, 1, "", "BUILDING_FACTORY"], [33, 3, 1, "", "BUILDING_FACTORY_2"], [33, 3, 1, "", "BUILDING_FORTRESS"], [33, 3, 1, "", "BUILDING_HOSPITAL"], [33, 3, 1, "", "BUILDING_LIGHTHOUSE"], [33, 3, 1, "", "BUILDING_MONUMENT"], [33, 3, 1, "", "BUILDING_MOSQUE"], [33, 3, 1, "", "BUILDING_PAVILION"], [33, 3, 1, "", "BUILDING_SKYSCRAPER"], [33, 3, 1, "", "BUILDING_STADIUM"], [33, 3, 1, "", "BUILDING_STORE"], [33, 3, 1, "", "BUILDING_TUNNEL"], [33, 3, 1, "", "BUILDING_WAREHOUSE"], [33, 3, 1, "", "BUILDING_WIND_TURBINE"], [33, 3, 1, "", "BULB"], [33, 3, 1, "", "BULB_FILLED"], [33, 3, 1, "", "BULB_OFF"], [33, 3, 1, "", "BULLDOZER"], [33, 3, 1, "", "BUS"], [33, 3, 1, "", "BUSINESSPLAN"], [33, 3, 1, "", "BUS_OFF"], [33, 3, 1, "", "BUS_STOP"], [33, 3, 1, "", "BUTTERFLY"], [33, 3, 1, "", "CACTUS"], [33, 3, 1, "", "CACTUS_OFF"], [33, 3, 1, "", "CAKE"], [33, 3, 1, "", "CAKE_OFF"], [33, 3, 1, "", "CALCULATOR"], [33, 3, 1, "", "CALCULATOR_OFF"], [33, 3, 1, "", "CALENDAR"], [33, 3, 1, "", "CALENDAR_BOLT"], [33, 3, 1, "", "CALENDAR_CANCEL"], [33, 3, 1, "", "CALENDAR_CHECK"], [33, 3, 1, "", "CALENDAR_CODE"], [33, 3, 1, "", "CALENDAR_COG"], [33, 3, 1, "", "CALENDAR_DOLLAR"], [33, 3, 1, "", "CALENDAR_DOWN"], [33, 3, 1, "", "CALENDAR_DUE"], [33, 3, 1, "", "CALENDAR_EVENT"], [33, 3, 1, "", "CALENDAR_EXCLAMATION"], [33, 3, 1, "", "CALENDAR_HEART"], [33, 3, 1, "", "CALENDAR_MINUS"], [33, 3, 1, "", "CALENDAR_OFF"], [33, 3, 1, "", "CALENDAR_PAUSE"], [33, 3, 1, "", "CALENDAR_PIN"], [33, 3, 1, "", "CALENDAR_PLUS"], [33, 3, 1, "", "CALENDAR_QUESTION"], [33, 3, 1, "", "CALENDAR_REPEAT"], [33, 3, 1, "", "CALENDAR_SEARCH"], [33, 3, 1, "", "CALENDAR_SHARE"], [33, 3, 1, "", "CALENDAR_STAR"], [33, 3, 1, "", "CALENDAR_STATS"], [33, 3, 1, "", "CALENDAR_TIME"], [33, 3, 1, "", "CALENDAR_UP"], [33, 3, 1, "", "CALENDAR_X"], [33, 3, 1, "", "CAMERA"], [33, 3, 1, "", "CAMERA_BOLT"], [33, 3, 1, "", "CAMERA_CANCEL"], [33, 3, 1, "", "CAMERA_CHECK"], [33, 3, 1, "", "CAMERA_CODE"], [33, 3, 1, "", "CAMERA_COG"], [33, 3, 1, "", "CAMERA_DOLLAR"], [33, 3, 1, "", "CAMERA_DOWN"], [33, 3, 1, "", "CAMERA_EXCLAMATION"], [33, 3, 1, "", "CAMERA_FILLED"], [33, 3, 1, "", "CAMERA_HEART"], [33, 3, 1, "", "CAMERA_MINUS"], [33, 3, 1, "", "CAMERA_OFF"], [33, 3, 1, "", "CAMERA_PAUSE"], [33, 3, 1, "", "CAMERA_PIN"], [33, 3, 1, "", "CAMERA_PLUS"], [33, 3, 1, "", "CAMERA_QUESTION"], [33, 3, 1, "", "CAMERA_ROTATE"], [33, 3, 1, "", "CAMERA_SEARCH"], [33, 3, 1, "", "CAMERA_SELFIE"], [33, 3, 1, "", "CAMERA_SHARE"], [33, 3, 1, "", "CAMERA_STAR"], [33, 3, 1, "", "CAMERA_UP"], [33, 3, 1, "", "CAMERA_X"], [33, 3, 1, "", "CAMPER"], [33, 3, 1, "", "CAMPFIRE"], [33, 3, 1, "", "CANDLE"], [33, 3, 1, "", "CANDY"], [33, 3, 1, "", "CANDY_OFF"], [33, 3, 1, "", "CANE"], [33, 3, 1, "", "CANNABIS"], [33, 3, 1, "", "CAPSULE"], [33, 3, 1, "", "CAPSULE_HORIZONTAL"], [33, 3, 1, "", "CAPTURE"], [33, 3, 1, "", "CAPTURE_OFF"], [33, 3, 1, "", "CAR"], [33, 3, 1, "", "CARAVAN"], [33, 3, 1, "", "CARDBOARDS"], [33, 3, 1, "", "CARDBOARDS_OFF"], [33, 3, 1, "", "CARDS"], [33, 3, 1, "", "CARET_DOWN"], [33, 3, 1, "", "CARET_LEFT"], [33, 3, 1, "", "CARET_RIGHT"], [33, 3, 1, "", "CARET_UP"], [33, 3, 1, "", "CAROUSEL_HORIZONTAL"], [33, 3, 1, "", "CAROUSEL_HORIZONTAL_FILLED"], [33, 3, 1, "", "CAROUSEL_VERTICAL"], [33, 3, 1, "", "CAROUSEL_VERTICAL_FILLED"], [33, 3, 1, "", "CARROT"], [33, 3, 1, "", "CARROT_OFF"], [33, 3, 1, "", "CAR_CRANE"], [33, 3, 1, "", "CAR_CRASH"], [33, 3, 1, "", "CAR_OFF"], [33, 3, 1, "", "CAR_TURBINE"], [33, 3, 1, "", "CASH"], [33, 3, 1, "", "CASH_BANKNOTE"], [33, 3, 1, "", "CASH_BANKNOTE_OFF"], [33, 3, 1, "", "CASH_OFF"], [33, 3, 1, "", "CAST"], [33, 3, 1, "", "CAST_OFF"], [33, 3, 1, "", "CAT"], [33, 3, 1, "", "CATEGORY"], [33, 3, 1, "", "CATEGORY_2"], [33, 3, 1, "", "CE"], [33, 3, 1, "", "CELL"], [33, 3, 1, "", "CELL_SIGNAL_1"], [33, 3, 1, "", "CELL_SIGNAL_2"], [33, 3, 1, "", "CELL_SIGNAL_3"], [33, 3, 1, "", "CELL_SIGNAL_4"], [33, 3, 1, "", "CELL_SIGNAL_5"], [33, 3, 1, "", "CELL_SIGNAL_OFF"], [33, 3, 1, "", "CERTIFICATE"], [33, 3, 1, "", "CERTIFICATE_2"], [33, 3, 1, "", "CERTIFICATE_2_OFF"], [33, 3, 1, "", "CERTIFICATE_OFF"], [33, 3, 1, "", "CE_OFF"], [33, 3, 1, "", "CHAIR_DIRECTOR"], [33, 3, 1, "", "CHALKBOARD"], [33, 3, 1, "", "CHALKBOARD_OFF"], [33, 3, 1, "", "CHARGING_PILE"], [33, 3, 1, "", "CHART_ARCS"], [33, 3, 1, "", "CHART_ARCS_3"], [33, 3, 1, "", "CHART_AREA"], [33, 3, 1, "", "CHART_AREA_FILLED"], [33, 3, 1, "", "CHART_AREA_LINE"], [33, 3, 1, "", "CHART_AREA_LINE_FILLED"], [33, 3, 1, "", "CHART_ARROWS"], [33, 3, 1, "", "CHART_ARROWS_VERTICAL"], [33, 3, 1, "", "CHART_BAR"], [33, 3, 1, "", "CHART_BAR_OFF"], [33, 3, 1, "", "CHART_BUBBLE"], [33, 3, 1, "", "CHART_BUBBLE_FILLED"], [33, 3, 1, "", "CHART_CANDLE"], [33, 3, 1, "", "CHART_CANDLE_FILLED"], [33, 3, 1, "", "CHART_CIRCLES"], [33, 3, 1, "", "CHART_DONUT"], [33, 3, 1, "", "CHART_DONUT_2"], [33, 3, 1, "", "CHART_DONUT_3"], [33, 3, 1, "", "CHART_DONUT_4"], [33, 3, 1, "", "CHART_DONUT_FILLED"], [33, 3, 1, "", "CHART_DOTS"], [33, 3, 1, "", "CHART_DOTS_2"], [33, 3, 1, "", "CHART_DOTS_3"], [33, 3, 1, "", "CHART_GRID_DOTS"], [33, 3, 1, "", "CHART_HISTOGRAM"], [33, 3, 1, "", "CHART_INFOGRAPHIC"], [33, 3, 1, "", "CHART_LINE"], [33, 3, 1, "", "CHART_PIE"], [33, 3, 1, "", "CHART_PIE_2"], [33, 3, 1, "", "CHART_PIE_3"], [33, 3, 1, "", "CHART_PIE_4"], [33, 3, 1, "", "CHART_PIE_FILLED"], [33, 3, 1, "", "CHART_PIE_OFF"], [33, 3, 1, "", "CHART_PPF"], [33, 3, 1, "", "CHART_RADAR"], [33, 3, 1, "", "CHART_SANKEY"], [33, 3, 1, "", "CHART_TREEMAP"], [33, 3, 1, "", "CHECK"], [33, 3, 1, "", "CHECKBOX"], [33, 3, 1, "", "CHECKLIST"], [33, 3, 1, "", "CHECKS"], [33, 3, 1, "", "CHECKUP_LIST"], [33, 3, 1, "", "CHEESE"], [33, 3, 1, "", "CHEF_HAT"], [33, 3, 1, "", "CHEF_HAT_OFF"], [33, 3, 1, "", "CHERRY"], [33, 3, 1, "", "CHERRY_FILLED"], [33, 3, 1, "", "CHESS"], [33, 3, 1, "", "CHESS_BISHOP"], [33, 3, 1, "", "CHESS_BISHOP_FILLED"], [33, 3, 1, "", "CHESS_FILLED"], [33, 3, 1, "", "CHESS_KING"], [33, 3, 1, "", "CHESS_KING_FILLED"], [33, 3, 1, "", "CHESS_KNIGHT"], [33, 3, 1, "", "CHESS_KNIGHT_FILLED"], [33, 3, 1, "", "CHESS_QUEEN"], [33, 3, 1, "", "CHESS_QUEEN_FILLED"], [33, 3, 1, "", "CHESS_ROOK"], [33, 3, 1, "", "CHESS_ROOK_FILLED"], [33, 3, 1, "", "CHEVRONS_DOWN"], [33, 3, 1, "", "CHEVRONS_DOWN_LEFT"], [33, 3, 1, "", "CHEVRONS_DOWN_RIGHT"], [33, 3, 1, "", "CHEVRONS_LEFT"], [33, 3, 1, "", "CHEVRONS_RIGHT"], [33, 3, 1, "", "CHEVRONS_UP"], [33, 3, 1, "", "CHEVRONS_UP_LEFT"], [33, 3, 1, "", "CHEVRONS_UP_RIGHT"], [33, 3, 1, "", "CHEVRON_COMPACT_DOWN"], [33, 3, 1, "", "CHEVRON_COMPACT_LEFT"], [33, 3, 1, "", "CHEVRON_COMPACT_RIGHT"], [33, 3, 1, "", "CHEVRON_COMPACT_UP"], [33, 3, 1, "", "CHEVRON_DOWN"], [33, 3, 1, "", "CHEVRON_DOWN_LEFT"], [33, 3, 1, "", "CHEVRON_DOWN_RIGHT"], [33, 3, 1, "", "CHEVRON_LEFT"], [33, 3, 1, "", "CHEVRON_LEFT_PIPE"], [33, 3, 1, "", "CHEVRON_RIGHT"], [33, 3, 1, "", "CHEVRON_RIGHT_PIPE"], [33, 3, 1, "", "CHEVRON_UP"], [33, 3, 1, "", "CHEVRON_UP_LEFT"], [33, 3, 1, "", "CHEVRON_UP_RIGHT"], [33, 3, 1, "", "CHISEL"], [33, 3, 1, "", "CHRISTMAS_TREE"], [33, 3, 1, "", "CHRISTMAS_TREE_OFF"], [33, 3, 1, "", "CIRCLE"], [33, 3, 1, "", "CIRCLES"], [33, 3, 1, "", "CIRCLES_FILLED"], [33, 3, 1, "", "CIRCLES_RELATION"], [33, 3, 1, "", "CIRCLE_0_FILLED"], [33, 3, 1, "", "CIRCLE_1_FILLED"], [33, 3, 1, "", "CIRCLE_2_FILLED"], [33, 3, 1, "", "CIRCLE_3_FILLED"], [33, 3, 1, "", "CIRCLE_4_FILLED"], [33, 3, 1, "", "CIRCLE_5_FILLED"], [33, 3, 1, "", "CIRCLE_6_FILLED"], [33, 3, 1, "", "CIRCLE_7_FILLED"], [33, 3, 1, "", "CIRCLE_8_FILLED"], [33, 3, 1, "", "CIRCLE_9_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_LEFT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT"], [33, 3, 1, "", "CIRCLE_ARROW_DOWN_RIGHT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_LEFT"], [33, 3, 1, "", "CIRCLE_ARROW_LEFT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_RIGHT"], [33, 3, 1, "", "CIRCLE_ARROW_RIGHT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_UP"], [33, 3, 1, "", "CIRCLE_ARROW_UP_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_UP_LEFT"], [33, 3, 1, "", "CIRCLE_ARROW_UP_LEFT_FILLED"], [33, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT"], [33, 3, 1, "", "CIRCLE_ARROW_UP_RIGHT_FILLED"], [33, 3, 1, "", "CIRCLE_CARET_DOWN"], [33, 3, 1, "", "CIRCLE_CARET_LEFT"], [33, 3, 1, "", "CIRCLE_CARET_RIGHT"], [33, 3, 1, "", "CIRCLE_CARET_UP"], [33, 3, 1, "", "CIRCLE_CHECK"], [33, 3, 1, "", "CIRCLE_CHECK_FILLED"], [33, 3, 1, "", "CIRCLE_CHEVRONS_DOWN"], [33, 3, 1, "", "CIRCLE_CHEVRONS_LEFT"], [33, 3, 1, "", "CIRCLE_CHEVRONS_RIGHT"], [33, 3, 1, "", "CIRCLE_CHEVRONS_UP"], [33, 3, 1, "", "CIRCLE_CHEVRON_DOWN"], [33, 3, 1, "", "CIRCLE_CHEVRON_LEFT"], [33, 3, 1, "", "CIRCLE_CHEVRON_RIGHT"], [33, 3, 1, "", "CIRCLE_CHEVRON_UP"], [33, 3, 1, "", "CIRCLE_DASHED"], [33, 3, 1, "", "CIRCLE_DOT"], [33, 3, 1, "", "CIRCLE_DOTTED"], [33, 3, 1, "", "CIRCLE_DOT_FILLED"], [33, 3, 1, "", "CIRCLE_FILLED"], [33, 3, 1, "", "CIRCLE_HALF"], [33, 3, 1, "", "CIRCLE_HALF_2"], [33, 3, 1, "", "CIRCLE_HALF_VERTICAL"], [33, 3, 1, "", "CIRCLE_KEY"], [33, 3, 1, "", "CIRCLE_KEY_FILLED"], [33, 3, 1, "", "CIRCLE_LETTER_A"], [33, 3, 1, "", "CIRCLE_LETTER_B"], [33, 3, 1, "", "CIRCLE_LETTER_C"], [33, 3, 1, "", "CIRCLE_LETTER_D"], [33, 3, 1, "", "CIRCLE_LETTER_E"], [33, 3, 1, "", "CIRCLE_LETTER_F"], [33, 3, 1, "", "CIRCLE_LETTER_G"], [33, 3, 1, "", "CIRCLE_LETTER_H"], [33, 3, 1, "", "CIRCLE_LETTER_I"], [33, 3, 1, "", "CIRCLE_LETTER_J"], [33, 3, 1, "", "CIRCLE_LETTER_K"], [33, 3, 1, "", "CIRCLE_LETTER_L"], [33, 3, 1, "", "CIRCLE_LETTER_M"], [33, 3, 1, "", "CIRCLE_LETTER_N"], [33, 3, 1, "", "CIRCLE_LETTER_O"], [33, 3, 1, "", "CIRCLE_LETTER_P"], [33, 3, 1, "", "CIRCLE_LETTER_Q"], [33, 3, 1, "", "CIRCLE_LETTER_R"], [33, 3, 1, "", "CIRCLE_LETTER_S"], [33, 3, 1, "", "CIRCLE_LETTER_T"], [33, 3, 1, "", "CIRCLE_LETTER_U"], [33, 3, 1, "", "CIRCLE_LETTER_V"], [33, 3, 1, "", "CIRCLE_LETTER_W"], [33, 3, 1, "", "CIRCLE_LETTER_X"], [33, 3, 1, "", "CIRCLE_LETTER_Y"], [33, 3, 1, "", "CIRCLE_LETTER_Z"], [33, 3, 1, "", "CIRCLE_MINUS"], [33, 3, 1, "", "CIRCLE_NUMBER_0"], [33, 3, 1, "", "CIRCLE_NUMBER_1"], [33, 3, 1, "", "CIRCLE_NUMBER_2"], [33, 3, 1, "", "CIRCLE_NUMBER_3"], [33, 3, 1, "", "CIRCLE_NUMBER_4"], [33, 3, 1, "", "CIRCLE_NUMBER_5"], [33, 3, 1, "", "CIRCLE_NUMBER_6"], [33, 3, 1, "", "CIRCLE_NUMBER_7"], [33, 3, 1, "", "CIRCLE_NUMBER_8"], [33, 3, 1, "", "CIRCLE_NUMBER_9"], [33, 3, 1, "", "CIRCLE_OFF"], [33, 3, 1, "", "CIRCLE_PLUS"], [33, 3, 1, "", "CIRCLE_RECTANGLE"], [33, 3, 1, "", "CIRCLE_RECTANGLE_OFF"], [33, 3, 1, "", "CIRCLE_SQUARE"], [33, 3, 1, "", "CIRCLE_TRIANGLE"], [33, 3, 1, "", "CIRCLE_X"], [33, 3, 1, "", "CIRCLE_X_FILLED"], [33, 3, 1, "", "CIRCUIT_AMMETER"], [33, 3, 1, "", "CIRCUIT_BATTERY"], [33, 3, 1, "", "CIRCUIT_BULB"], [33, 3, 1, "", "CIRCUIT_CAPACITOR"], [33, 3, 1, "", "CIRCUIT_CAPACITOR_POLARIZED"], [33, 3, 1, "", "CIRCUIT_CELL"], [33, 3, 1, "", "CIRCUIT_CELL_PLUS"], [33, 3, 1, "", "CIRCUIT_CHANGEOVER"], [33, 3, 1, "", "CIRCUIT_DIODE"], [33, 3, 1, "", "CIRCUIT_DIODE_ZENER"], [33, 3, 1, "", "CIRCUIT_GROUND"], [33, 3, 1, "", "CIRCUIT_GROUND_DIGITAL"], [33, 3, 1, "", "CIRCUIT_INDUCTOR"], [33, 3, 1, "", "CIRCUIT_MOTOR"], [33, 3, 1, "", "CIRCUIT_PUSHBUTTON"], [33, 3, 1, "", "CIRCUIT_RESISTOR"], [33, 3, 1, "", "CIRCUIT_SWITCH_CLOSED"], [33, 3, 1, "", "CIRCUIT_SWITCH_OPEN"], [33, 3, 1, "", "CIRCUIT_VOLTMETER"], [33, 3, 1, "", "CLEAR_ALL"], [33, 3, 1, "", "CLEAR_FORMATTING"], [33, 3, 1, "", "CLICK"], [33, 3, 1, "", "CLIPBOARD"], [33, 3, 1, "", "CLIPBOARD_CHECK"], [33, 3, 1, "", "CLIPBOARD_COPY"], [33, 3, 1, "", "CLIPBOARD_DATA"], [33, 3, 1, "", "CLIPBOARD_HEART"], [33, 3, 1, "", "CLIPBOARD_LIST"], [33, 3, 1, "", "CLIPBOARD_OFF"], [33, 3, 1, "", "CLIPBOARD_PLUS"], [33, 3, 1, "", "CLIPBOARD_TEXT"], [33, 3, 1, "", "CLIPBOARD_TYPOGRAPHY"], [33, 3, 1, "", "CLIPBOARD_X"], [33, 3, 1, "", "CLOCK"], [33, 3, 1, "", "CLOCK_2"], [33, 3, 1, "", "CLOCK_BOLT"], [33, 3, 1, "", "CLOCK_CANCEL"], [33, 3, 1, "", "CLOCK_CHECK"], [33, 3, 1, "", "CLOCK_CODE"], [33, 3, 1, "", "CLOCK_COG"], [33, 3, 1, "", "CLOCK_DOLLAR"], [33, 3, 1, "", "CLOCK_DOWN"], [33, 3, 1, "", "CLOCK_EDIT"], [33, 3, 1, "", "CLOCK_EXCLAMATION"], [33, 3, 1, "", "CLOCK_FILLED"], [33, 3, 1, "", "CLOCK_HEART"], [33, 3, 1, "", "CLOCK_HOUR_1"], [33, 3, 1, "", "CLOCK_HOUR_10"], [33, 3, 1, "", "CLOCK_HOUR_11"], [33, 3, 1, "", "CLOCK_HOUR_12"], [33, 3, 1, "", "CLOCK_HOUR_2"], [33, 3, 1, "", "CLOCK_HOUR_3"], [33, 3, 1, "", "CLOCK_HOUR_4"], [33, 3, 1, "", "CLOCK_HOUR_5"], [33, 3, 1, "", "CLOCK_HOUR_6"], [33, 3, 1, "", "CLOCK_HOUR_7"], [33, 3, 1, "", "CLOCK_HOUR_8"], [33, 3, 1, "", "CLOCK_HOUR_9"], [33, 3, 1, "", "CLOCK_MINUS"], [33, 3, 1, "", "CLOCK_OFF"], [33, 3, 1, "", "CLOCK_PAUSE"], [33, 3, 1, "", "CLOCK_PIN"], [33, 3, 1, "", "CLOCK_PLAY"], [33, 3, 1, "", "CLOCK_PLUS"], [33, 3, 1, "", "CLOCK_QUESTION"], [33, 3, 1, "", "CLOCK_RECORD"], [33, 3, 1, "", "CLOCK_SEARCH"], [33, 3, 1, "", "CLOCK_SHARE"], [33, 3, 1, "", "CLOCK_SHIELD"], [33, 3, 1, "", "CLOCK_STAR"], [33, 3, 1, "", "CLOCK_STOP"], [33, 3, 1, "", "CLOCK_UP"], [33, 3, 1, "", "CLOCK_X"], [33, 3, 1, "", "CLOTHES_RACK"], [33, 3, 1, "", "CLOTHES_RACK_OFF"], [33, 3, 1, "", "CLOUD"], [33, 3, 1, "", "CLOUD_BOLT"], [33, 3, 1, "", "CLOUD_CANCEL"], [33, 3, 1, "", "CLOUD_CHECK"], [33, 3, 1, "", "CLOUD_CODE"], [33, 3, 1, "", "CLOUD_COG"], [33, 3, 1, "", "CLOUD_COMPUTING"], [33, 3, 1, "", "CLOUD_DATA_CONNECTION"], [33, 3, 1, "", "CLOUD_DOLLAR"], [33, 3, 1, "", "CLOUD_DOWN"], [33, 3, 1, "", "CLOUD_DOWNLOAD"], [33, 3, 1, "", "CLOUD_EXCLAMATION"], [33, 3, 1, "", "CLOUD_FILLED"], [33, 3, 1, "", "CLOUD_FOG"], [33, 3, 1, "", "CLOUD_HEART"], [33, 3, 1, "", "CLOUD_LOCK"], [33, 3, 1, "", "CLOUD_LOCK_OPEN"], [33, 3, 1, "", "CLOUD_MINUS"], [33, 3, 1, "", "CLOUD_OFF"], [33, 3, 1, "", "CLOUD_PAUSE"], [33, 3, 1, "", "CLOUD_PIN"], [33, 3, 1, "", "CLOUD_PLUS"], [33, 3, 1, "", "CLOUD_QUESTION"], [33, 3, 1, "", "CLOUD_RAIN"], [33, 3, 1, "", "CLOUD_SEARCH"], [33, 3, 1, "", "CLOUD_SHARE"], [33, 3, 1, "", "CLOUD_SNOW"], [33, 3, 1, "", "CLOUD_STAR"], [33, 3, 1, "", "CLOUD_STORM"], [33, 3, 1, "", "CLOUD_UP"], [33, 3, 1, "", "CLOUD_UPLOAD"], [33, 3, 1, "", "CLOUD_X"], [33, 3, 1, "", "CLOVER"], [33, 3, 1, "", "CLOVER_2"], [33, 3, 1, "", "CLUBS"], [33, 3, 1, "", "CLUBS_FILLED"], [33, 3, 1, "", "CODE"], [33, 3, 1, "", "CODE_ASTERIX"], [33, 3, 1, "", "CODE_CIRCLE"], [33, 3, 1, "", "CODE_CIRCLE_2"], [33, 3, 1, "", "CODE_DOTS"], [33, 3, 1, "", "CODE_MINUS"], [33, 3, 1, "", "CODE_OFF"], [33, 3, 1, "", "CODE_PLUS"], [33, 3, 1, "", "COFFEE"], [33, 3, 1, "", "COFFEE_OFF"], [33, 3, 1, "", "COFFIN"], [33, 3, 1, "", "COIN"], [33, 3, 1, "", "COINS"], [33, 3, 1, "", "COIN_BITCOIN"], [33, 3, 1, "", "COIN_EURO"], [33, 3, 1, "", "COIN_MONERO"], [33, 3, 1, "", "COIN_OFF"], [33, 3, 1, "", "COIN_POUND"], [33, 3, 1, "", "COIN_RUPEE"], [33, 3, 1, "", "COIN_YEN"], [33, 3, 1, "", "COIN_YUAN"], [33, 3, 1, "", "COLOR_FILTER"], [33, 3, 1, "", "COLOR_PICKER"], [33, 3, 1, "", "COLOR_PICKER_OFF"], [33, 3, 1, "", "COLOR_SWATCH"], [33, 3, 1, "", "COLOR_SWATCH_OFF"], [33, 3, 1, "", "COLUMNS"], [33, 3, 1, "", "COLUMNS_1"], [33, 3, 1, "", "COLUMNS_2"], [33, 3, 1, "", "COLUMNS_3"], [33, 3, 1, "", "COLUMNS_OFF"], [33, 3, 1, "", "COLUMN_INSERT_LEFT"], [33, 3, 1, "", "COLUMN_INSERT_RIGHT"], [33, 3, 1, "", "COLUMN_REMOVE"], [33, 3, 1, "", "COMET"], [33, 3, 1, "", "COMMAND"], [33, 3, 1, "", "COMMAND_OFF"], [33, 3, 1, "", "COMPASS"], [33, 3, 1, "", "COMPASS_OFF"], [33, 3, 1, "", "COMPONENTS"], [33, 3, 1, "", "COMPONENTS_OFF"], [33, 3, 1, "", "CONE"], [33, 3, 1, "", "CONE_2"], [33, 3, 1, "", "CONE_OFF"], [33, 3, 1, "", "CONE_PLUS"], [33, 3, 1, "", "CONFETTI"], [33, 3, 1, "", "CONFETTI_OFF"], [33, 3, 1, "", "CONFUCIUS"], [33, 3, 1, "", "CONTAINER"], [33, 3, 1, "", "CONTAINER_OFF"], [33, 3, 1, "", "CONTRAST"], [33, 3, 1, "", "CONTRAST_2"], [33, 3, 1, "", "CONTRAST_2_OFF"], [33, 3, 1, "", "CONTRAST_OFF"], [33, 3, 1, "", "COOKER"], [33, 3, 1, "", "COOKIE"], [33, 3, 1, "", "COOKIE_MAN"], [33, 3, 1, "", "COOKIE_OFF"], [33, 3, 1, "", "COPY"], [33, 3, 1, "", "COPYLEFT"], [33, 3, 1, "", "COPYLEFT_FILLED"], [33, 3, 1, "", "COPYLEFT_OFF"], [33, 3, 1, "", "COPYRIGHT"], [33, 3, 1, "", "COPYRIGHT_FILLED"], [33, 3, 1, "", "COPYRIGHT_OFF"], [33, 3, 1, "", "COPY_OFF"], [33, 3, 1, "", "CORNER_DOWN_LEFT"], [33, 3, 1, "", "CORNER_DOWN_LEFT_DOUBLE"], [33, 3, 1, "", "CORNER_DOWN_RIGHT"], [33, 3, 1, "", "CORNER_DOWN_RIGHT_DOUBLE"], [33, 3, 1, "", "CORNER_LEFT_DOWN"], [33, 3, 1, "", "CORNER_LEFT_DOWN_DOUBLE"], [33, 3, 1, "", "CORNER_LEFT_UP"], [33, 3, 1, "", "CORNER_LEFT_UP_DOUBLE"], [33, 3, 1, "", "CORNER_RIGHT_DOWN"], [33, 3, 1, "", "CORNER_RIGHT_DOWN_DOUBLE"], [33, 3, 1, "", "CORNER_RIGHT_UP"], [33, 3, 1, "", "CORNER_RIGHT_UP_DOUBLE"], [33, 3, 1, "", "CORNER_UP_LEFT"], [33, 3, 1, "", "CORNER_UP_LEFT_DOUBLE"], [33, 3, 1, "", "CORNER_UP_RIGHT"], [33, 3, 1, "", "CORNER_UP_RIGHT_DOUBLE"], [33, 3, 1, "", "CPU"], [33, 3, 1, "", "CPU_2"], [33, 3, 1, "", "CPU_OFF"], [33, 3, 1, "", "CRANE"], [33, 3, 1, "", "CRANE_OFF"], [33, 3, 1, "", "CREATIVE_COMMONS"], [33, 3, 1, "", "CREATIVE_COMMONS_BY"], [33, 3, 1, "", "CREATIVE_COMMONS_NC"], [33, 3, 1, "", "CREATIVE_COMMONS_ND"], [33, 3, 1, "", "CREATIVE_COMMONS_OFF"], [33, 3, 1, "", "CREATIVE_COMMONS_SA"], [33, 3, 1, "", "CREATIVE_COMMONS_ZERO"], [33, 3, 1, "", "CREDIT_CARD"], [33, 3, 1, "", "CREDIT_CARD_OFF"], [33, 3, 1, "", "CRICKET"], [33, 3, 1, "", "CROP"], [33, 3, 1, "", "CROSS"], [33, 3, 1, "", "CROSSHAIR"], [33, 3, 1, "", "CROSS_FILLED"], [33, 3, 1, "", "CROSS_OFF"], [33, 3, 1, "", "CROWN"], [33, 3, 1, "", "CROWN_OFF"], [33, 3, 1, "", "CRUTCHES"], [33, 3, 1, "", "CRUTCHES_OFF"], [33, 3, 1, "", "CRYSTAL_BALL"], [33, 3, 1, "", "CSV"], [33, 3, 1, "", "CUBE"], [33, 3, 1, "", "CUBE_OFF"], [33, 3, 1, "", "CUBE_PLUS"], [33, 3, 1, "", "CUBE_SEND"], [33, 3, 1, "", "CUBE_UNFOLDED"], [33, 3, 1, "", "CUP"], [33, 3, 1, "", "CUP_OFF"], [33, 3, 1, "", "CURLING"], [33, 3, 1, "", "CURLY_LOOP"], [33, 3, 1, "", "CURRENCY"], [33, 3, 1, "", "CURRENCY_AFGHANI"], [33, 3, 1, "", "CURRENCY_BAHRAINI"], [33, 3, 1, "", "CURRENCY_BAHT"], [33, 3, 1, "", "CURRENCY_BITCOIN"], [33, 3, 1, "", "CURRENCY_CENT"], [33, 3, 1, "", "CURRENCY_DINAR"], [33, 3, 1, "", "CURRENCY_DIRHAM"], [33, 3, 1, "", "CURRENCY_DOGECOIN"], [33, 3, 1, "", "CURRENCY_DOLLAR"], [33, 3, 1, "", "CURRENCY_DOLLAR_AUSTRALIAN"], [33, 3, 1, "", "CURRENCY_DOLLAR_BRUNEI"], [33, 3, 1, "", "CURRENCY_DOLLAR_CANADIAN"], [33, 3, 1, "", "CURRENCY_DOLLAR_GUYANESE"], [33, 3, 1, "", "CURRENCY_DOLLAR_OFF"], [33, 3, 1, "", "CURRENCY_DOLLAR_SINGAPORE"], [33, 3, 1, "", "CURRENCY_DOLLAR_ZIMBABWEAN"], [33, 3, 1, "", "CURRENCY_DONG"], [33, 3, 1, "", "CURRENCY_DRAM"], [33, 3, 1, "", "CURRENCY_ETHEREUM"], [33, 3, 1, "", "CURRENCY_EURO"], [33, 3, 1, "", "CURRENCY_EURO_OFF"], [33, 3, 1, "", "CURRENCY_FLORIN"], [33, 3, 1, "", "CURRENCY_FORINT"], [33, 3, 1, "", "CURRENCY_FRANK"], [33, 3, 1, "", "CURRENCY_GUARANI"], [33, 3, 1, "", "CURRENCY_HRYVNIA"], [33, 3, 1, "", "CURRENCY_IRANIAN_RIAL"], [33, 3, 1, "", "CURRENCY_KIP"], [33, 3, 1, "", "CURRENCY_KRONE_CZECH"], [33, 3, 1, "", "CURRENCY_KRONE_DANISH"], [33, 3, 1, "", "CURRENCY_KRONE_SWEDISH"], [33, 3, 1, "", "CURRENCY_LARI"], [33, 3, 1, "", "CURRENCY_LEU"], [33, 3, 1, "", "CURRENCY_LIRA"], [33, 3, 1, "", "CURRENCY_LITECOIN"], [33, 3, 1, "", "CURRENCY_LYD"], [33, 3, 1, "", "CURRENCY_MANAT"], [33, 3, 1, "", "CURRENCY_MONERO"], [33, 3, 1, "", "CURRENCY_NAIRA"], [33, 3, 1, "", "CURRENCY_NANO"], [33, 3, 1, "", "CURRENCY_OFF"], [33, 3, 1, "", "CURRENCY_PAANGA"], [33, 3, 1, "", "CURRENCY_PESO"], [33, 3, 1, "", "CURRENCY_POUND"], [33, 3, 1, "", "CURRENCY_POUND_OFF"], [33, 3, 1, "", "CURRENCY_QUETZAL"], [33, 3, 1, "", "CURRENCY_REAL"], [33, 3, 1, "", "CURRENCY_RENMINBI"], [33, 3, 1, "", "CURRENCY_RIPPLE"], [33, 3, 1, "", "CURRENCY_RIYAL"], [33, 3, 1, "", "CURRENCY_RUBEL"], [33, 3, 1, "", "CURRENCY_RUFIYAA"], [33, 3, 1, "", "CURRENCY_RUPEE"], [33, 3, 1, "", "CURRENCY_RUPEE_NEPALESE"], [33, 3, 1, "", "CURRENCY_SHEKEL"], [33, 3, 1, "", "CURRENCY_SOLANA"], [33, 3, 1, "", "CURRENCY_SOM"], [33, 3, 1, "", "CURRENCY_TAKA"], [33, 3, 1, "", "CURRENCY_TENGE"], [33, 3, 1, "", "CURRENCY_TUGRIK"], [33, 3, 1, "", "CURRENCY_WON"], [33, 3, 1, "", "CURRENCY_YEN"], [33, 3, 1, "", "CURRENCY_YEN_OFF"], [33, 3, 1, "", "CURRENCY_YUAN"], [33, 3, 1, "", "CURRENCY_ZLOTY"], [33, 3, 1, "", "CURRENT_LOCATION"], [33, 3, 1, "", "CURRENT_LOCATION_OFF"], [33, 3, 1, "", "CURSOR_OFF"], [33, 3, 1, "", "CURSOR_TEXT"], [33, 3, 1, "", "CUT"], [33, 3, 1, "", "CYLINDER"], [33, 3, 1, "", "CYLINDER_OFF"], [33, 3, 1, "", "CYLINDER_PLUS"], [33, 3, 1, "", "DASHBOARD"], [33, 3, 1, "", "DASHBOARD_OFF"], [33, 3, 1, "", "DATABASE"], [33, 3, 1, "", "DATABASE_COG"], [33, 3, 1, "", "DATABASE_DOLLAR"], [33, 3, 1, "", "DATABASE_EDIT"], [33, 3, 1, "", "DATABASE_EXCLAMATION"], [33, 3, 1, "", "DATABASE_EXPORT"], [33, 3, 1, "", "DATABASE_HEART"], [33, 3, 1, "", "DATABASE_IMPORT"], [33, 3, 1, "", "DATABASE_LEAK"], [33, 3, 1, "", "DATABASE_MINUS"], [33, 3, 1, "", "DATABASE_OFF"], [33, 3, 1, "", "DATABASE_PLUS"], [33, 3, 1, "", "DATABASE_SEARCH"], [33, 3, 1, "", "DATABASE_SHARE"], [33, 3, 1, "", "DATABASE_STAR"], [33, 3, 1, "", "DATABASE_X"], [33, 3, 1, "", "DECIMAL"], [33, 3, 1, "", "DEER"], [33, 3, 1, "", "DELTA"], [33, 3, 1, "", "DENTAL"], [33, 3, 1, "", "DENTAL_BROKEN"], [33, 3, 1, "", "DENTAL_OFF"], [33, 3, 1, "", "DESELECT"], [33, 3, 1, "", "DETAILS"], [33, 3, 1, "", "DETAILS_OFF"], [33, 3, 1, "", "DEVICES"], [33, 3, 1, "", "DEVICES_2"], [33, 3, 1, "", "DEVICES_BOLT"], [33, 3, 1, "", "DEVICES_CANCEL"], [33, 3, 1, "", "DEVICES_CHECK"], [33, 3, 1, "", "DEVICES_CODE"], [33, 3, 1, "", "DEVICES_COG"], [33, 3, 1, "", "DEVICES_DOLLAR"], [33, 3, 1, "", "DEVICES_DOWN"], [33, 3, 1, "", "DEVICES_EXCLAMATION"], [33, 3, 1, "", "DEVICES_HEART"], [33, 3, 1, "", "DEVICES_MINUS"], [33, 3, 1, "", "DEVICES_OFF"], [33, 3, 1, "", "DEVICES_PAUSE"], [33, 3, 1, "", "DEVICES_PC"], [33, 3, 1, "", "DEVICES_PC_OFF"], [33, 3, 1, "", "DEVICES_PIN"], [33, 3, 1, "", "DEVICES_PLUS"], [33, 3, 1, "", "DEVICES_QUESTION"], [33, 3, 1, "", "DEVICES_SEARCH"], [33, 3, 1, "", "DEVICES_SHARE"], [33, 3, 1, "", "DEVICES_STAR"], [33, 3, 1, "", "DEVICES_UP"], [33, 3, 1, "", "DEVICES_X"], [33, 3, 1, "", "DEVICE_AIRPODS"], [33, 3, 1, "", "DEVICE_AIRPODS_CASE"], [33, 3, 1, "", "DEVICE_AIRTAG"], [33, 3, 1, "", "DEVICE_ANALYTICS"], [33, 3, 1, "", "DEVICE_AUDIO_TAPE"], [33, 3, 1, "", "DEVICE_CAMERA_PHONE"], [33, 3, 1, "", "DEVICE_CCTV"], [33, 3, 1, "", "DEVICE_CCTV_OFF"], [33, 3, 1, "", "DEVICE_COMPUTER_CAMERA"], [33, 3, 1, "", "DEVICE_COMPUTER_CAMERA_OFF"], [33, 3, 1, "", "DEVICE_DESKTOP"], [33, 3, 1, "", "DEVICE_DESKTOP_ANALYTICS"], [33, 3, 1, "", "DEVICE_DESKTOP_BOLT"], [33, 3, 1, "", "DEVICE_DESKTOP_CANCEL"], [33, 3, 1, "", "DEVICE_DESKTOP_CHECK"], [33, 3, 1, "", "DEVICE_DESKTOP_CODE"], [33, 3, 1, "", "DEVICE_DESKTOP_COG"], [33, 3, 1, "", "DEVICE_DESKTOP_DOLLAR"], [33, 3, 1, "", "DEVICE_DESKTOP_DOWN"], [33, 3, 1, "", "DEVICE_DESKTOP_EXCLAMATION"], [33, 3, 1, "", "DEVICE_DESKTOP_HEART"], [33, 3, 1, "", "DEVICE_DESKTOP_MINUS"], [33, 3, 1, "", "DEVICE_DESKTOP_OFF"], [33, 3, 1, "", "DEVICE_DESKTOP_PAUSE"], [33, 3, 1, "", "DEVICE_DESKTOP_PIN"], [33, 3, 1, "", "DEVICE_DESKTOP_PLUS"], [33, 3, 1, "", "DEVICE_DESKTOP_QUESTION"], [33, 3, 1, "", "DEVICE_DESKTOP_SEARCH"], [33, 3, 1, "", "DEVICE_DESKTOP_SHARE"], [33, 3, 1, "", "DEVICE_DESKTOP_STAR"], [33, 3, 1, "", "DEVICE_DESKTOP_UP"], [33, 3, 1, "", "DEVICE_DESKTOP_X"], [33, 3, 1, "", "DEVICE_FLOPPY"], [33, 3, 1, "", "DEVICE_GAMEPAD"], [33, 3, 1, "", "DEVICE_GAMEPAD_2"], [33, 3, 1, "", "DEVICE_HEART_MONITOR"], [33, 3, 1, "", "DEVICE_HEART_MONITOR_FILLED"], [33, 3, 1, "", "DEVICE_IMAC"], [33, 3, 1, "", "DEVICE_IMAC_BOLT"], [33, 3, 1, "", "DEVICE_IMAC_CANCEL"], [33, 3, 1, "", "DEVICE_IMAC_CHECK"], [33, 3, 1, "", "DEVICE_IMAC_CODE"], [33, 3, 1, "", "DEVICE_IMAC_COG"], [33, 3, 1, "", "DEVICE_IMAC_DOLLAR"], [33, 3, 1, "", "DEVICE_IMAC_DOWN"], [33, 3, 1, "", "DEVICE_IMAC_EXCLAMATION"], [33, 3, 1, "", "DEVICE_IMAC_HEART"], [33, 3, 1, "", "DEVICE_IMAC_MINUS"], [33, 3, 1, "", "DEVICE_IMAC_OFF"], [33, 3, 1, "", "DEVICE_IMAC_PAUSE"], [33, 3, 1, "", "DEVICE_IMAC_PIN"], [33, 3, 1, "", "DEVICE_IMAC_PLUS"], [33, 3, 1, "", "DEVICE_IMAC_QUESTION"], [33, 3, 1, "", "DEVICE_IMAC_SEARCH"], [33, 3, 1, "", "DEVICE_IMAC_SHARE"], [33, 3, 1, "", "DEVICE_IMAC_STAR"], [33, 3, 1, "", "DEVICE_IMAC_UP"], [33, 3, 1, "", "DEVICE_IMAC_X"], [33, 3, 1, "", "DEVICE_IPAD"], [33, 3, 1, "", "DEVICE_IPAD_BOLT"], [33, 3, 1, "", "DEVICE_IPAD_CANCEL"], [33, 3, 1, "", "DEVICE_IPAD_CHECK"], [33, 3, 1, "", "DEVICE_IPAD_CODE"], [33, 3, 1, "", "DEVICE_IPAD_COG"], [33, 3, 1, "", "DEVICE_IPAD_DOLLAR"], [33, 3, 1, "", "DEVICE_IPAD_DOWN"], [33, 3, 1, "", "DEVICE_IPAD_EXCLAMATION"], [33, 3, 1, "", "DEVICE_IPAD_HEART"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_BOLT"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CANCEL"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CHECK"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_CODE"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_COG"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOLLAR"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_DOWN"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_EXCLAMATION"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_HEART"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_MINUS"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_OFF"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PAUSE"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PIN"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_PLUS"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_QUESTION"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SEARCH"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_SHARE"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_STAR"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_UP"], [33, 3, 1, "", "DEVICE_IPAD_HORIZONTAL_X"], [33, 3, 1, "", "DEVICE_IPAD_MINUS"], [33, 3, 1, "", "DEVICE_IPAD_OFF"], [33, 3, 1, "", "DEVICE_IPAD_PAUSE"], [33, 3, 1, "", "DEVICE_IPAD_PIN"], [33, 3, 1, "", "DEVICE_IPAD_PLUS"], [33, 3, 1, "", "DEVICE_IPAD_QUESTION"], [33, 3, 1, "", "DEVICE_IPAD_SEARCH"], [33, 3, 1, "", "DEVICE_IPAD_SHARE"], [33, 3, 1, "", "DEVICE_IPAD_STAR"], [33, 3, 1, "", "DEVICE_IPAD_UP"], [33, 3, 1, "", "DEVICE_IPAD_X"], [33, 3, 1, "", "DEVICE_LANDLINE_PHONE"], [33, 3, 1, "", "DEVICE_LAPTOP"], [33, 3, 1, "", "DEVICE_LAPTOP_OFF"], [33, 3, 1, "", "DEVICE_MOBILE"], [33, 3, 1, "", "DEVICE_MOBILE_BOLT"], [33, 3, 1, "", "DEVICE_MOBILE_CANCEL"], [33, 3, 1, "", "DEVICE_MOBILE_CHARGING"], [33, 3, 1, "", "DEVICE_MOBILE_CHECK"], [33, 3, 1, "", "DEVICE_MOBILE_CODE"], [33, 3, 1, "", "DEVICE_MOBILE_COG"], [33, 3, 1, "", "DEVICE_MOBILE_DOLLAR"], [33, 3, 1, "", "DEVICE_MOBILE_DOWN"], [33, 3, 1, "", "DEVICE_MOBILE_EXCLAMATION"], [33, 3, 1, "", "DEVICE_MOBILE_FILLED"], [33, 3, 1, "", "DEVICE_MOBILE_HEART"], [33, 3, 1, "", "DEVICE_MOBILE_MESSAGE"], [33, 3, 1, "", "DEVICE_MOBILE_MINUS"], [33, 3, 1, "", "DEVICE_MOBILE_OFF"], [33, 3, 1, "", "DEVICE_MOBILE_PAUSE"], [33, 3, 1, "", "DEVICE_MOBILE_PIN"], [33, 3, 1, "", "DEVICE_MOBILE_PLUS"], [33, 3, 1, "", "DEVICE_MOBILE_QUESTION"], [33, 3, 1, "", "DEVICE_MOBILE_ROTATED"], [33, 3, 1, "", "DEVICE_MOBILE_SEARCH"], [33, 3, 1, "", "DEVICE_MOBILE_SHARE"], [33, 3, 1, "", "DEVICE_MOBILE_STAR"], [33, 3, 1, "", "DEVICE_MOBILE_UP"], [33, 3, 1, "", "DEVICE_MOBILE_VIBRATION"], [33, 3, 1, "", "DEVICE_MOBILE_X"], [33, 3, 1, "", "DEVICE_NINTENDO"], [33, 3, 1, "", "DEVICE_NINTENDO_OFF"], [33, 3, 1, "", "DEVICE_REMOTE"], [33, 3, 1, "", "DEVICE_SD_CARD"], [33, 3, 1, "", "DEVICE_SIM"], [33, 3, 1, "", "DEVICE_SIM_1"], [33, 3, 1, "", "DEVICE_SIM_2"], [33, 3, 1, "", "DEVICE_SIM_3"], [33, 3, 1, "", "DEVICE_SPEAKER"], [33, 3, 1, "", "DEVICE_SPEAKER_OFF"], [33, 3, 1, "", "DEVICE_TABLET"], [33, 3, 1, "", "DEVICE_TABLET_BOLT"], [33, 3, 1, "", "DEVICE_TABLET_CANCEL"], [33, 3, 1, "", "DEVICE_TABLET_CHECK"], [33, 3, 1, "", "DEVICE_TABLET_CODE"], [33, 3, 1, "", "DEVICE_TABLET_COG"], [33, 3, 1, "", "DEVICE_TABLET_DOLLAR"], [33, 3, 1, "", "DEVICE_TABLET_DOWN"], [33, 3, 1, "", "DEVICE_TABLET_EXCLAMATION"], [33, 3, 1, "", "DEVICE_TABLET_FILLED"], [33, 3, 1, "", "DEVICE_TABLET_HEART"], [33, 3, 1, "", "DEVICE_TABLET_MINUS"], [33, 3, 1, "", "DEVICE_TABLET_OFF"], [33, 3, 1, "", "DEVICE_TABLET_PAUSE"], [33, 3, 1, "", "DEVICE_TABLET_PIN"], [33, 3, 1, "", "DEVICE_TABLET_PLUS"], [33, 3, 1, "", "DEVICE_TABLET_QUESTION"], [33, 3, 1, "", "DEVICE_TABLET_SEARCH"], [33, 3, 1, "", "DEVICE_TABLET_SHARE"], [33, 3, 1, "", "DEVICE_TABLET_STAR"], [33, 3, 1, "", "DEVICE_TABLET_UP"], [33, 3, 1, "", "DEVICE_TABLET_X"], [33, 3, 1, "", "DEVICE_TV"], [33, 3, 1, "", "DEVICE_TV_OFF"], [33, 3, 1, "", "DEVICE_TV_OLD"], [33, 3, 1, "", "DEVICE_VISION_PRO"], [33, 3, 1, "", "DEVICE_WATCH"], [33, 3, 1, "", "DEVICE_WATCH_BOLT"], [33, 3, 1, "", "DEVICE_WATCH_CANCEL"], [33, 3, 1, "", "DEVICE_WATCH_CHECK"], [33, 3, 1, "", "DEVICE_WATCH_CODE"], [33, 3, 1, "", "DEVICE_WATCH_COG"], [33, 3, 1, "", "DEVICE_WATCH_DOLLAR"], [33, 3, 1, "", "DEVICE_WATCH_DOWN"], [33, 3, 1, "", "DEVICE_WATCH_EXCLAMATION"], [33, 3, 1, "", "DEVICE_WATCH_HEART"], [33, 3, 1, "", "DEVICE_WATCH_MINUS"], [33, 3, 1, "", "DEVICE_WATCH_OFF"], [33, 3, 1, "", "DEVICE_WATCH_PAUSE"], [33, 3, 1, "", "DEVICE_WATCH_PIN"], [33, 3, 1, "", "DEVICE_WATCH_PLUS"], [33, 3, 1, "", "DEVICE_WATCH_QUESTION"], [33, 3, 1, "", "DEVICE_WATCH_SEARCH"], [33, 3, 1, "", "DEVICE_WATCH_SHARE"], [33, 3, 1, "", "DEVICE_WATCH_STAR"], [33, 3, 1, "", "DEVICE_WATCH_STATS"], [33, 3, 1, "", "DEVICE_WATCH_STATS_2"], [33, 3, 1, "", "DEVICE_WATCH_UP"], [33, 3, 1, "", "DEVICE_WATCH_X"], [33, 3, 1, "", "DIABOLO"], [33, 3, 1, "", "DIABOLO_OFF"], [33, 3, 1, "", "DIABOLO_PLUS"], [33, 3, 1, "", "DIALPAD"], [33, 3, 1, "", "DIALPAD_FILLED"], [33, 3, 1, "", "DIALPAD_OFF"], [33, 3, 1, "", "DIAMOND"], [33, 3, 1, "", "DIAMONDS"], [33, 3, 1, "", "DIAMONDS_FILLED"], [33, 3, 1, "", "DIAMOND_FILLED"], [33, 3, 1, "", "DIAMOND_OFF"], [33, 3, 1, "", "DICE"], [33, 3, 1, "", "DICE_1"], [33, 3, 1, "", "DICE_1_FILLED"], [33, 3, 1, "", "DICE_2"], [33, 3, 1, "", "DICE_2_FILLED"], [33, 3, 1, "", "DICE_3"], [33, 3, 1, "", "DICE_3_FILLED"], [33, 3, 1, "", "DICE_4"], [33, 3, 1, "", "DICE_4_FILLED"], [33, 3, 1, "", "DICE_5"], [33, 3, 1, "", "DICE_5_FILLED"], [33, 3, 1, "", "DICE_6"], [33, 3, 1, "", "DICE_6_FILLED"], [33, 3, 1, "", "DICE_FILLED"], [33, 3, 1, "", "DIMENSIONS"], [33, 3, 1, "", "DIRECTION"], [33, 3, 1, "", "DIRECTIONS"], [33, 3, 1, "", "DIRECTIONS_OFF"], [33, 3, 1, "", "DIRECTION_HORIZONTAL"], [33, 3, 1, "", "DIRECTION_SIGN"], [33, 3, 1, "", "DIRECTION_SIGN_FILLED"], [33, 3, 1, "", "DIRECTION_SIGN_OFF"], [33, 3, 1, "", "DISABLED"], [33, 3, 1, "", "DISABLED_2"], [33, 3, 1, "", "DISABLED_OFF"], [33, 3, 1, "", "DISC"], [33, 3, 1, "", "DISCOUNT"], [33, 3, 1, "", "DISCOUNT_2"], [33, 3, 1, "", "DISCOUNT_2_OFF"], [33, 3, 1, "", "DISCOUNT_CHECK"], [33, 3, 1, "", "DISCOUNT_CHECK_FILLED"], [33, 3, 1, "", "DISCOUNT_OFF"], [33, 3, 1, "", "DISC_GOLF"], [33, 3, 1, "", "DISC_OFF"], [33, 3, 1, "", "DIVIDE"], [33, 3, 1, "", "DNA"], [33, 3, 1, "", "DNA_2"], [33, 3, 1, "", "DNA_2_OFF"], [33, 3, 1, "", "DNA_OFF"], [33, 3, 1, "", "DOG"], [33, 3, 1, "", "DOG_BOWL"], [33, 3, 1, "", "DOOR"], [33, 3, 1, "", "DOOR_ENTER"], [33, 3, 1, "", "DOOR_EXIT"], [33, 3, 1, "", "DOOR_OFF"], [33, 3, 1, "", "DOTS"], [33, 3, 1, "", "DOTS_CIRCLE_HORIZONTAL"], [33, 3, 1, "", "DOTS_DIAGONAL"], [33, 3, 1, "", "DOTS_DIAGONAL_2"], [33, 3, 1, "", "DOTS_VERTICAL"], [33, 3, 1, "", "DOWNLOAD"], [33, 3, 1, "", "DOWNLOAD_OFF"], [33, 3, 1, "", "DRAG_DROP"], [33, 3, 1, "", "DRAG_DROP_2"], [33, 3, 1, "", "DRONE"], [33, 3, 1, "", "DRONE_OFF"], [33, 3, 1, "", "DROPLET"], [33, 3, 1, "", "DROPLET_BOLT"], [33, 3, 1, "", "DROPLET_CANCEL"], [33, 3, 1, "", "DROPLET_CHECK"], [33, 3, 1, "", "DROPLET_CODE"], [33, 3, 1, "", "DROPLET_COG"], [33, 3, 1, "", "DROPLET_DOLLAR"], [33, 3, 1, "", "DROPLET_DOWN"], [33, 3, 1, "", "DROPLET_EXCLAMATION"], [33, 3, 1, "", "DROPLET_FILLED"], [33, 3, 1, "", "DROPLET_FILLED_2"], [33, 3, 1, "", "DROPLET_HALF"], [33, 3, 1, "", "DROPLET_HALF_2"], [33, 3, 1, "", "DROPLET_HALF_FILLED"], [33, 3, 1, "", "DROPLET_HEART"], [33, 3, 1, "", "DROPLET_MINUS"], [33, 3, 1, "", "DROPLET_OFF"], [33, 3, 1, "", "DROPLET_PAUSE"], [33, 3, 1, "", "DROPLET_PIN"], [33, 3, 1, "", "DROPLET_PLUS"], [33, 3, 1, "", "DROPLET_QUESTION"], [33, 3, 1, "", "DROPLET_SEARCH"], [33, 3, 1, "", "DROPLET_SHARE"], [33, 3, 1, "", "DROPLET_STAR"], [33, 3, 1, "", "DROPLET_UP"], [33, 3, 1, "", "DROPLET_X"], [33, 3, 1, "", "DROP_CIRCLE"], [33, 3, 1, "", "DUAL_SCREEN"], [33, 3, 1, "", "EAR"], [33, 3, 1, "", "EAR_OFF"], [33, 3, 1, "", "EASE_IN"], [33, 3, 1, "", "EASE_IN_CONTROL_POINT"], [33, 3, 1, "", "EASE_IN_OUT"], [33, 3, 1, "", "EASE_IN_OUT_CONTROL_POINTS"], [33, 3, 1, "", "EASE_OUT"], [33, 3, 1, "", "EASE_OUT_CONTROL_POINT"], [33, 3, 1, "", "EDIT"], [33, 3, 1, "", "EDIT_CIRCLE"], [33, 3, 1, "", "EDIT_CIRCLE_OFF"], [33, 3, 1, "", "EDIT_OFF"], [33, 3, 1, "", "EGG"], [33, 3, 1, "", "EGGS"], [33, 3, 1, "", "EGG_CRACKED"], [33, 3, 1, "", "EGG_FILLED"], [33, 3, 1, "", "EGG_FRIED"], [33, 3, 1, "", "EGG_OFF"], [33, 3, 1, "", "ELEVATOR"], [33, 3, 1, "", "ELEVATOR_OFF"], [33, 3, 1, "", "EMERGENCY_BED"], [33, 3, 1, "", "EMPATHIZE"], [33, 3, 1, "", "EMPATHIZE_OFF"], [33, 3, 1, "", "EMPHASIS"], [33, 3, 1, "", "ENGINE"], [33, 3, 1, "", "ENGINE_OFF"], [33, 3, 1, "", "EQUAL"], [33, 3, 1, "", "EQUAL_DOUBLE"], [33, 3, 1, "", "EQUAL_NOT"], [33, 3, 1, "", "ERASER"], [33, 3, 1, "", "ERASER_OFF"], [33, 3, 1, "", "ERROR_404"], [33, 3, 1, "", "ERROR_404_OFF"], [33, 3, 1, "", "EXCHANGE"], [33, 3, 1, "", "EXCHANGE_OFF"], [33, 3, 1, "", "EXCLAMATION_CIRCLE"], [33, 3, 1, "", "EXCLAMATION_MARK"], [33, 3, 1, "", "EXCLAMATION_MARK_OFF"], [33, 3, 1, "", "EXPLICIT"], [33, 3, 1, "", "EXPLICIT_OFF"], [33, 3, 1, "", "EXPOSURE"], [33, 3, 1, "", "EXPOSURE_0"], [33, 3, 1, "", "EXPOSURE_MINUS_1"], [33, 3, 1, "", "EXPOSURE_MINUS_2"], [33, 3, 1, "", "EXPOSURE_OFF"], [33, 3, 1, "", "EXPOSURE_PLUS_1"], [33, 3, 1, "", "EXPOSURE_PLUS_2"], [33, 3, 1, "", "EXTERNAL_LINK"], [33, 3, 1, "", "EXTERNAL_LINK_OFF"], [33, 3, 1, "", "EYE"], [33, 3, 1, "", "EYEGLASS"], [33, 3, 1, "", "EYEGLASS_2"], [33, 3, 1, "", "EYEGLASS_OFF"], [33, 3, 1, "", "EYE_CHECK"], [33, 3, 1, "", "EYE_CLOSED"], [33, 3, 1, "", "EYE_COG"], [33, 3, 1, "", "EYE_EDIT"], [33, 3, 1, "", "EYE_EXCLAMATION"], [33, 3, 1, "", "EYE_FILLED"], [33, 3, 1, "", "EYE_HEART"], [33, 3, 1, "", "EYE_OFF"], [33, 3, 1, "", "EYE_TABLE"], [33, 3, 1, "", "EYE_X"], [33, 3, 1, "", "E_PASSPORT"], [33, 3, 1, "", "FACE_ID"], [33, 3, 1, "", "FACE_ID_ERROR"], [33, 3, 1, "", "FACE_MASK"], [33, 3, 1, "", "FACE_MASK_OFF"], [33, 3, 1, "", "FALL"], [33, 3, 1, "", "FEATHER"], [33, 3, 1, "", "FEATHER_OFF"], [33, 3, 1, "", "FENCE"], [33, 3, 1, "", "FENCE_OFF"], [33, 3, 1, "", "FIDGET_SPINNER"], [33, 3, 1, "", "FILE"], [33, 3, 1, "", "FILES"], [33, 3, 1, "", "FILES_OFF"], [33, 3, 1, "", "FILE_3D"], [33, 3, 1, "", "FILE_ALERT"], [33, 3, 1, "", "FILE_ANALYTICS"], [33, 3, 1, "", "FILE_ARROW_LEFT"], [33, 3, 1, "", "FILE_ARROW_RIGHT"], [33, 3, 1, "", "FILE_BARCODE"], [33, 3, 1, "", "FILE_BROKEN"], [33, 3, 1, "", "FILE_CERTIFICATE"], [33, 3, 1, "", "FILE_CHART"], [33, 3, 1, "", "FILE_CHECK"], [33, 3, 1, "", "FILE_CODE"], [33, 3, 1, "", "FILE_CODE_2"], [33, 3, 1, "", "FILE_CV"], [33, 3, 1, "", "FILE_DATABASE"], [33, 3, 1, "", "FILE_DELTA"], [33, 3, 1, "", "FILE_DESCRIPTION"], [33, 3, 1, "", "FILE_DIFF"], [33, 3, 1, "", "FILE_DIGIT"], [33, 3, 1, "", "FILE_DISLIKE"], [33, 3, 1, "", "FILE_DOLLAR"], [33, 3, 1, "", "FILE_DOTS"], [33, 3, 1, "", "FILE_DOWNLOAD"], [33, 3, 1, "", "FILE_EURO"], [33, 3, 1, "", "FILE_EXPORT"], [33, 3, 1, "", "FILE_FILLED"], [33, 3, 1, "", "FILE_FUNCTION"], [33, 3, 1, "", "FILE_HORIZONTAL"], [33, 3, 1, "", "FILE_IMPORT"], [33, 3, 1, "", "FILE_INFINITY"], [33, 3, 1, "", "FILE_INFO"], [33, 3, 1, "", "FILE_INVOICE"], [33, 3, 1, "", "FILE_LAMBDA"], [33, 3, 1, "", "FILE_LIKE"], [33, 3, 1, "", "FILE_MINUS"], [33, 3, 1, "", "FILE_MUSIC"], [33, 3, 1, "", "FILE_OFF"], [33, 3, 1, "", "FILE_ORIENTATION"], [33, 3, 1, "", "FILE_PENCIL"], [33, 3, 1, "", "FILE_PERCENT"], [33, 3, 1, "", "FILE_PHONE"], [33, 3, 1, "", "FILE_PLUS"], [33, 3, 1, "", "FILE_POWER"], [33, 3, 1, "", "FILE_REPORT"], [33, 3, 1, "", "FILE_RSS"], [33, 3, 1, "", "FILE_SCISSORS"], [33, 3, 1, "", "FILE_SEARCH"], [33, 3, 1, "", "FILE_SETTINGS"], [33, 3, 1, "", "FILE_SHREDDER"], [33, 3, 1, "", "FILE_SIGNAL"], [33, 3, 1, "", "FILE_SPREADSHEET"], [33, 3, 1, "", "FILE_STACK"], [33, 3, 1, "", "FILE_STAR"], [33, 3, 1, "", "FILE_SYMLINK"], [33, 3, 1, "", "FILE_TEXT"], [33, 3, 1, "", "FILE_TEXT_AI"], [33, 3, 1, "", "FILE_TIME"], [33, 3, 1, "", "FILE_TYPOGRAPHY"], [33, 3, 1, "", "FILE_UNKNOWN"], [33, 3, 1, "", "FILE_UPLOAD"], [33, 3, 1, "", "FILE_VECTOR"], [33, 3, 1, "", "FILE_X"], [33, 3, 1, "", "FILE_X_FILLED"], [33, 3, 1, "", "FILE_ZIP"], [33, 3, 1, "", "FILTER"], [33, 3, 1, "", "FILTERS"], [33, 3, 1, "", "FILTER_COG"], [33, 3, 1, "", "FILTER_DOLLAR"], [33, 3, 1, "", "FILTER_EDIT"], [33, 3, 1, "", "FILTER_MINUS"], [33, 3, 1, "", "FILTER_OFF"], [33, 3, 1, "", "FILTER_PLUS"], [33, 3, 1, "", "FILTER_STAR"], [33, 3, 1, "", "FILTER_X"], [33, 3, 1, "", "FINGERPRINT"], [33, 3, 1, "", "FINGERPRINT_OFF"], [33, 3, 1, "", "FIRETRUCK"], [33, 3, 1, "", "FIRE_EXTINGUISHER"], [33, 3, 1, "", "FIRE_HYDRANT"], [33, 3, 1, "", "FIRE_HYDRANT_OFF"], [33, 3, 1, "", "FIRST_AID_KIT"], [33, 3, 1, "", "FIRST_AID_KIT_OFF"], [33, 3, 1, "", "FISH"], [33, 3, 1, "", "FISH_BONE"], [33, 3, 1, "", "FISH_CHRISTIANITY"], [33, 3, 1, "", "FISH_HOOK"], [33, 3, 1, "", "FISH_HOOK_OFF"], [33, 3, 1, "", "FISH_OFF"], [33, 3, 1, "", "FLAG"], [33, 3, 1, "", "FLAG_2"], [33, 3, 1, "", "FLAG_2_FILLED"], [33, 3, 1, "", "FLAG_2_OFF"], [33, 3, 1, "", "FLAG_3"], [33, 3, 1, "", "FLAG_3_FILLED"], [33, 3, 1, "", "FLAG_FILLED"], [33, 3, 1, "", "FLAG_OFF"], [33, 3, 1, "", "FLAME"], [33, 3, 1, "", "FLAME_OFF"], [33, 3, 1, "", "FLARE"], [33, 3, 1, "", "FLASK"], [33, 3, 1, "", "FLASK_2"], [33, 3, 1, "", "FLASK_2_OFF"], [33, 3, 1, "", "FLASK_OFF"], [33, 3, 1, "", "FLIP_FLOPS"], [33, 3, 1, "", "FLIP_HORIZONTAL"], [33, 3, 1, "", "FLIP_VERTICAL"], [33, 3, 1, "", "FLOAT_CENTER"], [33, 3, 1, "", "FLOAT_LEFT"], [33, 3, 1, "", "FLOAT_NONE"], [33, 3, 1, "", "FLOAT_RIGHT"], [33, 3, 1, "", "FLOWER"], [33, 3, 1, "", "FLOWER_OFF"], [33, 3, 1, "", "FOCUS"], [33, 3, 1, "", "FOCUS_2"], [33, 3, 1, "", "FOCUS_AUTO"], [33, 3, 1, "", "FOCUS_CENTERED"], [33, 3, 1, "", "FOLD"], [33, 3, 1, "", "FOLDER"], [33, 3, 1, "", "FOLDERS"], [33, 3, 1, "", "FOLDERS_OFF"], [33, 3, 1, "", "FOLDER_BOLT"], [33, 3, 1, "", "FOLDER_CANCEL"], [33, 3, 1, "", "FOLDER_CHECK"], [33, 3, 1, "", "FOLDER_CODE"], [33, 3, 1, "", "FOLDER_COG"], [33, 3, 1, "", "FOLDER_DOLLAR"], [33, 3, 1, "", "FOLDER_DOWN"], [33, 3, 1, "", "FOLDER_EXCLAMATION"], [33, 3, 1, "", "FOLDER_FILLED"], [33, 3, 1, "", "FOLDER_HEART"], [33, 3, 1, "", "FOLDER_MINUS"], [33, 3, 1, "", "FOLDER_OFF"], [33, 3, 1, "", "FOLDER_OPEN"], [33, 3, 1, "", "FOLDER_PAUSE"], [33, 3, 1, "", "FOLDER_PIN"], [33, 3, 1, "", "FOLDER_PLUS"], [33, 3, 1, "", "FOLDER_QUESTION"], [33, 3, 1, "", "FOLDER_SEARCH"], [33, 3, 1, "", "FOLDER_SHARE"], [33, 3, 1, "", "FOLDER_STAR"], [33, 3, 1, "", "FOLDER_SYMLINK"], [33, 3, 1, "", "FOLDER_UP"], [33, 3, 1, "", "FOLDER_X"], [33, 3, 1, "", "FOLD_DOWN"], [33, 3, 1, "", "FOLD_UP"], [33, 3, 1, "", "FORBID"], [33, 3, 1, "", "FORBID_2"], [33, 3, 1, "", "FORKLIFT"], [33, 3, 1, "", "FORMS"], [33, 3, 1, "", "FOUNTAIN"], [33, 3, 1, "", "FOUNTAIN_OFF"], [33, 3, 1, "", "FRAME"], [33, 3, 1, "", "FRAME_OFF"], [33, 3, 1, "", "FREEZE_COLUMN"], [33, 3, 1, "", "FREEZE_ROW"], [33, 3, 1, "", "FREEZE_ROW_COLUMN"], [33, 3, 1, "", "FREE_RIGHTS"], [33, 3, 1, "", "FRIDGE"], [33, 3, 1, "", "FRIDGE_OFF"], [33, 3, 1, "", "FRIENDS"], [33, 3, 1, "", "FRIENDS_OFF"], [33, 3, 1, "", "FRUSTUM"], [33, 3, 1, "", "FRUSTUM_OFF"], [33, 3, 1, "", "FRUSTUM_PLUS"], [33, 3, 1, "", "FUNCTION"], [33, 3, 1, "", "FUNCTION_OFF"], [33, 3, 1, "", "GARDEN_CART"], [33, 3, 1, "", "GARDEN_CART_OFF"], [33, 3, 1, "", "GAS_STATION"], [33, 3, 1, "", "GAS_STATION_OFF"], [33, 3, 1, "", "GAUGE"], [33, 3, 1, "", "GAUGE_OFF"], [33, 3, 1, "", "GAVEL"], [33, 3, 1, "", "GENDER_AGENDER"], [33, 3, 1, "", "GENDER_ANDROGYNE"], [33, 3, 1, "", "GENDER_BIGENDER"], [33, 3, 1, "", "GENDER_DEMIBOY"], [33, 3, 1, "", "GENDER_DEMIGIRL"], [33, 3, 1, "", "GENDER_EPICENE"], [33, 3, 1, "", "GENDER_FEMALE"], [33, 3, 1, "", "GENDER_FEMME"], [33, 3, 1, "", "GENDER_GENDERFLUID"], [33, 3, 1, "", "GENDER_GENDERLESS"], [33, 3, 1, "", "GENDER_GENDERQUEER"], [33, 3, 1, "", "GENDER_HERMAPHRODITE"], [33, 3, 1, "", "GENDER_INTERGENDER"], [33, 3, 1, "", "GENDER_MALE"], [33, 3, 1, "", "GENDER_NEUTROIS"], [33, 3, 1, "", "GENDER_THIRD"], [33, 3, 1, "", "GENDER_TRANSGENDER"], [33, 3, 1, "", "GENDER_TRASVESTI"], [33, 3, 1, "", "GEOMETRY"], [33, 3, 1, "", "GHOST"], [33, 3, 1, "", "GHOST_2"], [33, 3, 1, "", "GHOST_2_FILLED"], [33, 3, 1, "", "GHOST_FILLED"], [33, 3, 1, "", "GHOST_OFF"], [33, 3, 1, "", "GIF"], [33, 3, 1, "", "GIFT"], [33, 3, 1, "", "GIFT_CARD"], [33, 3, 1, "", "GIFT_OFF"], [33, 3, 1, "", "GIT_BRANCH"], [33, 3, 1, "", "GIT_BRANCH_DELETED"], [33, 3, 1, "", "GIT_CHERRY_PICK"], [33, 3, 1, "", "GIT_COMMIT"], [33, 3, 1, "", "GIT_COMPARE"], [33, 3, 1, "", "GIT_FORK"], [33, 3, 1, "", "GIT_MERGE"], [33, 3, 1, "", "GIT_PULL_REQUEST"], [33, 3, 1, "", "GIT_PULL_REQUEST_CLOSED"], [33, 3, 1, "", "GIT_PULL_REQUEST_DRAFT"], [33, 3, 1, "", "GIZMO"], [33, 3, 1, "", "GLASS"], [33, 3, 1, "", "GLASS_FULL"], [33, 3, 1, "", "GLASS_OFF"], [33, 3, 1, "", "GLOBE"], [33, 3, 1, "", "GLOBE_OFF"], [33, 3, 1, "", "GOLF"], [33, 3, 1, "", "GOLF_OFF"], [33, 3, 1, "", "GO_GAME"], [33, 3, 1, "", "GPS"], [33, 3, 1, "", "GRADIENTER"], [33, 3, 1, "", "GRAIN"], [33, 3, 1, "", "GRAPH"], [33, 3, 1, "", "GRAPH_OFF"], [33, 3, 1, "", "GRAVE"], [33, 3, 1, "", "GRAVE_2"], [33, 3, 1, "", "GRID_DOTS"], [33, 3, 1, "", "GRID_PATTERN"], [33, 3, 1, "", "GRILL"], [33, 3, 1, "", "GRILL_FORK"], [33, 3, 1, "", "GRILL_OFF"], [33, 3, 1, "", "GRILL_SPATULA"], [33, 3, 1, "", "GRIP_HORIZONTAL"], [33, 3, 1, "", "GRIP_VERTICAL"], [33, 3, 1, "", "GROWTH"], [33, 3, 1, "", "GUITAR_PICK"], [33, 3, 1, "", "GUITAR_PICK_FILLED"], [33, 3, 1, "", "HAMMER"], [33, 3, 1, "", "HAMMER_OFF"], [33, 3, 1, "", "HAND_CLICK"], [33, 3, 1, "", "HAND_FINGER"], [33, 3, 1, "", "HAND_FINGER_OFF"], [33, 3, 1, "", "HAND_GRAB"], [33, 3, 1, "", "HAND_LITTLE_FINGER"], [33, 3, 1, "", "HAND_MIDDLE_FINGER"], [33, 3, 1, "", "HAND_MOVE"], [33, 3, 1, "", "HAND_OFF"], [33, 3, 1, "", "HAND_RING_FINGER"], [33, 3, 1, "", "HAND_ROCK"], [33, 3, 1, "", "HAND_SANITIZER"], [33, 3, 1, "", "HAND_STOP"], [33, 3, 1, "", "HAND_THREE_FINGERS"], [33, 3, 1, "", "HAND_TWO_FINGERS"], [33, 3, 1, "", "HANGER"], [33, 3, 1, "", "HANGER_2"], [33, 3, 1, "", "HANGER_OFF"], [33, 3, 1, "", "HASH"], [33, 3, 1, "", "HAZE"], [33, 3, 1, "", "HAZE_MOON"], [33, 3, 1, "", "HDR"], [33, 3, 1, "", "HEADING"], [33, 3, 1, "", "HEADING_OFF"], [33, 3, 1, "", "HEADPHONES"], [33, 3, 1, "", "HEADPHONES_FILLED"], [33, 3, 1, "", "HEADPHONES_OFF"], [33, 3, 1, "", "HEADSET"], [33, 3, 1, "", "HEADSET_OFF"], [33, 3, 1, "", "HEALTH_RECOGNITION"], [33, 3, 1, "", "HEART"], [33, 3, 1, "", "HEARTBEAT"], [33, 3, 1, "", "HEARTS"], [33, 3, 1, "", "HEARTS_OFF"], [33, 3, 1, "", "HEART_BROKEN"], [33, 3, 1, "", "HEART_FILLED"], [33, 3, 1, "", "HEART_HANDSHAKE"], [33, 3, 1, "", "HEART_MINUS"], [33, 3, 1, "", "HEART_OFF"], [33, 3, 1, "", "HEART_PLUS"], [33, 3, 1, "", "HEART_RATE_MONITOR"], [33, 3, 1, "", "HELICOPTER"], [33, 3, 1, "", "HELICOPTER_LANDING"], [33, 3, 1, "", "HELMET"], [33, 3, 1, "", "HELMET_OFF"], [33, 3, 1, "", "HELP"], [33, 3, 1, "", "HELP_CIRCLE"], [33, 3, 1, "", "HELP_CIRCLE_FILLED"], [33, 3, 1, "", "HELP_HEXAGON"], [33, 3, 1, "", "HELP_HEXAGON_FILLED"], [33, 3, 1, "", "HELP_OCTAGON"], [33, 3, 1, "", "HELP_OCTAGON_FILLED"], [33, 3, 1, "", "HELP_OFF"], [33, 3, 1, "", "HELP_SMALL"], [33, 3, 1, "", "HELP_SQUARE"], [33, 3, 1, "", "HELP_SQUARE_FILLED"], [33, 3, 1, "", "HELP_SQUARE_ROUNDED"], [33, 3, 1, "", "HELP_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "HELP_TRIANGLE"], [33, 3, 1, "", "HELP_TRIANGLE_FILLED"], [33, 3, 1, "", "HEMISPHERE"], [33, 3, 1, "", "HEMISPHERE_OFF"], [33, 3, 1, "", "HEMISPHERE_PLUS"], [33, 3, 1, "", "HEXAGON"], [33, 3, 1, "", "HEXAGONAL_PRISM"], [33, 3, 1, "", "HEXAGONAL_PRISM_OFF"], [33, 3, 1, "", "HEXAGONAL_PRISM_PLUS"], [33, 3, 1, "", "HEXAGONAL_PYRAMID"], [33, 3, 1, "", "HEXAGONAL_PYRAMID_OFF"], [33, 3, 1, "", "HEXAGONAL_PYRAMID_PLUS"], [33, 3, 1, "", "HEXAGONS"], [33, 3, 1, "", "HEXAGONS_OFF"], [33, 3, 1, "", "HEXAGON_0_FILLED"], [33, 3, 1, "", "HEXAGON_1_FILLED"], [33, 3, 1, "", "HEXAGON_2_FILLED"], [33, 3, 1, "", "HEXAGON_3D"], [33, 3, 1, "", "HEXAGON_3_FILLED"], [33, 3, 1, "", "HEXAGON_4_FILLED"], [33, 3, 1, "", "HEXAGON_5_FILLED"], [33, 3, 1, "", "HEXAGON_6_FILLED"], [33, 3, 1, "", "HEXAGON_7_FILLED"], [33, 3, 1, "", "HEXAGON_8_FILLED"], [33, 3, 1, "", "HEXAGON_9_FILLED"], [33, 3, 1, "", "HEXAGON_FILLED"], [33, 3, 1, "", "HEXAGON_LETTER_A"], [33, 3, 1, "", "HEXAGON_LETTER_B"], [33, 3, 1, "", "HEXAGON_LETTER_C"], [33, 3, 1, "", "HEXAGON_LETTER_D"], [33, 3, 1, "", "HEXAGON_LETTER_E"], [33, 3, 1, "", "HEXAGON_LETTER_F"], [33, 3, 1, "", "HEXAGON_LETTER_G"], [33, 3, 1, "", "HEXAGON_LETTER_H"], [33, 3, 1, "", "HEXAGON_LETTER_I"], [33, 3, 1, "", "HEXAGON_LETTER_J"], [33, 3, 1, "", "HEXAGON_LETTER_K"], [33, 3, 1, "", "HEXAGON_LETTER_L"], [33, 3, 1, "", "HEXAGON_LETTER_M"], [33, 3, 1, "", "HEXAGON_LETTER_N"], [33, 3, 1, "", "HEXAGON_LETTER_O"], [33, 3, 1, "", "HEXAGON_LETTER_P"], [33, 3, 1, "", "HEXAGON_LETTER_Q"], [33, 3, 1, "", "HEXAGON_LETTER_R"], [33, 3, 1, "", "HEXAGON_LETTER_S"], [33, 3, 1, "", "HEXAGON_LETTER_T"], [33, 3, 1, "", "HEXAGON_LETTER_U"], [33, 3, 1, "", "HEXAGON_LETTER_V"], [33, 3, 1, "", "HEXAGON_LETTER_W"], [33, 3, 1, "", "HEXAGON_LETTER_X"], [33, 3, 1, "", "HEXAGON_LETTER_Y"], [33, 3, 1, "", "HEXAGON_LETTER_Z"], [33, 3, 1, "", "HEXAGON_NUMBER_0"], [33, 3, 1, "", "HEXAGON_NUMBER_1"], [33, 3, 1, "", "HEXAGON_NUMBER_2"], [33, 3, 1, "", "HEXAGON_NUMBER_3"], [33, 3, 1, "", "HEXAGON_NUMBER_4"], [33, 3, 1, "", "HEXAGON_NUMBER_5"], [33, 3, 1, "", "HEXAGON_NUMBER_6"], [33, 3, 1, "", "HEXAGON_NUMBER_7"], [33, 3, 1, "", "HEXAGON_NUMBER_8"], [33, 3, 1, "", "HEXAGON_NUMBER_9"], [33, 3, 1, "", "HEXAGON_OFF"], [33, 3, 1, "", "HIERARCHY"], [33, 3, 1, "", "HIERARCHY_2"], [33, 3, 1, "", "HIERARCHY_3"], [33, 3, 1, "", "HIERARCHY_OFF"], [33, 3, 1, "", "HIGHLIGHT"], [33, 3, 1, "", "HIGHLIGHT_OFF"], [33, 3, 1, "", "HISTORY"], [33, 3, 1, "", "HISTORY_OFF"], [33, 3, 1, "", "HISTORY_TOGGLE"], [33, 3, 1, "", "HOME"], [33, 3, 1, "", "HOME_2"], [33, 3, 1, "", "HOME_BOLT"], [33, 3, 1, "", "HOME_CANCEL"], [33, 3, 1, "", "HOME_CHECK"], [33, 3, 1, "", "HOME_COG"], [33, 3, 1, "", "HOME_DOLLAR"], [33, 3, 1, "", "HOME_DOT"], [33, 3, 1, "", "HOME_DOWN"], [33, 3, 1, "", "HOME_ECO"], [33, 3, 1, "", "HOME_EDIT"], [33, 3, 1, "", "HOME_EXCLAMATION"], [33, 3, 1, "", "HOME_HAND"], [33, 3, 1, "", "HOME_HEART"], [33, 3, 1, "", "HOME_INFINITY"], [33, 3, 1, "", "HOME_LINK"], [33, 3, 1, "", "HOME_MINUS"], [33, 3, 1, "", "HOME_MOVE"], [33, 3, 1, "", "HOME_OFF"], [33, 3, 1, "", "HOME_PLUS"], [33, 3, 1, "", "HOME_QUESTION"], [33, 3, 1, "", "HOME_RIBBON"], [33, 3, 1, "", "HOME_SEARCH"], [33, 3, 1, "", "HOME_SHARE"], [33, 3, 1, "", "HOME_SHIELD"], [33, 3, 1, "", "HOME_SIGNAL"], [33, 3, 1, "", "HOME_STAR"], [33, 3, 1, "", "HOME_STATS"], [33, 3, 1, "", "HOME_UP"], [33, 3, 1, "", "HOME_X"], [33, 3, 1, "", "HORSE_TOY"], [33, 3, 1, "", "HOTEL_SERVICE"], [33, 3, 1, "", "HOURGLASS"], [33, 3, 1, "", "HOURGLASS_EMPTY"], [33, 3, 1, "", "HOURGLASS_FILLED"], [33, 3, 1, "", "HOURGLASS_HIGH"], [33, 3, 1, "", "HOURGLASS_LOW"], [33, 3, 1, "", "HOURGLASS_OFF"], [33, 3, 1, "", "HTML"], [33, 3, 1, "", "HTTP_CONNECT"], [33, 3, 1, "", "HTTP_DELETE"], [33, 3, 1, "", "HTTP_GET"], [33, 3, 1, "", "HTTP_HEAD"], [33, 3, 1, "", "HTTP_OPTIONS"], [33, 3, 1, "", "HTTP_PATCH"], [33, 3, 1, "", "HTTP_POST"], [33, 3, 1, "", "HTTP_PUT"], [33, 3, 1, "", "HTTP_QUE"], [33, 3, 1, "", "HTTP_TRACE"], [33, 3, 1, "", "H_1"], [33, 3, 1, "", "H_2"], [33, 3, 1, "", "H_3"], [33, 3, 1, "", "H_4"], [33, 3, 1, "", "H_5"], [33, 3, 1, "", "H_6"], [33, 3, 1, "", "ICE_CREAM"], [33, 3, 1, "", "ICE_CREAM_2"], [33, 3, 1, "", "ICE_CREAM_OFF"], [33, 3, 1, "", "ICE_SKATING"], [33, 3, 1, "", "ICONS"], [33, 3, 1, "", "ICONS_OFF"], [33, 3, 1, "", "ICON_123"], [33, 3, 1, "", "ICON_24_HOURS"], [33, 3, 1, "", "ICON_2FA"], [33, 3, 1, "", "ICON_360"], [33, 3, 1, "", "ICON_360_VIEW"], [33, 3, 1, "", "ICON_3D_CUBE_SPHERE"], [33, 3, 1, "", "ICON_3D_CUBE_SPHERE_OFF"], [33, 3, 1, "", "ICON_3D_ROTATE"], [33, 3, 1, "", "ID"], [33, 3, 1, "", "ID_BADGE"], [33, 3, 1, "", "ID_BADGE_2"], [33, 3, 1, "", "ID_BADGE_OFF"], [33, 3, 1, "", "ID_OFF"], [33, 3, 1, "", "INBOX"], [33, 3, 1, "", "INBOX_OFF"], [33, 3, 1, "", "INDENT_DECREASE"], [33, 3, 1, "", "INDENT_INCREASE"], [33, 3, 1, "", "INFINITY"], [33, 3, 1, "", "INFINITY_OFF"], [33, 3, 1, "", "INFO_CIRCLE"], [33, 3, 1, "", "INFO_CIRCLE_FILLED"], [33, 3, 1, "", "INFO_HEXAGON"], [33, 3, 1, "", "INFO_HEXAGON_FILLED"], [33, 3, 1, "", "INFO_OCTAGON"], [33, 3, 1, "", "INFO_OCTAGON_FILLED"], [33, 3, 1, "", "INFO_SMALL"], [33, 3, 1, "", "INFO_SQUARE"], [33, 3, 1, "", "INFO_SQUARE_FILLED"], [33, 3, 1, "", "INFO_SQUARE_ROUNDED"], [33, 3, 1, "", "INFO_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "INFO_TRIANGLE"], [33, 3, 1, "", "INFO_TRIANGLE_FILLED"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_FILLED"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_LEFT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT"], [33, 3, 1, "", "INNER_SHADOW_BOTTOM_RIGHT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_LEFT"], [33, 3, 1, "", "INNER_SHADOW_LEFT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_RIGHT"], [33, 3, 1, "", "INNER_SHADOW_RIGHT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_TOP"], [33, 3, 1, "", "INNER_SHADOW_TOP_FILLED"], [33, 3, 1, "", "INNER_SHADOW_TOP_LEFT"], [33, 3, 1, "", "INNER_SHADOW_TOP_LEFT_FILLED"], [33, 3, 1, "", "INNER_SHADOW_TOP_RIGHT"], [33, 3, 1, "", "INNER_SHADOW_TOP_RIGHT_FILLED"], [33, 3, 1, "", "INPUT_SEARCH"], [33, 3, 1, "", "IRONING"], [33, 3, 1, "", "IRONING_1"], [33, 3, 1, "", "IRONING_2"], [33, 3, 1, "", "IRONING_3"], [33, 3, 1, "", "IRONING_OFF"], [33, 3, 1, "", "IRONING_STEAM"], [33, 3, 1, "", "IRONING_STEAM_OFF"], [33, 3, 1, "", "IRREGULAR_POLYHEDRON"], [33, 3, 1, "", "IRREGULAR_POLYHEDRON_OFF"], [33, 3, 1, "", "IRREGULAR_POLYHEDRON_PLUS"], [33, 3, 1, "", "ITALIC"], [33, 3, 1, "", "JACKET"], [33, 3, 1, "", "JETPACK"], [33, 3, 1, "", "JEWISH_STAR"], [33, 3, 1, "", "JEWISH_STAR_FILLED"], [33, 3, 1, "", "JPG"], [33, 3, 1, "", "JSON"], [33, 3, 1, "", "JUMP_ROPE"], [33, 3, 1, "", "KARATE"], [33, 3, 1, "", "KAYAK"], [33, 3, 1, "", "KERING"], [33, 3, 1, "", "KEY"], [33, 3, 1, "", "KEYBOARD"], [33, 3, 1, "", "KEYBOARD_HIDE"], [33, 3, 1, "", "KEYBOARD_OFF"], [33, 3, 1, "", "KEYBOARD_SHOW"], [33, 3, 1, "", "KEYFRAME"], [33, 3, 1, "", "KEYFRAMES"], [33, 3, 1, "", "KEYFRAME_ALIGN_CENTER"], [33, 3, 1, "", "KEYFRAME_ALIGN_HORIZONTAL"], [33, 3, 1, "", "KEYFRAME_ALIGN_VERTICAL"], [33, 3, 1, "", "KEY_OFF"], [33, 3, 1, "", "LADDER"], [33, 3, 1, "", "LADDER_OFF"], [33, 3, 1, "", "LAMBDA"], [33, 3, 1, "", "LAMP"], [33, 3, 1, "", "LAMP_2"], [33, 3, 1, "", "LAMP_OFF"], [33, 3, 1, "", "LANE"], [33, 3, 1, "", "LANGUAGE"], [33, 3, 1, "", "LANGUAGE_HIRAGANA"], [33, 3, 1, "", "LANGUAGE_KATAKANA"], [33, 3, 1, "", "LANGUAGE_OFF"], [33, 3, 1, "", "LASSO"], [33, 3, 1, "", "LASSO_OFF"], [33, 3, 1, "", "LASSO_POLYGON"], [33, 3, 1, "", "LAYERS_DIFFERENCE"], [33, 3, 1, "", "LAYERS_INTERSECT"], [33, 3, 1, "", "LAYERS_INTERSECT_2"], [33, 3, 1, "", "LAYERS_LINKED"], [33, 3, 1, "", "LAYERS_OFF"], [33, 3, 1, "", "LAYERS_SUBTRACT"], [33, 3, 1, "", "LAYERS_UNION"], [33, 3, 1, "", "LAYOUT"], [33, 3, 1, "", "LAYOUT_2"], [33, 3, 1, "", "LAYOUT_ALIGN_BOTTOM"], [33, 3, 1, "", "LAYOUT_ALIGN_CENTER"], [33, 3, 1, "", "LAYOUT_ALIGN_LEFT"], [33, 3, 1, "", "LAYOUT_ALIGN_MIDDLE"], [33, 3, 1, "", "LAYOUT_ALIGN_RIGHT"], [33, 3, 1, "", "LAYOUT_ALIGN_TOP"], [33, 3, 1, "", "LAYOUT_BOARD"], [33, 3, 1, "", "LAYOUT_BOARD_SPLIT"], [33, 3, 1, "", "LAYOUT_BOTTOMBAR"], [33, 3, 1, "", "LAYOUT_BOTTOMBAR_COLLAPSE"], [33, 3, 1, "", "LAYOUT_BOTTOMBAR_EXPAND"], [33, 3, 1, "", "LAYOUT_CARDS"], [33, 3, 1, "", "LAYOUT_COLLAGE"], [33, 3, 1, "", "LAYOUT_COLUMNS"], [33, 3, 1, "", "LAYOUT_DASHBOARD"], [33, 3, 1, "", "LAYOUT_DISTRIBUTE_HORIZONTAL"], [33, 3, 1, "", "LAYOUT_DISTRIBUTE_VERTICAL"], [33, 3, 1, "", "LAYOUT_GRID"], [33, 3, 1, "", "LAYOUT_GRID_ADD"], [33, 3, 1, "", "LAYOUT_GRID_REMOVE"], [33, 3, 1, "", "LAYOUT_KANBAN"], [33, 3, 1, "", "LAYOUT_LIST"], [33, 3, 1, "", "LAYOUT_NAVBAR"], [33, 3, 1, "", "LAYOUT_NAVBAR_COLLAPSE"], [33, 3, 1, "", "LAYOUT_NAVBAR_EXPAND"], [33, 3, 1, "", "LAYOUT_OFF"], [33, 3, 1, "", "LAYOUT_ROWS"], [33, 3, 1, "", "LAYOUT_SIDEBAR"], [33, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_COLLAPSE"], [33, 3, 1, "", "LAYOUT_SIDEBAR_LEFT_EXPAND"], [33, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT"], [33, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_COLLAPSE"], [33, 3, 1, "", "LAYOUT_SIDEBAR_RIGHT_EXPAND"], [33, 3, 1, "", "LEAF"], [33, 3, 1, "", "LEAF_OFF"], [33, 3, 1, "", "LEGO"], [33, 3, 1, "", "LEGO_OFF"], [33, 3, 1, "", "LEMON"], [33, 3, 1, "", "LEMON_2"], [33, 3, 1, "", "LETTER_A"], [33, 3, 1, "", "LETTER_B"], [33, 3, 1, "", "LETTER_C"], [33, 3, 1, "", "LETTER_CASE"], [33, 3, 1, "", "LETTER_CASE_LOWER"], [33, 3, 1, "", "LETTER_CASE_TOGGLE"], [33, 3, 1, "", "LETTER_CASE_UPPER"], [33, 3, 1, "", "LETTER_D"], [33, 3, 1, "", "LETTER_E"], [33, 3, 1, "", "LETTER_F"], [33, 3, 1, "", "LETTER_G"], [33, 3, 1, "", "LETTER_H"], [33, 3, 1, "", "LETTER_I"], [33, 3, 1, "", "LETTER_J"], [33, 3, 1, "", "LETTER_K"], [33, 3, 1, "", "LETTER_L"], [33, 3, 1, "", "LETTER_M"], [33, 3, 1, "", "LETTER_N"], [33, 3, 1, "", "LETTER_O"], [33, 3, 1, "", "LETTER_P"], [33, 3, 1, "", "LETTER_Q"], [33, 3, 1, "", "LETTER_R"], [33, 3, 1, "", "LETTER_S"], [33, 3, 1, "", "LETTER_SPACING"], [33, 3, 1, "", "LETTER_T"], [33, 3, 1, "", "LETTER_U"], [33, 3, 1, "", "LETTER_V"], [33, 3, 1, "", "LETTER_W"], [33, 3, 1, "", "LETTER_X"], [33, 3, 1, "", "LETTER_Y"], [33, 3, 1, "", "LETTER_Z"], [33, 3, 1, "", "LICENSE"], [33, 3, 1, "", "LICENSE_OFF"], [33, 3, 1, "", "LIFEBUOY"], [33, 3, 1, "", "LIFEBUOY_OFF"], [33, 3, 1, "", "LIGHTER"], [33, 3, 1, "", "LINE"], [33, 3, 1, "", "LINE_DASHED"], [33, 3, 1, "", "LINE_DOTTED"], [33, 3, 1, "", "LINE_HEIGHT"], [33, 3, 1, "", "LINK"], [33, 3, 1, "", "LINK_OFF"], [33, 3, 1, "", "LIST"], [33, 3, 1, "", "LIST_CHECK"], [33, 3, 1, "", "LIST_DETAILS"], [33, 3, 1, "", "LIST_NUMBERS"], [33, 3, 1, "", "LIST_SEARCH"], [33, 3, 1, "", "LIST_TREE"], [33, 3, 1, "", "LIVE_PHOTO"], [33, 3, 1, "", "LIVE_PHOTO_OFF"], [33, 3, 1, "", "LIVE_VIEW"], [33, 3, 1, "", "LOADER"], [33, 3, 1, "", "LOADER_2"], [33, 3, 1, "", "LOADER_3"], [33, 3, 1, "", "LOADER_QUARTER"], [33, 3, 1, "", "LOAD_BALANCER"], [33, 3, 1, "", "LOCATION"], [33, 3, 1, "", "LOCATION_BROKEN"], [33, 3, 1, "", "LOCATION_FILLED"], [33, 3, 1, "", "LOCATION_OFF"], [33, 3, 1, "", "LOCK"], [33, 3, 1, "", "LOCK_ACCESS"], [33, 3, 1, "", "LOCK_ACCESS_OFF"], [33, 3, 1, "", "LOCK_BOLT"], [33, 3, 1, "", "LOCK_CANCEL"], [33, 3, 1, "", "LOCK_CHECK"], [33, 3, 1, "", "LOCK_CODE"], [33, 3, 1, "", "LOCK_COG"], [33, 3, 1, "", "LOCK_DOLLAR"], [33, 3, 1, "", "LOCK_DOWN"], [33, 3, 1, "", "LOCK_EXCLAMATION"], [33, 3, 1, "", "LOCK_HEART"], [33, 3, 1, "", "LOCK_MINUS"], [33, 3, 1, "", "LOCK_OFF"], [33, 3, 1, "", "LOCK_OPEN"], [33, 3, 1, "", "LOCK_OPEN_OFF"], [33, 3, 1, "", "LOCK_PAUSE"], [33, 3, 1, "", "LOCK_PIN"], [33, 3, 1, "", "LOCK_PLUS"], [33, 3, 1, "", "LOCK_QUESTION"], [33, 3, 1, "", "LOCK_SEARCH"], [33, 3, 1, "", "LOCK_SHARE"], [33, 3, 1, "", "LOCK_SQUARE"], [33, 3, 1, "", "LOCK_SQUARE_ROUNDED"], [33, 3, 1, "", "LOCK_SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "LOCK_STAR"], [33, 3, 1, "", "LOCK_UP"], [33, 3, 1, "", "LOCK_X"], [33, 3, 1, "", "LOGIC_AND"], [33, 3, 1, "", "LOGIC_BUFFER"], [33, 3, 1, "", "LOGIC_NAND"], [33, 3, 1, "", "LOGIC_NOR"], [33, 3, 1, "", "LOGIC_NOT"], [33, 3, 1, "", "LOGIC_OR"], [33, 3, 1, "", "LOGIC_XNOR"], [33, 3, 1, "", "LOGIC_XOR"], [33, 3, 1, "", "LOGIN"], [33, 3, 1, "", "LOGOUT"], [33, 3, 1, "", "LOGOUT_2"], [33, 3, 1, "", "LOLLIPOP"], [33, 3, 1, "", "LOLLIPOP_OFF"], [33, 3, 1, "", "LUGGAGE"], [33, 3, 1, "", "LUGGAGE_OFF"], [33, 3, 1, "", "LUNGS"], [33, 3, 1, "", "LUNGS_OFF"], [33, 3, 1, "", "MACRO"], [33, 3, 1, "", "MACRO_OFF"], [33, 3, 1, "", "MAGNET"], [33, 3, 1, "", "MAGNET_OFF"], [33, 3, 1, "", "MAIL"], [33, 3, 1, "", "MAILBOX"], [33, 3, 1, "", "MAILBOX_OFF"], [33, 3, 1, "", "MAIL_AI"], [33, 3, 1, "", "MAIL_BOLT"], [33, 3, 1, "", "MAIL_CANCEL"], [33, 3, 1, "", "MAIL_CHECK"], [33, 3, 1, "", "MAIL_CODE"], [33, 3, 1, "", "MAIL_COG"], [33, 3, 1, "", "MAIL_DOLLAR"], [33, 3, 1, "", "MAIL_DOWN"], [33, 3, 1, "", "MAIL_EXCLAMATION"], [33, 3, 1, "", "MAIL_FAST"], [33, 3, 1, "", "MAIL_FILLED"], [33, 3, 1, "", "MAIL_FORWARD"], [33, 3, 1, "", "MAIL_HEART"], [33, 3, 1, "", "MAIL_MINUS"], [33, 3, 1, "", "MAIL_OFF"], [33, 3, 1, "", "MAIL_OPENED"], [33, 3, 1, "", "MAIL_OPENED_FILLED"], [33, 3, 1, "", "MAIL_PAUSE"], [33, 3, 1, "", "MAIL_PIN"], [33, 3, 1, "", "MAIL_PLUS"], [33, 3, 1, "", "MAIL_QUESTION"], [33, 3, 1, "", "MAIL_SEARCH"], [33, 3, 1, "", "MAIL_SHARE"], [33, 3, 1, "", "MAIL_STAR"], [33, 3, 1, "", "MAIL_UP"], [33, 3, 1, "", "MAIL_X"], [33, 3, 1, "", "MAN"], [33, 3, 1, "", "MANUAL_GEARBOX"], [33, 3, 1, "", "MAP"], [33, 3, 1, "", "MAP_2"], [33, 3, 1, "", "MAP_OFF"], [33, 3, 1, "", "MAP_PIN"], [33, 3, 1, "", "MAP_PINS"], [33, 3, 1, "", "MAP_PIN_BOLT"], [33, 3, 1, "", "MAP_PIN_CANCEL"], [33, 3, 1, "", "MAP_PIN_CHECK"], [33, 3, 1, "", "MAP_PIN_CODE"], [33, 3, 1, "", "MAP_PIN_COG"], [33, 3, 1, "", "MAP_PIN_DOLLAR"], [33, 3, 1, "", "MAP_PIN_DOWN"], [33, 3, 1, "", "MAP_PIN_EXCLAMATION"], [33, 3, 1, "", "MAP_PIN_FILLED"], [33, 3, 1, "", "MAP_PIN_HEART"], [33, 3, 1, "", "MAP_PIN_MINUS"], [33, 3, 1, "", "MAP_PIN_OFF"], [33, 3, 1, "", "MAP_PIN_PAUSE"], [33, 3, 1, "", "MAP_PIN_PIN"], [33, 3, 1, "", "MAP_PIN_PLUS"], [33, 3, 1, "", "MAP_PIN_QUESTION"], [33, 3, 1, "", "MAP_PIN_SEARCH"], [33, 3, 1, "", "MAP_PIN_SHARE"], [33, 3, 1, "", "MAP_PIN_STAR"], [33, 3, 1, "", "MAP_PIN_UP"], [33, 3, 1, "", "MAP_PIN_X"], [33, 3, 1, "", "MAP_SEARCH"], [33, 3, 1, "", "MARKDOWN"], [33, 3, 1, "", "MARKDOWN_OFF"], [33, 3, 1, "", "MARQUEE"], [33, 3, 1, "", "MARQUEE_2"], [33, 3, 1, "", "MARQUEE_OFF"], [33, 3, 1, "", "MARS"], [33, 3, 1, "", "MASK"], [33, 3, 1, "", "MASKS_THEATER"], [33, 3, 1, "", "MASKS_THEATER_OFF"], [33, 3, 1, "", "MASK_OFF"], [33, 3, 1, "", "MASSAGE"], [33, 3, 1, "", "MATCHSTICK"], [33, 3, 1, "", "MATH"], [33, 3, 1, "", "MATH_1_DIVIDE_2"], [33, 3, 1, "", "MATH_1_DIVIDE_3"], [33, 3, 1, "", "MATH_AVG"], [33, 3, 1, "", "MATH_EQUAL_GREATER"], [33, 3, 1, "", "MATH_EQUAL_LOWER"], [33, 3, 1, "", "MATH_FUNCTION"], [33, 3, 1, "", "MATH_FUNCTION_OFF"], [33, 3, 1, "", "MATH_FUNCTION_Y"], [33, 3, 1, "", "MATH_GREATER"], [33, 3, 1, "", "MATH_INTEGRAL"], [33, 3, 1, "", "MATH_INTEGRALS"], [33, 3, 1, "", "MATH_INTEGRAL_X"], [33, 3, 1, "", "MATH_LOWER"], [33, 3, 1, "", "MATH_MAX"], [33, 3, 1, "", "MATH_MIN"], [33, 3, 1, "", "MATH_NOT"], [33, 3, 1, "", "MATH_OFF"], [33, 3, 1, "", "MATH_PI"], [33, 3, 1, "", "MATH_PI_DIVIDE_2"], [33, 3, 1, "", "MATH_SYMBOLS"], [33, 3, 1, "", "MATH_XY"], [33, 3, 1, "", "MATH_X_DIVIDE_2"], [33, 3, 1, "", "MATH_X_DIVIDE_Y"], [33, 3, 1, "", "MATH_X_DIVIDE_Y_2"], [33, 3, 1, "", "MATH_X_MINUS_X"], [33, 3, 1, "", "MATH_X_MINUS_Y"], [33, 3, 1, "", "MATH_X_PLUS_X"], [33, 3, 1, "", "MATH_X_PLUS_Y"], [33, 3, 1, "", "MATH_Y_MINUS_Y"], [33, 3, 1, "", "MATH_Y_PLUS_Y"], [33, 3, 1, "", "MAXIMIZE"], [33, 3, 1, "", "MAXIMIZE_OFF"], [33, 3, 1, "", "MEAT"], [33, 3, 1, "", "MEAT_OFF"], [33, 3, 1, "", "MEDAL"], [33, 3, 1, "", "MEDAL_2"], [33, 3, 1, "", "MEDICAL_CROSS"], [33, 3, 1, "", "MEDICAL_CROSS_CIRCLE"], [33, 3, 1, "", "MEDICAL_CROSS_FILLED"], [33, 3, 1, "", "MEDICAL_CROSS_OFF"], [33, 3, 1, "", "MEDICINE_SYRUP"], [33, 3, 1, "", "MEEPLE"], [33, 3, 1, "", "MENORAH"], [33, 3, 1, "", "MENU"], [33, 3, 1, "", "MENU_2"], [33, 3, 1, "", "MENU_DEEP"], [33, 3, 1, "", "MENU_ORDER"], [33, 3, 1, "", "MESSAGE"], [33, 3, 1, "", "MESSAGES"], [33, 3, 1, "", "MESSAGES_OFF"], [33, 3, 1, "", "MESSAGE_2"], [33, 3, 1, "", "MESSAGE_2_BOLT"], [33, 3, 1, "", "MESSAGE_2_CANCEL"], [33, 3, 1, "", "MESSAGE_2_CHECK"], [33, 3, 1, "", "MESSAGE_2_CODE"], [33, 3, 1, "", "MESSAGE_2_COG"], [33, 3, 1, "", "MESSAGE_2_DOLLAR"], [33, 3, 1, "", "MESSAGE_2_DOWN"], [33, 3, 1, "", "MESSAGE_2_EXCLAMATION"], [33, 3, 1, "", "MESSAGE_2_HEART"], [33, 3, 1, "", "MESSAGE_2_MINUS"], [33, 3, 1, "", "MESSAGE_2_OFF"], [33, 3, 1, "", "MESSAGE_2_PAUSE"], [33, 3, 1, "", "MESSAGE_2_PIN"], [33, 3, 1, "", "MESSAGE_2_PLUS"], [33, 3, 1, "", "MESSAGE_2_QUESTION"], [33, 3, 1, "", "MESSAGE_2_SEARCH"], [33, 3, 1, "", "MESSAGE_2_SHARE"], [33, 3, 1, "", "MESSAGE_2_STAR"], [33, 3, 1, "", "MESSAGE_2_UP"], [33, 3, 1, "", "MESSAGE_2_X"], [33, 3, 1, "", "MESSAGE_BOLT"], [33, 3, 1, "", "MESSAGE_CANCEL"], [33, 3, 1, "", "MESSAGE_CHATBOT"], [33, 3, 1, "", "MESSAGE_CHECK"], [33, 3, 1, "", "MESSAGE_CIRCLE"], [33, 3, 1, "", "MESSAGE_CIRCLE_2"], [33, 3, 1, "", "MESSAGE_CIRCLE_2_FILLED"], [33, 3, 1, "", "MESSAGE_CIRCLE_BOLT"], [33, 3, 1, "", "MESSAGE_CIRCLE_CANCEL"], [33, 3, 1, "", "MESSAGE_CIRCLE_CHECK"], [33, 3, 1, "", "MESSAGE_CIRCLE_CODE"], [33, 3, 1, "", "MESSAGE_CIRCLE_COG"], [33, 3, 1, "", "MESSAGE_CIRCLE_DOLLAR"], [33, 3, 1, "", "MESSAGE_CIRCLE_DOWN"], [33, 3, 1, "", "MESSAGE_CIRCLE_EXCLAMATION"], [33, 3, 1, "", "MESSAGE_CIRCLE_HEART"], [33, 3, 1, "", "MESSAGE_CIRCLE_MINUS"], [33, 3, 1, "", "MESSAGE_CIRCLE_OFF"], [33, 3, 1, "", "MESSAGE_CIRCLE_PAUSE"], [33, 3, 1, "", "MESSAGE_CIRCLE_PIN"], [33, 3, 1, "", "MESSAGE_CIRCLE_PLUS"], [33, 3, 1, "", "MESSAGE_CIRCLE_QUESTION"], [33, 3, 1, "", "MESSAGE_CIRCLE_SEARCH"], [33, 3, 1, "", "MESSAGE_CIRCLE_SHARE"], [33, 3, 1, "", "MESSAGE_CIRCLE_STAR"], [33, 3, 1, "", "MESSAGE_CIRCLE_UP"], [33, 3, 1, "", "MESSAGE_CIRCLE_X"], [33, 3, 1, "", "MESSAGE_CODE"], [33, 3, 1, "", "MESSAGE_COG"], [33, 3, 1, "", "MESSAGE_DOLLAR"], [33, 3, 1, "", "MESSAGE_DOTS"], [33, 3, 1, "", "MESSAGE_DOWN"], [33, 3, 1, "", "MESSAGE_EXCLAMATION"], [33, 3, 1, "", "MESSAGE_FORWARD"], [33, 3, 1, "", "MESSAGE_HEART"], [33, 3, 1, "", "MESSAGE_LANGUAGE"], [33, 3, 1, "", "MESSAGE_MINUS"], [33, 3, 1, "", "MESSAGE_OFF"], [33, 3, 1, "", "MESSAGE_PAUSE"], [33, 3, 1, "", "MESSAGE_PIN"], [33, 3, 1, "", "MESSAGE_PLUS"], [33, 3, 1, "", "MESSAGE_QUESTION"], [33, 3, 1, "", "MESSAGE_REPORT"], [33, 3, 1, "", "MESSAGE_SEARCH"], [33, 3, 1, "", "MESSAGE_SHARE"], [33, 3, 1, "", "MESSAGE_STAR"], [33, 3, 1, "", "MESSAGE_UP"], [33, 3, 1, "", "MESSAGE_X"], [33, 3, 1, "", "METEOR"], [33, 3, 1, "", "METEOR_OFF"], [33, 3, 1, "", "MICHELIN_BIB_GOURMAND"], [33, 3, 1, "", "MICHELIN_STAR"], [33, 3, 1, "", "MICHELIN_STAR_GREEN"], [33, 3, 1, "", "MICKEY"], [33, 3, 1, "", "MICKEY_FILLED"], [33, 3, 1, "", "MICROPHONE"], [33, 3, 1, "", "MICROPHONE_2"], [33, 3, 1, "", "MICROPHONE_2_OFF"], [33, 3, 1, "", "MICROPHONE_OFF"], [33, 3, 1, "", "MICROSCOPE"], [33, 3, 1, "", "MICROSCOPE_OFF"], [33, 3, 1, "", "MICROWAVE"], [33, 3, 1, "", "MICROWAVE_OFF"], [33, 3, 1, "", "MILITARY_AWARD"], [33, 3, 1, "", "MILITARY_RANK"], [33, 3, 1, "", "MILK"], [33, 3, 1, "", "MILKSHAKE"], [33, 3, 1, "", "MILK_OFF"], [33, 3, 1, "", "MINIMIZE"], [33, 3, 1, "", "MINUS"], [33, 3, 1, "", "MINUS_VERTICAL"], [33, 3, 1, "", "MIST"], [33, 3, 1, "", "MIST_OFF"], [33, 3, 1, "", "MOBILEDATA"], [33, 3, 1, "", "MOBILEDATA_OFF"], [33, 3, 1, "", "MONEYBAG"], [33, 3, 1, "", "MOOD_ANGRY"], [33, 3, 1, "", "MOOD_ANNOYED"], [33, 3, 1, "", "MOOD_ANNOYED_2"], [33, 3, 1, "", "MOOD_BOY"], [33, 3, 1, "", "MOOD_CHECK"], [33, 3, 1, "", "MOOD_COG"], [33, 3, 1, "", "MOOD_CONFUZED"], [33, 3, 1, "", "MOOD_CONFUZED_FILLED"], [33, 3, 1, "", "MOOD_CRAZY_HAPPY"], [33, 3, 1, "", "MOOD_CRY"], [33, 3, 1, "", "MOOD_DOLLAR"], [33, 3, 1, "", "MOOD_EDIT"], [33, 3, 1, "", "MOOD_EMPTY"], [33, 3, 1, "", "MOOD_EMPTY_FILLED"], [33, 3, 1, "", "MOOD_HAPPY"], [33, 3, 1, "", "MOOD_HAPPY_FILLED"], [33, 3, 1, "", "MOOD_HEART"], [33, 3, 1, "", "MOOD_KID"], [33, 3, 1, "", "MOOD_KID_FILLED"], [33, 3, 1, "", "MOOD_LOOK_LEFT"], [33, 3, 1, "", "MOOD_LOOK_RIGHT"], [33, 3, 1, "", "MOOD_MINUS"], [33, 3, 1, "", "MOOD_NERD"], [33, 3, 1, "", "MOOD_NERVOUS"], [33, 3, 1, "", "MOOD_NEUTRAL"], [33, 3, 1, "", "MOOD_NEUTRAL_FILLED"], [33, 3, 1, "", "MOOD_OFF"], [33, 3, 1, "", "MOOD_PIN"], [33, 3, 1, "", "MOOD_PLUS"], [33, 3, 1, "", "MOOD_SAD"], [33, 3, 1, "", "MOOD_SAD_2"], [33, 3, 1, "", "MOOD_SAD_DIZZY"], [33, 3, 1, "", "MOOD_SAD_FILLED"], [33, 3, 1, "", "MOOD_SAD_SQUINT"], [33, 3, 1, "", "MOOD_SEARCH"], [33, 3, 1, "", "MOOD_SHARE"], [33, 3, 1, "", "MOOD_SICK"], [33, 3, 1, "", "MOOD_SILENCE"], [33, 3, 1, "", "MOOD_SING"], [33, 3, 1, "", "MOOD_SMILE"], [33, 3, 1, "", "MOOD_SMILE_BEAM"], [33, 3, 1, "", "MOOD_SMILE_DIZZY"], [33, 3, 1, "", "MOOD_SMILE_FILLED"], [33, 3, 1, "", "MOOD_SUPRISED"], [33, 3, 1, "", "MOOD_TONGUE"], [33, 3, 1, "", "MOOD_TONGUE_WINK"], [33, 3, 1, "", "MOOD_TONGUE_WINK_2"], [33, 3, 1, "", "MOOD_UNAMUSED"], [33, 3, 1, "", "MOOD_UP"], [33, 3, 1, "", "MOOD_WINK"], [33, 3, 1, "", "MOOD_WINK_2"], [33, 3, 1, "", "MOOD_WRRR"], [33, 3, 1, "", "MOOD_X"], [33, 3, 1, "", "MOOD_XD"], [33, 3, 1, "", "MOON"], [33, 3, 1, "", "MOON_2"], [33, 3, 1, "", "MOON_FILLED"], [33, 3, 1, "", "MOON_OFF"], [33, 3, 1, "", "MOON_STARS"], [33, 3, 1, "", "MOPED"], [33, 3, 1, "", "MOTORBIKE"], [33, 3, 1, "", "MOUNTAIN"], [33, 3, 1, "", "MOUNTAIN_OFF"], [33, 3, 1, "", "MOUSE"], [33, 3, 1, "", "MOUSE_2"], [33, 3, 1, "", "MOUSE_OFF"], [33, 3, 1, "", "MOUSTACHE"], [33, 3, 1, "", "MOVIE"], [33, 3, 1, "", "MOVIE_OFF"], [33, 3, 1, "", "MUG"], [33, 3, 1, "", "MUG_OFF"], [33, 3, 1, "", "MULTIPLIER_0_5X"], [33, 3, 1, "", "MULTIPLIER_1X"], [33, 3, 1, "", "MULTIPLIER_1_5X"], [33, 3, 1, "", "MULTIPLIER_2X"], [33, 3, 1, "", "MUSHROOM"], [33, 3, 1, "", "MUSHROOM_FILLED"], [33, 3, 1, "", "MUSHROOM_OFF"], [33, 3, 1, "", "MUSIC"], [33, 3, 1, "", "MUSIC_OFF"], [33, 3, 1, "", "NAVIGATION"], [33, 3, 1, "", "NAVIGATION_FILLED"], [33, 3, 1, "", "NAVIGATION_NORTH"], [33, 3, 1, "", "NAVIGATION_OFF"], [33, 3, 1, "", "NEEDLE"], [33, 3, 1, "", "NEEDLE_THREAD"], [33, 3, 1, "", "NETWORK"], [33, 3, 1, "", "NETWORK_OFF"], [33, 3, 1, "", "NEWS"], [33, 3, 1, "", "NEWS_OFF"], [33, 3, 1, "", "NEW_SECTION"], [33, 3, 1, "", "NFC"], [33, 3, 1, "", "NFC_OFF"], [33, 3, 1, "", "NORTH_STAR"], [33, 3, 1, "", "NOTE"], [33, 3, 1, "", "NOTEBOOK"], [33, 3, 1, "", "NOTEBOOK_OFF"], [33, 3, 1, "", "NOTES"], [33, 3, 1, "", "NOTES_OFF"], [33, 3, 1, "", "NOTE_OFF"], [33, 3, 1, "", "NOTIFICATION"], [33, 3, 1, "", "NOTIFICATION_OFF"], [33, 3, 1, "", "NO_COPYRIGHT"], [33, 3, 1, "", "NO_CREATIVE_COMMONS"], [33, 3, 1, "", "NO_DERIVATIVES"], [33, 3, 1, "", "NUMBER"], [33, 3, 1, "", "NUMBERS"], [33, 3, 1, "", "NUMBER_0"], [33, 3, 1, "", "NUMBER_1"], [33, 3, 1, "", "NUMBER_2"], [33, 3, 1, "", "NUMBER_3"], [33, 3, 1, "", "NUMBER_4"], [33, 3, 1, "", "NUMBER_5"], [33, 3, 1, "", "NUMBER_6"], [33, 3, 1, "", "NUMBER_7"], [33, 3, 1, "", "NUMBER_8"], [33, 3, 1, "", "NUMBER_9"], [33, 3, 1, "", "NURSE"], [33, 3, 1, "", "OCTAGON"], [33, 3, 1, "", "OCTAGON_FILLED"], [33, 3, 1, "", "OCTAGON_OFF"], [33, 3, 1, "", "OCTAHEDRON"], [33, 3, 1, "", "OCTAHEDRON_OFF"], [33, 3, 1, "", "OCTAHEDRON_PLUS"], [33, 3, 1, "", "OLD"], [33, 3, 1, "", "OLYMPICS"], [33, 3, 1, "", "OLYMPICS_OFF"], [33, 3, 1, "", "OM"], [33, 3, 1, "", "OMEGA"], [33, 3, 1, "", "OUTBOUND"], [33, 3, 1, "", "OUTLET"], [33, 3, 1, "", "OVAL"], [33, 3, 1, "", "OVAL_FILLED"], [33, 3, 1, "", "OVAL_VERTICAL"], [33, 3, 1, "", "OVAL_VERTICAL_FILLED"], [33, 3, 1, "", "OVERLINE"], [33, 3, 1, "", "PACKAGE"], [33, 3, 1, "", "PACKAGES"], [33, 3, 1, "", "PACKAGE_EXPORT"], [33, 3, 1, "", "PACKAGE_IMPORT"], [33, 3, 1, "", "PACKAGE_OFF"], [33, 3, 1, "", "PACMAN"], [33, 3, 1, "", "PAGE_BREAK"], [33, 3, 1, "", "PAINT"], [33, 3, 1, "", "PAINT_FILLED"], [33, 3, 1, "", "PAINT_OFF"], [33, 3, 1, "", "PALETTE"], [33, 3, 1, "", "PALETTE_OFF"], [33, 3, 1, "", "PANORAMA_HORIZONTAL"], [33, 3, 1, "", "PANORAMA_HORIZONTAL_OFF"], [33, 3, 1, "", "PANORAMA_VERTICAL"], [33, 3, 1, "", "PANORAMA_VERTICAL_OFF"], [33, 3, 1, "", "PAPERCLIP"], [33, 3, 1, "", "PAPER_BAG"], [33, 3, 1, "", "PAPER_BAG_OFF"], [33, 3, 1, "", "PARACHUTE"], [33, 3, 1, "", "PARACHUTE_OFF"], [33, 3, 1, "", "PARENTHESES"], [33, 3, 1, "", "PARENTHESES_OFF"], [33, 3, 1, "", "PARKING"], [33, 3, 1, "", "PARKING_OFF"], [33, 3, 1, "", "PASSWORD"], [33, 3, 1, "", "PAW"], [33, 3, 1, "", "PAW_FILLED"], [33, 3, 1, "", "PAW_OFF"], [33, 3, 1, "", "PDF"], [33, 3, 1, "", "PEACE"], [33, 3, 1, "", "PENCIL"], [33, 3, 1, "", "PENCIL_MINUS"], [33, 3, 1, "", "PENCIL_OFF"], [33, 3, 1, "", "PENCIL_PLUS"], [33, 3, 1, "", "PENNANT"], [33, 3, 1, "", "PENNANT_2"], [33, 3, 1, "", "PENNANT_2_FILLED"], [33, 3, 1, "", "PENNANT_FILLED"], [33, 3, 1, "", "PENNANT_OFF"], [33, 3, 1, "", "PENTAGON"], [33, 3, 1, "", "PENTAGON_FILLED"], [33, 3, 1, "", "PENTAGON_OFF"], [33, 3, 1, "", "PENTAGRAM"], [33, 3, 1, "", "PEPPER"], [33, 3, 1, "", "PEPPER_OFF"], [33, 3, 1, "", "PERCENTAGE"], [33, 3, 1, "", "PERFUME"], [33, 3, 1, "", "PERSPECTIVE"], [33, 3, 1, "", "PERSPECTIVE_OFF"], [33, 3, 1, "", "PHONE"], [33, 3, 1, "", "PHONE_CALL"], [33, 3, 1, "", "PHONE_CALLING"], [33, 3, 1, "", "PHONE_CHECK"], [33, 3, 1, "", "PHONE_FILLED"], [33, 3, 1, "", "PHONE_INCOMING"], [33, 3, 1, "", "PHONE_OFF"], [33, 3, 1, "", "PHONE_OUTGOING"], [33, 3, 1, "", "PHONE_PAUSE"], [33, 3, 1, "", "PHONE_PLUS"], [33, 3, 1, "", "PHONE_X"], [33, 3, 1, "", "PHOTO"], [33, 3, 1, "", "PHOTO_AI"], [33, 3, 1, "", "PHOTO_BOLT"], [33, 3, 1, "", "PHOTO_CANCEL"], [33, 3, 1, "", "PHOTO_CHECK"], [33, 3, 1, "", "PHOTO_CODE"], [33, 3, 1, "", "PHOTO_COG"], [33, 3, 1, "", "PHOTO_DOLLAR"], [33, 3, 1, "", "PHOTO_DOWN"], [33, 3, 1, "", "PHOTO_EDIT"], [33, 3, 1, "", "PHOTO_EXCLAMATION"], [33, 3, 1, "", "PHOTO_FILLED"], [33, 3, 1, "", "PHOTO_HEART"], [33, 3, 1, "", "PHOTO_MINUS"], [33, 3, 1, "", "PHOTO_OFF"], [33, 3, 1, "", "PHOTO_PAUSE"], [33, 3, 1, "", "PHOTO_PIN"], [33, 3, 1, "", "PHOTO_PLUS"], [33, 3, 1, "", "PHOTO_QUESTION"], [33, 3, 1, "", "PHOTO_SEARCH"], [33, 3, 1, "", "PHOTO_SENSOR"], [33, 3, 1, "", "PHOTO_SENSOR_2"], [33, 3, 1, "", "PHOTO_SENSOR_3"], [33, 3, 1, "", "PHOTO_SHARE"], [33, 3, 1, "", "PHOTO_SHIELD"], [33, 3, 1, "", "PHOTO_STAR"], [33, 3, 1, "", "PHOTO_UP"], [33, 3, 1, "", "PHOTO_X"], [33, 3, 1, "", "PHYSOTHERAPIST"], [33, 3, 1, "", "PIANO"], [33, 3, 1, "", "PICK"], [33, 3, 1, "", "PICTURE_IN_PICTURE"], [33, 3, 1, "", "PICTURE_IN_PICTURE_OFF"], [33, 3, 1, "", "PICTURE_IN_PICTURE_ON"], [33, 3, 1, "", "PICTURE_IN_PICTURE_TOP"], [33, 3, 1, "", "PIG"], [33, 3, 1, "", "PIG_MONEY"], [33, 3, 1, "", "PIG_OFF"], [33, 3, 1, "", "PILCROW"], [33, 3, 1, "", "PILL"], [33, 3, 1, "", "PILLS"], [33, 3, 1, "", "PILL_OFF"], [33, 3, 1, "", "PIN"], [33, 3, 1, "", "PING_PONG"], [33, 3, 1, "", "PINNED"], [33, 3, 1, "", "PINNED_FILLED"], [33, 3, 1, "", "PINNED_OFF"], [33, 3, 1, "", "PIN_FILLED"], [33, 3, 1, "", "PIZZA"], [33, 3, 1, "", "PIZZA_OFF"], [33, 3, 1, "", "PLACEHOLDER"], [33, 3, 1, "", "PLANE"], [33, 3, 1, "", "PLANET"], [33, 3, 1, "", "PLANET_OFF"], [33, 3, 1, "", "PLANE_ARRIVAL"], [33, 3, 1, "", "PLANE_DEPARTURE"], [33, 3, 1, "", "PLANE_INFLIGHT"], [33, 3, 1, "", "PLANE_OFF"], [33, 3, 1, "", "PLANE_TILT"], [33, 3, 1, "", "PLANT"], [33, 3, 1, "", "PLANT_2"], [33, 3, 1, "", "PLANT_2_OFF"], [33, 3, 1, "", "PLANT_OFF"], [33, 3, 1, "", "PLAYER_EJECT"], [33, 3, 1, "", "PLAYER_EJECT_FILLED"], [33, 3, 1, "", "PLAYER_PAUSE"], [33, 3, 1, "", "PLAYER_PAUSE_FILLED"], [33, 3, 1, "", "PLAYER_PLAY"], [33, 3, 1, "", "PLAYER_PLAY_FILLED"], [33, 3, 1, "", "PLAYER_RECORD"], [33, 3, 1, "", "PLAYER_RECORD_FILLED"], [33, 3, 1, "", "PLAYER_SKIP_BACK"], [33, 3, 1, "", "PLAYER_SKIP_BACK_FILLED"], [33, 3, 1, "", "PLAYER_SKIP_FORWARD"], [33, 3, 1, "", "PLAYER_SKIP_FORWARD_FILLED"], [33, 3, 1, "", "PLAYER_STOP"], [33, 3, 1, "", "PLAYER_STOP_FILLED"], [33, 3, 1, "", "PLAYER_TRACK_NEXT"], [33, 3, 1, "", "PLAYER_TRACK_NEXT_FILLED"], [33, 3, 1, "", "PLAYER_TRACK_PREV"], [33, 3, 1, "", "PLAYER_TRACK_PREV_FILLED"], [33, 3, 1, "", "PLAYLIST"], [33, 3, 1, "", "PLAYLIST_ADD"], [33, 3, 1, "", "PLAYLIST_OFF"], [33, 3, 1, "", "PLAYLIST_X"], [33, 3, 1, "", "PLAYSTATION_CIRCLE"], [33, 3, 1, "", "PLAYSTATION_SQUARE"], [33, 3, 1, "", "PLAYSTATION_TRIANGLE"], [33, 3, 1, "", "PLAYSTATION_X"], [33, 3, 1, "", "PLAY_BASKETBALL"], [33, 3, 1, "", "PLAY_CARD"], [33, 3, 1, "", "PLAY_CARD_OFF"], [33, 3, 1, "", "PLAY_FOOTBALL"], [33, 3, 1, "", "PLAY_HANDBALL"], [33, 3, 1, "", "PLAY_VOLLEYBALL"], [33, 3, 1, "", "PLUG"], [33, 3, 1, "", "PLUG_CONNECTED"], [33, 3, 1, "", "PLUG_CONNECTED_X"], [33, 3, 1, "", "PLUG_OFF"], [33, 3, 1, "", "PLUG_X"], [33, 3, 1, "", "PLUS"], [33, 3, 1, "", "PLUS_EQUAL"], [33, 3, 1, "", "PLUS_MINUS"], [33, 3, 1, "", "PNG"], [33, 3, 1, "", "PODIUM"], [33, 3, 1, "", "PODIUM_OFF"], [33, 3, 1, "", "POINT"], [33, 3, 1, "", "POINTER"], [33, 3, 1, "", "POINTER_BOLT"], [33, 3, 1, "", "POINTER_CANCEL"], [33, 3, 1, "", "POINTER_CHECK"], [33, 3, 1, "", "POINTER_CODE"], [33, 3, 1, "", "POINTER_COG"], [33, 3, 1, "", "POINTER_DOLLAR"], [33, 3, 1, "", "POINTER_DOWN"], [33, 3, 1, "", "POINTER_EXCLAMATION"], [33, 3, 1, "", "POINTER_HEART"], [33, 3, 1, "", "POINTER_MINUS"], [33, 3, 1, "", "POINTER_OFF"], [33, 3, 1, "", "POINTER_PAUSE"], [33, 3, 1, "", "POINTER_PIN"], [33, 3, 1, "", "POINTER_PLUS"], [33, 3, 1, "", "POINTER_QUESTION"], [33, 3, 1, "", "POINTER_SEARCH"], [33, 3, 1, "", "POINTER_SHARE"], [33, 3, 1, "", "POINTER_STAR"], [33, 3, 1, "", "POINTER_UP"], [33, 3, 1, "", "POINTER_X"], [33, 3, 1, "", "POINT_FILLED"], [33, 3, 1, "", "POINT_OFF"], [33, 3, 1, "", "POKEBALL"], [33, 3, 1, "", "POKEBALL_OFF"], [33, 3, 1, "", "POKER_CHIP"], [33, 3, 1, "", "POLAROID"], [33, 3, 1, "", "POLAROID_FILLED"], [33, 3, 1, "", "POLYGON"], [33, 3, 1, "", "POLYGON_OFF"], [33, 3, 1, "", "POO"], [33, 3, 1, "", "POOL"], [33, 3, 1, "", "POOL_OFF"], [33, 3, 1, "", "POWER"], [33, 3, 1, "", "PRAY"], [33, 3, 1, "", "PREMIUM_RIGHTS"], [33, 3, 1, "", "PRESCRIPTION"], [33, 3, 1, "", "PRESENTATION"], [33, 3, 1, "", "PRESENTATION_ANALYTICS"], [33, 3, 1, "", "PRESENTATION_OFF"], [33, 3, 1, "", "PRINTER"], [33, 3, 1, "", "PRINTER_OFF"], [33, 3, 1, "", "PRISM"], [33, 3, 1, "", "PRISM_OFF"], [33, 3, 1, "", "PRISM_PLUS"], [33, 3, 1, "", "PRISON"], [33, 3, 1, "", "PROGRESS"], [33, 3, 1, "", "PROGRESS_ALERT"], [33, 3, 1, "", "PROGRESS_BOLT"], [33, 3, 1, "", "PROGRESS_CHECK"], [33, 3, 1, "", "PROGRESS_DOWN"], [33, 3, 1, "", "PROGRESS_HELP"], [33, 3, 1, "", "PROGRESS_X"], [33, 3, 1, "", "PROMPT"], [33, 3, 1, "", "PROPELLER"], [33, 3, 1, "", "PROPELLER_OFF"], [33, 3, 1, "", "PUMPKIN_SCARY"], [33, 3, 1, "", "PUZZLE"], [33, 3, 1, "", "PUZZLE_2"], [33, 3, 1, "", "PUZZLE_FILLED"], [33, 3, 1, "", "PUZZLE_OFF"], [33, 3, 1, "", "PYRAMID"], [33, 3, 1, "", "PYRAMID_OFF"], [33, 3, 1, "", "PYRAMID_PLUS"], [33, 3, 1, "", "QRCODE"], [33, 3, 1, "", "QRCODE_OFF"], [33, 3, 1, "", "QUESTION_MARK"], [33, 3, 1, "", "QUOTE"], [33, 3, 1, "", "QUOTE_OFF"], [33, 3, 1, "", "RADAR"], [33, 3, 1, "", "RADAR_2"], [33, 3, 1, "", "RADAR_OFF"], [33, 3, 1, "", "RADIO"], [33, 3, 1, "", "RADIOACTIVE"], [33, 3, 1, "", "RADIOACTIVE_FILLED"], [33, 3, 1, "", "RADIOACTIVE_OFF"], [33, 3, 1, "", "RADIO_OFF"], [33, 3, 1, "", "RADIUS_BOTTOM_LEFT"], [33, 3, 1, "", "RADIUS_BOTTOM_RIGHT"], [33, 3, 1, "", "RADIUS_TOP_LEFT"], [33, 3, 1, "", "RADIUS_TOP_RIGHT"], [33, 3, 1, "", "RAINBOW"], [33, 3, 1, "", "RAINBOW_OFF"], [33, 3, 1, "", "RATING_12_PLUS"], [33, 3, 1, "", "RATING_14_PLUS"], [33, 3, 1, "", "RATING_16_PLUS"], [33, 3, 1, "", "RATING_18_PLUS"], [33, 3, 1, "", "RATING_21_PLUS"], [33, 3, 1, "", "RAZOR"], [33, 3, 1, "", "RAZOR_ELECTRIC"], [33, 3, 1, "", "RECEIPT"], [33, 3, 1, "", "RECEIPT_2"], [33, 3, 1, "", "RECEIPT_OFF"], [33, 3, 1, "", "RECEIPT_REFUND"], [33, 3, 1, "", "RECEIPT_TAX"], [33, 3, 1, "", "RECHARGING"], [33, 3, 1, "", "RECORD_MAIL"], [33, 3, 1, "", "RECORD_MAIL_OFF"], [33, 3, 1, "", "RECTANGLE"], [33, 3, 1, "", "RECTANGLE_FILLED"], [33, 3, 1, "", "RECTANGLE_ROUNDED_BOTTOM"], [33, 3, 1, "", "RECTANGLE_ROUNDED_TOP"], [33, 3, 1, "", "RECTANGLE_VERTICAL"], [33, 3, 1, "", "RECTANGLE_VERTICAL_FILLED"], [33, 3, 1, "", "RECTANGULAR_PRISM"], [33, 3, 1, "", "RECTANGULAR_PRISM_OFF"], [33, 3, 1, "", "RECTANGULAR_PRISM_PLUS"], [33, 3, 1, "", "RECYCLE"], [33, 3, 1, "", "RECYCLE_OFF"], [33, 3, 1, "", "REFRESH"], [33, 3, 1, "", "REFRESH_ALERT"], [33, 3, 1, "", "REFRESH_DOT"], [33, 3, 1, "", "REFRESH_OFF"], [33, 3, 1, "", "REGEX"], [33, 3, 1, "", "REGEX_OFF"], [33, 3, 1, "", "REGISTERED"], [33, 3, 1, "", "RELATION_MANY_TO_MANY"], [33, 3, 1, "", "RELATION_ONE_TO_MANY"], [33, 3, 1, "", "RELATION_ONE_TO_ONE"], [33, 3, 1, "", "RELOAD"], [33, 3, 1, "", "REPEAT"], [33, 3, 1, "", "REPEAT_OFF"], [33, 3, 1, "", "REPEAT_ONCE"], [33, 3, 1, "", "REPLACE"], [33, 3, 1, "", "REPLACE_FILLED"], [33, 3, 1, "", "REPLACE_OFF"], [33, 3, 1, "", "REPORT"], [33, 3, 1, "", "REPORT_ANALYTICS"], [33, 3, 1, "", "REPORT_MEDICAL"], [33, 3, 1, "", "REPORT_MONEY"], [33, 3, 1, "", "REPORT_OFF"], [33, 3, 1, "", "REPORT_SEARCH"], [33, 3, 1, "", "RESERVED_LINE"], [33, 3, 1, "", "RESIZE"], [33, 3, 1, "", "RESTORE"], [33, 3, 1, "", "REWIND_BACKWARD_10"], [33, 3, 1, "", "REWIND_BACKWARD_15"], [33, 3, 1, "", "REWIND_BACKWARD_20"], [33, 3, 1, "", "REWIND_BACKWARD_30"], [33, 3, 1, "", "REWIND_BACKWARD_40"], [33, 3, 1, "", "REWIND_BACKWARD_5"], [33, 3, 1, "", "REWIND_BACKWARD_50"], [33, 3, 1, "", "REWIND_BACKWARD_60"], [33, 3, 1, "", "REWIND_FORWARD_10"], [33, 3, 1, "", "REWIND_FORWARD_15"], [33, 3, 1, "", "REWIND_FORWARD_20"], [33, 3, 1, "", "REWIND_FORWARD_30"], [33, 3, 1, "", "REWIND_FORWARD_40"], [33, 3, 1, "", "REWIND_FORWARD_5"], [33, 3, 1, "", "REWIND_FORWARD_50"], [33, 3, 1, "", "REWIND_FORWARD_60"], [33, 3, 1, "", "RIBBON_HEALTH"], [33, 3, 1, "", "RINGS"], [33, 3, 1, "", "RIPPLE"], [33, 3, 1, "", "RIPPLE_OFF"], [33, 3, 1, "", "ROAD"], [33, 3, 1, "", "ROAD_OFF"], [33, 3, 1, "", "ROAD_SIGN"], [33, 3, 1, "", "ROBOT"], [33, 3, 1, "", "ROBOT_OFF"], [33, 3, 1, "", "ROCKET"], [33, 3, 1, "", "ROCKET_OFF"], [33, 3, 1, "", "ROLLERCOASTER"], [33, 3, 1, "", "ROLLERCOASTER_OFF"], [33, 3, 1, "", "ROLLER_SKATING"], [33, 3, 1, "", "ROSETTE"], [33, 3, 1, "", "ROSETTE_FILLED"], [33, 3, 1, "", "ROSETTE_NUMBER_0"], [33, 3, 1, "", "ROSETTE_NUMBER_1"], [33, 3, 1, "", "ROSETTE_NUMBER_2"], [33, 3, 1, "", "ROSETTE_NUMBER_3"], [33, 3, 1, "", "ROSETTE_NUMBER_4"], [33, 3, 1, "", "ROSETTE_NUMBER_5"], [33, 3, 1, "", "ROSETTE_NUMBER_6"], [33, 3, 1, "", "ROSETTE_NUMBER_7"], [33, 3, 1, "", "ROSETTE_NUMBER_8"], [33, 3, 1, "", "ROSETTE_NUMBER_9"], [33, 3, 1, "", "ROTATE"], [33, 3, 1, "", "ROTATE_2"], [33, 3, 1, "", "ROTATE_360"], [33, 3, 1, "", "ROTATE_CLOCKWISE"], [33, 3, 1, "", "ROTATE_CLOCKWISE_2"], [33, 3, 1, "", "ROTATE_DOT"], [33, 3, 1, "", "ROTATE_RECTANGLE"], [33, 3, 1, "", "ROUTE"], [33, 3, 1, "", "ROUTER"], [33, 3, 1, "", "ROUTER_OFF"], [33, 3, 1, "", "ROUTE_2"], [33, 3, 1, "", "ROUTE_OFF"], [33, 3, 1, "", "ROW_INSERT_BOTTOM"], [33, 3, 1, "", "ROW_INSERT_TOP"], [33, 3, 1, "", "ROW_REMOVE"], [33, 3, 1, "", "RSS"], [33, 3, 1, "", "RUBBER_STAMP"], [33, 3, 1, "", "RUBBER_STAMP_OFF"], [33, 3, 1, "", "RULER"], [33, 3, 1, "", "RULER_2"], [33, 3, 1, "", "RULER_2_OFF"], [33, 3, 1, "", "RULER_3"], [33, 3, 1, "", "RULER_MEASURE"], [33, 3, 1, "", "RULER_OFF"], [33, 3, 1, "", "RUN"], [33, 3, 1, "", "SAILBOAT"], [33, 3, 1, "", "SAILBOAT_2"], [33, 3, 1, "", "SAILBOAT_OFF"], [33, 3, 1, "", "SALAD"], [33, 3, 1, "", "SALT"], [33, 3, 1, "", "SATELLITE"], [33, 3, 1, "", "SATELLITE_OFF"], [33, 3, 1, "", "SAUSAGE"], [33, 3, 1, "", "SCALE"], [33, 3, 1, "", "SCALE_OFF"], [33, 3, 1, "", "SCALE_OUTLINE"], [33, 3, 1, "", "SCALE_OUTLINE_OFF"], [33, 3, 1, "", "SCAN"], [33, 3, 1, "", "SCAN_EYE"], [33, 3, 1, "", "SCHEMA"], [33, 3, 1, "", "SCHEMA_OFF"], [33, 3, 1, "", "SCHOOL"], [33, 3, 1, "", "SCHOOL_BELL"], [33, 3, 1, "", "SCHOOL_OFF"], [33, 3, 1, "", "SCISSORS"], [33, 3, 1, "", "SCISSORS_OFF"], [33, 3, 1, "", "SCOOTER"], [33, 3, 1, "", "SCOOTER_ELECTRIC"], [33, 3, 1, "", "SCOREBOARD"], [33, 3, 1, "", "SCREENSHOT"], [33, 3, 1, "", "SCREEN_SHARE"], [33, 3, 1, "", "SCREEN_SHARE_OFF"], [33, 3, 1, "", "SCRIBBLE"], [33, 3, 1, "", "SCRIBBLE_OFF"], [33, 3, 1, "", "SCRIPT"], [33, 3, 1, "", "SCRIPT_MINUS"], [33, 3, 1, "", "SCRIPT_PLUS"], [33, 3, 1, "", "SCRIPT_X"], [33, 3, 1, "", "SCUBA_MASK"], [33, 3, 1, "", "SCUBA_MASK_OFF"], [33, 3, 1, "", "SDK"], [33, 3, 1, "", "SEARCH"], [33, 3, 1, "", "SEARCH_OFF"], [33, 3, 1, "", "SECTION"], [33, 3, 1, "", "SECTION_SIGN"], [33, 3, 1, "", "SEEDING"], [33, 3, 1, "", "SEEDING_OFF"], [33, 3, 1, "", "SELECT"], [33, 3, 1, "", "SELECTOR"], [33, 3, 1, "", "SELECT_ALL"], [33, 3, 1, "", "SEND"], [33, 3, 1, "", "SEND_OFF"], [33, 3, 1, "", "SEO"], [33, 3, 1, "", "SEPARATOR"], [33, 3, 1, "", "SEPARATOR_HORIZONTAL"], [33, 3, 1, "", "SEPARATOR_VERTICAL"], [33, 3, 1, "", "SERVER"], [33, 3, 1, "", "SERVER_2"], [33, 3, 1, "", "SERVER_BOLT"], [33, 3, 1, "", "SERVER_COG"], [33, 3, 1, "", "SERVER_OFF"], [33, 3, 1, "", "SERVICEMARK"], [33, 3, 1, "", "SETTINGS"], [33, 3, 1, "", "SETTINGS_2"], [33, 3, 1, "", "SETTINGS_AUTOMATION"], [33, 3, 1, "", "SETTINGS_BOLT"], [33, 3, 1, "", "SETTINGS_CANCEL"], [33, 3, 1, "", "SETTINGS_CHECK"], [33, 3, 1, "", "SETTINGS_CODE"], [33, 3, 1, "", "SETTINGS_COG"], [33, 3, 1, "", "SETTINGS_DOLLAR"], [33, 3, 1, "", "SETTINGS_DOWN"], [33, 3, 1, "", "SETTINGS_EXCLAMATION"], [33, 3, 1, "", "SETTINGS_FILLED"], [33, 3, 1, "", "SETTINGS_HEART"], [33, 3, 1, "", "SETTINGS_MINUS"], [33, 3, 1, "", "SETTINGS_OFF"], [33, 3, 1, "", "SETTINGS_PAUSE"], [33, 3, 1, "", "SETTINGS_PIN"], [33, 3, 1, "", "SETTINGS_PLUS"], [33, 3, 1, "", "SETTINGS_QUESTION"], [33, 3, 1, "", "SETTINGS_SEARCH"], [33, 3, 1, "", "SETTINGS_SHARE"], [33, 3, 1, "", "SETTINGS_STAR"], [33, 3, 1, "", "SETTINGS_UP"], [33, 3, 1, "", "SETTINGS_X"], [33, 3, 1, "", "SHADOW"], [33, 3, 1, "", "SHADOW_OFF"], [33, 3, 1, "", "SHAPE"], [33, 3, 1, "", "SHAPE_2"], [33, 3, 1, "", "SHAPE_3"], [33, 3, 1, "", "SHAPE_OFF"], [33, 3, 1, "", "SHARE"], [33, 3, 1, "", "SHARE_2"], [33, 3, 1, "", "SHARE_3"], [33, 3, 1, "", "SHARE_OFF"], [33, 3, 1, "", "SHIELD"], [33, 3, 1, "", "SHIELD_BOLT"], [33, 3, 1, "", "SHIELD_CANCEL"], [33, 3, 1, "", "SHIELD_CHECK"], [33, 3, 1, "", "SHIELD_CHECKERED"], [33, 3, 1, "", "SHIELD_CHECKERED_FILLED"], [33, 3, 1, "", "SHIELD_CHECK_FILLED"], [33, 3, 1, "", "SHIELD_CHEVRON"], [33, 3, 1, "", "SHIELD_CODE"], [33, 3, 1, "", "SHIELD_COG"], [33, 3, 1, "", "SHIELD_DOLLAR"], [33, 3, 1, "", "SHIELD_DOWN"], [33, 3, 1, "", "SHIELD_EXCLAMATION"], [33, 3, 1, "", "SHIELD_FILLED"], [33, 3, 1, "", "SHIELD_HALF"], [33, 3, 1, "", "SHIELD_HALF_FILLED"], [33, 3, 1, "", "SHIELD_HEART"], [33, 3, 1, "", "SHIELD_LOCK"], [33, 3, 1, "", "SHIELD_LOCK_FILLED"], [33, 3, 1, "", "SHIELD_MINUS"], [33, 3, 1, "", "SHIELD_OFF"], [33, 3, 1, "", "SHIELD_PAUSE"], [33, 3, 1, "", "SHIELD_PIN"], [33, 3, 1, "", "SHIELD_PLUS"], [33, 3, 1, "", "SHIELD_QUESTION"], [33, 3, 1, "", "SHIELD_SEARCH"], [33, 3, 1, "", "SHIELD_SHARE"], [33, 3, 1, "", "SHIELD_STAR"], [33, 3, 1, "", "SHIELD_UP"], [33, 3, 1, "", "SHIELD_X"], [33, 3, 1, "", "SHIP"], [33, 3, 1, "", "SHIP_OFF"], [33, 3, 1, "", "SHIRT"], [33, 3, 1, "", "SHIRT_FILLED"], [33, 3, 1, "", "SHIRT_OFF"], [33, 3, 1, "", "SHIRT_SPORT"], [33, 3, 1, "", "SHI_JUMPING"], [33, 3, 1, "", "SHOE"], [33, 3, 1, "", "SHOE_OFF"], [33, 3, 1, "", "SHOPPING_BAG"], [33, 3, 1, "", "SHOPPING_CART"], [33, 3, 1, "", "SHOPPING_CART_DISCOUNT"], [33, 3, 1, "", "SHOPPING_CART_OFF"], [33, 3, 1, "", "SHOPPING_CART_PLUS"], [33, 3, 1, "", "SHOPPING_CART_X"], [33, 3, 1, "", "SHOVEL"], [33, 3, 1, "", "SHREDDER"], [33, 3, 1, "", "SIGNAL_2G"], [33, 3, 1, "", "SIGNAL_3G"], [33, 3, 1, "", "SIGNAL_4G"], [33, 3, 1, "", "SIGNAL_4G_PLUS"], [33, 3, 1, "", "SIGNAL_5G"], [33, 3, 1, "", "SIGNAL_6G"], [33, 3, 1, "", "SIGNAL_E"], [33, 3, 1, "", "SIGNAL_G"], [33, 3, 1, "", "SIGNAL_H"], [33, 3, 1, "", "SIGNAL_H_PLUS"], [33, 3, 1, "", "SIGNAL_LTE"], [33, 3, 1, "", "SIGNATURE"], [33, 3, 1, "", "SIGNATURE_OFF"], [33, 3, 1, "", "SIGN_LEFT"], [33, 3, 1, "", "SIGN_LEFT_FILLED"], [33, 3, 1, "", "SIGN_RIGHT"], [33, 3, 1, "", "SIGN_RIGHT_FILLED"], [33, 3, 1, "", "SITEMAP"], [33, 3, 1, "", "SITEMAP_OFF"], [33, 3, 1, "", "SKATEBOARD"], [33, 3, 1, "", "SKATEBOARDING"], [33, 3, 1, "", "SKATEBOARD_OFF"], [33, 3, 1, "", "SKULL"], [33, 3, 1, "", "SLASH"], [33, 3, 1, "", "SLASHES"], [33, 3, 1, "", "SLEIGH"], [33, 3, 1, "", "SLICE"], [33, 3, 1, "", "SLIDESHOW"], [33, 3, 1, "", "SMART_HOME"], [33, 3, 1, "", "SMART_HOME_OFF"], [33, 3, 1, "", "SMOKING"], [33, 3, 1, "", "SMOKING_NO"], [33, 3, 1, "", "SNOWFLAKE"], [33, 3, 1, "", "SNOWFLAKE_OFF"], [33, 3, 1, "", "SNOWMAN"], [33, 3, 1, "", "SOCCER_FIELD"], [33, 3, 1, "", "SOCIAL"], [33, 3, 1, "", "SOCIAL_OFF"], [33, 3, 1, "", "SOCK"], [33, 3, 1, "", "SOFA"], [33, 3, 1, "", "SOFA_OFF"], [33, 3, 1, "", "SOLAR_PANEL"], [33, 3, 1, "", "SOLAR_PANEL_2"], [33, 3, 1, "", "SORT_0_9"], [33, 3, 1, "", "SORT_9_0"], [33, 3, 1, "", "SORT_ASCENDING"], [33, 3, 1, "", "SORT_ASCENDING_2"], [33, 3, 1, "", "SORT_ASCENDING_LETTERS"], [33, 3, 1, "", "SORT_ASCENDING_NUMBERS"], [33, 3, 1, "", "SORT_A_Z"], [33, 3, 1, "", "SORT_DESCENDING"], [33, 3, 1, "", "SORT_DESCENDING_2"], [33, 3, 1, "", "SORT_DESCENDING_LETTERS"], [33, 3, 1, "", "SORT_DESCENDING_NUMBERS"], [33, 3, 1, "", "SORT_Z_A"], [33, 3, 1, "", "SOS"], [33, 3, 1, "", "SOUP"], [33, 3, 1, "", "SOUP_OFF"], [33, 3, 1, "", "SOURCE_CODE"], [33, 3, 1, "", "SPACE"], [33, 3, 1, "", "SPACE_OFF"], [33, 3, 1, "", "SPACING_HORIZONTAL"], [33, 3, 1, "", "SPACING_VERTICAL"], [33, 3, 1, "", "SPADE"], [33, 3, 1, "", "SPADE_FILLED"], [33, 3, 1, "", "SPARKLES"], [33, 3, 1, "", "SPEAKERPHONE"], [33, 3, 1, "", "SPEEDBOAT"], [33, 3, 1, "", "SPHERE"], [33, 3, 1, "", "SPHERE_OFF"], [33, 3, 1, "", "SPHERE_PLUS"], [33, 3, 1, "", "SPIDER"], [33, 3, 1, "", "SPIRAL"], [33, 3, 1, "", "SPIRAL_OFF"], [33, 3, 1, "", "SPORT_BILLARD"], [33, 3, 1, "", "SPRAY"], [33, 3, 1, "", "SPY"], [33, 3, 1, "", "SPY_OFF"], [33, 3, 1, "", "SQL"], [33, 3, 1, "", "SQUARE"], [33, 3, 1, "", "SQUARES_DIAGONAL"], [33, 3, 1, "", "SQUARES_FILLED"], [33, 3, 1, "", "SQUARE_0_FILLED"], [33, 3, 1, "", "SQUARE_1_FILLED"], [33, 3, 1, "", "SQUARE_2_FILLED"], [33, 3, 1, "", "SQUARE_3_FILLED"], [33, 3, 1, "", "SQUARE_4_FILLED"], [33, 3, 1, "", "SQUARE_5_FILLED"], [33, 3, 1, "", "SQUARE_6_FILLED"], [33, 3, 1, "", "SQUARE_7_FILLED"], [33, 3, 1, "", "SQUARE_8_FILLED"], [33, 3, 1, "", "SQUARE_9_FILLED"], [33, 3, 1, "", "SQUARE_ARROW_DOWN"], [33, 3, 1, "", "SQUARE_ARROW_LEFT"], [33, 3, 1, "", "SQUARE_ARROW_RIGHT"], [33, 3, 1, "", "SQUARE_ARROW_UP"], [33, 3, 1, "", "SQUARE_ASTERISK"], [33, 3, 1, "", "SQUARE_CHECK"], [33, 3, 1, "", "SQUARE_CHECK_FILLED"], [33, 3, 1, "", "SQUARE_CHEVRONS_DOWN"], [33, 3, 1, "", "SQUARE_CHEVRONS_LEFT"], [33, 3, 1, "", "SQUARE_CHEVRONS_RIGHT"], [33, 3, 1, "", "SQUARE_CHEVRONS_UP"], [33, 3, 1, "", "SQUARE_CHEVRON_DOWN"], [33, 3, 1, "", "SQUARE_CHEVRON_LEFT"], [33, 3, 1, "", "SQUARE_CHEVRON_RIGHT"], [33, 3, 1, "", "SQUARE_CHEVRON_UP"], [33, 3, 1, "", "SQUARE_DOT"], [33, 3, 1, "", "SQUARE_F0"], [33, 3, 1, "", "SQUARE_F0_FILLED"], [33, 3, 1, "", "SQUARE_F1"], [33, 3, 1, "", "SQUARE_F1_FILLED"], [33, 3, 1, "", "SQUARE_F2"], [33, 3, 1, "", "SQUARE_F2_FILLED"], [33, 3, 1, "", "SQUARE_F3"], [33, 3, 1, "", "SQUARE_F3_FILLED"], [33, 3, 1, "", "SQUARE_F4"], [33, 3, 1, "", "SQUARE_F4_FILLED"], [33, 3, 1, "", "SQUARE_F5"], [33, 3, 1, "", "SQUARE_F5_FILLED"], [33, 3, 1, "", "SQUARE_F6"], [33, 3, 1, "", "SQUARE_F6_FILLED"], [33, 3, 1, "", "SQUARE_F7"], [33, 3, 1, "", "SQUARE_F7_FILLED"], [33, 3, 1, "", "SQUARE_F8"], [33, 3, 1, "", "SQUARE_F8_FILLED"], [33, 3, 1, "", "SQUARE_F9"], [33, 3, 1, "", "SQUARE_F9_FILLED"], [33, 3, 1, "", "SQUARE_FORBID"], [33, 3, 1, "", "SQUARE_FORBID_2"], [33, 3, 1, "", "SQUARE_HALF"], [33, 3, 1, "", "SQUARE_KEY"], [33, 3, 1, "", "SQUARE_LETTER_A"], [33, 3, 1, "", "SQUARE_LETTER_B"], [33, 3, 1, "", "SQUARE_LETTER_C"], [33, 3, 1, "", "SQUARE_LETTER_D"], [33, 3, 1, "", "SQUARE_LETTER_E"], [33, 3, 1, "", "SQUARE_LETTER_F"], [33, 3, 1, "", "SQUARE_LETTER_G"], [33, 3, 1, "", "SQUARE_LETTER_H"], [33, 3, 1, "", "SQUARE_LETTER_I"], [33, 3, 1, "", "SQUARE_LETTER_J"], [33, 3, 1, "", "SQUARE_LETTER_K"], [33, 3, 1, "", "SQUARE_LETTER_L"], [33, 3, 1, "", "SQUARE_LETTER_M"], [33, 3, 1, "", "SQUARE_LETTER_N"], [33, 3, 1, "", "SQUARE_LETTER_O"], [33, 3, 1, "", "SQUARE_LETTER_P"], [33, 3, 1, "", "SQUARE_LETTER_Q"], [33, 3, 1, "", "SQUARE_LETTER_R"], [33, 3, 1, "", "SQUARE_LETTER_S"], [33, 3, 1, "", "SQUARE_LETTER_T"], [33, 3, 1, "", "SQUARE_LETTER_U"], [33, 3, 1, "", "SQUARE_LETTER_V"], [33, 3, 1, "", "SQUARE_LETTER_W"], [33, 3, 1, "", "SQUARE_LETTER_X"], [33, 3, 1, "", "SQUARE_LETTER_Y"], [33, 3, 1, "", "SQUARE_LETTER_Z"], [33, 3, 1, "", "SQUARE_MINUS"], [33, 3, 1, "", "SQUARE_NUMBER_0"], [33, 3, 1, "", "SQUARE_NUMBER_1"], [33, 3, 1, "", "SQUARE_NUMBER_2"], [33, 3, 1, "", "SQUARE_NUMBER_3"], [33, 3, 1, "", "SQUARE_NUMBER_4"], [33, 3, 1, "", "SQUARE_NUMBER_5"], [33, 3, 1, "", "SQUARE_NUMBER_6"], [33, 3, 1, "", "SQUARE_NUMBER_7"], [33, 3, 1, "", "SQUARE_NUMBER_8"], [33, 3, 1, "", "SQUARE_NUMBER_9"], [33, 3, 1, "", "SQUARE_OFF"], [33, 3, 1, "", "SQUARE_PLUS"], [33, 3, 1, "", "SQUARE_ROOT"], [33, 3, 1, "", "SQUARE_ROOT_2"], [33, 3, 1, "", "SQUARE_ROTATED"], [33, 3, 1, "", "SQUARE_ROTATED_FILLED"], [33, 3, 1, "", "SQUARE_ROTATED_FORBID"], [33, 3, 1, "", "SQUARE_ROTATED_FORBID_2"], [33, 3, 1, "", "SQUARE_ROTATED_OFF"], [33, 3, 1, "", "SQUARE_ROUNDED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_DOWN_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_LEFT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_RIGHT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP"], [33, 3, 1, "", "SQUARE_ROUNDED_ARROW_UP_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHECK"], [33, 3, 1, "", "SQUARE_ROUNDED_CHECK_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRONS_UP_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP"], [33, 3, 1, "", "SQUARE_ROUNDED_CHEVRON_UP_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_A"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_B"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_C"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_D"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_E"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_F"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_G"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_H"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_I"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_J"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_K"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_L"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_M"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_N"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_O"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_P"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_Q"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_R"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_S"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_T"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_U"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_V"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_W"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_X"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_Y"], [33, 3, 1, "", "SQUARE_ROUNDED_LETTER_Z"], [33, 3, 1, "", "SQUARE_ROUNDED_MINUS"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_0_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_1_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_2_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_3_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_4_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_5_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_6_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_7_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_8_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9"], [33, 3, 1, "", "SQUARE_ROUNDED_NUMBER_9_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_PLUS"], [33, 3, 1, "", "SQUARE_ROUNDED_PLUS_FILLED"], [33, 3, 1, "", "SQUARE_ROUNDED_X"], [33, 3, 1, "", "SQUARE_ROUNDED_X_FILLED"], [33, 3, 1, "", "SQUARE_TOGGLE"], [33, 3, 1, "", "SQUARE_TOGGLE_HORIZONTAL"], [33, 3, 1, "", "SQUARE_X"], [33, 3, 1, "", "STACK"], [33, 3, 1, "", "STACK_2"], [33, 3, 1, "", "STACK_3"], [33, 3, 1, "", "STACK_POP"], [33, 3, 1, "", "STACK_PUSH"], [33, 3, 1, "", "STAIRS"], [33, 3, 1, "", "STAIRS_DOWN"], [33, 3, 1, "", "STAIRS_UP"], [33, 3, 1, "", "STAR"], [33, 3, 1, "", "STARS"], [33, 3, 1, "", "STARS_FILLED"], [33, 3, 1, "", "STARS_OFF"], [33, 3, 1, "", "STAR_FILLED"], [33, 3, 1, "", "STAR_HALF"], [33, 3, 1, "", "STAR_HALF_FILLED"], [33, 3, 1, "", "STAR_OFF"], [33, 3, 1, "", "STATUS_CHANGE"], [33, 3, 1, "", "STEAM"], [33, 3, 1, "", "STEERING_WHEEL"], [33, 3, 1, "", "STEERING_WHEEL_OFF"], [33, 3, 1, "", "STEP_INTO"], [33, 3, 1, "", "STEP_OUT"], [33, 3, 1, "", "STEREO_GLASSES"], [33, 3, 1, "", "STETHOSCOPE"], [33, 3, 1, "", "STETHOSCOPE_OFF"], [33, 3, 1, "", "STICKER"], [33, 3, 1, "", "STORM"], [33, 3, 1, "", "STORM_OFF"], [33, 3, 1, "", "STRETCHING"], [33, 3, 1, "", "STRETCHING_2"], [33, 3, 1, "", "STRIKETHROUGH"], [33, 3, 1, "", "SUBMARINE"], [33, 3, 1, "", "SUBSCRIPT"], [33, 3, 1, "", "SUBTASK"], [33, 3, 1, "", "SUM"], [33, 3, 1, "", "SUM_OFF"], [33, 3, 1, "", "SUN"], [33, 3, 1, "", "SUNGLASSES"], [33, 3, 1, "", "SUNRISE"], [33, 3, 1, "", "SUNSET"], [33, 3, 1, "", "SUNSET_2"], [33, 3, 1, "", "SUN_FILLED"], [33, 3, 1, "", "SUN_HIGH"], [33, 3, 1, "", "SUN_LOW"], [33, 3, 1, "", "SUN_MOON"], [33, 3, 1, "", "SUN_OFF"], [33, 3, 1, "", "SUN_WIND"], [33, 3, 1, "", "SUPERSCRIPT"], [33, 3, 1, "", "SVG"], [33, 3, 1, "", "SWIMMING"], [33, 3, 1, "", "SWIPE"], [33, 3, 1, "", "SWITCH"], [33, 3, 1, "", "SWITCH_2"], [33, 3, 1, "", "SWITCH_3"], [33, 3, 1, "", "SWITCH_HORIZONTAL"], [33, 3, 1, "", "SWITCH_VERTICAL"], [33, 3, 1, "", "SWORD"], [33, 3, 1, "", "SWORDS"], [33, 3, 1, "", "SWORD_OFF"], [33, 3, 1, "", "S_TURN_DOWN"], [33, 3, 1, "", "S_TURN_LEFT"], [33, 3, 1, "", "S_TURN_RIGHT"], [33, 3, 1, "", "S_TURN_UP"], [33, 3, 1, "", "TABLE"], [33, 3, 1, "", "TABLE_ALIAS"], [33, 3, 1, "", "TABLE_COLUMN"], [33, 3, 1, "", "TABLE_DOWN"], [33, 3, 1, "", "TABLE_EXPORT"], [33, 3, 1, "", "TABLE_FILLED"], [33, 3, 1, "", "TABLE_HEART"], [33, 3, 1, "", "TABLE_IMPORT"], [33, 3, 1, "", "TABLE_MINUS"], [33, 3, 1, "", "TABLE_OFF"], [33, 3, 1, "", "TABLE_OPTIONS"], [33, 3, 1, "", "TABLE_PLUS"], [33, 3, 1, "", "TABLE_ROW"], [33, 3, 1, "", "TABLE_SHARE"], [33, 3, 1, "", "TABLE_SHORTCUT"], [33, 3, 1, "", "TAG"], [33, 3, 1, "", "TAGS"], [33, 3, 1, "", "TAGS_OFF"], [33, 3, 1, "", "TAG_OFF"], [33, 3, 1, "", "TALLYMARKS"], [33, 3, 1, "", "TALLYMARK_1"], [33, 3, 1, "", "TALLYMARK_2"], [33, 3, 1, "", "TALLYMARK_3"], [33, 3, 1, "", "TALLYMARK_4"], [33, 3, 1, "", "TANK"], [33, 3, 1, "", "TARGET"], [33, 3, 1, "", "TARGET_ARROW"], [33, 3, 1, "", "TARGET_OFF"], [33, 3, 1, "", "TEAPOT"], [33, 3, 1, "", "TELESCOPE"], [33, 3, 1, "", "TELESCOPE_OFF"], [33, 3, 1, "", "TEMPERATURE"], [33, 3, 1, "", "TEMPERATURE_CELSIUS"], [33, 3, 1, "", "TEMPERATURE_FAHRENHEIT"], [33, 3, 1, "", "TEMPERATURE_MINUS"], [33, 3, 1, "", "TEMPERATURE_OFF"], [33, 3, 1, "", "TEMPERATURE_PLUS"], [33, 3, 1, "", "TEMPLATE"], [33, 3, 1, "", "TEMPLATE_OFF"], [33, 3, 1, "", "TENT"], [33, 3, 1, "", "TENT_OFF"], [33, 3, 1, "", "TERMINAL"], [33, 3, 1, "", "TERMINAL_2"], [33, 3, 1, "", "TEST_PIPE"], [33, 3, 1, "", "TEST_PIPE_2"], [33, 3, 1, "", "TEST_PIPE_OFF"], [33, 3, 1, "", "TEX"], [33, 3, 1, "", "TEXTURE"], [33, 3, 1, "", "TEXT_CAPTION"], [33, 3, 1, "", "TEXT_COLOR"], [33, 3, 1, "", "TEXT_DECREASE"], [33, 3, 1, "", "TEXT_DIRECTION_LTR"], [33, 3, 1, "", "TEXT_DIRECTION_RTL"], [33, 3, 1, "", "TEXT_INCREASE"], [33, 3, 1, "", "TEXT_ORIENTATION"], [33, 3, 1, "", "TEXT_PLUS"], [33, 3, 1, "", "TEXT_RECOGNITION"], [33, 3, 1, "", "TEXT_RESIZE"], [33, 3, 1, "", "TEXT_SIZE"], [33, 3, 1, "", "TEXT_SPELLCHECK"], [33, 3, 1, "", "TEXT_WRAP"], [33, 3, 1, "", "TEXT_WRAP_DISABLED"], [33, 3, 1, "", "THEATER"], [33, 3, 1, "", "THERMOMETER"], [33, 3, 1, "", "THUMB_DOWN"], [33, 3, 1, "", "THUMB_DOWN_FILLED"], [33, 3, 1, "", "THUMB_DOWN_OFF"], [33, 3, 1, "", "THUMB_UP"], [33, 3, 1, "", "THUMB_UP_FILLED"], [33, 3, 1, "", "THUMB_UP_OFF"], [33, 3, 1, "", "TICKET"], [33, 3, 1, "", "TICKET_OFF"], [33, 3, 1, "", "TIC_TAC"], [33, 3, 1, "", "TIE"], [33, 3, 1, "", "TILDE"], [33, 3, 1, "", "TILT_SHIFT"], [33, 3, 1, "", "TILT_SHIFT_OFF"], [33, 3, 1, "", "TIMELINE"], [33, 3, 1, "", "TIMELINE_EVENT"], [33, 3, 1, "", "TIMELINE_EVENT_EXCLAMATION"], [33, 3, 1, "", "TIMELINE_EVENT_MINUS"], [33, 3, 1, "", "TIMELINE_EVENT_PLUS"], [33, 3, 1, "", "TIMELINE_EVENT_TEXT"], [33, 3, 1, "", "TIMELINE_EVENT_X"], [33, 3, 1, "", "TIME_DURATION_0"], [33, 3, 1, "", "TIME_DURATION_10"], [33, 3, 1, "", "TIME_DURATION_15"], [33, 3, 1, "", "TIME_DURATION_30"], [33, 3, 1, "", "TIME_DURATION_45"], [33, 3, 1, "", "TIME_DURATION_5"], [33, 3, 1, "", "TIME_DURATION_60"], [33, 3, 1, "", "TIME_DURATION_90"], [33, 3, 1, "", "TIME_DURATION_OFF"], [33, 3, 1, "", "TIR"], [33, 3, 1, "", "TOGGLE_LEFT"], [33, 3, 1, "", "TOGGLE_RIGHT"], [33, 3, 1, "", "TOILET_PAPER"], [33, 3, 1, "", "TOILET_PAPER_OFF"], [33, 3, 1, "", "TOML"], [33, 3, 1, "", "TOOL"], [33, 3, 1, "", "TOOLS"], [33, 3, 1, "", "TOOLS_KITCHEN"], [33, 3, 1, "", "TOOLS_KITCHEN_2"], [33, 3, 1, "", "TOOLS_KITCHEN_2_OFF"], [33, 3, 1, "", "TOOLS_KITCHEN_OFF"], [33, 3, 1, "", "TOOLS_OFF"], [33, 3, 1, "", "TOOLTIP"], [33, 3, 1, "", "TOPOLOGY_BUS"], [33, 3, 1, "", "TOPOLOGY_COMPLEX"], [33, 3, 1, "", "TOPOLOGY_FULL"], [33, 3, 1, "", "TOPOLOGY_FULL_HIERARCHY"], [33, 3, 1, "", "TOPOLOGY_RING"], [33, 3, 1, "", "TOPOLOGY_RING_2"], [33, 3, 1, "", "TOPOLOGY_RING_3"], [33, 3, 1, "", "TOPOLOGY_STAR"], [33, 3, 1, "", "TOPOLOGY_STAR_2"], [33, 3, 1, "", "TOPOLOGY_STAR_3"], [33, 3, 1, "", "TOPOLOGY_STAR_RING"], [33, 3, 1, "", "TOPOLOGY_STAR_RING_2"], [33, 3, 1, "", "TOPOLOGY_STAR_RING_3"], [33, 3, 1, "", "TORII"], [33, 3, 1, "", "TORNADO"], [33, 3, 1, "", "TOURNAMENT"], [33, 3, 1, "", "TOWER"], [33, 3, 1, "", "TOWER_OFF"], [33, 3, 1, "", "TRACK"], [33, 3, 1, "", "TRACTOR"], [33, 3, 1, "", "TRADEMARK"], [33, 3, 1, "", "TRAFFIC_CONE"], [33, 3, 1, "", "TRAFFIC_CONE_OFF"], [33, 3, 1, "", "TRAFFIC_LIGHTS"], [33, 3, 1, "", "TRAFFIC_LIGHTS_OFF"], [33, 3, 1, "", "TRAIN"], [33, 3, 1, "", "TRANSFER_IN"], [33, 3, 1, "", "TRANSFER_OUT"], [33, 3, 1, "", "TRANSFORM"], [33, 3, 1, "", "TRANSFORM_FILLED"], [33, 3, 1, "", "TRANSITION_BOTTOM"], [33, 3, 1, "", "TRANSITION_LEFT"], [33, 3, 1, "", "TRANSITION_RIGHT"], [33, 3, 1, "", "TRANSITION_TOP"], [33, 3, 1, "", "TRASH"], [33, 3, 1, "", "TRASH_FILLED"], [33, 3, 1, "", "TRASH_OFF"], [33, 3, 1, "", "TRASH_X"], [33, 3, 1, "", "TRASH_X_FILLED"], [33, 3, 1, "", "TREADMILL"], [33, 3, 1, "", "TREE"], [33, 3, 1, "", "TREES"], [33, 3, 1, "", "TREKKING"], [33, 3, 1, "", "TRENDING_DOWN"], [33, 3, 1, "", "TRENDING_DOWN_2"], [33, 3, 1, "", "TRENDING_DOWN_3"], [33, 3, 1, "", "TRENDING_UP"], [33, 3, 1, "", "TRENDING_UP_2"], [33, 3, 1, "", "TRENDING_UP_3"], [33, 3, 1, "", "TRIANGLE"], [33, 3, 1, "", "TRIANGLES"], [33, 3, 1, "", "TRIANGLE_FILLED"], [33, 3, 1, "", "TRIANGLE_INVERTED"], [33, 3, 1, "", "TRIANGLE_INVERTED_FILLED"], [33, 3, 1, "", "TRIANGLE_OFF"], [33, 3, 1, "", "TRIANGLE_SQUARE_CIRCLE"], [33, 3, 1, "", "TRIDENT"], [33, 3, 1, "", "TROLLEY"], [33, 3, 1, "", "TROPHY"], [33, 3, 1, "", "TROPHY_FILLED"], [33, 3, 1, "", "TROPHY_OFF"], [33, 3, 1, "", "TROWEL"], [33, 3, 1, "", "TRUCK"], [33, 3, 1, "", "TRUCK_DELIVERY"], [33, 3, 1, "", "TRUCK_LOADING"], [33, 3, 1, "", "TRUCK_OFF"], [33, 3, 1, "", "TRUCK_RETURN"], [33, 3, 1, "", "TXT"], [33, 3, 1, "", "TYPOGRAPHY"], [33, 3, 1, "", "TYPOGRAPHY_OFF"], [33, 3, 1, "", "UFO"], [33, 3, 1, "", "UFO_OFF"], [33, 3, 1, "", "UMBRELLA"], [33, 3, 1, "", "UMBRELLA_FILLED"], [33, 3, 1, "", "UMBRELLA_OFF"], [33, 3, 1, "", "UNDERLINE"], [33, 3, 1, "", "UNLINK"], [33, 3, 1, "", "UPLOAD"], [33, 3, 1, "", "URGENT"], [33, 3, 1, "", "USB"], [33, 3, 1, "", "USER"], [33, 3, 1, "", "USERS"], [33, 3, 1, "", "USERS_GROUP"], [33, 3, 1, "", "USERS_MINUS"], [33, 3, 1, "", "USERS_PLUS"], [33, 3, 1, "", "USER_BOLT"], [33, 3, 1, "", "USER_CANCEL"], [33, 3, 1, "", "USER_CHECK"], [33, 3, 1, "", "USER_CIRCLE"], [33, 3, 1, "", "USER_CODE"], [33, 3, 1, "", "USER_COG"], [33, 3, 1, "", "USER_DOLLAR"], [33, 3, 1, "", "USER_DOWN"], [33, 3, 1, "", "USER_EDIT"], [33, 3, 1, "", "USER_EXCLAMATION"], [33, 3, 1, "", "USER_HEART"], [33, 3, 1, "", "USER_MINUS"], [33, 3, 1, "", "USER_OFF"], [33, 3, 1, "", "USER_PAUSE"], [33, 3, 1, "", "USER_PIN"], [33, 3, 1, "", "USER_PLUS"], [33, 3, 1, "", "USER_QUESTION"], [33, 3, 1, "", "USER_SEARCH"], [33, 3, 1, "", "USER_SHARE"], [33, 3, 1, "", "USER_SHIELD"], [33, 3, 1, "", "USER_STAR"], [33, 3, 1, "", "USER_UP"], [33, 3, 1, "", "USER_X"], [33, 3, 1, "", "UV_INDEX"], [33, 3, 1, "", "UX_CIRCLE"], [33, 3, 1, "", "VACCINE"], [33, 3, 1, "", "VACCINE_BOTTLE"], [33, 3, 1, "", "VACCINE_BOTTLE_OFF"], [33, 3, 1, "", "VACCINE_OFF"], [33, 3, 1, "", "VACUUM_CLEANER"], [33, 3, 1, "", "VARIABLE"], [33, 3, 1, "", "VARIABLE_MINUS"], [33, 3, 1, "", "VARIABLE_OFF"], [33, 3, 1, "", "VARIABLE_PLUS"], [33, 3, 1, "", "VECTOR"], [33, 3, 1, "", "VECTOR_BEZIER"], [33, 3, 1, "", "VECTOR_BEZIER_2"], [33, 3, 1, "", "VECTOR_BEZIER_ARC"], [33, 3, 1, "", "VECTOR_BEZIER_CIRCLE"], [33, 3, 1, "", "VECTOR_OFF"], [33, 3, 1, "", "VECTOR_SPLINE"], [33, 3, 1, "", "VECTOR_TRIANGLE"], [33, 3, 1, "", "VECTOR_TRIANGLE_OFF"], [33, 3, 1, "", "VENUS"], [33, 3, 1, "", "VERSIONS"], [33, 3, 1, "", "VERSIONS_FILLED"], [33, 3, 1, "", "VERSIONS_OFF"], [33, 3, 1, "", "VIDEO"], [33, 3, 1, "", "VIDEO_MINUS"], [33, 3, 1, "", "VIDEO_OFF"], [33, 3, 1, "", "VIDEO_PLUS"], [33, 3, 1, "", "VIEWFINDER"], [33, 3, 1, "", "VIEWFINDER_OFF"], [33, 3, 1, "", "VIEWPORT_NARROW"], [33, 3, 1, "", "VIEWPORT_WIDE"], [33, 3, 1, "", "VIEW_360"], [33, 3, 1, "", "VIEW_360_OFF"], [33, 3, 1, "", "VINYL"], [33, 3, 1, "", "VIP"], [33, 3, 1, "", "VIP_OFF"], [33, 3, 1, "", "VIRUS"], [33, 3, 1, "", "VIRUS_OFF"], [33, 3, 1, "", "VIRUS_SEARCH"], [33, 3, 1, "", "VOCABULARY"], [33, 3, 1, "", "VOCABULARY_OFF"], [33, 3, 1, "", "VOLCANO"], [33, 3, 1, "", "VOLUME"], [33, 3, 1, "", "VOLUME_2"], [33, 3, 1, "", "VOLUME_3"], [33, 3, 1, "", "VOLUME_OFF"], [33, 3, 1, "", "WALK"], [33, 3, 1, "", "WALL"], [33, 3, 1, "", "WALLET"], [33, 3, 1, "", "WALLET_OFF"], [33, 3, 1, "", "WALLPAPER"], [33, 3, 1, "", "WALLPAPER_OFF"], [33, 3, 1, "", "WALL_OFF"], [33, 3, 1, "", "WAND"], [33, 3, 1, "", "WAND_OFF"], [33, 3, 1, "", "WASH"], [33, 3, 1, "", "WASH_DRY"], [33, 3, 1, "", "WASH_DRYCLEAN"], [33, 3, 1, "", "WASH_DRYCLEAN_OFF"], [33, 3, 1, "", "WASH_DRY_1"], [33, 3, 1, "", "WASH_DRY_2"], [33, 3, 1, "", "WASH_DRY_3"], [33, 3, 1, "", "WASH_DRY_A"], [33, 3, 1, "", "WASH_DRY_DIP"], [33, 3, 1, "", "WASH_DRY_F"], [33, 3, 1, "", "WASH_DRY_FLAT"], [33, 3, 1, "", "WASH_DRY_HANG"], [33, 3, 1, "", "WASH_DRY_OFF"], [33, 3, 1, "", "WASH_DRY_P"], [33, 3, 1, "", "WASH_DRY_SHADE"], [33, 3, 1, "", "WASH_DRY_W"], [33, 3, 1, "", "WASH_ECO"], [33, 3, 1, "", "WASH_GENTLE"], [33, 3, 1, "", "WASH_HAND"], [33, 3, 1, "", "WASH_MACHINE"], [33, 3, 1, "", "WASH_OFF"], [33, 3, 1, "", "WASH_PRESS"], [33, 3, 1, "", "WASH_TEMPERATURE_1"], [33, 3, 1, "", "WASH_TEMPERATURE_2"], [33, 3, 1, "", "WASH_TEMPERATURE_3"], [33, 3, 1, "", "WASH_TEMPERATURE_4"], [33, 3, 1, "", "WASH_TEMPERATURE_5"], [33, 3, 1, "", "WASH_TEMPERATURE_6"], [33, 3, 1, "", "WASH_TUMBLE_DRY"], [33, 3, 1, "", "WASH_TUMBLE_OFF"], [33, 3, 1, "", "WATERPOLO"], [33, 3, 1, "", "WAVE_SAW_TOOL"], [33, 3, 1, "", "WAVE_SINE"], [33, 3, 1, "", "WAVE_SQUARE"], [33, 3, 1, "", "WEBHOOK"], [33, 3, 1, "", "WEBHOOK_OFF"], [33, 3, 1, "", "WEIGHT"], [33, 3, 1, "", "WHEELCHAIR"], [33, 3, 1, "", "WHEELCHAIR_OFF"], [33, 3, 1, "", "WHIRL"], [33, 3, 1, "", "WIFI"], [33, 3, 1, "", "WIFI_0"], [33, 3, 1, "", "WIFI_1"], [33, 3, 1, "", "WIFI_2"], [33, 3, 1, "", "WIFI_OFF"], [33, 3, 1, "", "WIND"], [33, 3, 1, "", "WINDMILL"], [33, 3, 1, "", "WINDMILL_FILLED"], [33, 3, 1, "", "WINDMILL_OFF"], [33, 3, 1, "", "WINDOW"], [33, 3, 1, "", "WINDOW_MAXIMIZE"], [33, 3, 1, "", "WINDOW_MINIMIZE"], [33, 3, 1, "", "WINDOW_OFF"], [33, 3, 1, "", "WINDSOCK"], [33, 3, 1, "", "WIND_OFF"], [33, 3, 1, "", "WIPER"], [33, 3, 1, "", "WIPER_WASH"], [33, 3, 1, "", "WOMAN"], [33, 3, 1, "", "WOOD"], [33, 3, 1, "", "WORLD"], [33, 3, 1, "", "WORLD_BOLT"], [33, 3, 1, "", "WORLD_CANCEL"], [33, 3, 1, "", "WORLD_CHECK"], [33, 3, 1, "", "WORLD_CODE"], [33, 3, 1, "", "WORLD_COG"], [33, 3, 1, "", "WORLD_DOLLAR"], [33, 3, 1, "", "WORLD_DOWN"], [33, 3, 1, "", "WORLD_DOWNLOAD"], [33, 3, 1, "", "WORLD_EXCLAMATION"], [33, 3, 1, "", "WORLD_HEART"], [33, 3, 1, "", "WORLD_LATITUDE"], [33, 3, 1, "", "WORLD_LONGITUDE"], [33, 3, 1, "", "WORLD_MINUS"], [33, 3, 1, "", "WORLD_OFF"], [33, 3, 1, "", "WORLD_PAUSE"], [33, 3, 1, "", "WORLD_PIN"], [33, 3, 1, "", "WORLD_PLUS"], [33, 3, 1, "", "WORLD_QUESTION"], [33, 3, 1, "", "WORLD_SEARCH"], [33, 3, 1, "", "WORLD_SHARE"], [33, 3, 1, "", "WORLD_STAR"], [33, 3, 1, "", "WORLD_UP"], [33, 3, 1, "", "WORLD_UPLOAD"], [33, 3, 1, "", "WORLD_WWW"], [33, 3, 1, "", "WORLD_X"], [33, 3, 1, "", "WRECKING_BALL"], [33, 3, 1, "", "WRITING"], [33, 3, 1, "", "WRITING_OFF"], [33, 3, 1, "", "WRITING_SIGN"], [33, 3, 1, "", "WRITING_SIGN_OFF"], [33, 3, 1, "", "X"], [33, 3, 1, "", "XBOX_A"], [33, 3, 1, "", "XBOX_B"], [33, 3, 1, "", "XBOX_X"], [33, 3, 1, "", "XBOX_Y"], [33, 3, 1, "", "XD"], [33, 3, 1, "", "YIN_YANG"], [33, 3, 1, "", "YIN_YANG_FILLED"], [33, 3, 1, "", "YOGA"], [33, 3, 1, "", "ZEPPELIN"], [33, 3, 1, "", "ZEPPELIN_OFF"], [33, 3, 1, "", "ZIP"], [33, 3, 1, "", "ZODIAC_AQUARIUS"], [33, 3, 1, "", "ZODIAC_ARIES"], [33, 3, 1, "", "ZODIAC_CANCER"], [33, 3, 1, "", "ZODIAC_CAPRICORN"], [33, 3, 1, "", "ZODIAC_GEMINI"], [33, 3, 1, "", "ZODIAC_LEO"], [33, 3, 1, "", "ZODIAC_LIBRA"], [33, 3, 1, "", "ZODIAC_PISCES"], [33, 3, 1, "", "ZODIAC_SAGITTARIUS"], [33, 3, 1, "", "ZODIAC_SCORPIO"], [33, 3, 1, "", "ZODIAC_TAURUS"], [33, 3, 1, "", "ZODIAC_VIRGO"], [33, 3, 1, "", "ZOOM_CANCEL"], [33, 3, 1, "", "ZOOM_CHECK"], [33, 3, 1, "", "ZOOM_CHECK_FILLED"], [33, 3, 1, "", "ZOOM_CODE"], [33, 3, 1, "", "ZOOM_EXCLAMATION"], [33, 3, 1, "", "ZOOM_FILLED"], [33, 3, 1, "", "ZOOM_IN"], [33, 3, 1, "", "ZOOM_IN_AREA"], [33, 3, 1, "", "ZOOM_IN_AREA_FILLED"], [33, 3, 1, "", "ZOOM_IN_FILLED"], [33, 3, 1, "", "ZOOM_MONEY"], [33, 3, 1, "", "ZOOM_OUT"], [33, 3, 1, "", "ZOOM_OUT_AREA"], [33, 3, 1, "", "ZOOM_OUT_FILLED"], [33, 3, 1, "", "ZOOM_PAN"], [33, 3, 1, "", "ZOOM_QUESTION"], [33, 3, 1, "", "ZOOM_REPLACE"], [33, 3, 1, "", "ZOOM_RESET"], [33, 3, 1, "", "ZZZ"], [33, 3, 1, "", "ZZZ_OFF"]], "viser.IconName": [[33, 1, 1, "", "__new__"]], "viser.ImageHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.LabelHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.MeshHandle": [[37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.MeshSkinnedBoneHandle": [[37, 2, 1, "", "position"], [37, 2, 1, "", "wxyz"]], "viser.MeshSkinnedHandle": [[37, 3, 1, "", "bones"], [37, 1, 1, "", "on_click"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.PointCloudHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.SceneApi": [[36, 1, 1, "", "add_3d_gui_container"], [36, 1, 1, "", "add_batched_axes"], [36, 1, 1, "", "add_box"], [36, 1, 1, "", "add_camera_frustum"], [36, 1, 1, "", "add_frame"], [36, 1, 1, "", "add_glb"], [36, 1, 1, "", "add_grid"], [36, 1, 1, "", "add_icosphere"], [36, 1, 1, "", "add_image"], [36, 1, 1, "", "add_label"], [36, 1, 1, "", "add_mesh_simple"], [36, 1, 1, "", "add_mesh_skinned"], [36, 1, 1, "", "add_mesh_trimesh"], [36, 1, 1, "", "add_point_cloud"], [36, 1, 1, "", "add_spline_catmull_rom"], [36, 1, 1, "", "add_spline_cubic_bezier"], [36, 1, 1, "", "add_transform_controls"], [36, 1, 1, "", "on_pointer_callback_removed"], [36, 1, 1, "", "on_pointer_event"], [36, 1, 1, "", "remove_pointer_callback"], [36, 1, 1, "", "reset"], [36, 1, 1, "", "set_background_image"], [36, 1, 1, "", "set_global_visibility"], [36, 1, 1, "", "set_up_direction"], [36, 3, 1, "", "world_axes"]], "viser.SceneNodeHandle": [[37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.SceneNodePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 3, 1, "", "event"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "target"]], "viser.ScenePointerEvent": [[4, 3, 1, "", "client"], [4, 3, 1, "", "client_id"], [4, 2, 1, "", "event"], [4, 3, 1, "", "event_type"], [4, 3, 1, "", "ray_direction"], [4, 3, 1, "", "ray_origin"], [4, 3, 1, "", "screen_pos"]], "viser.TransformControlsHandle": [[37, 1, 1, "", "on_click"], [37, 1, 1, "", "on_update"], [37, 2, 1, "", "position"], [37, 1, 1, "", "remove"], [37, 2, 1, "", "update_timestamp"], [37, 2, 1, "", "visible"], [37, 2, 1, "", "wxyz"]], "viser.ViserServer": [[38, 1, 1, "", "atomic"], [38, 1, 1, "", "disconnect_share_url"], [38, 1, 1, "", "flush"], [38, 1, 1, "", "get_clients"], [38, 1, 1, "", "get_host"], [38, 1, 1, "", "get_port"], [38, 3, 1, "", "gui"], [38, 1, 1, "", "on_client_connect"], [38, 1, 1, "", "on_client_disconnect"], [38, 1, 1, "", "request_share_url"], [38, 3, 1, "", "scene"], [38, 1, 1, "", "send_file_download"], [38, 1, 1, "", "stop"]], "viser.extras": [[30, 0, 1, "", "Record3dFrame"], [30, 0, 1, "", "Record3dLoader"], [30, 0, 1, "", "ViserUrdf"]], "viser.extras.Record3dFrame": [[30, 3, 1, "", "K"], [30, 3, 1, "", "T_world_camera"], [30, 3, 1, "", "depth"], [30, 1, 1, "", "get_point_cloud"], [30, 3, 1, "", "mask"], [30, 3, 1, "", "rgb"]], "viser.extras.Record3dLoader": [[30, 1, 1, "", "get_frame"], [30, 1, 1, "", "num_frames"]], "viser.extras.ViserUrdf": [[30, 1, 1, "", "get_actuated_joint_limits"], [30, 1, 1, "", "get_actuated_joint_names"], [30, 1, 1, "", "update_cfg"]], "viser.infra": [[35, 0, 1, "", "Message"], [35, 0, 1, "", "TypeScriptAnnotationOverride"], [35, 0, 1, "", "WebsockClientConnection"], [35, 0, 1, "", "WebsockMessageHandler"], [35, 0, 1, "", "WebsockServer"], [35, 5, 1, "", "generate_typescript_interfaces"]], "viser.infra.Message": [[35, 1, 1, "", "as_serializable_dict"], [35, 1, 1, "", "deserialize"], [35, 3, 1, "", "excluded_self_client"], [35, 1, 1, "", "get_subclasses"], [35, 1, 1, "", "redundancy_key"]], "viser.infra.TypeScriptAnnotationOverride": [[35, 3, 1, "", "annotation"]], "viser.infra.WebsockClientConnection": [[35, 1, 1, "", "atomic"], [35, 1, 1, "", "queue_message"], [35, 1, 1, "", "register_handler"], [35, 1, 1, "", "start_recording"], [35, 1, 1, "", "unregister_handler"], [35, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockMessageHandler": [[35, 1, 1, "", "atomic"], [35, 1, 1, "", "queue_message"], [35, 1, 1, "", "register_handler"], [35, 1, 1, "", "start_recording"], [35, 1, 1, "", "unregister_handler"], [35, 1, 1, "", "unsafe_send_message"]], "viser.infra.WebsockServer": [[35, 1, 1, "", "atomic"], [35, 1, 1, "", "flush"], [35, 1, 1, "", "flush_client"], [35, 1, 1, "", "on_client_connect"], [35, 1, 1, "", "on_client_disconnect"], [35, 1, 1, "", "queue_message"], [35, 1, 1, "", "register_handler"], [35, 1, 1, "", "start"], [35, 1, 1, "", "start_recording"], [35, 1, 1, "", "stop"], [35, 1, 1, "", "unregister_handler"], [35, 1, 1, "", "unsafe_send_message"]], "viser.transforms": [[39, 0, 1, "", "MatrixLieGroup"], [39, 0, 1, "", "SE2"], [39, 0, 1, "", "SE3"], [39, 0, 1, "", "SEBase"], [39, 0, 1, "", "SO2"], [39, 0, 1, "", "SO3"], [39, 0, 1, "", "SOBase"]], "viser.transforms.MatrixLieGroup": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"]], "viser.transforms.SE2": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_rotation"], [39, 1, 1, "", "from_rotation_and_translation"], [39, 1, 1, "", "from_translation"], [39, 1, 1, "", "from_xy_theta"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 1, 1, "", "rotation"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 1, 1, "", "translation"], [39, 3, 1, "", "unit_complex_xy"]], "viser.transforms.SE3": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_rotation"], [39, 1, 1, "", "from_rotation_and_translation"], [39, 1, 1, "", "from_translation"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 1, 1, "", "rotation"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 1, 1, "", "translation"], [39, 3, 1, "", "wxyz_xyz"]], "viser.transforms.SEBase": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_rotation"], [39, 1, 1, "", "from_rotation_and_translation"], [39, 1, 1, "", "from_translation"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 1, 1, "", "rotation"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 1, 1, "", "translation"]], "viser.transforms.SO2": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "as_radians"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_radians"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 3, 1, "", "unit_complex"]], "viser.transforms.SO3": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "as_quaternion_xyzw"], [39, 1, 1, "", "as_rpy_radians"], [39, 1, 1, "", "compute_pitch_radians"], [39, 1, 1, "", "compute_roll_radians"], [39, 1, 1, "", "compute_yaw_radians"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "from_quaternion_xyzw"], [39, 1, 1, "", "from_rpy_radians"], [39, 1, 1, "", "from_x_radians"], [39, 1, 1, "", "from_y_radians"], [39, 1, 1, "", "from_z_radians"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"], [39, 3, 1, "", "wxyz"]], "viser.transforms.SOBase": [[39, 1, 1, "", "__matmul__"], [39, 1, 1, "", "adjoint"], [39, 1, 1, "", "apply"], [39, 1, 1, "", "as_matrix"], [39, 1, 1, "", "exp"], [39, 1, 1, "", "from_matrix"], [39, 1, 1, "", "get_batch_axes"], [39, 1, 1, "", "identity"], [39, 1, 1, "", "inverse"], [39, 1, 1, "", "log"], [39, 3, 1, "", "matrix_dim"], [39, 1, 1, "", "multiply"], [39, 1, 1, "", "normalize"], [39, 1, 1, "", "parameters"], [39, 3, 1, "", "parameters_dim"], [39, 3, 1, "", "space_dim"], [39, 3, 1, "", "tangent_dim"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:module", "5": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"]}, "titleterms": {"camera": [0, 2, 9, 10], "handl": [0, 1, 32, 37], "client": [1, 3], "frame": [2, 5], "convent": 2, "scene": [2, 25, 36, 37], "tree": 2, "name": 2, "pose": [2, 9], "world": 2, "coordin": [2, 5], "develop": 3, "python": 3, "instal": [3, 34], "messag": 3, "updat": 3, "event": [4, 17, 25], "imag": 6, "gui": [7, 8, 20, 31, 32], "basic": [7, 21], "callback": 8, "command": 10, "mesh": [11, 17], "record3d": [12, 30], "visual": [12, 13, 14, 15, 16, 29], "smpl": [13, 29], "model": [13, 29], "robot": 14, "urdf": [14, 30], "realsens": 15, "colmap": 16, "click": 17, "theme": 18, "markdown": 19, "demonstr": 19, "3d": 20, "element": 20, "modal": 21, "depth": 22, "composit": 22, "spline": 23, "get": 24, "render": 24, "pointer": 25, "set": 26, "up": 26, "direct": 26, "game": 27, "plotli": 28, "human": 29, "bodi": 29, "requir": 29, "npz": 29, "file": 29, "helper": 30, "api": [31, 36], "icon": 33, "viser": [34, 38], "commun": 35, "server": 38, "transform": 39}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Camera Handles": [[0, "camera-handles"]], "Client Handles": [[1, "client-handles"]], "Frame Conventions": [[2, "frame-conventions"]], "Scene tree naming": [[2, "scene-tree-naming"]], "Poses": [[2, "poses"]], "World coordinates": [[2, "world-coordinates"]], "Cameras": [[2, "cameras"]], "Development": [[3, "development"]], "Python install": [[3, "python-install"]], "Message updates": [[3, "message-updates"]], "Client development": [[3, "client-development"]], "Events": [[4, "events"]], "Coordinate frames": [[5, "coordinate-frames"]], "Images": [[6, "images"]], "GUI basics": [[7, "gui-basics"]], "GUI callbacks": [[8, "gui-callbacks"]], "Camera poses": [[9, "camera-poses"]], "Camera commands": [[10, "camera-commands"]], "Meshes": [[11, "meshes"]], "Record3D visualizer": [[12, "record3d-visualizer"]], "SMPL model visualizer": [[13, "smpl-model-visualizer"]], "Robot URDF visualizer": [[14, "robot-urdf-visualizer"]], "RealSense visualizer": [[15, "realsense-visualizer"]], "COLMAP visualizer": [[16, "colmap-visualizer"]], "Mesh click events": [[17, "mesh-click-events"]], "Theming": [[18, "theming"]], "Markdown Demonstration": [[19, "markdown-demonstration"]], "3D GUI Elements": [[20, "d-gui-elements"]], "Modal basics": [[21, "modal-basics"]], "Depth compositing": [[22, "depth-compositing"]], "Splines": [[23, "splines"]], "Get Renders": [[24, "get-renders"]], "Scene pointer events.": [[25, "scene-pointer-events"]], "Set Up Direction": [[26, "set-up-direction"]], "Games": [[27, "games"]], "Plotly.": [[28, "plotly"]], "Visualizer for SMPL human body models. Requires a .npz model file.": [[29, "visualizer-for-smpl-human-body-models-requires-a-npz-model-file"]], "Record3D + URDF Helpers": [[30, "record3d-urdf-helpers"]], "GUI API": [[31, "gui-api"]], "GUI Handles": [[32, "gui-handles"]], "Icons": [[33, "icons"]], "viser": [[34, "viser"]], "Installation": [[34, "installation"]], "Communication": [[35, "communication"]], "Scene API": [[36, "scene-api"]], "Scene Handles": [[37, "scene-handles"]], "Viser Server": [[38, "viser-server"]], "Transforms": [[39, "transforms"]]}, "indexentries": {"camerahandle (class in viser)": [[0, "viser.CameraHandle"]], "aspect (viser.camerahandle property)": [[0, "viser.CameraHandle.aspect"]], "client (viser.camerahandle property)": [[0, "viser.CameraHandle.client"]], "fov (viser.camerahandle property)": [[0, "viser.CameraHandle.fov"]], "get_render() (viser.camerahandle method)": [[0, "viser.CameraHandle.get_render"]], "look_at (viser.camerahandle property)": [[0, "viser.CameraHandle.look_at"]], "on_update() (viser.camerahandle method)": [[0, "viser.CameraHandle.on_update"]], "position (viser.camerahandle property)": [[0, "viser.CameraHandle.position"]], "up_direction (viser.camerahandle property)": [[0, "viser.CameraHandle.up_direction"]], "update_timestamp (viser.camerahandle property)": [[0, "viser.CameraHandle.update_timestamp"]], "wxyz (viser.camerahandle property)": [[0, "viser.CameraHandle.wxyz"]], "clienthandle (class in viser)": [[1, "viser.ClientHandle"]], "atomic() (viser.clienthandle method)": [[1, "viser.ClientHandle.atomic"]], "camera (viser.clienthandle attribute)": [[1, "viser.ClientHandle.camera"]], "client_id (viser.clienthandle attribute)": [[1, "viser.ClientHandle.client_id"]], "flush() (viser.clienthandle method)": [[1, "viser.ClientHandle.flush"]], "gui (viser.clienthandle attribute)": [[1, "viser.ClientHandle.gui"]], "scene (viser.clienthandle attribute)": [[1, "viser.ClientHandle.scene"]], "send_file_download() (viser.clienthandle method)": [[1, "viser.ClientHandle.send_file_download"]], "guievent (class in viser)": [[4, "viser.GuiEvent"]], "scenenodepointerevent (class in viser)": [[4, "viser.SceneNodePointerEvent"]], "scenepointerevent (class in viser)": [[4, "viser.ScenePointerEvent"]], "client (viser.guievent attribute)": [[4, "viser.GuiEvent.client"]], "client (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client"]], "client (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client"]], "client_id (viser.guievent attribute)": [[4, "viser.GuiEvent.client_id"]], "client_id (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.client_id"]], "client_id (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.client_id"]], "event (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.event"]], "event (viser.scenepointerevent property)": [[4, "viser.ScenePointerEvent.event"]], "event_type (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.event_type"]], "ray_direction (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_direction"]], "ray_direction (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_direction"]], "ray_origin (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.ray_origin"]], "ray_origin (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.ray_origin"]], "screen_pos (viser.scenepointerevent attribute)": [[4, "viser.ScenePointerEvent.screen_pos"]], "target (viser.guievent attribute)": [[4, "viser.GuiEvent.target"]], "target (viser.scenenodepointerevent attribute)": [[4, "viser.SceneNodePointerEvent.target"]], "k (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.K"]], "record3dframe (class in viser.extras)": [[30, "viser.extras.Record3dFrame"]], "record3dloader (class in viser.extras)": [[30, "viser.extras.Record3dLoader"]], "t_world_camera (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.T_world_camera"]], "viserurdf (class in viser.extras)": [[30, "viser.extras.ViserUrdf"]], "depth (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.depth"]], "get_actuated_joint_limits() (viser.extras.viserurdf method)": [[30, "viser.extras.ViserUrdf.get_actuated_joint_limits"]], "get_actuated_joint_names() (viser.extras.viserurdf method)": [[30, "viser.extras.ViserUrdf.get_actuated_joint_names"]], "get_frame() (viser.extras.record3dloader method)": [[30, "viser.extras.Record3dLoader.get_frame"]], "get_point_cloud() (viser.extras.record3dframe method)": [[30, "viser.extras.Record3dFrame.get_point_cloud"]], "mask (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.mask"]], "module": [[30, "module-viser.extras"], [35, "module-viser.infra"], [39, "module-viser.transforms"]], "num_frames() (viser.extras.record3dloader method)": [[30, "viser.extras.Record3dLoader.num_frames"]], "rgb (viser.extras.record3dframe attribute)": [[30, "viser.extras.Record3dFrame.rgb"]], "update_cfg() (viser.extras.viserurdf method)": [[30, "viser.extras.ViserUrdf.update_cfg"]], "viser.extras": [[30, "module-viser.extras"]], "guiapi (class in viser)": [[31, "viser.GuiApi"]], "add_button() (viser.guiapi method)": [[31, "viser.GuiApi.add_button"]], "add_button_group() (viser.guiapi method)": [[31, "viser.GuiApi.add_button_group"]], "add_checkbox() (viser.guiapi method)": [[31, "viser.GuiApi.add_checkbox"]], "add_dropdown() (viser.guiapi method)": [[31, "viser.GuiApi.add_dropdown"]], "add_folder() (viser.guiapi method)": [[31, "viser.GuiApi.add_folder"]], "add_markdown() (viser.guiapi method)": [[31, "viser.GuiApi.add_markdown"]], "add_modal() (viser.guiapi method)": [[31, "viser.GuiApi.add_modal"]], "add_multi_slider() (viser.guiapi method)": [[31, "viser.GuiApi.add_multi_slider"]], "add_number() (viser.guiapi method)": [[31, "viser.GuiApi.add_number"]], "add_plotly() (viser.guiapi method)": [[31, "viser.GuiApi.add_plotly"]], "add_progress_bar() (viser.guiapi method)": [[31, "viser.GuiApi.add_progress_bar"]], "add_rgb() (viser.guiapi method)": [[31, "viser.GuiApi.add_rgb"]], "add_rgba() (viser.guiapi method)": [[31, "viser.GuiApi.add_rgba"]], "add_slider() (viser.guiapi method)": [[31, "viser.GuiApi.add_slider"]], "add_tab_group() (viser.guiapi method)": [[31, "viser.GuiApi.add_tab_group"]], "add_text() (viser.guiapi method)": [[31, "viser.GuiApi.add_text"]], "add_upload_button() (viser.guiapi method)": [[31, "viser.GuiApi.add_upload_button"]], "add_vector2() (viser.guiapi method)": [[31, "viser.GuiApi.add_vector2"]], "add_vector3() (viser.guiapi method)": [[31, "viser.GuiApi.add_vector3"]], "configure_theme() (viser.guiapi method)": [[31, "viser.GuiApi.configure_theme"]], "reset() (viser.guiapi method)": [[31, "viser.GuiApi.reset"]], "set_panel_label() (viser.guiapi method)": [[31, "viser.GuiApi.set_panel_label"]], "guibuttongrouphandle (class in viser)": [[32, "viser.GuiButtonGroupHandle"]], "guibuttonhandle (class in viser)": [[32, "viser.GuiButtonHandle"]], "guidropdownhandle (class in viser)": [[32, "viser.GuiDropdownHandle"]], "guifolderhandle (class in viser)": [[32, "viser.GuiFolderHandle"]], "guiinputhandle (class in viser)": [[32, "viser.GuiInputHandle"]], "guimarkdownhandle (class in viser)": [[32, "viser.GuiMarkdownHandle"]], "guiplotlyhandle (class in viser)": [[32, "viser.GuiPlotlyHandle"]], "guitabgrouphandle (class in viser)": [[32, "viser.GuiTabGroupHandle"]], "guitabhandle (class in viser)": [[32, "viser.GuiTabHandle"]], "__post_init__() (viser.guibuttongrouphandle method)": [[32, "viser.GuiButtonGroupHandle.__post_init__"]], "__post_init__() (viser.guibuttonhandle method)": [[32, "viser.GuiButtonHandle.__post_init__"]], "__post_init__() (viser.guidropdownhandle method)": [[32, "viser.GuiDropdownHandle.__post_init__"]], "__post_init__() (viser.guiinputhandle method)": [[32, "viser.GuiInputHandle.__post_init__"]], "__post_init__() (viser.guimarkdownhandle method)": [[32, "viser.GuiMarkdownHandle.__post_init__"]], "__post_init__() (viser.guiplotlyhandle method)": [[32, "viser.GuiPlotlyHandle.__post_init__"]], "add_tab() (viser.guitabgrouphandle method)": [[32, "viser.GuiTabGroupHandle.add_tab"]], "aspect (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.aspect"]], "content (viser.guimarkdownhandle property)": [[32, "viser.GuiMarkdownHandle.content"]], "disabled (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.disabled"]], "disabled (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.disabled"]], "disabled (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.disabled"]], "disabled (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.disabled"]], "figure (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.figure"]], "on_click() (viser.guibuttongrouphandle method)": [[32, "viser.GuiButtonGroupHandle.on_click"]], "on_click() (viser.guibuttonhandle method)": [[32, "viser.GuiButtonHandle.on_click"]], "on_update() (viser.guidropdownhandle method)": [[32, "viser.GuiDropdownHandle.on_update"]], "on_update() (viser.guiinputhandle method)": [[32, "viser.GuiInputHandle.on_update"]], "options (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.options"]], "order (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.order"]], "order (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.order"]], "order (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.order"]], "order (viser.guifolderhandle property)": [[32, "viser.GuiFolderHandle.order"]], "order (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.order"]], "order (viser.guimarkdownhandle property)": [[32, "viser.GuiMarkdownHandle.order"]], "order (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.order"]], "order (viser.guitabgrouphandle property)": [[32, "viser.GuiTabGroupHandle.order"]], "remove() (viser.guibuttongrouphandle method)": [[32, "viser.GuiButtonGroupHandle.remove"]], "remove() (viser.guibuttonhandle method)": [[32, "viser.GuiButtonHandle.remove"]], "remove() (viser.guidropdownhandle method)": [[32, "viser.GuiDropdownHandle.remove"]], "remove() (viser.guifolderhandle method)": [[32, "viser.GuiFolderHandle.remove"]], "remove() (viser.guiinputhandle method)": [[32, "viser.GuiInputHandle.remove"]], "remove() (viser.guimarkdownhandle method)": [[32, "viser.GuiMarkdownHandle.remove"]], "remove() (viser.guiplotlyhandle method)": [[32, "viser.GuiPlotlyHandle.remove"]], "remove() (viser.guitabgrouphandle method)": [[32, "viser.GuiTabGroupHandle.remove"]], "remove() (viser.guitabhandle method)": [[32, "viser.GuiTabHandle.remove"]], "update_timestamp (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.update_timestamp"]], "update_timestamp (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.update_timestamp"]], "update_timestamp (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.update_timestamp"]], "update_timestamp (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.update_timestamp"]], "value (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.value"]], "value (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.value"]], "value (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.value"]], "value (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.value"]], "visible (viser.guibuttongrouphandle property)": [[32, "viser.GuiButtonGroupHandle.visible"]], "visible (viser.guibuttonhandle property)": [[32, "viser.GuiButtonHandle.visible"]], "visible (viser.guidropdownhandle property)": [[32, "viser.GuiDropdownHandle.visible"]], "visible (viser.guiinputhandle property)": [[32, "viser.GuiInputHandle.visible"]], "visible (viser.guimarkdownhandle property)": [[32, "viser.GuiMarkdownHandle.visible"]], "visible (viser.guiplotlyhandle property)": [[32, "viser.GuiPlotlyHandle.visible"]], "abacus (viser.icon attribute)": [[33, "viser.Icon.ABACUS"]], "abacus_off (viser.icon attribute)": [[33, "viser.Icon.ABACUS_OFF"]], "abc (viser.icon attribute)": [[33, "viser.Icon.ABC"]], "accessible (viser.icon attribute)": [[33, "viser.Icon.ACCESSIBLE"]], "accessible_off (viser.icon attribute)": [[33, "viser.Icon.ACCESSIBLE_OFF"]], "accessible_off_filled (viser.icon attribute)": [[33, "viser.Icon.ACCESSIBLE_OFF_FILLED"]], "access_point (viser.icon attribute)": [[33, "viser.Icon.ACCESS_POINT"]], "access_point_off (viser.icon attribute)": [[33, "viser.Icon.ACCESS_POINT_OFF"]], "activity (viser.icon attribute)": [[33, "viser.Icon.ACTIVITY"]], "activity_heartbeat (viser.icon attribute)": [[33, "viser.Icon.ACTIVITY_HEARTBEAT"]], "ad (viser.icon attribute)": [[33, "viser.Icon.AD"]], "address_book (viser.icon attribute)": [[33, "viser.Icon.ADDRESS_BOOK"]], "address_book_off (viser.icon attribute)": [[33, "viser.Icon.ADDRESS_BOOK_OFF"]], "adjustments (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS"]], "adjustments_alt (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_ALT"]], "adjustments_bolt (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_BOLT"]], "adjustments_cancel (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_CANCEL"]], "adjustments_check (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_CHECK"]], "adjustments_code (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_CODE"]], "adjustments_cog (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_COG"]], "adjustments_dollar (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_DOLLAR"]], "adjustments_down (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_DOWN"]], "adjustments_exclamation (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_EXCLAMATION"]], "adjustments_filled (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_FILLED"]], "adjustments_heart (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_HEART"]], "adjustments_horizontal (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_HORIZONTAL"]], "adjustments_minus (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_MINUS"]], "adjustments_off (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_OFF"]], "adjustments_pause (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_PAUSE"]], "adjustments_pin (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_PIN"]], "adjustments_plus (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_PLUS"]], "adjustments_question (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_QUESTION"]], "adjustments_search (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_SEARCH"]], "adjustments_share (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_SHARE"]], "adjustments_star (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_STAR"]], "adjustments_up (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_UP"]], "adjustments_x (viser.icon attribute)": [[33, "viser.Icon.ADJUSTMENTS_X"]], "ad_2 (viser.icon attribute)": [[33, "viser.Icon.AD_2"]], "ad_circle (viser.icon attribute)": [[33, "viser.Icon.AD_CIRCLE"]], "ad_circle_filled (viser.icon attribute)": [[33, "viser.Icon.AD_CIRCLE_FILLED"]], "ad_circle_off (viser.icon attribute)": [[33, "viser.Icon.AD_CIRCLE_OFF"]], "ad_filled (viser.icon attribute)": [[33, "viser.Icon.AD_FILLED"]], "ad_off (viser.icon attribute)": [[33, "viser.Icon.AD_OFF"]], "aerial_lift (viser.icon attribute)": [[33, "viser.Icon.AERIAL_LIFT"]], "affiliate (viser.icon attribute)": [[33, "viser.Icon.AFFILIATE"]], "affiliate_filled (viser.icon attribute)": [[33, "viser.Icon.AFFILIATE_FILLED"]], "air_balloon (viser.icon attribute)": [[33, "viser.Icon.AIR_BALLOON"]], "air_conditioning (viser.icon attribute)": [[33, "viser.Icon.AIR_CONDITIONING"]], "air_conditioning_disabled (viser.icon attribute)": [[33, "viser.Icon.AIR_CONDITIONING_DISABLED"]], "alarm (viser.icon attribute)": [[33, "viser.Icon.ALARM"]], "alarm_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_FILLED"]], "alarm_minus (viser.icon attribute)": [[33, "viser.Icon.ALARM_MINUS"]], "alarm_minus_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_MINUS_FILLED"]], "alarm_off (viser.icon attribute)": [[33, "viser.Icon.ALARM_OFF"]], "alarm_plus (viser.icon attribute)": [[33, "viser.Icon.ALARM_PLUS"]], "alarm_plus_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_PLUS_FILLED"]], "alarm_snooze (viser.icon attribute)": [[33, "viser.Icon.ALARM_SNOOZE"]], "alarm_snooze_filled (viser.icon attribute)": [[33, "viser.Icon.ALARM_SNOOZE_FILLED"]], "album (viser.icon attribute)": [[33, "viser.Icon.ALBUM"]], "album_off (viser.icon attribute)": [[33, "viser.Icon.ALBUM_OFF"]], "alert_circle (viser.icon attribute)": [[33, "viser.Icon.ALERT_CIRCLE"]], "alert_circle_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_CIRCLE_FILLED"]], "alert_hexagon (viser.icon attribute)": [[33, "viser.Icon.ALERT_HEXAGON"]], "alert_hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_HEXAGON_FILLED"]], "alert_octagon (viser.icon attribute)": [[33, "viser.Icon.ALERT_OCTAGON"]], "alert_octagon_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_OCTAGON_FILLED"]], "alert_small (viser.icon attribute)": [[33, "viser.Icon.ALERT_SMALL"]], "alert_square (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE"]], "alert_square_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE_FILLED"]], "alert_square_rounded (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE_ROUNDED"]], "alert_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_SQUARE_ROUNDED_FILLED"]], "alert_triangle (viser.icon attribute)": [[33, "viser.Icon.ALERT_TRIANGLE"]], "alert_triangle_filled (viser.icon attribute)": [[33, "viser.Icon.ALERT_TRIANGLE_FILLED"]], "alien (viser.icon attribute)": [[33, "viser.Icon.ALIEN"]], "alien_filled (viser.icon attribute)": [[33, "viser.Icon.ALIEN_FILLED"]], "align_box_bottom_center (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER"]], "align_box_bottom_center_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_CENTER_FILLED"]], "align_box_bottom_left (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT"]], "align_box_bottom_left_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_LEFT_FILLED"]], "align_box_bottom_right (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT"]], "align_box_bottom_right_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_BOTTOM_RIGHT_FILLED"]], "align_box_center_bottom (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_BOTTOM"]], "align_box_center_middle (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE"]], "align_box_center_middle_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_MIDDLE_FILLED"]], "align_box_center_stretch (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_STRETCH"]], "align_box_center_top (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_CENTER_TOP"]], "align_box_left_bottom (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM"]], "align_box_left_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_BOTTOM_FILLED"]], "align_box_left_middle (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE"]], "align_box_left_middle_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_MIDDLE_FILLED"]], "align_box_left_stretch (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_STRETCH"]], "align_box_left_top (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_TOP"]], "align_box_left_top_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_LEFT_TOP_FILLED"]], "align_box_right_bottom (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM"]], "align_box_right_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_BOTTOM_FILLED"]], "align_box_right_middle (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE"]], "align_box_right_middle_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_MIDDLE_FILLED"]], "align_box_right_stretch (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_STRETCH"]], "align_box_right_top (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_TOP"]], "align_box_right_top_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_RIGHT_TOP_FILLED"]], "align_box_top_center (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_CENTER"]], "align_box_top_center_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_CENTER_FILLED"]], "align_box_top_left (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_LEFT"]], "align_box_top_left_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_LEFT_FILLED"]], "align_box_top_right (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_RIGHT"]], "align_box_top_right_filled (viser.icon attribute)": [[33, "viser.Icon.ALIGN_BOX_TOP_RIGHT_FILLED"]], "align_center (viser.icon attribute)": [[33, "viser.Icon.ALIGN_CENTER"]], "align_justified (viser.icon attribute)": [[33, "viser.Icon.ALIGN_JUSTIFIED"]], "align_left (viser.icon attribute)": [[33, "viser.Icon.ALIGN_LEFT"]], "align_right (viser.icon attribute)": [[33, "viser.Icon.ALIGN_RIGHT"]], "alpha (viser.icon attribute)": [[33, "viser.Icon.ALPHA"]], "alphabet_cyrillic (viser.icon attribute)": [[33, "viser.Icon.ALPHABET_CYRILLIC"]], "alphabet_greek (viser.icon attribute)": [[33, "viser.Icon.ALPHABET_GREEK"]], "alphabet_latin (viser.icon attribute)": [[33, "viser.Icon.ALPHABET_LATIN"]], "ambulance (viser.icon attribute)": [[33, "viser.Icon.AMBULANCE"]], "ampersand (viser.icon attribute)": [[33, "viser.Icon.AMPERSAND"]], "analyze (viser.icon attribute)": [[33, "viser.Icon.ANALYZE"]], "analyze_filled (viser.icon attribute)": [[33, "viser.Icon.ANALYZE_FILLED"]], "analyze_off (viser.icon attribute)": [[33, "viser.Icon.ANALYZE_OFF"]], "anchor (viser.icon attribute)": [[33, "viser.Icon.ANCHOR"]], "anchor_off (viser.icon attribute)": [[33, "viser.Icon.ANCHOR_OFF"]], "angle (viser.icon attribute)": [[33, "viser.Icon.ANGLE"]], "ankh (viser.icon attribute)": [[33, "viser.Icon.ANKH"]], "antenna (viser.icon attribute)": [[33, "viser.Icon.ANTENNA"]], "antenna_bars_1 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_1"]], "antenna_bars_2 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_2"]], "antenna_bars_3 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_3"]], "antenna_bars_4 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_4"]], "antenna_bars_5 (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_5"]], "antenna_bars_off (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_BARS_OFF"]], "antenna_off (viser.icon attribute)": [[33, "viser.Icon.ANTENNA_OFF"]], "aperture (viser.icon attribute)": [[33, "viser.Icon.APERTURE"]], "aperture_off (viser.icon attribute)": [[33, "viser.Icon.APERTURE_OFF"]], "api (viser.icon attribute)": [[33, "viser.Icon.API"]], "api_app (viser.icon attribute)": [[33, "viser.Icon.API_APP"]], "api_app_off (viser.icon attribute)": [[33, "viser.Icon.API_APP_OFF"]], "api_off (viser.icon attribute)": [[33, "viser.Icon.API_OFF"]], "apple (viser.icon attribute)": [[33, "viser.Icon.APPLE"]], "apps (viser.icon attribute)": [[33, "viser.Icon.APPS"]], "apps_filled (viser.icon attribute)": [[33, "viser.Icon.APPS_FILLED"]], "apps_off (viser.icon attribute)": [[33, "viser.Icon.APPS_OFF"]], "app_window (viser.icon attribute)": [[33, "viser.Icon.APP_WINDOW"]], "app_window_filled (viser.icon attribute)": [[33, "viser.Icon.APP_WINDOW_FILLED"]], "archive (viser.icon attribute)": [[33, "viser.Icon.ARCHIVE"]], "archive_filled (viser.icon attribute)": [[33, "viser.Icon.ARCHIVE_FILLED"]], "archive_off (viser.icon attribute)": [[33, "viser.Icon.ARCHIVE_OFF"]], "armchair (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR"]], "armchair_2 (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR_2"]], "armchair_2_off (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR_2_OFF"]], "armchair_off (viser.icon attribute)": [[33, "viser.Icon.ARMCHAIR_OFF"]], "arrows_cross (viser.icon attribute)": [[33, "viser.Icon.ARROWS_CROSS"]], "arrows_diagonal (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL"]], "arrows_diagonal_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL_2"]], "arrows_diagonal_minimize (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE"]], "arrows_diagonal_minimize_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIAGONAL_MINIMIZE_2"]], "arrows_diff (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DIFF"]], "arrows_double_ne_sw (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_NE_SW"]], "arrows_double_nw_se (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_NW_SE"]], "arrows_double_se_nw (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_SE_NW"]], "arrows_double_sw_ne (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOUBLE_SW_NE"]], "arrows_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOWN"]], "arrows_down_up (viser.icon attribute)": [[33, "viser.Icon.ARROWS_DOWN_UP"]], "arrows_exchange (viser.icon attribute)": [[33, "viser.Icon.ARROWS_EXCHANGE"]], "arrows_exchange_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_EXCHANGE_2"]], "arrows_horizontal (viser.icon attribute)": [[33, "viser.Icon.ARROWS_HORIZONTAL"]], "arrows_join (viser.icon attribute)": [[33, "viser.Icon.ARROWS_JOIN"]], "arrows_join_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_JOIN_2"]], "arrows_left (viser.icon attribute)": [[33, "viser.Icon.ARROWS_LEFT"]], "arrows_left_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_LEFT_DOWN"]], "arrows_left_right (viser.icon attribute)": [[33, "viser.Icon.ARROWS_LEFT_RIGHT"]], "arrows_maximize (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MAXIMIZE"]], "arrows_minimize (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MINIMIZE"]], "arrows_move (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MOVE"]], "arrows_move_horizontal (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MOVE_HORIZONTAL"]], "arrows_move_vertical (viser.icon attribute)": [[33, "viser.Icon.ARROWS_MOVE_VERTICAL"]], "arrows_random (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RANDOM"]], "arrows_right (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RIGHT"]], "arrows_right_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RIGHT_DOWN"]], "arrows_right_left (viser.icon attribute)": [[33, "viser.Icon.ARROWS_RIGHT_LEFT"]], "arrows_shuffle (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SHUFFLE"]], "arrows_shuffle_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SHUFFLE_2"]], "arrows_sort (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SORT"]], "arrows_split (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SPLIT"]], "arrows_split_2 (viser.icon attribute)": [[33, "viser.Icon.ARROWS_SPLIT_2"]], "arrows_transfer_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_TRANSFER_DOWN"]], "arrows_transfer_up (viser.icon attribute)": [[33, "viser.Icon.ARROWS_TRANSFER_UP"]], "arrows_up (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP"]], "arrows_up_down (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP_DOWN"]], "arrows_up_left (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP_LEFT"]], "arrows_up_right (viser.icon attribute)": [[33, "viser.Icon.ARROWS_UP_RIGHT"]], "arrows_vertical (viser.icon attribute)": [[33, "viser.Icon.ARROWS_VERTICAL"]], "arrow_autofit_content (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_CONTENT"]], "arrow_autofit_content_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_CONTENT_FILLED"]], "arrow_autofit_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_DOWN"]], "arrow_autofit_height (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_HEIGHT"]], "arrow_autofit_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_LEFT"]], "arrow_autofit_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_RIGHT"]], "arrow_autofit_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_UP"]], "arrow_autofit_width (viser.icon attribute)": [[33, "viser.Icon.ARROW_AUTOFIT_WIDTH"]], "arrow_back (viser.icon attribute)": [[33, "viser.Icon.ARROW_BACK"]], "arrow_back_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BACK_UP"]], "arrow_back_up_double (viser.icon attribute)": [[33, "viser.Icon.ARROW_BACK_UP_DOUBLE"]], "arrow_badge_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_DOWN"]], "arrow_badge_down_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_DOWN_FILLED"]], "arrow_badge_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_LEFT"]], "arrow_badge_left_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_LEFT_FILLED"]], "arrow_badge_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_RIGHT"]], "arrow_badge_right_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_RIGHT_FILLED"]], "arrow_badge_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_UP"]], "arrow_badge_up_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BADGE_UP_FILLED"]], "arrow_bar_both (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_BOTH"]], "arrow_bar_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_DOWN"]], "arrow_bar_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_LEFT"]], "arrow_bar_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_RIGHT"]], "arrow_bar_to_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_DOWN"]], "arrow_bar_to_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_LEFT"]], "arrow_bar_to_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_RIGHT"]], "arrow_bar_to_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_TO_UP"]], "arrow_bar_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BAR_UP"]], "arrow_bear_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_LEFT"]], "arrow_bear_left_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_LEFT_2"]], "arrow_bear_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_RIGHT"]], "arrow_bear_right_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_BEAR_RIGHT_2"]], "arrow_big_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN"]], "arrow_big_down_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_FILLED"]], "arrow_big_down_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINE"]], "arrow_big_down_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINES"]], "arrow_big_down_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINES_FILLED"]], "arrow_big_down_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_DOWN_LINE_FILLED"]], "arrow_big_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT"]], "arrow_big_left_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_FILLED"]], "arrow_big_left_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINE"]], "arrow_big_left_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINES"]], "arrow_big_left_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINES_FILLED"]], "arrow_big_left_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_LEFT_LINE_FILLED"]], "arrow_big_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT"]], "arrow_big_right_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_FILLED"]], "arrow_big_right_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINE"]], "arrow_big_right_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINES"]], "arrow_big_right_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINES_FILLED"]], "arrow_big_right_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_RIGHT_LINE_FILLED"]], "arrow_big_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP"]], "arrow_big_up_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_FILLED"]], "arrow_big_up_line (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINE"]], "arrow_big_up_lines (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINES"]], "arrow_big_up_lines_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINES_FILLED"]], "arrow_big_up_line_filled (viser.icon attribute)": [[33, "viser.Icon.ARROW_BIG_UP_LINE_FILLED"]], "arrow_bounce (viser.icon attribute)": [[33, "viser.Icon.ARROW_BOUNCE"]], "arrow_capsule (viser.icon attribute)": [[33, "viser.Icon.ARROW_CAPSULE"]], "arrow_curve_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_CURVE_LEFT"]], "arrow_curve_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_CURVE_RIGHT"]], "arrow_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN"]], "arrow_down_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_BAR"]], "arrow_down_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_CIRCLE"]], "arrow_down_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_LEFT"]], "arrow_down_left_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_LEFT_CIRCLE"]], "arrow_down_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_RHOMBUS"]], "arrow_down_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_RIGHT"]], "arrow_down_right_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_RIGHT_CIRCLE"]], "arrow_down_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_SQUARE"]], "arrow_down_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_DOWN_TAIL"]], "arrow_elbow_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ELBOW_LEFT"]], "arrow_elbow_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ELBOW_RIGHT"]], "arrow_fork (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORK"]], "arrow_forward (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORWARD"]], "arrow_forward_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORWARD_UP"]], "arrow_forward_up_double (viser.icon attribute)": [[33, "viser.Icon.ARROW_FORWARD_UP_DOUBLE"]], "arrow_guide (viser.icon attribute)": [[33, "viser.Icon.ARROW_GUIDE"]], "arrow_iteration (viser.icon attribute)": [[33, "viser.Icon.ARROW_ITERATION"]], "arrow_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT"]], "arrow_left_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_BAR"]], "arrow_left_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_CIRCLE"]], "arrow_left_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_RHOMBUS"]], "arrow_left_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_RIGHT"]], "arrow_left_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_SQUARE"]], "arrow_left_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_LEFT_TAIL"]], "arrow_loop_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_LEFT"]], "arrow_loop_left_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_LEFT_2"]], "arrow_loop_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_RIGHT"]], "arrow_loop_right_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_LOOP_RIGHT_2"]], "arrow_merge (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE"]], "arrow_merge_both (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE_BOTH"]], "arrow_merge_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE_LEFT"]], "arrow_merge_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_MERGE_RIGHT"]], "arrow_move_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_DOWN"]], "arrow_move_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_LEFT"]], "arrow_move_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_RIGHT"]], "arrow_move_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_MOVE_UP"]], "arrow_narrow_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_DOWN"]], "arrow_narrow_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_LEFT"]], "arrow_narrow_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_RIGHT"]], "arrow_narrow_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_NARROW_UP"]], "arrow_ramp_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_LEFT"]], "arrow_ramp_left_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_LEFT_2"]], "arrow_ramp_left_3 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_LEFT_3"]], "arrow_ramp_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_RIGHT"]], "arrow_ramp_right_2 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_RIGHT_2"]], "arrow_ramp_right_3 (viser.icon attribute)": [[33, "viser.Icon.ARROW_RAMP_RIGHT_3"]], "arrow_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT"]], "arrow_right_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_BAR"]], "arrow_right_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_CIRCLE"]], "arrow_right_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_RHOMBUS"]], "arrow_right_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_SQUARE"]], "arrow_right_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_RIGHT_TAIL"]], "arrow_rotary_first_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_FIRST_LEFT"]], "arrow_rotary_first_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_FIRST_RIGHT"]], "arrow_rotary_last_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_LAST_LEFT"]], "arrow_rotary_last_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_LAST_RIGHT"]], "arrow_rotary_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_LEFT"]], "arrow_rotary_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_RIGHT"]], "arrow_rotary_straight (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROTARY_STRAIGHT"]], "arrow_roundabout_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROUNDABOUT_LEFT"]], "arrow_roundabout_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_ROUNDABOUT_RIGHT"]], "arrow_sharp_turn_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_SHARP_TURN_LEFT"]], "arrow_sharp_turn_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_SHARP_TURN_RIGHT"]], "arrow_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP"]], "arrow_up_bar (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_BAR"]], "arrow_up_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_CIRCLE"]], "arrow_up_left (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_LEFT"]], "arrow_up_left_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_LEFT_CIRCLE"]], "arrow_up_rhombus (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_RHOMBUS"]], "arrow_up_right (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_RIGHT"]], "arrow_up_right_circle (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_RIGHT_CIRCLE"]], "arrow_up_square (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_SQUARE"]], "arrow_up_tail (viser.icon attribute)": [[33, "viser.Icon.ARROW_UP_TAIL"]], "arrow_wave_left_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_LEFT_DOWN"]], "arrow_wave_left_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_LEFT_UP"]], "arrow_wave_right_down (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_RIGHT_DOWN"]], "arrow_wave_right_up (viser.icon attribute)": [[33, "viser.Icon.ARROW_WAVE_RIGHT_UP"]], "arrow_zig_zag (viser.icon attribute)": [[33, "viser.Icon.ARROW_ZIG_ZAG"]], "artboard (viser.icon attribute)": [[33, "viser.Icon.ARTBOARD"]], "artboard_filled (viser.icon attribute)": [[33, "viser.Icon.ARTBOARD_FILLED"]], "artboard_off (viser.icon attribute)": [[33, "viser.Icon.ARTBOARD_OFF"]], "article (viser.icon attribute)": [[33, "viser.Icon.ARTICLE"]], "article_filled_filled (viser.icon attribute)": [[33, "viser.Icon.ARTICLE_FILLED_FILLED"]], "article_off (viser.icon attribute)": [[33, "viser.Icon.ARTICLE_OFF"]], "aspect_ratio (viser.icon attribute)": [[33, "viser.Icon.ASPECT_RATIO"]], "aspect_ratio_filled (viser.icon attribute)": [[33, "viser.Icon.ASPECT_RATIO_FILLED"]], "aspect_ratio_off (viser.icon attribute)": [[33, "viser.Icon.ASPECT_RATIO_OFF"]], "assembly (viser.icon attribute)": [[33, "viser.Icon.ASSEMBLY"]], "assembly_off (viser.icon attribute)": [[33, "viser.Icon.ASSEMBLY_OFF"]], "asset (viser.icon attribute)": [[33, "viser.Icon.ASSET"]], "asterisk (viser.icon attribute)": [[33, "viser.Icon.ASTERISK"]], "asterisk_simple (viser.icon attribute)": [[33, "viser.Icon.ASTERISK_SIMPLE"]], "at (viser.icon attribute)": [[33, "viser.Icon.AT"]], "atom (viser.icon attribute)": [[33, "viser.Icon.ATOM"]], "atom_2 (viser.icon attribute)": [[33, "viser.Icon.ATOM_2"]], "atom_2_filled (viser.icon attribute)": [[33, "viser.Icon.ATOM_2_FILLED"]], "atom_off (viser.icon attribute)": [[33, "viser.Icon.ATOM_OFF"]], "at_off (viser.icon attribute)": [[33, "viser.Icon.AT_OFF"]], "augmented_reality (viser.icon attribute)": [[33, "viser.Icon.AUGMENTED_REALITY"]], "augmented_reality_2 (viser.icon attribute)": [[33, "viser.Icon.AUGMENTED_REALITY_2"]], "augmented_reality_off (viser.icon attribute)": [[33, "viser.Icon.AUGMENTED_REALITY_OFF"]], "award (viser.icon attribute)": [[33, "viser.Icon.AWARD"]], "award_filled (viser.icon attribute)": [[33, "viser.Icon.AWARD_FILLED"]], "award_off (viser.icon attribute)": [[33, "viser.Icon.AWARD_OFF"]], "axe (viser.icon attribute)": [[33, "viser.Icon.AXE"]], "axis_x (viser.icon attribute)": [[33, "viser.Icon.AXIS_X"]], "axis_y (viser.icon attribute)": [[33, "viser.Icon.AXIS_Y"]], "a_b (viser.icon attribute)": [[33, "viser.Icon.A_B"]], "a_b_2 (viser.icon attribute)": [[33, "viser.Icon.A_B_2"]], "a_b_off (viser.icon attribute)": [[33, "viser.Icon.A_B_OFF"]], "baby_bottle (viser.icon attribute)": [[33, "viser.Icon.BABY_BOTTLE"]], "baby_carriage (viser.icon attribute)": [[33, "viser.Icon.BABY_CARRIAGE"]], "backhoe (viser.icon attribute)": [[33, "viser.Icon.BACKHOE"]], "backpack (viser.icon attribute)": [[33, "viser.Icon.BACKPACK"]], "backpack_off (viser.icon attribute)": [[33, "viser.Icon.BACKPACK_OFF"]], "backslash (viser.icon attribute)": [[33, "viser.Icon.BACKSLASH"]], "backspace (viser.icon attribute)": [[33, "viser.Icon.BACKSPACE"]], "backspace_filled (viser.icon attribute)": [[33, "viser.Icon.BACKSPACE_FILLED"]], "badge (viser.icon attribute)": [[33, "viser.Icon.BADGE"]], "badges (viser.icon attribute)": [[33, "viser.Icon.BADGES"]], "badges_filled (viser.icon attribute)": [[33, "viser.Icon.BADGES_FILLED"]], "badges_off (viser.icon attribute)": [[33, "viser.Icon.BADGES_OFF"]], "badge_3d (viser.icon attribute)": [[33, "viser.Icon.BADGE_3D"]], "badge_4k (viser.icon attribute)": [[33, "viser.Icon.BADGE_4K"]], "badge_8k (viser.icon attribute)": [[33, "viser.Icon.BADGE_8K"]], "badge_ad (viser.icon attribute)": [[33, "viser.Icon.BADGE_AD"]], "badge_ar (viser.icon attribute)": [[33, "viser.Icon.BADGE_AR"]], "badge_cc (viser.icon attribute)": [[33, "viser.Icon.BADGE_CC"]], "badge_filled (viser.icon attribute)": [[33, "viser.Icon.BADGE_FILLED"]], "badge_hd (viser.icon attribute)": [[33, "viser.Icon.BADGE_HD"]], "badge_off (viser.icon attribute)": [[33, "viser.Icon.BADGE_OFF"]], "badge_sd (viser.icon attribute)": [[33, "viser.Icon.BADGE_SD"]], "badge_tm (viser.icon attribute)": [[33, "viser.Icon.BADGE_TM"]], "badge_vo (viser.icon attribute)": [[33, "viser.Icon.BADGE_VO"]], "badge_vr (viser.icon attribute)": [[33, "viser.Icon.BADGE_VR"]], "badge_wc (viser.icon attribute)": [[33, "viser.Icon.BADGE_WC"]], "baguette (viser.icon attribute)": [[33, "viser.Icon.BAGUETTE"]], "balloon (viser.icon attribute)": [[33, "viser.Icon.BALLOON"]], "balloon_filled (viser.icon attribute)": [[33, "viser.Icon.BALLOON_FILLED"]], "balloon_off (viser.icon attribute)": [[33, "viser.Icon.BALLOON_OFF"]], "ballpen (viser.icon attribute)": [[33, "viser.Icon.BALLPEN"]], "ballpen_filled (viser.icon attribute)": [[33, "viser.Icon.BALLPEN_FILLED"]], "ballpen_off (viser.icon attribute)": [[33, "viser.Icon.BALLPEN_OFF"]], "ball_american_football (viser.icon attribute)": [[33, "viser.Icon.BALL_AMERICAN_FOOTBALL"]], "ball_american_football_off (viser.icon attribute)": [[33, "viser.Icon.BALL_AMERICAN_FOOTBALL_OFF"]], "ball_baseball (viser.icon attribute)": [[33, "viser.Icon.BALL_BASEBALL"]], "ball_basketball (viser.icon attribute)": [[33, "viser.Icon.BALL_BASKETBALL"]], "ball_bowling (viser.icon attribute)": [[33, "viser.Icon.BALL_BOWLING"]], "ball_football (viser.icon attribute)": [[33, "viser.Icon.BALL_FOOTBALL"]], "ball_football_off (viser.icon attribute)": [[33, "viser.Icon.BALL_FOOTBALL_OFF"]], "ball_tennis (viser.icon attribute)": [[33, "viser.Icon.BALL_TENNIS"]], "ball_volleyball (viser.icon attribute)": [[33, "viser.Icon.BALL_VOLLEYBALL"]], "ban (viser.icon attribute)": [[33, "viser.Icon.BAN"]], "bandage (viser.icon attribute)": [[33, "viser.Icon.BANDAGE"]], "bandage_filled (viser.icon attribute)": [[33, "viser.Icon.BANDAGE_FILLED"]], "bandage_off (viser.icon attribute)": [[33, "viser.Icon.BANDAGE_OFF"]], "barbell (viser.icon attribute)": [[33, "viser.Icon.BARBELL"]], "barbell_off (viser.icon attribute)": [[33, "viser.Icon.BARBELL_OFF"]], "barcode (viser.icon attribute)": [[33, "viser.Icon.BARCODE"]], "barcode_off (viser.icon attribute)": [[33, "viser.Icon.BARCODE_OFF"]], "barrel (viser.icon attribute)": [[33, "viser.Icon.BARREL"]], "barrel_off (viser.icon attribute)": [[33, "viser.Icon.BARREL_OFF"]], "barrier_block (viser.icon attribute)": [[33, "viser.Icon.BARRIER_BLOCK"]], "barrier_block_off (viser.icon attribute)": [[33, "viser.Icon.BARRIER_BLOCK_OFF"]], "baseline (viser.icon attribute)": [[33, "viser.Icon.BASELINE"]], "baseline_density_large (viser.icon attribute)": [[33, "viser.Icon.BASELINE_DENSITY_LARGE"]], "baseline_density_medium (viser.icon attribute)": [[33, "viser.Icon.BASELINE_DENSITY_MEDIUM"]], "baseline_density_small (viser.icon attribute)": [[33, "viser.Icon.BASELINE_DENSITY_SMALL"]], "basket (viser.icon attribute)": [[33, "viser.Icon.BASKET"]], "basket_filled (viser.icon attribute)": [[33, "viser.Icon.BASKET_FILLED"]], "basket_off (viser.icon attribute)": [[33, "viser.Icon.BASKET_OFF"]], "bat (viser.icon attribute)": [[33, "viser.Icon.BAT"]], "bath (viser.icon attribute)": [[33, "viser.Icon.BATH"]], "bath_filled (viser.icon attribute)": [[33, "viser.Icon.BATH_FILLED"]], "bath_off (viser.icon attribute)": [[33, "viser.Icon.BATH_OFF"]], "battery (viser.icon attribute)": [[33, "viser.Icon.BATTERY"]], "battery_1 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_1"]], "battery_1_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_1_FILLED"]], "battery_2 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_2"]], "battery_2_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_2_FILLED"]], "battery_3 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_3"]], "battery_3_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_3_FILLED"]], "battery_4 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_4"]], "battery_4_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_4_FILLED"]], "battery_automotive (viser.icon attribute)": [[33, "viser.Icon.BATTERY_AUTOMOTIVE"]], "battery_charging (viser.icon attribute)": [[33, "viser.Icon.BATTERY_CHARGING"]], "battery_charging_2 (viser.icon attribute)": [[33, "viser.Icon.BATTERY_CHARGING_2"]], "battery_eco (viser.icon attribute)": [[33, "viser.Icon.BATTERY_ECO"]], "battery_filled (viser.icon attribute)": [[33, "viser.Icon.BATTERY_FILLED"]], "battery_off (viser.icon attribute)": [[33, "viser.Icon.BATTERY_OFF"]], "beach (viser.icon attribute)": [[33, "viser.Icon.BEACH"]], "beach_off (viser.icon attribute)": [[33, "viser.Icon.BEACH_OFF"]], "bed (viser.icon attribute)": [[33, "viser.Icon.BED"]], "bed_filled (viser.icon attribute)": [[33, "viser.Icon.BED_FILLED"]], "bed_off (viser.icon attribute)": [[33, "viser.Icon.BED_OFF"]], "beer (viser.icon attribute)": [[33, "viser.Icon.BEER"]], "beer_filled (viser.icon attribute)": [[33, "viser.Icon.BEER_FILLED"]], "beer_off (viser.icon attribute)": [[33, "viser.Icon.BEER_OFF"]], "bell (viser.icon attribute)": [[33, "viser.Icon.BELL"]], "bell_bolt (viser.icon attribute)": [[33, "viser.Icon.BELL_BOLT"]], "bell_cancel (viser.icon attribute)": [[33, "viser.Icon.BELL_CANCEL"]], "bell_check (viser.icon attribute)": [[33, "viser.Icon.BELL_CHECK"]], "bell_code (viser.icon attribute)": [[33, "viser.Icon.BELL_CODE"]], "bell_cog (viser.icon attribute)": [[33, "viser.Icon.BELL_COG"]], "bell_dollar (viser.icon attribute)": [[33, "viser.Icon.BELL_DOLLAR"]], "bell_down (viser.icon attribute)": [[33, "viser.Icon.BELL_DOWN"]], "bell_exclamation (viser.icon attribute)": [[33, "viser.Icon.BELL_EXCLAMATION"]], "bell_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_FILLED"]], "bell_heart (viser.icon attribute)": [[33, "viser.Icon.BELL_HEART"]], "bell_minus (viser.icon attribute)": [[33, "viser.Icon.BELL_MINUS"]], "bell_minus_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_MINUS_FILLED"]], "bell_off (viser.icon attribute)": [[33, "viser.Icon.BELL_OFF"]], "bell_pause (viser.icon attribute)": [[33, "viser.Icon.BELL_PAUSE"]], "bell_pin (viser.icon attribute)": [[33, "viser.Icon.BELL_PIN"]], "bell_plus (viser.icon attribute)": [[33, "viser.Icon.BELL_PLUS"]], "bell_plus_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_PLUS_FILLED"]], "bell_question (viser.icon attribute)": [[33, "viser.Icon.BELL_QUESTION"]], "bell_ringing (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING"]], "bell_ringing_2 (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING_2"]], "bell_ringing_2_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING_2_FILLED"]], "bell_ringing_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_RINGING_FILLED"]], "bell_school (viser.icon attribute)": [[33, "viser.Icon.BELL_SCHOOL"]], "bell_search (viser.icon attribute)": [[33, "viser.Icon.BELL_SEARCH"]], "bell_share (viser.icon attribute)": [[33, "viser.Icon.BELL_SHARE"]], "bell_star (viser.icon attribute)": [[33, "viser.Icon.BELL_STAR"]], "bell_up (viser.icon attribute)": [[33, "viser.Icon.BELL_UP"]], "bell_x (viser.icon attribute)": [[33, "viser.Icon.BELL_X"]], "bell_x_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_X_FILLED"]], "bell_z (viser.icon attribute)": [[33, "viser.Icon.BELL_Z"]], "bell_z_filled (viser.icon attribute)": [[33, "viser.Icon.BELL_Z_FILLED"]], "beta (viser.icon attribute)": [[33, "viser.Icon.BETA"]], "bible (viser.icon attribute)": [[33, "viser.Icon.BIBLE"]], "bike (viser.icon attribute)": [[33, "viser.Icon.BIKE"]], "bike_off (viser.icon attribute)": [[33, "viser.Icon.BIKE_OFF"]], "binary (viser.icon attribute)": [[33, "viser.Icon.BINARY"]], "binary_off (viser.icon attribute)": [[33, "viser.Icon.BINARY_OFF"]], "binary_tree (viser.icon attribute)": [[33, "viser.Icon.BINARY_TREE"]], "binary_tree_2 (viser.icon attribute)": [[33, "viser.Icon.BINARY_TREE_2"]], "biohazard (viser.icon attribute)": [[33, "viser.Icon.BIOHAZARD"]], "biohazard_off (viser.icon attribute)": [[33, "viser.Icon.BIOHAZARD_OFF"]], "blade (viser.icon attribute)": [[33, "viser.Icon.BLADE"]], "blade_filled (viser.icon attribute)": [[33, "viser.Icon.BLADE_FILLED"]], "bleach (viser.icon attribute)": [[33, "viser.Icon.BLEACH"]], "bleach_chlorine (viser.icon attribute)": [[33, "viser.Icon.BLEACH_CHLORINE"]], "bleach_no_chlorine (viser.icon attribute)": [[33, "viser.Icon.BLEACH_NO_CHLORINE"]], "bleach_off (viser.icon attribute)": [[33, "viser.Icon.BLEACH_OFF"]], "blockquote (viser.icon attribute)": [[33, "viser.Icon.BLOCKQUOTE"]], "bluetooth (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH"]], "bluetooth_connected (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH_CONNECTED"]], "bluetooth_off (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH_OFF"]], "bluetooth_x (viser.icon attribute)": [[33, "viser.Icon.BLUETOOTH_X"]], "blur (viser.icon attribute)": [[33, "viser.Icon.BLUR"]], "blur_off (viser.icon attribute)": [[33, "viser.Icon.BLUR_OFF"]], "bmp (viser.icon attribute)": [[33, "viser.Icon.BMP"]], "bold (viser.icon attribute)": [[33, "viser.Icon.BOLD"]], "bold_off (viser.icon attribute)": [[33, "viser.Icon.BOLD_OFF"]], "bolt (viser.icon attribute)": [[33, "viser.Icon.BOLT"]], "bolt_off (viser.icon attribute)": [[33, "viser.Icon.BOLT_OFF"]], "bomb (viser.icon attribute)": [[33, "viser.Icon.BOMB"]], "bomb_filled (viser.icon attribute)": [[33, "viser.Icon.BOMB_FILLED"]], "bone (viser.icon attribute)": [[33, "viser.Icon.BONE"]], "bone_off (viser.icon attribute)": [[33, "viser.Icon.BONE_OFF"]], "bong (viser.icon attribute)": [[33, "viser.Icon.BONG"]], "bong_off (viser.icon attribute)": [[33, "viser.Icon.BONG_OFF"]], "book (viser.icon attribute)": [[33, "viser.Icon.BOOK"]], "bookmark (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK"]], "bookmarks (viser.icon attribute)": [[33, "viser.Icon.BOOKMARKS"]], "bookmarks_off (viser.icon attribute)": [[33, "viser.Icon.BOOKMARKS_OFF"]], "bookmark_edit (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_EDIT"]], "bookmark_filled (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_FILLED"]], "bookmark_minus (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_MINUS"]], "bookmark_off (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_OFF"]], "bookmark_plus (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_PLUS"]], "bookmark_question (viser.icon attribute)": [[33, "viser.Icon.BOOKMARK_QUESTION"]], "books (viser.icon attribute)": [[33, "viser.Icon.BOOKS"]], "books_off (viser.icon attribute)": [[33, "viser.Icon.BOOKS_OFF"]], "book_2 (viser.icon attribute)": [[33, "viser.Icon.BOOK_2"]], "book_download (viser.icon attribute)": [[33, "viser.Icon.BOOK_DOWNLOAD"]], "book_filled (viser.icon attribute)": [[33, "viser.Icon.BOOK_FILLED"]], "book_off (viser.icon attribute)": [[33, "viser.Icon.BOOK_OFF"]], "book_upload (viser.icon attribute)": [[33, "viser.Icon.BOOK_UPLOAD"]], "border_all (viser.icon attribute)": [[33, "viser.Icon.BORDER_ALL"]], "border_bottom (viser.icon attribute)": [[33, "viser.Icon.BORDER_BOTTOM"]], "border_corners (viser.icon attribute)": [[33, "viser.Icon.BORDER_CORNERS"]], "border_horizontal (viser.icon attribute)": [[33, "viser.Icon.BORDER_HORIZONTAL"]], "border_inner (viser.icon attribute)": [[33, "viser.Icon.BORDER_INNER"]], "border_left (viser.icon attribute)": [[33, "viser.Icon.BORDER_LEFT"]], "border_none (viser.icon attribute)": [[33, "viser.Icon.BORDER_NONE"]], "border_outer (viser.icon attribute)": [[33, "viser.Icon.BORDER_OUTER"]], "border_radius (viser.icon attribute)": [[33, "viser.Icon.BORDER_RADIUS"]], "border_right (viser.icon attribute)": [[33, "viser.Icon.BORDER_RIGHT"]], "border_sides (viser.icon attribute)": [[33, "viser.Icon.BORDER_SIDES"]], "border_style (viser.icon attribute)": [[33, "viser.Icon.BORDER_STYLE"]], "border_style_2 (viser.icon attribute)": [[33, "viser.Icon.BORDER_STYLE_2"]], "border_top (viser.icon attribute)": [[33, "viser.Icon.BORDER_TOP"]], "border_vertical (viser.icon attribute)": [[33, "viser.Icon.BORDER_VERTICAL"]], "bottle (viser.icon attribute)": [[33, "viser.Icon.BOTTLE"]], "bottle_filled (viser.icon attribute)": [[33, "viser.Icon.BOTTLE_FILLED"]], "bottle_off (viser.icon attribute)": [[33, "viser.Icon.BOTTLE_OFF"]], "bounce_left (viser.icon attribute)": [[33, "viser.Icon.BOUNCE_LEFT"]], "bounce_right (viser.icon attribute)": [[33, "viser.Icon.BOUNCE_RIGHT"]], "bow (viser.icon attribute)": [[33, "viser.Icon.BOW"]], "bowl (viser.icon attribute)": [[33, "viser.Icon.BOWL"]], "box (viser.icon attribute)": [[33, "viser.Icon.BOX"]], "box_align_bottom (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM"]], "box_align_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_FILLED"]], "box_align_bottom_left (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT"]], "box_align_bottom_left_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_LEFT_FILLED"]], "box_align_bottom_right (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT"]], "box_align_bottom_right_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_BOTTOM_RIGHT_FILLED"]], "box_align_left (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_LEFT"]], "box_align_left_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_LEFT_FILLED"]], "box_align_right (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_RIGHT"]], "box_align_right_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_RIGHT_FILLED"]], "box_align_top (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP"]], "box_align_top_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_FILLED"]], "box_align_top_left (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_LEFT"]], "box_align_top_left_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_LEFT_FILLED"]], "box_align_top_right (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_RIGHT"]], "box_align_top_right_filled (viser.icon attribute)": [[33, "viser.Icon.BOX_ALIGN_TOP_RIGHT_FILLED"]], "box_margin (viser.icon attribute)": [[33, "viser.Icon.BOX_MARGIN"]], "box_model (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL"]], "box_model_2 (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL_2"]], "box_model_2_off (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL_2_OFF"]], "box_model_off (viser.icon attribute)": [[33, "viser.Icon.BOX_MODEL_OFF"]], "box_multiple (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE"]], "box_multiple_0 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_0"]], "box_multiple_1 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_1"]], "box_multiple_2 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_2"]], "box_multiple_3 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_3"]], "box_multiple_4 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_4"]], "box_multiple_5 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_5"]], "box_multiple_6 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_6"]], "box_multiple_7 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_7"]], "box_multiple_8 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_8"]], "box_multiple_9 (viser.icon attribute)": [[33, "viser.Icon.BOX_MULTIPLE_9"]], "box_off (viser.icon attribute)": [[33, "viser.Icon.BOX_OFF"]], "box_padding (viser.icon attribute)": [[33, "viser.Icon.BOX_PADDING"]], "box_seam (viser.icon attribute)": [[33, "viser.Icon.BOX_SEAM"]], "braces (viser.icon attribute)": [[33, "viser.Icon.BRACES"]], "braces_off (viser.icon attribute)": [[33, "viser.Icon.BRACES_OFF"]], "brackets (viser.icon attribute)": [[33, "viser.Icon.BRACKETS"]], "brackets_contain (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_CONTAIN"]], "brackets_contain_end (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_CONTAIN_END"]], "brackets_contain_start (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_CONTAIN_START"]], "brackets_off (viser.icon attribute)": [[33, "viser.Icon.BRACKETS_OFF"]], "braille (viser.icon attribute)": [[33, "viser.Icon.BRAILLE"]], "brain (viser.icon attribute)": [[33, "viser.Icon.BRAIN"]], "brand_4chan (viser.icon attribute)": [[33, "viser.Icon.BRAND_4CHAN"]], "brand_abstract (viser.icon attribute)": [[33, "viser.Icon.BRAND_ABSTRACT"]], "brand_adobe (viser.icon attribute)": [[33, "viser.Icon.BRAND_ADOBE"]], "brand_adonis_js (viser.icon attribute)": [[33, "viser.Icon.BRAND_ADONIS_JS"]], "brand_airbnb (viser.icon attribute)": [[33, "viser.Icon.BRAND_AIRBNB"]], "brand_airtable (viser.icon attribute)": [[33, "viser.Icon.BRAND_AIRTABLE"]], "brand_algolia (viser.icon attribute)": [[33, "viser.Icon.BRAND_ALGOLIA"]], "brand_alipay (viser.icon attribute)": [[33, "viser.Icon.BRAND_ALIPAY"]], "brand_alpine_js (viser.icon attribute)": [[33, "viser.Icon.BRAND_ALPINE_JS"]], "brand_amazon (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMAZON"]], "brand_amd (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMD"]], "brand_amigo (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMIGO"]], "brand_among_us (viser.icon attribute)": [[33, "viser.Icon.BRAND_AMONG_US"]], "brand_android (viser.icon attribute)": [[33, "viser.Icon.BRAND_ANDROID"]], "brand_angular (viser.icon attribute)": [[33, "viser.Icon.BRAND_ANGULAR"]], "brand_ansible (viser.icon attribute)": [[33, "viser.Icon.BRAND_ANSIBLE"]], "brand_ao3 (viser.icon attribute)": [[33, "viser.Icon.BRAND_AO3"]], "brand_appgallery (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPGALLERY"]], "brand_apple (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPLE"]], "brand_apple_arcade (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPLE_ARCADE"]], "brand_apple_podcast (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPLE_PODCAST"]], "brand_appstore (viser.icon attribute)": [[33, "viser.Icon.BRAND_APPSTORE"]], "brand_asana (viser.icon attribute)": [[33, "viser.Icon.BRAND_ASANA"]], "brand_aws (viser.icon attribute)": [[33, "viser.Icon.BRAND_AWS"]], "brand_azure (viser.icon attribute)": [[33, "viser.Icon.BRAND_AZURE"]], "brand_backbone (viser.icon attribute)": [[33, "viser.Icon.BRAND_BACKBONE"]], "brand_badoo (viser.icon attribute)": [[33, "viser.Icon.BRAND_BADOO"]], "brand_baidu (viser.icon attribute)": [[33, "viser.Icon.BRAND_BAIDU"]], "brand_bandcamp (viser.icon attribute)": [[33, "viser.Icon.BRAND_BANDCAMP"]], "brand_bandlab (viser.icon attribute)": [[33, "viser.Icon.BRAND_BANDLAB"]], "brand_beats (viser.icon attribute)": [[33, "viser.Icon.BRAND_BEATS"]], "brand_behance (viser.icon attribute)": [[33, "viser.Icon.BRAND_BEHANCE"]], "brand_bilibili (viser.icon attribute)": [[33, "viser.Icon.BRAND_BILIBILI"]], "brand_binance (viser.icon attribute)": [[33, "viser.Icon.BRAND_BINANCE"]], "brand_bing (viser.icon attribute)": [[33, "viser.Icon.BRAND_BING"]], "brand_bitbucket (viser.icon attribute)": [[33, "viser.Icon.BRAND_BITBUCKET"]], "brand_blackberry (viser.icon attribute)": [[33, "viser.Icon.BRAND_BLACKBERRY"]], "brand_blender (viser.icon attribute)": [[33, "viser.Icon.BRAND_BLENDER"]], "brand_blogger (viser.icon attribute)": [[33, "viser.Icon.BRAND_BLOGGER"]], "brand_booking (viser.icon attribute)": [[33, "viser.Icon.BRAND_BOOKING"]], "brand_bootstrap (viser.icon attribute)": [[33, "viser.Icon.BRAND_BOOTSTRAP"]], "brand_bulma (viser.icon attribute)": [[33, "viser.Icon.BRAND_BULMA"]], "brand_bumble (viser.icon attribute)": [[33, "viser.Icon.BRAND_BUMBLE"]], "brand_bunpo (viser.icon attribute)": [[33, "viser.Icon.BRAND_BUNPO"]], "brand_cake (viser.icon attribute)": [[33, "viser.Icon.BRAND_CAKE"]], "brand_cakephp (viser.icon attribute)": [[33, "viser.Icon.BRAND_CAKEPHP"]], "brand_campaignmonitor (viser.icon attribute)": [[33, "viser.Icon.BRAND_CAMPAIGNMONITOR"]], "brand_carbon (viser.icon attribute)": [[33, "viser.Icon.BRAND_CARBON"]], "brand_cashapp (viser.icon attribute)": [[33, "viser.Icon.BRAND_CASHAPP"]], "brand_chrome (viser.icon attribute)": [[33, "viser.Icon.BRAND_CHROME"]], "brand_cinema_4d (viser.icon attribute)": [[33, "viser.Icon.BRAND_CINEMA_4D"]], "brand_citymapper (viser.icon attribute)": [[33, "viser.Icon.BRAND_CITYMAPPER"]], "brand_cloudflare (viser.icon attribute)": [[33, "viser.Icon.BRAND_CLOUDFLARE"]], "brand_codecov (viser.icon attribute)": [[33, "viser.Icon.BRAND_CODECOV"]], "brand_codepen (viser.icon attribute)": [[33, "viser.Icon.BRAND_CODEPEN"]], "brand_codesandbox (viser.icon attribute)": [[33, "viser.Icon.BRAND_CODESANDBOX"]], "brand_cohost (viser.icon attribute)": [[33, "viser.Icon.BRAND_COHOST"]], "brand_coinbase (viser.icon attribute)": [[33, "viser.Icon.BRAND_COINBASE"]], "brand_comedy_central (viser.icon attribute)": [[33, "viser.Icon.BRAND_COMEDY_CENTRAL"]], "brand_coreos (viser.icon attribute)": [[33, "viser.Icon.BRAND_COREOS"]], "brand_couchdb (viser.icon attribute)": [[33, "viser.Icon.BRAND_COUCHDB"]], "brand_couchsurfing (viser.icon attribute)": [[33, "viser.Icon.BRAND_COUCHSURFING"]], "brand_cpp (viser.icon attribute)": [[33, "viser.Icon.BRAND_CPP"]], "brand_craft (viser.icon attribute)": [[33, "viser.Icon.BRAND_CRAFT"]], "brand_crunchbase (viser.icon attribute)": [[33, "viser.Icon.BRAND_CRUNCHBASE"]], "brand_css3 (viser.icon attribute)": [[33, "viser.Icon.BRAND_CSS3"]], "brand_ctemplar (viser.icon attribute)": [[33, "viser.Icon.BRAND_CTEMPLAR"]], "brand_cucumber (viser.icon attribute)": [[33, "viser.Icon.BRAND_CUCUMBER"]], "brand_cupra (viser.icon attribute)": [[33, "viser.Icon.BRAND_CUPRA"]], "brand_cypress (viser.icon attribute)": [[33, "viser.Icon.BRAND_CYPRESS"]], "brand_c_sharp (viser.icon attribute)": [[33, "viser.Icon.BRAND_C_SHARP"]], "brand_d3 (viser.icon attribute)": [[33, "viser.Icon.BRAND_D3"]], "brand_days_counter (viser.icon attribute)": [[33, "viser.Icon.BRAND_DAYS_COUNTER"]], "brand_dcos (viser.icon attribute)": [[33, "viser.Icon.BRAND_DCOS"]], "brand_debian (viser.icon attribute)": [[33, "viser.Icon.BRAND_DEBIAN"]], "brand_deezer (viser.icon attribute)": [[33, "viser.Icon.BRAND_DEEZER"]], "brand_deliveroo (viser.icon attribute)": [[33, "viser.Icon.BRAND_DELIVEROO"]], "brand_deno (viser.icon attribute)": [[33, "viser.Icon.BRAND_DENO"]], "brand_denodo (viser.icon attribute)": [[33, "viser.Icon.BRAND_DENODO"]], "brand_deviantart (viser.icon attribute)": [[33, "viser.Icon.BRAND_DEVIANTART"]], "brand_digg (viser.icon attribute)": [[33, "viser.Icon.BRAND_DIGG"]], "brand_dingtalk (viser.icon attribute)": [[33, "viser.Icon.BRAND_DINGTALK"]], "brand_discord (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISCORD"]], "brand_discord_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISCORD_FILLED"]], "brand_disney (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISNEY"]], "brand_disqus (viser.icon attribute)": [[33, "viser.Icon.BRAND_DISQUS"]], "brand_django (viser.icon attribute)": [[33, "viser.Icon.BRAND_DJANGO"]], "brand_docker (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOCKER"]], "brand_doctrine (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOCTRINE"]], "brand_dolby_digital (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOLBY_DIGITAL"]], "brand_douban (viser.icon attribute)": [[33, "viser.Icon.BRAND_DOUBAN"]], "brand_dribbble (viser.icon attribute)": [[33, "viser.Icon.BRAND_DRIBBBLE"]], "brand_dribbble_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_DRIBBBLE_FILLED"]], "brand_drops (viser.icon attribute)": [[33, "viser.Icon.BRAND_DROPS"]], "brand_drupal (viser.icon attribute)": [[33, "viser.Icon.BRAND_DRUPAL"]], "brand_edge (viser.icon attribute)": [[33, "viser.Icon.BRAND_EDGE"]], "brand_elastic (viser.icon attribute)": [[33, "viser.Icon.BRAND_ELASTIC"]], "brand_electronic_arts (viser.icon attribute)": [[33, "viser.Icon.BRAND_ELECTRONIC_ARTS"]], "brand_ember (viser.icon attribute)": [[33, "viser.Icon.BRAND_EMBER"]], "brand_envato (viser.icon attribute)": [[33, "viser.Icon.BRAND_ENVATO"]], "brand_etsy (viser.icon attribute)": [[33, "viser.Icon.BRAND_ETSY"]], "brand_evernote (viser.icon attribute)": [[33, "viser.Icon.BRAND_EVERNOTE"]], "brand_facebook (viser.icon attribute)": [[33, "viser.Icon.BRAND_FACEBOOK"]], "brand_facebook_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_FACEBOOK_FILLED"]], "brand_feedly (viser.icon attribute)": [[33, "viser.Icon.BRAND_FEEDLY"]], "brand_figma (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIGMA"]], "brand_filezilla (viser.icon attribute)": [[33, "viser.Icon.BRAND_FILEZILLA"]], "brand_finder (viser.icon attribute)": [[33, "viser.Icon.BRAND_FINDER"]], "brand_firebase (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIREBASE"]], "brand_firefox (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIREFOX"]], "brand_fiverr (viser.icon attribute)": [[33, "viser.Icon.BRAND_FIVERR"]], "brand_flickr (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLICKR"]], "brand_flightradar24 (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLIGHTRADAR24"]], "brand_flipboard (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLIPBOARD"]], "brand_flutter (viser.icon attribute)": [[33, "viser.Icon.BRAND_FLUTTER"]], "brand_fortnite (viser.icon attribute)": [[33, "viser.Icon.BRAND_FORTNITE"]], "brand_foursquare (viser.icon attribute)": [[33, "viser.Icon.BRAND_FOURSQUARE"]], "brand_framer (viser.icon attribute)": [[33, "viser.Icon.BRAND_FRAMER"]], "brand_framer_motion (viser.icon attribute)": [[33, "viser.Icon.BRAND_FRAMER_MOTION"]], "brand_funimation (viser.icon attribute)": [[33, "viser.Icon.BRAND_FUNIMATION"]], "brand_gatsby (viser.icon attribute)": [[33, "viser.Icon.BRAND_GATSBY"]], "brand_git (viser.icon attribute)": [[33, "viser.Icon.BRAND_GIT"]], "brand_github (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITHUB"]], "brand_github_copilot (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITHUB_COPILOT"]], "brand_github_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITHUB_FILLED"]], "brand_gitlab (viser.icon attribute)": [[33, "viser.Icon.BRAND_GITLAB"]], "brand_gmail (viser.icon attribute)": [[33, "viser.Icon.BRAND_GMAIL"]], "brand_golang (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOLANG"]], "brand_google (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE"]], "brand_google_analytics (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_ANALYTICS"]], "brand_google_big_query (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_BIG_QUERY"]], "brand_google_drive (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_DRIVE"]], "brand_google_fit (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_FIT"]], "brand_google_home (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_HOME"]], "brand_google_maps (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_MAPS"]], "brand_google_one (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_ONE"]], "brand_google_photos (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_PHOTOS"]], "brand_google_play (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_PLAY"]], "brand_google_podcasts (viser.icon attribute)": [[33, "viser.Icon.BRAND_GOOGLE_PODCASTS"]], "brand_grammarly (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRAMMARLY"]], "brand_graphql (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRAPHQL"]], "brand_gravatar (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRAVATAR"]], "brand_grindr (viser.icon attribute)": [[33, "viser.Icon.BRAND_GRINDR"]], "brand_guardian (viser.icon attribute)": [[33, "viser.Icon.BRAND_GUARDIAN"]], "brand_gumroad (viser.icon attribute)": [[33, "viser.Icon.BRAND_GUMROAD"]], "brand_hbo (viser.icon attribute)": [[33, "viser.Icon.BRAND_HBO"]], "brand_headlessui (viser.icon attribute)": [[33, "viser.Icon.BRAND_HEADLESSUI"]], "brand_hexo (viser.icon attribute)": [[33, "viser.Icon.BRAND_HEXO"]], "brand_hipchat (viser.icon attribute)": [[33, "viser.Icon.BRAND_HIPCHAT"]], "brand_html5 (viser.icon attribute)": [[33, "viser.Icon.BRAND_HTML5"]], "brand_inertia (viser.icon attribute)": [[33, "viser.Icon.BRAND_INERTIA"]], "brand_instagram (viser.icon attribute)": [[33, "viser.Icon.BRAND_INSTAGRAM"]], "brand_intercom (viser.icon attribute)": [[33, "viser.Icon.BRAND_INTERCOM"]], "brand_itch (viser.icon attribute)": [[33, "viser.Icon.BRAND_ITCH"]], "brand_javascript (viser.icon attribute)": [[33, "viser.Icon.BRAND_JAVASCRIPT"]], "brand_juejin (viser.icon attribute)": [[33, "viser.Icon.BRAND_JUEJIN"]], "brand_kbin (viser.icon attribute)": [[33, "viser.Icon.BRAND_KBIN"]], "brand_kick (viser.icon attribute)": [[33, "viser.Icon.BRAND_KICK"]], "brand_kickstarter (viser.icon attribute)": [[33, "viser.Icon.BRAND_KICKSTARTER"]], "brand_kotlin (viser.icon attribute)": [[33, "viser.Icon.BRAND_KOTLIN"]], "brand_laravel (viser.icon attribute)": [[33, "viser.Icon.BRAND_LARAVEL"]], "brand_lastfm (viser.icon attribute)": [[33, "viser.Icon.BRAND_LASTFM"]], "brand_leetcode (viser.icon attribute)": [[33, "viser.Icon.BRAND_LEETCODE"]], "brand_letterboxd (viser.icon attribute)": [[33, "viser.Icon.BRAND_LETTERBOXD"]], "brand_line (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINE"]], "brand_linkedin (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINKEDIN"]], "brand_linktree (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINKTREE"]], "brand_linqpad (viser.icon attribute)": [[33, "viser.Icon.BRAND_LINQPAD"]], "brand_loom (viser.icon attribute)": [[33, "viser.Icon.BRAND_LOOM"]], "brand_mailgun (viser.icon attribute)": [[33, "viser.Icon.BRAND_MAILGUN"]], "brand_mantine (viser.icon attribute)": [[33, "viser.Icon.BRAND_MANTINE"]], "brand_mastercard (viser.icon attribute)": [[33, "viser.Icon.BRAND_MASTERCARD"]], "brand_mastodon (viser.icon attribute)": [[33, "viser.Icon.BRAND_MASTODON"]], "brand_matrix (viser.icon attribute)": [[33, "viser.Icon.BRAND_MATRIX"]], "brand_mcdonalds (viser.icon attribute)": [[33, "viser.Icon.BRAND_MCDONALDS"]], "brand_medium (viser.icon attribute)": [[33, "viser.Icon.BRAND_MEDIUM"]], "brand_mercedes (viser.icon attribute)": [[33, "viser.Icon.BRAND_MERCEDES"]], "brand_messenger (viser.icon attribute)": [[33, "viser.Icon.BRAND_MESSENGER"]], "brand_meta (viser.icon attribute)": [[33, "viser.Icon.BRAND_META"]], "brand_microsoft_teams (viser.icon attribute)": [[33, "viser.Icon.BRAND_MICROSOFT_TEAMS"]], "brand_minecraft (viser.icon attribute)": [[33, "viser.Icon.BRAND_MINECRAFT"]], "brand_miniprogram (viser.icon attribute)": [[33, "viser.Icon.BRAND_MINIPROGRAM"]], "brand_mixpanel (viser.icon attribute)": [[33, "viser.Icon.BRAND_MIXPANEL"]], "brand_monday (viser.icon attribute)": [[33, "viser.Icon.BRAND_MONDAY"]], "brand_mongodb (viser.icon attribute)": [[33, "viser.Icon.BRAND_MONGODB"]], "brand_mysql (viser.icon attribute)": [[33, "viser.Icon.BRAND_MYSQL"]], "brand_my_oppo (viser.icon attribute)": [[33, "viser.Icon.BRAND_MY_OPPO"]], "brand_national_geographic (viser.icon attribute)": [[33, "viser.Icon.BRAND_NATIONAL_GEOGRAPHIC"]], "brand_nem (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEM"]], "brand_netbeans (viser.icon attribute)": [[33, "viser.Icon.BRAND_NETBEANS"]], "brand_netease_music (viser.icon attribute)": [[33, "viser.Icon.BRAND_NETEASE_MUSIC"]], "brand_netflix (viser.icon attribute)": [[33, "viser.Icon.BRAND_NETFLIX"]], "brand_nexo (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEXO"]], "brand_nextcloud (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEXTCLOUD"]], "brand_nextjs (viser.icon attribute)": [[33, "viser.Icon.BRAND_NEXTJS"]], "brand_nodejs (viser.icon attribute)": [[33, "viser.Icon.BRAND_NODEJS"]], "brand_nord_vpn (viser.icon attribute)": [[33, "viser.Icon.BRAND_NORD_VPN"]], "brand_notion (viser.icon attribute)": [[33, "viser.Icon.BRAND_NOTION"]], "brand_npm (viser.icon attribute)": [[33, "viser.Icon.BRAND_NPM"]], "brand_nuxt (viser.icon attribute)": [[33, "viser.Icon.BRAND_NUXT"]], "brand_nytimes (viser.icon attribute)": [[33, "viser.Icon.BRAND_NYTIMES"]], "brand_oauth (viser.icon attribute)": [[33, "viser.Icon.BRAND_OAUTH"]], "brand_office (viser.icon attribute)": [[33, "viser.Icon.BRAND_OFFICE"]], "brand_ok_ru (viser.icon attribute)": [[33, "viser.Icon.BRAND_OK_RU"]], "brand_onedrive (viser.icon attribute)": [[33, "viser.Icon.BRAND_ONEDRIVE"]], "brand_onlyfans (viser.icon attribute)": [[33, "viser.Icon.BRAND_ONLYFANS"]], "brand_openai (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPENAI"]], "brand_openvpn (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPENVPN"]], "brand_open_source (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPEN_SOURCE"]], "brand_opera (viser.icon attribute)": [[33, "viser.Icon.BRAND_OPERA"]], "brand_pagekit (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAGEKIT"]], "brand_patreon (viser.icon attribute)": [[33, "viser.Icon.BRAND_PATREON"]], "brand_paypal (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAYPAL"]], "brand_paypal_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAYPAL_FILLED"]], "brand_paypay (viser.icon attribute)": [[33, "viser.Icon.BRAND_PAYPAY"]], "brand_peanut (viser.icon attribute)": [[33, "viser.Icon.BRAND_PEANUT"]], "brand_pepsi (viser.icon attribute)": [[33, "viser.Icon.BRAND_PEPSI"]], "brand_php (viser.icon attribute)": [[33, "viser.Icon.BRAND_PHP"]], "brand_picsart (viser.icon attribute)": [[33, "viser.Icon.BRAND_PICSART"]], "brand_pinterest (viser.icon attribute)": [[33, "viser.Icon.BRAND_PINTEREST"]], "brand_planetscale (viser.icon attribute)": [[33, "viser.Icon.BRAND_PLANETSCALE"]], "brand_pocket (viser.icon attribute)": [[33, "viser.Icon.BRAND_POCKET"]], "brand_polymer (viser.icon attribute)": [[33, "viser.Icon.BRAND_POLYMER"]], "brand_powershell (viser.icon attribute)": [[33, "viser.Icon.BRAND_POWERSHELL"]], "brand_prisma (viser.icon attribute)": [[33, "viser.Icon.BRAND_PRISMA"]], "brand_producthunt (viser.icon attribute)": [[33, "viser.Icon.BRAND_PRODUCTHUNT"]], "brand_pushbullet (viser.icon attribute)": [[33, "viser.Icon.BRAND_PUSHBULLET"]], "brand_pushover (viser.icon attribute)": [[33, "viser.Icon.BRAND_PUSHOVER"]], "brand_python (viser.icon attribute)": [[33, "viser.Icon.BRAND_PYTHON"]], "brand_qq (viser.icon attribute)": [[33, "viser.Icon.BRAND_QQ"]], "brand_radix_ui (viser.icon attribute)": [[33, "viser.Icon.BRAND_RADIX_UI"]], "brand_react (viser.icon attribute)": [[33, "viser.Icon.BRAND_REACT"]], "brand_react_native (viser.icon attribute)": [[33, "viser.Icon.BRAND_REACT_NATIVE"]], "brand_reason (viser.icon attribute)": [[33, "viser.Icon.BRAND_REASON"]], "brand_reddit (viser.icon attribute)": [[33, "viser.Icon.BRAND_REDDIT"]], "brand_redhat (viser.icon attribute)": [[33, "viser.Icon.BRAND_REDHAT"]], "brand_redux (viser.icon attribute)": [[33, "viser.Icon.BRAND_REDUX"]], "brand_revolut (viser.icon attribute)": [[33, "viser.Icon.BRAND_REVOLUT"]], "brand_rumble (viser.icon attribute)": [[33, "viser.Icon.BRAND_RUMBLE"]], "brand_rust (viser.icon attribute)": [[33, "viser.Icon.BRAND_RUST"]], "brand_safari (viser.icon attribute)": [[33, "viser.Icon.BRAND_SAFARI"]], "brand_samsungpass (viser.icon attribute)": [[33, "viser.Icon.BRAND_SAMSUNGPASS"]], "brand_sass (viser.icon attribute)": [[33, "viser.Icon.BRAND_SASS"]], "brand_sentry (viser.icon attribute)": [[33, "viser.Icon.BRAND_SENTRY"]], "brand_sharik (viser.icon attribute)": [[33, "viser.Icon.BRAND_SHARIK"]], "brand_shazam (viser.icon attribute)": [[33, "viser.Icon.BRAND_SHAZAM"]], "brand_shopee (viser.icon attribute)": [[33, "viser.Icon.BRAND_SHOPEE"]], "brand_sketch (viser.icon attribute)": [[33, "viser.Icon.BRAND_SKETCH"]], "brand_skype (viser.icon attribute)": [[33, "viser.Icon.BRAND_SKYPE"]], "brand_slack (viser.icon attribute)": [[33, "viser.Icon.BRAND_SLACK"]], "brand_snapchat (viser.icon attribute)": [[33, "viser.Icon.BRAND_SNAPCHAT"]], "brand_snapseed (viser.icon attribute)": [[33, "viser.Icon.BRAND_SNAPSEED"]], "brand_snowflake (viser.icon attribute)": [[33, "viser.Icon.BRAND_SNOWFLAKE"]], "brand_socket_io (viser.icon attribute)": [[33, "viser.Icon.BRAND_SOCKET_IO"]], "brand_solidjs (viser.icon attribute)": [[33, "viser.Icon.BRAND_SOLIDJS"]], "brand_soundcloud (viser.icon attribute)": [[33, "viser.Icon.BRAND_SOUNDCLOUD"]], "brand_spacehey (viser.icon attribute)": [[33, "viser.Icon.BRAND_SPACEHEY"]], "brand_speedtest (viser.icon attribute)": [[33, "viser.Icon.BRAND_SPEEDTEST"]], "brand_spotify (viser.icon attribute)": [[33, "viser.Icon.BRAND_SPOTIFY"]], "brand_stackoverflow (viser.icon attribute)": [[33, "viser.Icon.BRAND_STACKOVERFLOW"]], "brand_stackshare (viser.icon attribute)": [[33, "viser.Icon.BRAND_STACKSHARE"]], "brand_steam (viser.icon attribute)": [[33, "viser.Icon.BRAND_STEAM"]], "brand_storj (viser.icon attribute)": [[33, "viser.Icon.BRAND_STORJ"]], "brand_storybook (viser.icon attribute)": [[33, "viser.Icon.BRAND_STORYBOOK"]], "brand_storytel (viser.icon attribute)": [[33, "viser.Icon.BRAND_STORYTEL"]], "brand_strava (viser.icon attribute)": [[33, "viser.Icon.BRAND_STRAVA"]], "brand_stripe (viser.icon attribute)": [[33, "viser.Icon.BRAND_STRIPE"]], "brand_sublime_text (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUBLIME_TEXT"]], "brand_sugarizer (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUGARIZER"]], "brand_supabase (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUPABASE"]], "brand_superhuman (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUPERHUMAN"]], "brand_supernova (viser.icon attribute)": [[33, "viser.Icon.BRAND_SUPERNOVA"]], "brand_surfshark (viser.icon attribute)": [[33, "viser.Icon.BRAND_SURFSHARK"]], "brand_svelte (viser.icon attribute)": [[33, "viser.Icon.BRAND_SVELTE"]], "brand_swift (viser.icon attribute)": [[33, "viser.Icon.BRAND_SWIFT"]], "brand_symfony (viser.icon attribute)": [[33, "viser.Icon.BRAND_SYMFONY"]], "brand_tabler (viser.icon attribute)": [[33, "viser.Icon.BRAND_TABLER"]], "brand_tailwind (viser.icon attribute)": [[33, "viser.Icon.BRAND_TAILWIND"]], "brand_taobao (viser.icon attribute)": [[33, "viser.Icon.BRAND_TAOBAO"]], "brand_ted (viser.icon attribute)": [[33, "viser.Icon.BRAND_TED"]], "brand_telegram (viser.icon attribute)": [[33, "viser.Icon.BRAND_TELEGRAM"]], "brand_terraform (viser.icon attribute)": [[33, "viser.Icon.BRAND_TERRAFORM"]], "brand_tether (viser.icon attribute)": [[33, "viser.Icon.BRAND_TETHER"]], "brand_threejs (viser.icon attribute)": [[33, "viser.Icon.BRAND_THREEJS"]], "brand_tidal (viser.icon attribute)": [[33, "viser.Icon.BRAND_TIDAL"]], "brand_tiktok (viser.icon attribute)": [[33, "viser.Icon.BRAND_TIKTOK"]], "brand_tikto_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_TIKTO_FILLED"]], "brand_tinder (viser.icon attribute)": [[33, "viser.Icon.BRAND_TINDER"]], "brand_topbuzz (viser.icon attribute)": [[33, "viser.Icon.BRAND_TOPBUZZ"]], "brand_torchain (viser.icon attribute)": [[33, "viser.Icon.BRAND_TORCHAIN"]], "brand_toyota (viser.icon attribute)": [[33, "viser.Icon.BRAND_TOYOTA"]], "brand_trello (viser.icon attribute)": [[33, "viser.Icon.BRAND_TRELLO"]], "brand_tripadvisor (viser.icon attribute)": [[33, "viser.Icon.BRAND_TRIPADVISOR"]], "brand_tumblr (viser.icon attribute)": [[33, "viser.Icon.BRAND_TUMBLR"]], "brand_twilio (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWILIO"]], "brand_twitch (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWITCH"]], "brand_twitter (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWITTER"]], "brand_twitter_filled (viser.icon attribute)": [[33, "viser.Icon.BRAND_TWITTER_FILLED"]], "brand_typescript (viser.icon attribute)": [[33, "viser.Icon.BRAND_TYPESCRIPT"]], "brand_uber (viser.icon attribute)": [[33, "viser.Icon.BRAND_UBER"]], "brand_ubuntu (viser.icon attribute)": [[33, "viser.Icon.BRAND_UBUNTU"]], "brand_unity (viser.icon attribute)": [[33, "viser.Icon.BRAND_UNITY"]], "brand_unsplash (viser.icon attribute)": [[33, "viser.Icon.BRAND_UNSPLASH"]], "brand_upwork (viser.icon attribute)": [[33, "viser.Icon.BRAND_UPWORK"]], "brand_valorant (viser.icon attribute)": [[33, "viser.Icon.BRAND_VALORANT"]], "brand_vercel (viser.icon attribute)": [[33, "viser.Icon.BRAND_VERCEL"]], "brand_vimeo (viser.icon attribute)": [[33, "viser.Icon.BRAND_VIMEO"]], "brand_vinted (viser.icon attribute)": [[33, "viser.Icon.BRAND_VINTED"]], "brand_visa (viser.icon attribute)": [[33, "viser.Icon.BRAND_VISA"]], "brand_visual_studio (viser.icon attribute)": [[33, "viser.Icon.BRAND_VISUAL_STUDIO"]], "brand_vite (viser.icon attribute)": [[33, "viser.Icon.BRAND_VITE"]], "brand_vivaldi (viser.icon attribute)": [[33, "viser.Icon.BRAND_VIVALDI"]], "brand_vk (viser.icon attribute)": [[33, "viser.Icon.BRAND_VK"]], "brand_vlc (viser.icon attribute)": [[33, "viser.Icon.BRAND_VLC"]], "brand_volkswagen (viser.icon attribute)": [[33, "viser.Icon.BRAND_VOLKSWAGEN"]], "brand_vsco (viser.icon attribute)": [[33, "viser.Icon.BRAND_VSCO"]], "brand_vscode (viser.icon attribute)": [[33, "viser.Icon.BRAND_VSCODE"]], "brand_vue (viser.icon attribute)": [[33, "viser.Icon.BRAND_VUE"]], "brand_walmart (viser.icon attribute)": [[33, "viser.Icon.BRAND_WALMART"]], "brand_waze (viser.icon attribute)": [[33, "viser.Icon.BRAND_WAZE"]], "brand_webflow (viser.icon attribute)": [[33, "viser.Icon.BRAND_WEBFLOW"]], "brand_wechat (viser.icon attribute)": [[33, "viser.Icon.BRAND_WECHAT"]], "brand_weibo (viser.icon attribute)": [[33, "viser.Icon.BRAND_WEIBO"]], "brand_whatsapp (viser.icon attribute)": [[33, "viser.Icon.BRAND_WHATSAPP"]], "brand_wikipedia (viser.icon attribute)": [[33, "viser.Icon.BRAND_WIKIPEDIA"]], "brand_windows (viser.icon attribute)": [[33, "viser.Icon.BRAND_WINDOWS"]], "brand_windy (viser.icon attribute)": [[33, "viser.Icon.BRAND_WINDY"]], "brand_wish (viser.icon attribute)": [[33, "viser.Icon.BRAND_WISH"]], "brand_wix (viser.icon attribute)": [[33, "viser.Icon.BRAND_WIX"]], "brand_wordpress (viser.icon attribute)": [[33, "viser.Icon.BRAND_WORDPRESS"]], "brand_xamarin (viser.icon attribute)": [[33, "viser.Icon.BRAND_XAMARIN"]], "brand_xbox (viser.icon attribute)": [[33, "viser.Icon.BRAND_XBOX"]], "brand_xing (viser.icon attribute)": [[33, "viser.Icon.BRAND_XING"]], "brand_yahoo (viser.icon attribute)": [[33, "viser.Icon.BRAND_YAHOO"]], "brand_yandex (viser.icon attribute)": [[33, "viser.Icon.BRAND_YANDEX"]], "brand_yatse (viser.icon attribute)": [[33, "viser.Icon.BRAND_YATSE"]], "brand_ycombinator (viser.icon attribute)": [[33, "viser.Icon.BRAND_YCOMBINATOR"]], "brand_youtube (viser.icon attribute)": [[33, "viser.Icon.BRAND_YOUTUBE"]], "brand_youtube_kids (viser.icon attribute)": [[33, "viser.Icon.BRAND_YOUTUBE_KIDS"]], "brand_zalando (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZALANDO"]], "brand_zapier (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZAPIER"]], "brand_zeit (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZEIT"]], "brand_zhihu (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZHIHU"]], "brand_zoom (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZOOM"]], "brand_zulip (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZULIP"]], "brand_zwift (viser.icon attribute)": [[33, "viser.Icon.BRAND_ZWIFT"]], "bread (viser.icon attribute)": [[33, "viser.Icon.BREAD"]], "bread_off (viser.icon attribute)": [[33, "viser.Icon.BREAD_OFF"]], "briefcase (viser.icon attribute)": [[33, "viser.Icon.BRIEFCASE"]], "briefcase_off (viser.icon attribute)": [[33, "viser.Icon.BRIEFCASE_OFF"]], "brightness (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS"]], "brightness_2 (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_2"]], "brightness_down (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_DOWN"]], "brightness_half (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_HALF"]], "brightness_off (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_OFF"]], "brightness_up (viser.icon attribute)": [[33, "viser.Icon.BRIGHTNESS_UP"]], "broadcast (viser.icon attribute)": [[33, "viser.Icon.BROADCAST"]], "broadcast_off (viser.icon attribute)": [[33, "viser.Icon.BROADCAST_OFF"]], "browser (viser.icon attribute)": [[33, "viser.Icon.BROWSER"]], "browser_check (viser.icon attribute)": [[33, "viser.Icon.BROWSER_CHECK"]], "browser_off (viser.icon attribute)": [[33, "viser.Icon.BROWSER_OFF"]], "browser_plus (viser.icon attribute)": [[33, "viser.Icon.BROWSER_PLUS"]], "browser_x (viser.icon attribute)": [[33, "viser.Icon.BROWSER_X"]], "brush (viser.icon attribute)": [[33, "viser.Icon.BRUSH"]], "brush_off (viser.icon attribute)": [[33, "viser.Icon.BRUSH_OFF"]], "bucket (viser.icon attribute)": [[33, "viser.Icon.BUCKET"]], "bucket_droplet (viser.icon attribute)": [[33, "viser.Icon.BUCKET_DROPLET"]], "bucket_off (viser.icon attribute)": [[33, "viser.Icon.BUCKET_OFF"]], "bug (viser.icon attribute)": [[33, "viser.Icon.BUG"]], "bug_off (viser.icon attribute)": [[33, "viser.Icon.BUG_OFF"]], "building (viser.icon attribute)": [[33, "viser.Icon.BUILDING"]], "building_arch (viser.icon attribute)": [[33, "viser.Icon.BUILDING_ARCH"]], "building_bank (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BANK"]], "building_bridge (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BRIDGE"]], "building_bridge_2 (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BRIDGE_2"]], "building_broadcast_tower (viser.icon attribute)": [[33, "viser.Icon.BUILDING_BROADCAST_TOWER"]], "building_carousel (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CAROUSEL"]], "building_castle (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CASTLE"]], "building_church (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CHURCH"]], "building_circus (viser.icon attribute)": [[33, "viser.Icon.BUILDING_CIRCUS"]], "building_community (viser.icon attribute)": [[33, "viser.Icon.BUILDING_COMMUNITY"]], "building_cottage (viser.icon attribute)": [[33, "viser.Icon.BUILDING_COTTAGE"]], "building_estate (viser.icon attribute)": [[33, "viser.Icon.BUILDING_ESTATE"]], "building_factory (viser.icon attribute)": [[33, "viser.Icon.BUILDING_FACTORY"]], "building_factory_2 (viser.icon attribute)": [[33, "viser.Icon.BUILDING_FACTORY_2"]], "building_fortress (viser.icon attribute)": [[33, "viser.Icon.BUILDING_FORTRESS"]], "building_hospital (viser.icon attribute)": [[33, "viser.Icon.BUILDING_HOSPITAL"]], "building_lighthouse (viser.icon attribute)": [[33, "viser.Icon.BUILDING_LIGHTHOUSE"]], "building_monument (viser.icon attribute)": [[33, "viser.Icon.BUILDING_MONUMENT"]], "building_mosque (viser.icon attribute)": [[33, "viser.Icon.BUILDING_MOSQUE"]], "building_pavilion (viser.icon attribute)": [[33, "viser.Icon.BUILDING_PAVILION"]], "building_skyscraper (viser.icon attribute)": [[33, "viser.Icon.BUILDING_SKYSCRAPER"]], "building_stadium (viser.icon attribute)": [[33, "viser.Icon.BUILDING_STADIUM"]], "building_store (viser.icon attribute)": [[33, "viser.Icon.BUILDING_STORE"]], "building_tunnel (viser.icon attribute)": [[33, "viser.Icon.BUILDING_TUNNEL"]], "building_warehouse (viser.icon attribute)": [[33, "viser.Icon.BUILDING_WAREHOUSE"]], "building_wind_turbine (viser.icon attribute)": [[33, "viser.Icon.BUILDING_WIND_TURBINE"]], "bulb (viser.icon attribute)": [[33, "viser.Icon.BULB"]], "bulb_filled (viser.icon attribute)": [[33, "viser.Icon.BULB_FILLED"]], "bulb_off (viser.icon attribute)": [[33, "viser.Icon.BULB_OFF"]], "bulldozer (viser.icon attribute)": [[33, "viser.Icon.BULLDOZER"]], "bus (viser.icon attribute)": [[33, "viser.Icon.BUS"]], "businessplan (viser.icon attribute)": [[33, "viser.Icon.BUSINESSPLAN"]], "bus_off (viser.icon attribute)": [[33, "viser.Icon.BUS_OFF"]], "bus_stop (viser.icon attribute)": [[33, "viser.Icon.BUS_STOP"]], "butterfly (viser.icon attribute)": [[33, "viser.Icon.BUTTERFLY"]], "cactus (viser.icon attribute)": [[33, "viser.Icon.CACTUS"]], "cactus_off (viser.icon attribute)": [[33, "viser.Icon.CACTUS_OFF"]], "cake (viser.icon attribute)": [[33, "viser.Icon.CAKE"]], "cake_off (viser.icon attribute)": [[33, "viser.Icon.CAKE_OFF"]], "calculator (viser.icon attribute)": [[33, "viser.Icon.CALCULATOR"]], "calculator_off (viser.icon attribute)": [[33, "viser.Icon.CALCULATOR_OFF"]], "calendar (viser.icon attribute)": [[33, "viser.Icon.CALENDAR"]], "calendar_bolt (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_BOLT"]], "calendar_cancel (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_CANCEL"]], "calendar_check (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_CHECK"]], "calendar_code (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_CODE"]], "calendar_cog (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_COG"]], "calendar_dollar (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_DOLLAR"]], "calendar_down (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_DOWN"]], "calendar_due (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_DUE"]], "calendar_event (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_EVENT"]], "calendar_exclamation (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_EXCLAMATION"]], "calendar_heart (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_HEART"]], "calendar_minus (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_MINUS"]], "calendar_off (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_OFF"]], "calendar_pause (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_PAUSE"]], "calendar_pin (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_PIN"]], "calendar_plus (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_PLUS"]], "calendar_question (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_QUESTION"]], "calendar_repeat (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_REPEAT"]], "calendar_search (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_SEARCH"]], "calendar_share (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_SHARE"]], "calendar_star (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_STAR"]], "calendar_stats (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_STATS"]], "calendar_time (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_TIME"]], "calendar_up (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_UP"]], "calendar_x (viser.icon attribute)": [[33, "viser.Icon.CALENDAR_X"]], "camera (viser.icon attribute)": [[33, "viser.Icon.CAMERA"]], "camera_bolt (viser.icon attribute)": [[33, "viser.Icon.CAMERA_BOLT"]], "camera_cancel (viser.icon attribute)": [[33, "viser.Icon.CAMERA_CANCEL"]], "camera_check (viser.icon attribute)": [[33, "viser.Icon.CAMERA_CHECK"]], "camera_code (viser.icon attribute)": [[33, "viser.Icon.CAMERA_CODE"]], "camera_cog (viser.icon attribute)": [[33, "viser.Icon.CAMERA_COG"]], "camera_dollar (viser.icon attribute)": [[33, "viser.Icon.CAMERA_DOLLAR"]], "camera_down (viser.icon attribute)": [[33, "viser.Icon.CAMERA_DOWN"]], "camera_exclamation (viser.icon attribute)": [[33, "viser.Icon.CAMERA_EXCLAMATION"]], "camera_filled (viser.icon attribute)": [[33, "viser.Icon.CAMERA_FILLED"]], "camera_heart (viser.icon attribute)": [[33, "viser.Icon.CAMERA_HEART"]], "camera_minus (viser.icon attribute)": [[33, "viser.Icon.CAMERA_MINUS"]], "camera_off (viser.icon attribute)": [[33, "viser.Icon.CAMERA_OFF"]], "camera_pause (viser.icon attribute)": [[33, "viser.Icon.CAMERA_PAUSE"]], "camera_pin (viser.icon attribute)": [[33, "viser.Icon.CAMERA_PIN"]], "camera_plus (viser.icon attribute)": [[33, "viser.Icon.CAMERA_PLUS"]], "camera_question (viser.icon attribute)": [[33, "viser.Icon.CAMERA_QUESTION"]], "camera_rotate (viser.icon attribute)": [[33, "viser.Icon.CAMERA_ROTATE"]], "camera_search (viser.icon attribute)": [[33, "viser.Icon.CAMERA_SEARCH"]], "camera_selfie (viser.icon attribute)": [[33, "viser.Icon.CAMERA_SELFIE"]], "camera_share (viser.icon attribute)": [[33, "viser.Icon.CAMERA_SHARE"]], "camera_star (viser.icon attribute)": [[33, "viser.Icon.CAMERA_STAR"]], "camera_up (viser.icon attribute)": [[33, "viser.Icon.CAMERA_UP"]], "camera_x (viser.icon attribute)": [[33, "viser.Icon.CAMERA_X"]], "camper (viser.icon attribute)": [[33, "viser.Icon.CAMPER"]], "campfire (viser.icon attribute)": [[33, "viser.Icon.CAMPFIRE"]], "candle (viser.icon attribute)": [[33, "viser.Icon.CANDLE"]], "candy (viser.icon attribute)": [[33, "viser.Icon.CANDY"]], "candy_off (viser.icon attribute)": [[33, "viser.Icon.CANDY_OFF"]], "cane (viser.icon attribute)": [[33, "viser.Icon.CANE"]], "cannabis (viser.icon attribute)": [[33, "viser.Icon.CANNABIS"]], "capsule (viser.icon attribute)": [[33, "viser.Icon.CAPSULE"]], "capsule_horizontal (viser.icon attribute)": [[33, "viser.Icon.CAPSULE_HORIZONTAL"]], "capture (viser.icon attribute)": [[33, "viser.Icon.CAPTURE"]], "capture_off (viser.icon attribute)": [[33, "viser.Icon.CAPTURE_OFF"]], "car (viser.icon attribute)": [[33, "viser.Icon.CAR"]], "caravan (viser.icon attribute)": [[33, "viser.Icon.CARAVAN"]], "cardboards (viser.icon attribute)": [[33, "viser.Icon.CARDBOARDS"]], "cardboards_off (viser.icon attribute)": [[33, "viser.Icon.CARDBOARDS_OFF"]], "cards (viser.icon attribute)": [[33, "viser.Icon.CARDS"]], "caret_down (viser.icon attribute)": [[33, "viser.Icon.CARET_DOWN"]], "caret_left (viser.icon attribute)": [[33, "viser.Icon.CARET_LEFT"]], "caret_right (viser.icon attribute)": [[33, "viser.Icon.CARET_RIGHT"]], "caret_up (viser.icon attribute)": [[33, "viser.Icon.CARET_UP"]], "carousel_horizontal (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_HORIZONTAL"]], "carousel_horizontal_filled (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_HORIZONTAL_FILLED"]], "carousel_vertical (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_VERTICAL"]], "carousel_vertical_filled (viser.icon attribute)": [[33, "viser.Icon.CAROUSEL_VERTICAL_FILLED"]], "carrot (viser.icon attribute)": [[33, "viser.Icon.CARROT"]], "carrot_off (viser.icon attribute)": [[33, "viser.Icon.CARROT_OFF"]], "car_crane (viser.icon attribute)": [[33, "viser.Icon.CAR_CRANE"]], "car_crash (viser.icon attribute)": [[33, "viser.Icon.CAR_CRASH"]], "car_off (viser.icon attribute)": [[33, "viser.Icon.CAR_OFF"]], "car_turbine (viser.icon attribute)": [[33, "viser.Icon.CAR_TURBINE"]], "cash (viser.icon attribute)": [[33, "viser.Icon.CASH"]], "cash_banknote (viser.icon attribute)": [[33, "viser.Icon.CASH_BANKNOTE"]], "cash_banknote_off (viser.icon attribute)": [[33, "viser.Icon.CASH_BANKNOTE_OFF"]], "cash_off (viser.icon attribute)": [[33, "viser.Icon.CASH_OFF"]], "cast (viser.icon attribute)": [[33, "viser.Icon.CAST"]], "cast_off (viser.icon attribute)": [[33, "viser.Icon.CAST_OFF"]], "cat (viser.icon attribute)": [[33, "viser.Icon.CAT"]], "category (viser.icon attribute)": [[33, "viser.Icon.CATEGORY"]], "category_2 (viser.icon attribute)": [[33, "viser.Icon.CATEGORY_2"]], "ce (viser.icon attribute)": [[33, "viser.Icon.CE"]], "cell (viser.icon attribute)": [[33, "viser.Icon.CELL"]], "cell_signal_1 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_1"]], "cell_signal_2 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_2"]], "cell_signal_3 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_3"]], "cell_signal_4 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_4"]], "cell_signal_5 (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_5"]], "cell_signal_off (viser.icon attribute)": [[33, "viser.Icon.CELL_SIGNAL_OFF"]], "certificate (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE"]], "certificate_2 (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE_2"]], "certificate_2_off (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE_2_OFF"]], "certificate_off (viser.icon attribute)": [[33, "viser.Icon.CERTIFICATE_OFF"]], "ce_off (viser.icon attribute)": [[33, "viser.Icon.CE_OFF"]], "chair_director (viser.icon attribute)": [[33, "viser.Icon.CHAIR_DIRECTOR"]], "chalkboard (viser.icon attribute)": [[33, "viser.Icon.CHALKBOARD"]], "chalkboard_off (viser.icon attribute)": [[33, "viser.Icon.CHALKBOARD_OFF"]], "charging_pile (viser.icon attribute)": [[33, "viser.Icon.CHARGING_PILE"]], "chart_arcs (viser.icon attribute)": [[33, "viser.Icon.CHART_ARCS"]], "chart_arcs_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_ARCS_3"]], "chart_area (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA"]], "chart_area_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA_FILLED"]], "chart_area_line (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA_LINE"]], "chart_area_line_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_AREA_LINE_FILLED"]], "chart_arrows (viser.icon attribute)": [[33, "viser.Icon.CHART_ARROWS"]], "chart_arrows_vertical (viser.icon attribute)": [[33, "viser.Icon.CHART_ARROWS_VERTICAL"]], "chart_bar (viser.icon attribute)": [[33, "viser.Icon.CHART_BAR"]], "chart_bar_off (viser.icon attribute)": [[33, "viser.Icon.CHART_BAR_OFF"]], "chart_bubble (viser.icon attribute)": [[33, "viser.Icon.CHART_BUBBLE"]], "chart_bubble_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_BUBBLE_FILLED"]], "chart_candle (viser.icon attribute)": [[33, "viser.Icon.CHART_CANDLE"]], "chart_candle_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_CANDLE_FILLED"]], "chart_circles (viser.icon attribute)": [[33, "viser.Icon.CHART_CIRCLES"]], "chart_donut (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT"]], "chart_donut_2 (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_2"]], "chart_donut_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_3"]], "chart_donut_4 (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_4"]], "chart_donut_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_DONUT_FILLED"]], "chart_dots (viser.icon attribute)": [[33, "viser.Icon.CHART_DOTS"]], "chart_dots_2 (viser.icon attribute)": [[33, "viser.Icon.CHART_DOTS_2"]], "chart_dots_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_DOTS_3"]], "chart_grid_dots (viser.icon attribute)": [[33, "viser.Icon.CHART_GRID_DOTS"]], "chart_histogram (viser.icon attribute)": [[33, "viser.Icon.CHART_HISTOGRAM"]], "chart_infographic (viser.icon attribute)": [[33, "viser.Icon.CHART_INFOGRAPHIC"]], "chart_line (viser.icon attribute)": [[33, "viser.Icon.CHART_LINE"]], "chart_pie (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE"]], "chart_pie_2 (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_2"]], "chart_pie_3 (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_3"]], "chart_pie_4 (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_4"]], "chart_pie_filled (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_FILLED"]], "chart_pie_off (viser.icon attribute)": [[33, "viser.Icon.CHART_PIE_OFF"]], "chart_ppf (viser.icon attribute)": [[33, "viser.Icon.CHART_PPF"]], "chart_radar (viser.icon attribute)": [[33, "viser.Icon.CHART_RADAR"]], "chart_sankey (viser.icon attribute)": [[33, "viser.Icon.CHART_SANKEY"]], "chart_treemap (viser.icon attribute)": [[33, "viser.Icon.CHART_TREEMAP"]], "check (viser.icon attribute)": [[33, "viser.Icon.CHECK"]], "checkbox (viser.icon attribute)": [[33, "viser.Icon.CHECKBOX"]], "checklist (viser.icon attribute)": [[33, "viser.Icon.CHECKLIST"]], "checks (viser.icon attribute)": [[33, "viser.Icon.CHECKS"]], "checkup_list (viser.icon attribute)": [[33, "viser.Icon.CHECKUP_LIST"]], "cheese (viser.icon attribute)": [[33, "viser.Icon.CHEESE"]], "chef_hat (viser.icon attribute)": [[33, "viser.Icon.CHEF_HAT"]], "chef_hat_off (viser.icon attribute)": [[33, "viser.Icon.CHEF_HAT_OFF"]], "cherry (viser.icon attribute)": [[33, "viser.Icon.CHERRY"]], "cherry_filled (viser.icon attribute)": [[33, "viser.Icon.CHERRY_FILLED"]], "chess (viser.icon attribute)": [[33, "viser.Icon.CHESS"]], "chess_bishop (viser.icon attribute)": [[33, "viser.Icon.CHESS_BISHOP"]], "chess_bishop_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_BISHOP_FILLED"]], "chess_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_FILLED"]], "chess_king (viser.icon attribute)": [[33, "viser.Icon.CHESS_KING"]], "chess_king_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_KING_FILLED"]], "chess_knight (viser.icon attribute)": [[33, "viser.Icon.CHESS_KNIGHT"]], "chess_knight_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_KNIGHT_FILLED"]], "chess_queen (viser.icon attribute)": [[33, "viser.Icon.CHESS_QUEEN"]], "chess_queen_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_QUEEN_FILLED"]], "chess_rook (viser.icon attribute)": [[33, "viser.Icon.CHESS_ROOK"]], "chess_rook_filled (viser.icon attribute)": [[33, "viser.Icon.CHESS_ROOK_FILLED"]], "chevrons_down (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_DOWN"]], "chevrons_down_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_DOWN_LEFT"]], "chevrons_down_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_DOWN_RIGHT"]], "chevrons_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_LEFT"]], "chevrons_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_RIGHT"]], "chevrons_up (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_UP"]], "chevrons_up_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_UP_LEFT"]], "chevrons_up_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRONS_UP_RIGHT"]], "chevron_compact_down (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_DOWN"]], "chevron_compact_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_LEFT"]], "chevron_compact_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_RIGHT"]], "chevron_compact_up (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_COMPACT_UP"]], "chevron_down (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_DOWN"]], "chevron_down_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_DOWN_LEFT"]], "chevron_down_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_DOWN_RIGHT"]], "chevron_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_LEFT"]], "chevron_left_pipe (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_LEFT_PIPE"]], "chevron_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_RIGHT"]], "chevron_right_pipe (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_RIGHT_PIPE"]], "chevron_up (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_UP"]], "chevron_up_left (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_UP_LEFT"]], "chevron_up_right (viser.icon attribute)": [[33, "viser.Icon.CHEVRON_UP_RIGHT"]], "chisel (viser.icon attribute)": [[33, "viser.Icon.CHISEL"]], "christmas_tree (viser.icon attribute)": [[33, "viser.Icon.CHRISTMAS_TREE"]], "christmas_tree_off (viser.icon attribute)": [[33, "viser.Icon.CHRISTMAS_TREE_OFF"]], "circle (viser.icon attribute)": [[33, "viser.Icon.CIRCLE"]], "circles (viser.icon attribute)": [[33, "viser.Icon.CIRCLES"]], "circles_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLES_FILLED"]], "circles_relation (viser.icon attribute)": [[33, "viser.Icon.CIRCLES_RELATION"]], "circle_0_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_0_FILLED"]], "circle_1_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_1_FILLED"]], "circle_2_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_2_FILLED"]], "circle_3_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_3_FILLED"]], "circle_4_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_4_FILLED"]], "circle_5_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_5_FILLED"]], "circle_6_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_6_FILLED"]], "circle_7_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_7_FILLED"]], "circle_8_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_8_FILLED"]], "circle_9_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_9_FILLED"]], "circle_arrow_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN"]], "circle_arrow_down_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_FILLED"]], "circle_arrow_down_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT"]], "circle_arrow_down_left_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_LEFT_FILLED"]], "circle_arrow_down_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT"]], "circle_arrow_down_right_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_DOWN_RIGHT_FILLED"]], "circle_arrow_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_LEFT"]], "circle_arrow_left_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_LEFT_FILLED"]], "circle_arrow_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_RIGHT"]], "circle_arrow_right_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_RIGHT_FILLED"]], "circle_arrow_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP"]], "circle_arrow_up_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_FILLED"]], "circle_arrow_up_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_LEFT"]], "circle_arrow_up_left_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_LEFT_FILLED"]], "circle_arrow_up_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_RIGHT"]], "circle_arrow_up_right_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_ARROW_UP_RIGHT_FILLED"]], "circle_caret_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_DOWN"]], "circle_caret_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_LEFT"]], "circle_caret_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_RIGHT"]], "circle_caret_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CARET_UP"]], "circle_check (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHECK"]], "circle_check_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHECK_FILLED"]], "circle_chevrons_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_DOWN"]], "circle_chevrons_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_LEFT"]], "circle_chevrons_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_RIGHT"]], "circle_chevrons_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRONS_UP"]], "circle_chevron_down (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_DOWN"]], "circle_chevron_left (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_LEFT"]], "circle_chevron_right (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_RIGHT"]], "circle_chevron_up (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_CHEVRON_UP"]], "circle_dashed (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DASHED"]], "circle_dot (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DOT"]], "circle_dotted (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DOTTED"]], "circle_dot_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_DOT_FILLED"]], "circle_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_FILLED"]], "circle_half (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_HALF"]], "circle_half_2 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_HALF_2"]], "circle_half_vertical (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_HALF_VERTICAL"]], "circle_key (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_KEY"]], "circle_key_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_KEY_FILLED"]], "circle_letter_a (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_A"]], "circle_letter_b (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_B"]], "circle_letter_c (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_C"]], "circle_letter_d (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_D"]], "circle_letter_e (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_E"]], "circle_letter_f (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_F"]], "circle_letter_g (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_G"]], "circle_letter_h (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_H"]], "circle_letter_i (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_I"]], "circle_letter_j (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_J"]], "circle_letter_k (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_K"]], "circle_letter_l (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_L"]], "circle_letter_m (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_M"]], "circle_letter_n (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_N"]], "circle_letter_o (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_O"]], "circle_letter_p (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_P"]], "circle_letter_q (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_Q"]], "circle_letter_r (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_R"]], "circle_letter_s (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_S"]], "circle_letter_t (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_T"]], "circle_letter_u (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_U"]], "circle_letter_v (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_V"]], "circle_letter_w (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_W"]], "circle_letter_x (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_X"]], "circle_letter_y (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_Y"]], "circle_letter_z (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_LETTER_Z"]], "circle_minus (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_MINUS"]], "circle_number_0 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_0"]], "circle_number_1 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_1"]], "circle_number_2 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_2"]], "circle_number_3 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_3"]], "circle_number_4 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_4"]], "circle_number_5 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_5"]], "circle_number_6 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_6"]], "circle_number_7 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_7"]], "circle_number_8 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_8"]], "circle_number_9 (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_NUMBER_9"]], "circle_off (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_OFF"]], "circle_plus (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_PLUS"]], "circle_rectangle (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_RECTANGLE"]], "circle_rectangle_off (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_RECTANGLE_OFF"]], "circle_square (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_SQUARE"]], "circle_triangle (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_TRIANGLE"]], "circle_x (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_X"]], "circle_x_filled (viser.icon attribute)": [[33, "viser.Icon.CIRCLE_X_FILLED"]], "circuit_ammeter (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_AMMETER"]], "circuit_battery (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_BATTERY"]], "circuit_bulb (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_BULB"]], "circuit_capacitor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CAPACITOR"]], "circuit_capacitor_polarized (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CAPACITOR_POLARIZED"]], "circuit_cell (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CELL"]], "circuit_cell_plus (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CELL_PLUS"]], "circuit_changeover (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_CHANGEOVER"]], "circuit_diode (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_DIODE"]], "circuit_diode_zener (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_DIODE_ZENER"]], "circuit_ground (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_GROUND"]], "circuit_ground_digital (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_GROUND_DIGITAL"]], "circuit_inductor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_INDUCTOR"]], "circuit_motor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_MOTOR"]], "circuit_pushbutton (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_PUSHBUTTON"]], "circuit_resistor (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_RESISTOR"]], "circuit_switch_closed (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_SWITCH_CLOSED"]], "circuit_switch_open (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_SWITCH_OPEN"]], "circuit_voltmeter (viser.icon attribute)": [[33, "viser.Icon.CIRCUIT_VOLTMETER"]], "clear_all (viser.icon attribute)": [[33, "viser.Icon.CLEAR_ALL"]], "clear_formatting (viser.icon attribute)": [[33, "viser.Icon.CLEAR_FORMATTING"]], "click (viser.icon attribute)": [[33, "viser.Icon.CLICK"]], "clipboard (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD"]], "clipboard_check (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_CHECK"]], "clipboard_copy (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_COPY"]], "clipboard_data (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_DATA"]], "clipboard_heart (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_HEART"]], "clipboard_list (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_LIST"]], "clipboard_off (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_OFF"]], "clipboard_plus (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_PLUS"]], "clipboard_text (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_TEXT"]], "clipboard_typography (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_TYPOGRAPHY"]], "clipboard_x (viser.icon attribute)": [[33, "viser.Icon.CLIPBOARD_X"]], "clock (viser.icon attribute)": [[33, "viser.Icon.CLOCK"]], "clock_2 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_2"]], "clock_bolt (viser.icon attribute)": [[33, "viser.Icon.CLOCK_BOLT"]], "clock_cancel (viser.icon attribute)": [[33, "viser.Icon.CLOCK_CANCEL"]], "clock_check (viser.icon attribute)": [[33, "viser.Icon.CLOCK_CHECK"]], "clock_code (viser.icon attribute)": [[33, "viser.Icon.CLOCK_CODE"]], "clock_cog (viser.icon attribute)": [[33, "viser.Icon.CLOCK_COG"]], "clock_dollar (viser.icon attribute)": [[33, "viser.Icon.CLOCK_DOLLAR"]], "clock_down (viser.icon attribute)": [[33, "viser.Icon.CLOCK_DOWN"]], "clock_edit (viser.icon attribute)": [[33, "viser.Icon.CLOCK_EDIT"]], "clock_exclamation (viser.icon attribute)": [[33, "viser.Icon.CLOCK_EXCLAMATION"]], "clock_filled (viser.icon attribute)": [[33, "viser.Icon.CLOCK_FILLED"]], "clock_heart (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HEART"]], "clock_hour_1 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_1"]], "clock_hour_10 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_10"]], "clock_hour_11 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_11"]], "clock_hour_12 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_12"]], "clock_hour_2 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_2"]], "clock_hour_3 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_3"]], "clock_hour_4 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_4"]], "clock_hour_5 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_5"]], "clock_hour_6 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_6"]], "clock_hour_7 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_7"]], "clock_hour_8 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_8"]], "clock_hour_9 (viser.icon attribute)": [[33, "viser.Icon.CLOCK_HOUR_9"]], "clock_minus (viser.icon attribute)": [[33, "viser.Icon.CLOCK_MINUS"]], "clock_off (viser.icon attribute)": [[33, "viser.Icon.CLOCK_OFF"]], "clock_pause (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PAUSE"]], "clock_pin (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PIN"]], "clock_play (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PLAY"]], "clock_plus (viser.icon attribute)": [[33, "viser.Icon.CLOCK_PLUS"]], "clock_question (viser.icon attribute)": [[33, "viser.Icon.CLOCK_QUESTION"]], "clock_record (viser.icon attribute)": [[33, "viser.Icon.CLOCK_RECORD"]], "clock_search (viser.icon attribute)": [[33, "viser.Icon.CLOCK_SEARCH"]], "clock_share (viser.icon attribute)": [[33, "viser.Icon.CLOCK_SHARE"]], "clock_shield (viser.icon attribute)": [[33, "viser.Icon.CLOCK_SHIELD"]], "clock_star (viser.icon attribute)": [[33, "viser.Icon.CLOCK_STAR"]], "clock_stop (viser.icon attribute)": [[33, "viser.Icon.CLOCK_STOP"]], "clock_up (viser.icon attribute)": [[33, "viser.Icon.CLOCK_UP"]], "clock_x (viser.icon attribute)": [[33, "viser.Icon.CLOCK_X"]], "clothes_rack (viser.icon attribute)": [[33, "viser.Icon.CLOTHES_RACK"]], "clothes_rack_off (viser.icon attribute)": [[33, "viser.Icon.CLOTHES_RACK_OFF"]], "cloud (viser.icon attribute)": [[33, "viser.Icon.CLOUD"]], "cloud_bolt (viser.icon attribute)": [[33, "viser.Icon.CLOUD_BOLT"]], "cloud_cancel (viser.icon attribute)": [[33, "viser.Icon.CLOUD_CANCEL"]], "cloud_check (viser.icon attribute)": [[33, "viser.Icon.CLOUD_CHECK"]], "cloud_code (viser.icon attribute)": [[33, "viser.Icon.CLOUD_CODE"]], "cloud_cog (viser.icon attribute)": [[33, "viser.Icon.CLOUD_COG"]], "cloud_computing (viser.icon attribute)": [[33, "viser.Icon.CLOUD_COMPUTING"]], "cloud_data_connection (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DATA_CONNECTION"]], "cloud_dollar (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DOLLAR"]], "cloud_down (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DOWN"]], "cloud_download (viser.icon attribute)": [[33, "viser.Icon.CLOUD_DOWNLOAD"]], "cloud_exclamation (viser.icon attribute)": [[33, "viser.Icon.CLOUD_EXCLAMATION"]], "cloud_filled (viser.icon attribute)": [[33, "viser.Icon.CLOUD_FILLED"]], "cloud_fog (viser.icon attribute)": [[33, "viser.Icon.CLOUD_FOG"]], "cloud_heart (viser.icon attribute)": [[33, "viser.Icon.CLOUD_HEART"]], "cloud_lock (viser.icon attribute)": [[33, "viser.Icon.CLOUD_LOCK"]], "cloud_lock_open (viser.icon attribute)": [[33, "viser.Icon.CLOUD_LOCK_OPEN"]], "cloud_minus (viser.icon attribute)": [[33, "viser.Icon.CLOUD_MINUS"]], "cloud_off (viser.icon attribute)": [[33, "viser.Icon.CLOUD_OFF"]], "cloud_pause (viser.icon attribute)": [[33, "viser.Icon.CLOUD_PAUSE"]], "cloud_pin (viser.icon attribute)": [[33, "viser.Icon.CLOUD_PIN"]], "cloud_plus (viser.icon attribute)": [[33, "viser.Icon.CLOUD_PLUS"]], "cloud_question (viser.icon attribute)": [[33, "viser.Icon.CLOUD_QUESTION"]], "cloud_rain (viser.icon attribute)": [[33, "viser.Icon.CLOUD_RAIN"]], "cloud_search (viser.icon attribute)": [[33, "viser.Icon.CLOUD_SEARCH"]], "cloud_share (viser.icon attribute)": [[33, "viser.Icon.CLOUD_SHARE"]], "cloud_snow (viser.icon attribute)": [[33, "viser.Icon.CLOUD_SNOW"]], "cloud_star (viser.icon attribute)": [[33, "viser.Icon.CLOUD_STAR"]], "cloud_storm (viser.icon attribute)": [[33, "viser.Icon.CLOUD_STORM"]], "cloud_up (viser.icon attribute)": [[33, "viser.Icon.CLOUD_UP"]], "cloud_upload (viser.icon attribute)": [[33, "viser.Icon.CLOUD_UPLOAD"]], "cloud_x (viser.icon attribute)": [[33, "viser.Icon.CLOUD_X"]], "clover (viser.icon attribute)": [[33, "viser.Icon.CLOVER"]], "clover_2 (viser.icon attribute)": [[33, "viser.Icon.CLOVER_2"]], "clubs (viser.icon attribute)": [[33, "viser.Icon.CLUBS"]], "clubs_filled (viser.icon attribute)": [[33, "viser.Icon.CLUBS_FILLED"]], "code (viser.icon attribute)": [[33, "viser.Icon.CODE"]], "code_asterix (viser.icon attribute)": [[33, "viser.Icon.CODE_ASTERIX"]], "code_circle (viser.icon attribute)": [[33, "viser.Icon.CODE_CIRCLE"]], "code_circle_2 (viser.icon attribute)": [[33, "viser.Icon.CODE_CIRCLE_2"]], "code_dots (viser.icon attribute)": [[33, "viser.Icon.CODE_DOTS"]], "code_minus (viser.icon attribute)": [[33, "viser.Icon.CODE_MINUS"]], "code_off (viser.icon attribute)": [[33, "viser.Icon.CODE_OFF"]], "code_plus (viser.icon attribute)": [[33, "viser.Icon.CODE_PLUS"]], "coffee (viser.icon attribute)": [[33, "viser.Icon.COFFEE"]], "coffee_off (viser.icon attribute)": [[33, "viser.Icon.COFFEE_OFF"]], "coffin (viser.icon attribute)": [[33, "viser.Icon.COFFIN"]], "coin (viser.icon attribute)": [[33, "viser.Icon.COIN"]], "coins (viser.icon attribute)": [[33, "viser.Icon.COINS"]], "coin_bitcoin (viser.icon attribute)": [[33, "viser.Icon.COIN_BITCOIN"]], "coin_euro (viser.icon attribute)": [[33, "viser.Icon.COIN_EURO"]], "coin_monero (viser.icon attribute)": [[33, "viser.Icon.COIN_MONERO"]], "coin_off (viser.icon attribute)": [[33, "viser.Icon.COIN_OFF"]], "coin_pound (viser.icon attribute)": [[33, "viser.Icon.COIN_POUND"]], "coin_rupee (viser.icon attribute)": [[33, "viser.Icon.COIN_RUPEE"]], "coin_yen (viser.icon attribute)": [[33, "viser.Icon.COIN_YEN"]], "coin_yuan (viser.icon attribute)": [[33, "viser.Icon.COIN_YUAN"]], "color_filter (viser.icon attribute)": [[33, "viser.Icon.COLOR_FILTER"]], "color_picker (viser.icon attribute)": [[33, "viser.Icon.COLOR_PICKER"]], "color_picker_off (viser.icon attribute)": [[33, "viser.Icon.COLOR_PICKER_OFF"]], "color_swatch (viser.icon attribute)": [[33, "viser.Icon.COLOR_SWATCH"]], "color_swatch_off (viser.icon attribute)": [[33, "viser.Icon.COLOR_SWATCH_OFF"]], "columns (viser.icon attribute)": [[33, "viser.Icon.COLUMNS"]], "columns_1 (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_1"]], "columns_2 (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_2"]], "columns_3 (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_3"]], "columns_off (viser.icon attribute)": [[33, "viser.Icon.COLUMNS_OFF"]], "column_insert_left (viser.icon attribute)": [[33, "viser.Icon.COLUMN_INSERT_LEFT"]], "column_insert_right (viser.icon attribute)": [[33, "viser.Icon.COLUMN_INSERT_RIGHT"]], "column_remove (viser.icon attribute)": [[33, "viser.Icon.COLUMN_REMOVE"]], "comet (viser.icon attribute)": [[33, "viser.Icon.COMET"]], "command (viser.icon attribute)": [[33, "viser.Icon.COMMAND"]], "command_off (viser.icon attribute)": [[33, "viser.Icon.COMMAND_OFF"]], "compass (viser.icon attribute)": [[33, "viser.Icon.COMPASS"]], "compass_off (viser.icon attribute)": [[33, "viser.Icon.COMPASS_OFF"]], "components (viser.icon attribute)": [[33, "viser.Icon.COMPONENTS"]], "components_off (viser.icon attribute)": [[33, "viser.Icon.COMPONENTS_OFF"]], "cone (viser.icon attribute)": [[33, "viser.Icon.CONE"]], "cone_2 (viser.icon attribute)": [[33, "viser.Icon.CONE_2"]], "cone_off (viser.icon attribute)": [[33, "viser.Icon.CONE_OFF"]], "cone_plus (viser.icon attribute)": [[33, "viser.Icon.CONE_PLUS"]], "confetti (viser.icon attribute)": [[33, "viser.Icon.CONFETTI"]], "confetti_off (viser.icon attribute)": [[33, "viser.Icon.CONFETTI_OFF"]], "confucius (viser.icon attribute)": [[33, "viser.Icon.CONFUCIUS"]], "container (viser.icon attribute)": [[33, "viser.Icon.CONTAINER"]], "container_off (viser.icon attribute)": [[33, "viser.Icon.CONTAINER_OFF"]], "contrast (viser.icon attribute)": [[33, "viser.Icon.CONTRAST"]], "contrast_2 (viser.icon attribute)": [[33, "viser.Icon.CONTRAST_2"]], "contrast_2_off (viser.icon attribute)": [[33, "viser.Icon.CONTRAST_2_OFF"]], "contrast_off (viser.icon attribute)": [[33, "viser.Icon.CONTRAST_OFF"]], "cooker (viser.icon attribute)": [[33, "viser.Icon.COOKER"]], "cookie (viser.icon attribute)": [[33, "viser.Icon.COOKIE"]], "cookie_man (viser.icon attribute)": [[33, "viser.Icon.COOKIE_MAN"]], "cookie_off (viser.icon attribute)": [[33, "viser.Icon.COOKIE_OFF"]], "copy (viser.icon attribute)": [[33, "viser.Icon.COPY"]], "copyleft (viser.icon attribute)": [[33, "viser.Icon.COPYLEFT"]], "copyleft_filled (viser.icon attribute)": [[33, "viser.Icon.COPYLEFT_FILLED"]], "copyleft_off (viser.icon attribute)": [[33, "viser.Icon.COPYLEFT_OFF"]], "copyright (viser.icon attribute)": [[33, "viser.Icon.COPYRIGHT"]], "copyright_filled (viser.icon attribute)": [[33, "viser.Icon.COPYRIGHT_FILLED"]], "copyright_off (viser.icon attribute)": [[33, "viser.Icon.COPYRIGHT_OFF"]], "copy_off (viser.icon attribute)": [[33, "viser.Icon.COPY_OFF"]], "corner_down_left (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_LEFT"]], "corner_down_left_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_LEFT_DOUBLE"]], "corner_down_right (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_RIGHT"]], "corner_down_right_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_DOWN_RIGHT_DOUBLE"]], "corner_left_down (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_DOWN"]], "corner_left_down_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_DOWN_DOUBLE"]], "corner_left_up (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_UP"]], "corner_left_up_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_LEFT_UP_DOUBLE"]], "corner_right_down (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_DOWN"]], "corner_right_down_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_DOWN_DOUBLE"]], "corner_right_up (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_UP"]], "corner_right_up_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_RIGHT_UP_DOUBLE"]], "corner_up_left (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_LEFT"]], "corner_up_left_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_LEFT_DOUBLE"]], "corner_up_right (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_RIGHT"]], "corner_up_right_double (viser.icon attribute)": [[33, "viser.Icon.CORNER_UP_RIGHT_DOUBLE"]], "cpu (viser.icon attribute)": [[33, "viser.Icon.CPU"]], "cpu_2 (viser.icon attribute)": [[33, "viser.Icon.CPU_2"]], "cpu_off (viser.icon attribute)": [[33, "viser.Icon.CPU_OFF"]], "crane (viser.icon attribute)": [[33, "viser.Icon.CRANE"]], "crane_off (viser.icon attribute)": [[33, "viser.Icon.CRANE_OFF"]], "creative_commons (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS"]], "creative_commons_by (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_BY"]], "creative_commons_nc (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_NC"]], "creative_commons_nd (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_ND"]], "creative_commons_off (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_OFF"]], "creative_commons_sa (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_SA"]], "creative_commons_zero (viser.icon attribute)": [[33, "viser.Icon.CREATIVE_COMMONS_ZERO"]], "credit_card (viser.icon attribute)": [[33, "viser.Icon.CREDIT_CARD"]], "credit_card_off (viser.icon attribute)": [[33, "viser.Icon.CREDIT_CARD_OFF"]], "cricket (viser.icon attribute)": [[33, "viser.Icon.CRICKET"]], "crop (viser.icon attribute)": [[33, "viser.Icon.CROP"]], "cross (viser.icon attribute)": [[33, "viser.Icon.CROSS"]], "crosshair (viser.icon attribute)": [[33, "viser.Icon.CROSSHAIR"]], "cross_filled (viser.icon attribute)": [[33, "viser.Icon.CROSS_FILLED"]], "cross_off (viser.icon attribute)": [[33, "viser.Icon.CROSS_OFF"]], "crown (viser.icon attribute)": [[33, "viser.Icon.CROWN"]], "crown_off (viser.icon attribute)": [[33, "viser.Icon.CROWN_OFF"]], "crutches (viser.icon attribute)": [[33, "viser.Icon.CRUTCHES"]], "crutches_off (viser.icon attribute)": [[33, "viser.Icon.CRUTCHES_OFF"]], "crystal_ball (viser.icon attribute)": [[33, "viser.Icon.CRYSTAL_BALL"]], "csv (viser.icon attribute)": [[33, "viser.Icon.CSV"]], "cube (viser.icon attribute)": [[33, "viser.Icon.CUBE"]], "cube_off (viser.icon attribute)": [[33, "viser.Icon.CUBE_OFF"]], "cube_plus (viser.icon attribute)": [[33, "viser.Icon.CUBE_PLUS"]], "cube_send (viser.icon attribute)": [[33, "viser.Icon.CUBE_SEND"]], "cube_unfolded (viser.icon attribute)": [[33, "viser.Icon.CUBE_UNFOLDED"]], "cup (viser.icon attribute)": [[33, "viser.Icon.CUP"]], "cup_off (viser.icon attribute)": [[33, "viser.Icon.CUP_OFF"]], "curling (viser.icon attribute)": [[33, "viser.Icon.CURLING"]], "curly_loop (viser.icon attribute)": [[33, "viser.Icon.CURLY_LOOP"]], "currency (viser.icon attribute)": [[33, "viser.Icon.CURRENCY"]], "currency_afghani (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_AFGHANI"]], "currency_bahraini (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_BAHRAINI"]], "currency_baht (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_BAHT"]], "currency_bitcoin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_BITCOIN"]], "currency_cent (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_CENT"]], "currency_dinar (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DINAR"]], "currency_dirham (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DIRHAM"]], "currency_dogecoin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOGECOIN"]], "currency_dollar (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR"]], "currency_dollar_australian (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_AUSTRALIAN"]], "currency_dollar_brunei (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_BRUNEI"]], "currency_dollar_canadian (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_CANADIAN"]], "currency_dollar_guyanese (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_GUYANESE"]], "currency_dollar_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_OFF"]], "currency_dollar_singapore (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_SINGAPORE"]], "currency_dollar_zimbabwean (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DOLLAR_ZIMBABWEAN"]], "currency_dong (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DONG"]], "currency_dram (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_DRAM"]], "currency_ethereum (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_ETHEREUM"]], "currency_euro (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_EURO"]], "currency_euro_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_EURO_OFF"]], "currency_florin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_FLORIN"]], "currency_forint (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_FORINT"]], "currency_frank (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_FRANK"]], "currency_guarani (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_GUARANI"]], "currency_hryvnia (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_HRYVNIA"]], "currency_iranian_rial (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_IRANIAN_RIAL"]], "currency_kip (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KIP"]], "currency_krone_czech (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KRONE_CZECH"]], "currency_krone_danish (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KRONE_DANISH"]], "currency_krone_swedish (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_KRONE_SWEDISH"]], "currency_lari (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LARI"]], "currency_leu (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LEU"]], "currency_lira (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LIRA"]], "currency_litecoin (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LITECOIN"]], "currency_lyd (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_LYD"]], "currency_manat (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_MANAT"]], "currency_monero (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_MONERO"]], "currency_naira (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_NAIRA"]], "currency_nano (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_NANO"]], "currency_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_OFF"]], "currency_paanga (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_PAANGA"]], "currency_peso (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_PESO"]], "currency_pound (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_POUND"]], "currency_pound_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_POUND_OFF"]], "currency_quetzal (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_QUETZAL"]], "currency_real (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_REAL"]], "currency_renminbi (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RENMINBI"]], "currency_ripple (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RIPPLE"]], "currency_riyal (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RIYAL"]], "currency_rubel (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUBEL"]], "currency_rufiyaa (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUFIYAA"]], "currency_rupee (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUPEE"]], "currency_rupee_nepalese (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_RUPEE_NEPALESE"]], "currency_shekel (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_SHEKEL"]], "currency_solana (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_SOLANA"]], "currency_som (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_SOM"]], "currency_taka (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_TAKA"]], "currency_tenge (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_TENGE"]], "currency_tugrik (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_TUGRIK"]], "currency_won (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_WON"]], "currency_yen (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_YEN"]], "currency_yen_off (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_YEN_OFF"]], "currency_yuan (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_YUAN"]], "currency_zloty (viser.icon attribute)": [[33, "viser.Icon.CURRENCY_ZLOTY"]], "current_location (viser.icon attribute)": [[33, "viser.Icon.CURRENT_LOCATION"]], "current_location_off (viser.icon attribute)": [[33, "viser.Icon.CURRENT_LOCATION_OFF"]], "cursor_off (viser.icon attribute)": [[33, "viser.Icon.CURSOR_OFF"]], "cursor_text (viser.icon attribute)": [[33, "viser.Icon.CURSOR_TEXT"]], "cut (viser.icon attribute)": [[33, "viser.Icon.CUT"]], "cylinder (viser.icon attribute)": [[33, "viser.Icon.CYLINDER"]], "cylinder_off (viser.icon attribute)": [[33, "viser.Icon.CYLINDER_OFF"]], "cylinder_plus (viser.icon attribute)": [[33, "viser.Icon.CYLINDER_PLUS"]], "dashboard (viser.icon attribute)": [[33, "viser.Icon.DASHBOARD"]], "dashboard_off (viser.icon attribute)": [[33, "viser.Icon.DASHBOARD_OFF"]], "database (viser.icon attribute)": [[33, "viser.Icon.DATABASE"]], "database_cog (viser.icon attribute)": [[33, "viser.Icon.DATABASE_COG"]], "database_dollar (viser.icon attribute)": [[33, "viser.Icon.DATABASE_DOLLAR"]], "database_edit (viser.icon attribute)": [[33, "viser.Icon.DATABASE_EDIT"]], "database_exclamation (viser.icon attribute)": [[33, "viser.Icon.DATABASE_EXCLAMATION"]], "database_export (viser.icon attribute)": [[33, "viser.Icon.DATABASE_EXPORT"]], "database_heart (viser.icon attribute)": [[33, "viser.Icon.DATABASE_HEART"]], "database_import (viser.icon attribute)": [[33, "viser.Icon.DATABASE_IMPORT"]], "database_leak (viser.icon attribute)": [[33, "viser.Icon.DATABASE_LEAK"]], "database_minus (viser.icon attribute)": [[33, "viser.Icon.DATABASE_MINUS"]], "database_off (viser.icon attribute)": [[33, "viser.Icon.DATABASE_OFF"]], "database_plus (viser.icon attribute)": [[33, "viser.Icon.DATABASE_PLUS"]], "database_search (viser.icon attribute)": [[33, "viser.Icon.DATABASE_SEARCH"]], "database_share (viser.icon attribute)": [[33, "viser.Icon.DATABASE_SHARE"]], "database_star (viser.icon attribute)": [[33, "viser.Icon.DATABASE_STAR"]], "database_x (viser.icon attribute)": [[33, "viser.Icon.DATABASE_X"]], "decimal (viser.icon attribute)": [[33, "viser.Icon.DECIMAL"]], "deer (viser.icon attribute)": [[33, "viser.Icon.DEER"]], "delta (viser.icon attribute)": [[33, "viser.Icon.DELTA"]], "dental (viser.icon attribute)": [[33, "viser.Icon.DENTAL"]], "dental_broken (viser.icon attribute)": [[33, "viser.Icon.DENTAL_BROKEN"]], "dental_off (viser.icon attribute)": [[33, "viser.Icon.DENTAL_OFF"]], "deselect (viser.icon attribute)": [[33, "viser.Icon.DESELECT"]], "details (viser.icon attribute)": [[33, "viser.Icon.DETAILS"]], "details_off (viser.icon attribute)": [[33, "viser.Icon.DETAILS_OFF"]], "devices (viser.icon attribute)": [[33, "viser.Icon.DEVICES"]], "devices_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICES_2"]], "devices_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICES_BOLT"]], "devices_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICES_CANCEL"]], "devices_check (viser.icon attribute)": [[33, "viser.Icon.DEVICES_CHECK"]], "devices_code (viser.icon attribute)": [[33, "viser.Icon.DEVICES_CODE"]], "devices_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICES_COG"]], "devices_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICES_DOLLAR"]], "devices_down (viser.icon attribute)": [[33, "viser.Icon.DEVICES_DOWN"]], "devices_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICES_EXCLAMATION"]], "devices_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICES_HEART"]], "devices_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICES_MINUS"]], "devices_off (viser.icon attribute)": [[33, "viser.Icon.DEVICES_OFF"]], "devices_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PAUSE"]], "devices_pc (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PC"]], "devices_pc_off (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PC_OFF"]], "devices_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PIN"]], "devices_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICES_PLUS"]], "devices_question (viser.icon attribute)": [[33, "viser.Icon.DEVICES_QUESTION"]], "devices_search (viser.icon attribute)": [[33, "viser.Icon.DEVICES_SEARCH"]], "devices_share (viser.icon attribute)": [[33, "viser.Icon.DEVICES_SHARE"]], "devices_star (viser.icon attribute)": [[33, "viser.Icon.DEVICES_STAR"]], "devices_up (viser.icon attribute)": [[33, "viser.Icon.DEVICES_UP"]], "devices_x (viser.icon attribute)": [[33, "viser.Icon.DEVICES_X"]], "device_airpods (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AIRPODS"]], "device_airpods_case (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AIRPODS_CASE"]], "device_airtag (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AIRTAG"]], "device_analytics (viser.icon attribute)": [[33, "viser.Icon.DEVICE_ANALYTICS"]], "device_audio_tape (viser.icon attribute)": [[33, "viser.Icon.DEVICE_AUDIO_TAPE"]], "device_camera_phone (viser.icon attribute)": [[33, "viser.Icon.DEVICE_CAMERA_PHONE"]], "device_cctv (viser.icon attribute)": [[33, "viser.Icon.DEVICE_CCTV"]], "device_cctv_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_CCTV_OFF"]], "device_computer_camera (viser.icon attribute)": [[33, "viser.Icon.DEVICE_COMPUTER_CAMERA"]], "device_computer_camera_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_COMPUTER_CAMERA_OFF"]], "device_desktop (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP"]], "device_desktop_analytics (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_ANALYTICS"]], "device_desktop_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_BOLT"]], "device_desktop_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_CANCEL"]], "device_desktop_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_CHECK"]], "device_desktop_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_CODE"]], "device_desktop_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_COG"]], "device_desktop_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_DOLLAR"]], "device_desktop_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_DOWN"]], "device_desktop_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_EXCLAMATION"]], "device_desktop_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_HEART"]], "device_desktop_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_MINUS"]], "device_desktop_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_OFF"]], "device_desktop_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_PAUSE"]], "device_desktop_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_PIN"]], "device_desktop_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_PLUS"]], "device_desktop_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_QUESTION"]], "device_desktop_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_SEARCH"]], "device_desktop_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_SHARE"]], "device_desktop_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_STAR"]], "device_desktop_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_UP"]], "device_desktop_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_DESKTOP_X"]], "device_floppy (viser.icon attribute)": [[33, "viser.Icon.DEVICE_FLOPPY"]], "device_gamepad (viser.icon attribute)": [[33, "viser.Icon.DEVICE_GAMEPAD"]], "device_gamepad_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_GAMEPAD_2"]], "device_heart_monitor (viser.icon attribute)": [[33, "viser.Icon.DEVICE_HEART_MONITOR"]], "device_heart_monitor_filled (viser.icon attribute)": [[33, "viser.Icon.DEVICE_HEART_MONITOR_FILLED"]], "device_imac (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC"]], "device_imac_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_BOLT"]], "device_imac_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_CANCEL"]], "device_imac_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_CHECK"]], "device_imac_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_CODE"]], "device_imac_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_COG"]], "device_imac_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_DOLLAR"]], "device_imac_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_DOWN"]], "device_imac_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_EXCLAMATION"]], "device_imac_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_HEART"]], "device_imac_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_MINUS"]], "device_imac_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_OFF"]], "device_imac_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_PAUSE"]], "device_imac_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_PIN"]], "device_imac_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_PLUS"]], "device_imac_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_QUESTION"]], "device_imac_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_SEARCH"]], "device_imac_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_SHARE"]], "device_imac_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_STAR"]], "device_imac_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_UP"]], "device_imac_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IMAC_X"]], "device_ipad (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD"]], "device_ipad_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_BOLT"]], "device_ipad_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_CANCEL"]], "device_ipad_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_CHECK"]], "device_ipad_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_CODE"]], "device_ipad_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_COG"]], "device_ipad_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_DOLLAR"]], "device_ipad_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_DOWN"]], "device_ipad_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_EXCLAMATION"]], "device_ipad_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HEART"]], "device_ipad_horizontal (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL"]], "device_ipad_horizontal_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_BOLT"]], "device_ipad_horizontal_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CANCEL"]], "device_ipad_horizontal_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CHECK"]], "device_ipad_horizontal_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_CODE"]], "device_ipad_horizontal_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_COG"]], "device_ipad_horizontal_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOLLAR"]], "device_ipad_horizontal_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_DOWN"]], "device_ipad_horizontal_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_EXCLAMATION"]], "device_ipad_horizontal_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_HEART"]], "device_ipad_horizontal_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_MINUS"]], "device_ipad_horizontal_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_OFF"]], "device_ipad_horizontal_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PAUSE"]], "device_ipad_horizontal_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PIN"]], "device_ipad_horizontal_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_PLUS"]], "device_ipad_horizontal_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_QUESTION"]], "device_ipad_horizontal_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SEARCH"]], "device_ipad_horizontal_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_SHARE"]], "device_ipad_horizontal_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_STAR"]], "device_ipad_horizontal_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_UP"]], "device_ipad_horizontal_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_HORIZONTAL_X"]], "device_ipad_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_MINUS"]], "device_ipad_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_OFF"]], "device_ipad_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_PAUSE"]], "device_ipad_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_PIN"]], "device_ipad_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_PLUS"]], "device_ipad_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_QUESTION"]], "device_ipad_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_SEARCH"]], "device_ipad_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_SHARE"]], "device_ipad_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_STAR"]], "device_ipad_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_UP"]], "device_ipad_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_IPAD_X"]], "device_landline_phone (viser.icon attribute)": [[33, "viser.Icon.DEVICE_LANDLINE_PHONE"]], "device_laptop (viser.icon attribute)": [[33, "viser.Icon.DEVICE_LAPTOP"]], "device_laptop_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_LAPTOP_OFF"]], "device_mobile (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE"]], "device_mobile_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_BOLT"]], "device_mobile_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CANCEL"]], "device_mobile_charging (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CHARGING"]], "device_mobile_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CHECK"]], "device_mobile_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_CODE"]], "device_mobile_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_COG"]], "device_mobile_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_DOLLAR"]], "device_mobile_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_DOWN"]], "device_mobile_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_EXCLAMATION"]], "device_mobile_filled (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_FILLED"]], "device_mobile_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_HEART"]], "device_mobile_message (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_MESSAGE"]], "device_mobile_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_MINUS"]], "device_mobile_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_OFF"]], "device_mobile_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_PAUSE"]], "device_mobile_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_PIN"]], "device_mobile_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_PLUS"]], "device_mobile_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_QUESTION"]], "device_mobile_rotated (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_ROTATED"]], "device_mobile_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_SEARCH"]], "device_mobile_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_SHARE"]], "device_mobile_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_STAR"]], "device_mobile_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_UP"]], "device_mobile_vibration (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_VIBRATION"]], "device_mobile_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_MOBILE_X"]], "device_nintendo (viser.icon attribute)": [[33, "viser.Icon.DEVICE_NINTENDO"]], "device_nintendo_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_NINTENDO_OFF"]], "device_remote (viser.icon attribute)": [[33, "viser.Icon.DEVICE_REMOTE"]], "device_sd_card (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SD_CARD"]], "device_sim (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM"]], "device_sim_1 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM_1"]], "device_sim_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM_2"]], "device_sim_3 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SIM_3"]], "device_speaker (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SPEAKER"]], "device_speaker_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_SPEAKER_OFF"]], "device_tablet (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET"]], "device_tablet_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_BOLT"]], "device_tablet_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_CANCEL"]], "device_tablet_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_CHECK"]], "device_tablet_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_CODE"]], "device_tablet_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_COG"]], "device_tablet_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_DOLLAR"]], "device_tablet_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_DOWN"]], "device_tablet_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_EXCLAMATION"]], "device_tablet_filled (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_FILLED"]], "device_tablet_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_HEART"]], "device_tablet_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_MINUS"]], "device_tablet_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_OFF"]], "device_tablet_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_PAUSE"]], "device_tablet_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_PIN"]], "device_tablet_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_PLUS"]], "device_tablet_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_QUESTION"]], "device_tablet_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_SEARCH"]], "device_tablet_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_SHARE"]], "device_tablet_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_STAR"]], "device_tablet_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_UP"]], "device_tablet_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TABLET_X"]], "device_tv (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TV"]], "device_tv_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TV_OFF"]], "device_tv_old (viser.icon attribute)": [[33, "viser.Icon.DEVICE_TV_OLD"]], "device_vision_pro (viser.icon attribute)": [[33, "viser.Icon.DEVICE_VISION_PRO"]], "device_watch (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH"]], "device_watch_bolt (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_BOLT"]], "device_watch_cancel (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_CANCEL"]], "device_watch_check (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_CHECK"]], "device_watch_code (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_CODE"]], "device_watch_cog (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_COG"]], "device_watch_dollar (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_DOLLAR"]], "device_watch_down (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_DOWN"]], "device_watch_exclamation (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_EXCLAMATION"]], "device_watch_heart (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_HEART"]], "device_watch_minus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_MINUS"]], "device_watch_off (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_OFF"]], "device_watch_pause (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_PAUSE"]], "device_watch_pin (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_PIN"]], "device_watch_plus (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_PLUS"]], "device_watch_question (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_QUESTION"]], "device_watch_search (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_SEARCH"]], "device_watch_share (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_SHARE"]], "device_watch_star (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_STAR"]], "device_watch_stats (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_STATS"]], "device_watch_stats_2 (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_STATS_2"]], "device_watch_up (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_UP"]], "device_watch_x (viser.icon attribute)": [[33, "viser.Icon.DEVICE_WATCH_X"]], "diabolo (viser.icon attribute)": [[33, "viser.Icon.DIABOLO"]], "diabolo_off (viser.icon attribute)": [[33, "viser.Icon.DIABOLO_OFF"]], "diabolo_plus (viser.icon attribute)": [[33, "viser.Icon.DIABOLO_PLUS"]], "dialpad (viser.icon attribute)": [[33, "viser.Icon.DIALPAD"]], "dialpad_filled (viser.icon attribute)": [[33, "viser.Icon.DIALPAD_FILLED"]], "dialpad_off (viser.icon attribute)": [[33, "viser.Icon.DIALPAD_OFF"]], "diamond (viser.icon attribute)": [[33, "viser.Icon.DIAMOND"]], "diamonds (viser.icon attribute)": [[33, "viser.Icon.DIAMONDS"]], "diamonds_filled (viser.icon attribute)": [[33, "viser.Icon.DIAMONDS_FILLED"]], "diamond_filled (viser.icon attribute)": [[33, "viser.Icon.DIAMOND_FILLED"]], "diamond_off (viser.icon attribute)": [[33, "viser.Icon.DIAMOND_OFF"]], "dice (viser.icon attribute)": [[33, "viser.Icon.DICE"]], "dice_1 (viser.icon attribute)": [[33, "viser.Icon.DICE_1"]], "dice_1_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_1_FILLED"]], "dice_2 (viser.icon attribute)": [[33, "viser.Icon.DICE_2"]], "dice_2_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_2_FILLED"]], "dice_3 (viser.icon attribute)": [[33, "viser.Icon.DICE_3"]], "dice_3_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_3_FILLED"]], "dice_4 (viser.icon attribute)": [[33, "viser.Icon.DICE_4"]], "dice_4_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_4_FILLED"]], "dice_5 (viser.icon attribute)": [[33, "viser.Icon.DICE_5"]], "dice_5_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_5_FILLED"]], "dice_6 (viser.icon attribute)": [[33, "viser.Icon.DICE_6"]], "dice_6_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_6_FILLED"]], "dice_filled (viser.icon attribute)": [[33, "viser.Icon.DICE_FILLED"]], "dimensions (viser.icon attribute)": [[33, "viser.Icon.DIMENSIONS"]], "direction (viser.icon attribute)": [[33, "viser.Icon.DIRECTION"]], "directions (viser.icon attribute)": [[33, "viser.Icon.DIRECTIONS"]], "directions_off (viser.icon attribute)": [[33, "viser.Icon.DIRECTIONS_OFF"]], "direction_horizontal (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_HORIZONTAL"]], "direction_sign (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_SIGN"]], "direction_sign_filled (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_SIGN_FILLED"]], "direction_sign_off (viser.icon attribute)": [[33, "viser.Icon.DIRECTION_SIGN_OFF"]], "disabled (viser.icon attribute)": [[33, "viser.Icon.DISABLED"]], "disabled_2 (viser.icon attribute)": [[33, "viser.Icon.DISABLED_2"]], "disabled_off (viser.icon attribute)": [[33, "viser.Icon.DISABLED_OFF"]], "disc (viser.icon attribute)": [[33, "viser.Icon.DISC"]], "discount (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT"]], "discount_2 (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_2"]], "discount_2_off (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_2_OFF"]], "discount_check (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_CHECK"]], "discount_check_filled (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_CHECK_FILLED"]], "discount_off (viser.icon attribute)": [[33, "viser.Icon.DISCOUNT_OFF"]], "disc_golf (viser.icon attribute)": [[33, "viser.Icon.DISC_GOLF"]], "disc_off (viser.icon attribute)": [[33, "viser.Icon.DISC_OFF"]], "divide (viser.icon attribute)": [[33, "viser.Icon.DIVIDE"]], "dna (viser.icon attribute)": [[33, "viser.Icon.DNA"]], "dna_2 (viser.icon attribute)": [[33, "viser.Icon.DNA_2"]], "dna_2_off (viser.icon attribute)": [[33, "viser.Icon.DNA_2_OFF"]], "dna_off (viser.icon attribute)": [[33, "viser.Icon.DNA_OFF"]], "dog (viser.icon attribute)": [[33, "viser.Icon.DOG"]], "dog_bowl (viser.icon attribute)": [[33, "viser.Icon.DOG_BOWL"]], "door (viser.icon attribute)": [[33, "viser.Icon.DOOR"]], "door_enter (viser.icon attribute)": [[33, "viser.Icon.DOOR_ENTER"]], "door_exit (viser.icon attribute)": [[33, "viser.Icon.DOOR_EXIT"]], "door_off (viser.icon attribute)": [[33, "viser.Icon.DOOR_OFF"]], "dots (viser.icon attribute)": [[33, "viser.Icon.DOTS"]], "dots_circle_horizontal (viser.icon attribute)": [[33, "viser.Icon.DOTS_CIRCLE_HORIZONTAL"]], "dots_diagonal (viser.icon attribute)": [[33, "viser.Icon.DOTS_DIAGONAL"]], "dots_diagonal_2 (viser.icon attribute)": [[33, "viser.Icon.DOTS_DIAGONAL_2"]], "dots_vertical (viser.icon attribute)": [[33, "viser.Icon.DOTS_VERTICAL"]], "download (viser.icon attribute)": [[33, "viser.Icon.DOWNLOAD"]], "download_off (viser.icon attribute)": [[33, "viser.Icon.DOWNLOAD_OFF"]], "drag_drop (viser.icon attribute)": [[33, "viser.Icon.DRAG_DROP"]], "drag_drop_2 (viser.icon attribute)": [[33, "viser.Icon.DRAG_DROP_2"]], "drone (viser.icon attribute)": [[33, "viser.Icon.DRONE"]], "drone_off (viser.icon attribute)": [[33, "viser.Icon.DRONE_OFF"]], "droplet (viser.icon attribute)": [[33, "viser.Icon.DROPLET"]], "droplet_bolt (viser.icon attribute)": [[33, "viser.Icon.DROPLET_BOLT"]], "droplet_cancel (viser.icon attribute)": [[33, "viser.Icon.DROPLET_CANCEL"]], "droplet_check (viser.icon attribute)": [[33, "viser.Icon.DROPLET_CHECK"]], "droplet_code (viser.icon attribute)": [[33, "viser.Icon.DROPLET_CODE"]], "droplet_cog (viser.icon attribute)": [[33, "viser.Icon.DROPLET_COG"]], "droplet_dollar (viser.icon attribute)": [[33, "viser.Icon.DROPLET_DOLLAR"]], "droplet_down (viser.icon attribute)": [[33, "viser.Icon.DROPLET_DOWN"]], "droplet_exclamation (viser.icon attribute)": [[33, "viser.Icon.DROPLET_EXCLAMATION"]], "droplet_filled (viser.icon attribute)": [[33, "viser.Icon.DROPLET_FILLED"]], "droplet_filled_2 (viser.icon attribute)": [[33, "viser.Icon.DROPLET_FILLED_2"]], "droplet_half (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HALF"]], "droplet_half_2 (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HALF_2"]], "droplet_half_filled (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HALF_FILLED"]], "droplet_heart (viser.icon attribute)": [[33, "viser.Icon.DROPLET_HEART"]], "droplet_minus (viser.icon attribute)": [[33, "viser.Icon.DROPLET_MINUS"]], "droplet_off (viser.icon attribute)": [[33, "viser.Icon.DROPLET_OFF"]], "droplet_pause (viser.icon attribute)": [[33, "viser.Icon.DROPLET_PAUSE"]], "droplet_pin (viser.icon attribute)": [[33, "viser.Icon.DROPLET_PIN"]], "droplet_plus (viser.icon attribute)": [[33, "viser.Icon.DROPLET_PLUS"]], "droplet_question (viser.icon attribute)": [[33, "viser.Icon.DROPLET_QUESTION"]], "droplet_search (viser.icon attribute)": [[33, "viser.Icon.DROPLET_SEARCH"]], "droplet_share (viser.icon attribute)": [[33, "viser.Icon.DROPLET_SHARE"]], "droplet_star (viser.icon attribute)": [[33, "viser.Icon.DROPLET_STAR"]], "droplet_up (viser.icon attribute)": [[33, "viser.Icon.DROPLET_UP"]], "droplet_x (viser.icon attribute)": [[33, "viser.Icon.DROPLET_X"]], "drop_circle (viser.icon attribute)": [[33, "viser.Icon.DROP_CIRCLE"]], "dual_screen (viser.icon attribute)": [[33, "viser.Icon.DUAL_SCREEN"]], "ear (viser.icon attribute)": [[33, "viser.Icon.EAR"]], "ear_off (viser.icon attribute)": [[33, "viser.Icon.EAR_OFF"]], "ease_in (viser.icon attribute)": [[33, "viser.Icon.EASE_IN"]], "ease_in_control_point (viser.icon attribute)": [[33, "viser.Icon.EASE_IN_CONTROL_POINT"]], "ease_in_out (viser.icon attribute)": [[33, "viser.Icon.EASE_IN_OUT"]], "ease_in_out_control_points (viser.icon attribute)": [[33, "viser.Icon.EASE_IN_OUT_CONTROL_POINTS"]], "ease_out (viser.icon attribute)": [[33, "viser.Icon.EASE_OUT"]], "ease_out_control_point (viser.icon attribute)": [[33, "viser.Icon.EASE_OUT_CONTROL_POINT"]], "edit (viser.icon attribute)": [[33, "viser.Icon.EDIT"]], "edit_circle (viser.icon attribute)": [[33, "viser.Icon.EDIT_CIRCLE"]], "edit_circle_off (viser.icon attribute)": [[33, "viser.Icon.EDIT_CIRCLE_OFF"]], "edit_off (viser.icon attribute)": [[33, "viser.Icon.EDIT_OFF"]], "egg (viser.icon attribute)": [[33, "viser.Icon.EGG"]], "eggs (viser.icon attribute)": [[33, "viser.Icon.EGGS"]], "egg_cracked (viser.icon attribute)": [[33, "viser.Icon.EGG_CRACKED"]], "egg_filled (viser.icon attribute)": [[33, "viser.Icon.EGG_FILLED"]], "egg_fried (viser.icon attribute)": [[33, "viser.Icon.EGG_FRIED"]], "egg_off (viser.icon attribute)": [[33, "viser.Icon.EGG_OFF"]], "elevator (viser.icon attribute)": [[33, "viser.Icon.ELEVATOR"]], "elevator_off (viser.icon attribute)": [[33, "viser.Icon.ELEVATOR_OFF"]], "emergency_bed (viser.icon attribute)": [[33, "viser.Icon.EMERGENCY_BED"]], "empathize (viser.icon attribute)": [[33, "viser.Icon.EMPATHIZE"]], "empathize_off (viser.icon attribute)": [[33, "viser.Icon.EMPATHIZE_OFF"]], "emphasis (viser.icon attribute)": [[33, "viser.Icon.EMPHASIS"]], "engine (viser.icon attribute)": [[33, "viser.Icon.ENGINE"]], "engine_off (viser.icon attribute)": [[33, "viser.Icon.ENGINE_OFF"]], "equal (viser.icon attribute)": [[33, "viser.Icon.EQUAL"]], "equal_double (viser.icon attribute)": [[33, "viser.Icon.EQUAL_DOUBLE"]], "equal_not (viser.icon attribute)": [[33, "viser.Icon.EQUAL_NOT"]], "eraser (viser.icon attribute)": [[33, "viser.Icon.ERASER"]], "eraser_off (viser.icon attribute)": [[33, "viser.Icon.ERASER_OFF"]], "error_404 (viser.icon attribute)": [[33, "viser.Icon.ERROR_404"]], "error_404_off (viser.icon attribute)": [[33, "viser.Icon.ERROR_404_OFF"]], "exchange (viser.icon attribute)": [[33, "viser.Icon.EXCHANGE"]], "exchange_off (viser.icon attribute)": [[33, "viser.Icon.EXCHANGE_OFF"]], "exclamation_circle (viser.icon attribute)": [[33, "viser.Icon.EXCLAMATION_CIRCLE"]], "exclamation_mark (viser.icon attribute)": [[33, "viser.Icon.EXCLAMATION_MARK"]], "exclamation_mark_off (viser.icon attribute)": [[33, "viser.Icon.EXCLAMATION_MARK_OFF"]], "explicit (viser.icon attribute)": [[33, "viser.Icon.EXPLICIT"]], "explicit_off (viser.icon attribute)": [[33, "viser.Icon.EXPLICIT_OFF"]], "exposure (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE"]], "exposure_0 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_0"]], "exposure_minus_1 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_MINUS_1"]], "exposure_minus_2 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_MINUS_2"]], "exposure_off (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_OFF"]], "exposure_plus_1 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_PLUS_1"]], "exposure_plus_2 (viser.icon attribute)": [[33, "viser.Icon.EXPOSURE_PLUS_2"]], "external_link (viser.icon attribute)": [[33, "viser.Icon.EXTERNAL_LINK"]], "external_link_off (viser.icon attribute)": [[33, "viser.Icon.EXTERNAL_LINK_OFF"]], "eye (viser.icon attribute)": [[33, "viser.Icon.EYE"]], "eyeglass (viser.icon attribute)": [[33, "viser.Icon.EYEGLASS"]], "eyeglass_2 (viser.icon attribute)": [[33, "viser.Icon.EYEGLASS_2"]], "eyeglass_off (viser.icon attribute)": [[33, "viser.Icon.EYEGLASS_OFF"]], "eye_check (viser.icon attribute)": [[33, "viser.Icon.EYE_CHECK"]], "eye_closed (viser.icon attribute)": [[33, "viser.Icon.EYE_CLOSED"]], "eye_cog (viser.icon attribute)": [[33, "viser.Icon.EYE_COG"]], "eye_edit (viser.icon attribute)": [[33, "viser.Icon.EYE_EDIT"]], "eye_exclamation (viser.icon attribute)": [[33, "viser.Icon.EYE_EXCLAMATION"]], "eye_filled (viser.icon attribute)": [[33, "viser.Icon.EYE_FILLED"]], "eye_heart (viser.icon attribute)": [[33, "viser.Icon.EYE_HEART"]], "eye_off (viser.icon attribute)": [[33, "viser.Icon.EYE_OFF"]], "eye_table (viser.icon attribute)": [[33, "viser.Icon.EYE_TABLE"]], "eye_x (viser.icon attribute)": [[33, "viser.Icon.EYE_X"]], "e_passport (viser.icon attribute)": [[33, "viser.Icon.E_PASSPORT"]], "face_id (viser.icon attribute)": [[33, "viser.Icon.FACE_ID"]], "face_id_error (viser.icon attribute)": [[33, "viser.Icon.FACE_ID_ERROR"]], "face_mask (viser.icon attribute)": [[33, "viser.Icon.FACE_MASK"]], "face_mask_off (viser.icon attribute)": [[33, "viser.Icon.FACE_MASK_OFF"]], "fall (viser.icon attribute)": [[33, "viser.Icon.FALL"]], "feather (viser.icon attribute)": [[33, "viser.Icon.FEATHER"]], "feather_off (viser.icon attribute)": [[33, "viser.Icon.FEATHER_OFF"]], "fence (viser.icon attribute)": [[33, "viser.Icon.FENCE"]], "fence_off (viser.icon attribute)": [[33, "viser.Icon.FENCE_OFF"]], "fidget_spinner (viser.icon attribute)": [[33, "viser.Icon.FIDGET_SPINNER"]], "file (viser.icon attribute)": [[33, "viser.Icon.FILE"]], "files (viser.icon attribute)": [[33, "viser.Icon.FILES"]], "files_off (viser.icon attribute)": [[33, "viser.Icon.FILES_OFF"]], "file_3d (viser.icon attribute)": [[33, "viser.Icon.FILE_3D"]], "file_alert (viser.icon attribute)": [[33, "viser.Icon.FILE_ALERT"]], "file_analytics (viser.icon attribute)": [[33, "viser.Icon.FILE_ANALYTICS"]], "file_arrow_left (viser.icon attribute)": [[33, "viser.Icon.FILE_ARROW_LEFT"]], "file_arrow_right (viser.icon attribute)": [[33, "viser.Icon.FILE_ARROW_RIGHT"]], "file_barcode (viser.icon attribute)": [[33, "viser.Icon.FILE_BARCODE"]], "file_broken (viser.icon attribute)": [[33, "viser.Icon.FILE_BROKEN"]], "file_certificate (viser.icon attribute)": [[33, "viser.Icon.FILE_CERTIFICATE"]], "file_chart (viser.icon attribute)": [[33, "viser.Icon.FILE_CHART"]], "file_check (viser.icon attribute)": [[33, "viser.Icon.FILE_CHECK"]], "file_code (viser.icon attribute)": [[33, "viser.Icon.FILE_CODE"]], "file_code_2 (viser.icon attribute)": [[33, "viser.Icon.FILE_CODE_2"]], "file_cv (viser.icon attribute)": [[33, "viser.Icon.FILE_CV"]], "file_database (viser.icon attribute)": [[33, "viser.Icon.FILE_DATABASE"]], "file_delta (viser.icon attribute)": [[33, "viser.Icon.FILE_DELTA"]], "file_description (viser.icon attribute)": [[33, "viser.Icon.FILE_DESCRIPTION"]], "file_diff (viser.icon attribute)": [[33, "viser.Icon.FILE_DIFF"]], "file_digit (viser.icon attribute)": [[33, "viser.Icon.FILE_DIGIT"]], "file_dislike (viser.icon attribute)": [[33, "viser.Icon.FILE_DISLIKE"]], "file_dollar (viser.icon attribute)": [[33, "viser.Icon.FILE_DOLLAR"]], "file_dots (viser.icon attribute)": [[33, "viser.Icon.FILE_DOTS"]], "file_download (viser.icon attribute)": [[33, "viser.Icon.FILE_DOWNLOAD"]], "file_euro (viser.icon attribute)": [[33, "viser.Icon.FILE_EURO"]], "file_export (viser.icon attribute)": [[33, "viser.Icon.FILE_EXPORT"]], "file_filled (viser.icon attribute)": [[33, "viser.Icon.FILE_FILLED"]], "file_function (viser.icon attribute)": [[33, "viser.Icon.FILE_FUNCTION"]], "file_horizontal (viser.icon attribute)": [[33, "viser.Icon.FILE_HORIZONTAL"]], "file_import (viser.icon attribute)": [[33, "viser.Icon.FILE_IMPORT"]], "file_infinity (viser.icon attribute)": [[33, "viser.Icon.FILE_INFINITY"]], "file_info (viser.icon attribute)": [[33, "viser.Icon.FILE_INFO"]], "file_invoice (viser.icon attribute)": [[33, "viser.Icon.FILE_INVOICE"]], "file_lambda (viser.icon attribute)": [[33, "viser.Icon.FILE_LAMBDA"]], "file_like (viser.icon attribute)": [[33, "viser.Icon.FILE_LIKE"]], "file_minus (viser.icon attribute)": [[33, "viser.Icon.FILE_MINUS"]], "file_music (viser.icon attribute)": [[33, "viser.Icon.FILE_MUSIC"]], "file_off (viser.icon attribute)": [[33, "viser.Icon.FILE_OFF"]], "file_orientation (viser.icon attribute)": [[33, "viser.Icon.FILE_ORIENTATION"]], "file_pencil (viser.icon attribute)": [[33, "viser.Icon.FILE_PENCIL"]], "file_percent (viser.icon attribute)": [[33, "viser.Icon.FILE_PERCENT"]], "file_phone (viser.icon attribute)": [[33, "viser.Icon.FILE_PHONE"]], "file_plus (viser.icon attribute)": [[33, "viser.Icon.FILE_PLUS"]], "file_power (viser.icon attribute)": [[33, "viser.Icon.FILE_POWER"]], "file_report (viser.icon attribute)": [[33, "viser.Icon.FILE_REPORT"]], "file_rss (viser.icon attribute)": [[33, "viser.Icon.FILE_RSS"]], "file_scissors (viser.icon attribute)": [[33, "viser.Icon.FILE_SCISSORS"]], "file_search (viser.icon attribute)": [[33, "viser.Icon.FILE_SEARCH"]], "file_settings (viser.icon attribute)": [[33, "viser.Icon.FILE_SETTINGS"]], "file_shredder (viser.icon attribute)": [[33, "viser.Icon.FILE_SHREDDER"]], "file_signal (viser.icon attribute)": [[33, "viser.Icon.FILE_SIGNAL"]], "file_spreadsheet (viser.icon attribute)": [[33, "viser.Icon.FILE_SPREADSHEET"]], "file_stack (viser.icon attribute)": [[33, "viser.Icon.FILE_STACK"]], "file_star (viser.icon attribute)": [[33, "viser.Icon.FILE_STAR"]], "file_symlink (viser.icon attribute)": [[33, "viser.Icon.FILE_SYMLINK"]], "file_text (viser.icon attribute)": [[33, "viser.Icon.FILE_TEXT"]], "file_text_ai (viser.icon attribute)": [[33, "viser.Icon.FILE_TEXT_AI"]], "file_time (viser.icon attribute)": [[33, "viser.Icon.FILE_TIME"]], "file_typography (viser.icon attribute)": [[33, "viser.Icon.FILE_TYPOGRAPHY"]], "file_unknown (viser.icon attribute)": [[33, "viser.Icon.FILE_UNKNOWN"]], "file_upload (viser.icon attribute)": [[33, "viser.Icon.FILE_UPLOAD"]], "file_vector (viser.icon attribute)": [[33, "viser.Icon.FILE_VECTOR"]], "file_x (viser.icon attribute)": [[33, "viser.Icon.FILE_X"]], "file_x_filled (viser.icon attribute)": [[33, "viser.Icon.FILE_X_FILLED"]], "file_zip (viser.icon attribute)": [[33, "viser.Icon.FILE_ZIP"]], "filter (viser.icon attribute)": [[33, "viser.Icon.FILTER"]], "filters (viser.icon attribute)": [[33, "viser.Icon.FILTERS"]], "filter_cog (viser.icon attribute)": [[33, "viser.Icon.FILTER_COG"]], "filter_dollar (viser.icon attribute)": [[33, "viser.Icon.FILTER_DOLLAR"]], "filter_edit (viser.icon attribute)": [[33, "viser.Icon.FILTER_EDIT"]], "filter_minus (viser.icon attribute)": [[33, "viser.Icon.FILTER_MINUS"]], "filter_off (viser.icon attribute)": [[33, "viser.Icon.FILTER_OFF"]], "filter_plus (viser.icon attribute)": [[33, "viser.Icon.FILTER_PLUS"]], "filter_star (viser.icon attribute)": [[33, "viser.Icon.FILTER_STAR"]], "filter_x (viser.icon attribute)": [[33, "viser.Icon.FILTER_X"]], "fingerprint (viser.icon attribute)": [[33, "viser.Icon.FINGERPRINT"]], "fingerprint_off (viser.icon attribute)": [[33, "viser.Icon.FINGERPRINT_OFF"]], "firetruck (viser.icon attribute)": [[33, "viser.Icon.FIRETRUCK"]], "fire_extinguisher (viser.icon attribute)": [[33, "viser.Icon.FIRE_EXTINGUISHER"]], "fire_hydrant (viser.icon attribute)": [[33, "viser.Icon.FIRE_HYDRANT"]], "fire_hydrant_off (viser.icon attribute)": [[33, "viser.Icon.FIRE_HYDRANT_OFF"]], "first_aid_kit (viser.icon attribute)": [[33, "viser.Icon.FIRST_AID_KIT"]], "first_aid_kit_off (viser.icon attribute)": [[33, "viser.Icon.FIRST_AID_KIT_OFF"]], "fish (viser.icon attribute)": [[33, "viser.Icon.FISH"]], "fish_bone (viser.icon attribute)": [[33, "viser.Icon.FISH_BONE"]], "fish_christianity (viser.icon attribute)": [[33, "viser.Icon.FISH_CHRISTIANITY"]], "fish_hook (viser.icon attribute)": [[33, "viser.Icon.FISH_HOOK"]], "fish_hook_off (viser.icon attribute)": [[33, "viser.Icon.FISH_HOOK_OFF"]], "fish_off (viser.icon attribute)": [[33, "viser.Icon.FISH_OFF"]], "flag (viser.icon attribute)": [[33, "viser.Icon.FLAG"]], "flag_2 (viser.icon attribute)": [[33, "viser.Icon.FLAG_2"]], "flag_2_filled (viser.icon attribute)": [[33, "viser.Icon.FLAG_2_FILLED"]], "flag_2_off (viser.icon attribute)": [[33, "viser.Icon.FLAG_2_OFF"]], "flag_3 (viser.icon attribute)": [[33, "viser.Icon.FLAG_3"]], "flag_3_filled (viser.icon attribute)": [[33, "viser.Icon.FLAG_3_FILLED"]], "flag_filled (viser.icon attribute)": [[33, "viser.Icon.FLAG_FILLED"]], "flag_off (viser.icon attribute)": [[33, "viser.Icon.FLAG_OFF"]], "flame (viser.icon attribute)": [[33, "viser.Icon.FLAME"]], "flame_off (viser.icon attribute)": [[33, "viser.Icon.FLAME_OFF"]], "flare (viser.icon attribute)": [[33, "viser.Icon.FLARE"]], "flask (viser.icon attribute)": [[33, "viser.Icon.FLASK"]], "flask_2 (viser.icon attribute)": [[33, "viser.Icon.FLASK_2"]], "flask_2_off (viser.icon attribute)": [[33, "viser.Icon.FLASK_2_OFF"]], "flask_off (viser.icon attribute)": [[33, "viser.Icon.FLASK_OFF"]], "flip_flops (viser.icon attribute)": [[33, "viser.Icon.FLIP_FLOPS"]], "flip_horizontal (viser.icon attribute)": [[33, "viser.Icon.FLIP_HORIZONTAL"]], "flip_vertical (viser.icon attribute)": [[33, "viser.Icon.FLIP_VERTICAL"]], "float_center (viser.icon attribute)": [[33, "viser.Icon.FLOAT_CENTER"]], "float_left (viser.icon attribute)": [[33, "viser.Icon.FLOAT_LEFT"]], "float_none (viser.icon attribute)": [[33, "viser.Icon.FLOAT_NONE"]], "float_right (viser.icon attribute)": [[33, "viser.Icon.FLOAT_RIGHT"]], "flower (viser.icon attribute)": [[33, "viser.Icon.FLOWER"]], "flower_off (viser.icon attribute)": [[33, "viser.Icon.FLOWER_OFF"]], "focus (viser.icon attribute)": [[33, "viser.Icon.FOCUS"]], "focus_2 (viser.icon attribute)": [[33, "viser.Icon.FOCUS_2"]], "focus_auto (viser.icon attribute)": [[33, "viser.Icon.FOCUS_AUTO"]], "focus_centered (viser.icon attribute)": [[33, "viser.Icon.FOCUS_CENTERED"]], "fold (viser.icon attribute)": [[33, "viser.Icon.FOLD"]], "folder (viser.icon attribute)": [[33, "viser.Icon.FOLDER"]], "folders (viser.icon attribute)": [[33, "viser.Icon.FOLDERS"]], "folders_off (viser.icon attribute)": [[33, "viser.Icon.FOLDERS_OFF"]], "folder_bolt (viser.icon attribute)": [[33, "viser.Icon.FOLDER_BOLT"]], "folder_cancel (viser.icon attribute)": [[33, "viser.Icon.FOLDER_CANCEL"]], "folder_check (viser.icon attribute)": [[33, "viser.Icon.FOLDER_CHECK"]], "folder_code (viser.icon attribute)": [[33, "viser.Icon.FOLDER_CODE"]], "folder_cog (viser.icon attribute)": [[33, "viser.Icon.FOLDER_COG"]], "folder_dollar (viser.icon attribute)": [[33, "viser.Icon.FOLDER_DOLLAR"]], "folder_down (viser.icon attribute)": [[33, "viser.Icon.FOLDER_DOWN"]], "folder_exclamation (viser.icon attribute)": [[33, "viser.Icon.FOLDER_EXCLAMATION"]], "folder_filled (viser.icon attribute)": [[33, "viser.Icon.FOLDER_FILLED"]], "folder_heart (viser.icon attribute)": [[33, "viser.Icon.FOLDER_HEART"]], "folder_minus (viser.icon attribute)": [[33, "viser.Icon.FOLDER_MINUS"]], "folder_off (viser.icon attribute)": [[33, "viser.Icon.FOLDER_OFF"]], "folder_open (viser.icon attribute)": [[33, "viser.Icon.FOLDER_OPEN"]], "folder_pause (viser.icon attribute)": [[33, "viser.Icon.FOLDER_PAUSE"]], "folder_pin (viser.icon attribute)": [[33, "viser.Icon.FOLDER_PIN"]], "folder_plus (viser.icon attribute)": [[33, "viser.Icon.FOLDER_PLUS"]], "folder_question (viser.icon attribute)": [[33, "viser.Icon.FOLDER_QUESTION"]], "folder_search (viser.icon attribute)": [[33, "viser.Icon.FOLDER_SEARCH"]], "folder_share (viser.icon attribute)": [[33, "viser.Icon.FOLDER_SHARE"]], "folder_star (viser.icon attribute)": [[33, "viser.Icon.FOLDER_STAR"]], "folder_symlink (viser.icon attribute)": [[33, "viser.Icon.FOLDER_SYMLINK"]], "folder_up (viser.icon attribute)": [[33, "viser.Icon.FOLDER_UP"]], "folder_x (viser.icon attribute)": [[33, "viser.Icon.FOLDER_X"]], "fold_down (viser.icon attribute)": [[33, "viser.Icon.FOLD_DOWN"]], "fold_up (viser.icon attribute)": [[33, "viser.Icon.FOLD_UP"]], "forbid (viser.icon attribute)": [[33, "viser.Icon.FORBID"]], "forbid_2 (viser.icon attribute)": [[33, "viser.Icon.FORBID_2"]], "forklift (viser.icon attribute)": [[33, "viser.Icon.FORKLIFT"]], "forms (viser.icon attribute)": [[33, "viser.Icon.FORMS"]], "fountain (viser.icon attribute)": [[33, "viser.Icon.FOUNTAIN"]], "fountain_off (viser.icon attribute)": [[33, "viser.Icon.FOUNTAIN_OFF"]], "frame (viser.icon attribute)": [[33, "viser.Icon.FRAME"]], "frame_off (viser.icon attribute)": [[33, "viser.Icon.FRAME_OFF"]], "freeze_column (viser.icon attribute)": [[33, "viser.Icon.FREEZE_COLUMN"]], "freeze_row (viser.icon attribute)": [[33, "viser.Icon.FREEZE_ROW"]], "freeze_row_column (viser.icon attribute)": [[33, "viser.Icon.FREEZE_ROW_COLUMN"]], "free_rights (viser.icon attribute)": [[33, "viser.Icon.FREE_RIGHTS"]], "fridge (viser.icon attribute)": [[33, "viser.Icon.FRIDGE"]], "fridge_off (viser.icon attribute)": [[33, "viser.Icon.FRIDGE_OFF"]], "friends (viser.icon attribute)": [[33, "viser.Icon.FRIENDS"]], "friends_off (viser.icon attribute)": [[33, "viser.Icon.FRIENDS_OFF"]], "frustum (viser.icon attribute)": [[33, "viser.Icon.FRUSTUM"]], "frustum_off (viser.icon attribute)": [[33, "viser.Icon.FRUSTUM_OFF"]], "frustum_plus (viser.icon attribute)": [[33, "viser.Icon.FRUSTUM_PLUS"]], "function (viser.icon attribute)": [[33, "viser.Icon.FUNCTION"]], "function_off (viser.icon attribute)": [[33, "viser.Icon.FUNCTION_OFF"]], "garden_cart (viser.icon attribute)": [[33, "viser.Icon.GARDEN_CART"]], "garden_cart_off (viser.icon attribute)": [[33, "viser.Icon.GARDEN_CART_OFF"]], "gas_station (viser.icon attribute)": [[33, "viser.Icon.GAS_STATION"]], "gas_station_off (viser.icon attribute)": [[33, "viser.Icon.GAS_STATION_OFF"]], "gauge (viser.icon attribute)": [[33, "viser.Icon.GAUGE"]], "gauge_off (viser.icon attribute)": [[33, "viser.Icon.GAUGE_OFF"]], "gavel (viser.icon attribute)": [[33, "viser.Icon.GAVEL"]], "gender_agender (viser.icon attribute)": [[33, "viser.Icon.GENDER_AGENDER"]], "gender_androgyne (viser.icon attribute)": [[33, "viser.Icon.GENDER_ANDROGYNE"]], "gender_bigender (viser.icon attribute)": [[33, "viser.Icon.GENDER_BIGENDER"]], "gender_demiboy (viser.icon attribute)": [[33, "viser.Icon.GENDER_DEMIBOY"]], "gender_demigirl (viser.icon attribute)": [[33, "viser.Icon.GENDER_DEMIGIRL"]], "gender_epicene (viser.icon attribute)": [[33, "viser.Icon.GENDER_EPICENE"]], "gender_female (viser.icon attribute)": [[33, "viser.Icon.GENDER_FEMALE"]], "gender_femme (viser.icon attribute)": [[33, "viser.Icon.GENDER_FEMME"]], "gender_genderfluid (viser.icon attribute)": [[33, "viser.Icon.GENDER_GENDERFLUID"]], "gender_genderless (viser.icon attribute)": [[33, "viser.Icon.GENDER_GENDERLESS"]], "gender_genderqueer (viser.icon attribute)": [[33, "viser.Icon.GENDER_GENDERQUEER"]], "gender_hermaphrodite (viser.icon attribute)": [[33, "viser.Icon.GENDER_HERMAPHRODITE"]], "gender_intergender (viser.icon attribute)": [[33, "viser.Icon.GENDER_INTERGENDER"]], "gender_male (viser.icon attribute)": [[33, "viser.Icon.GENDER_MALE"]], "gender_neutrois (viser.icon attribute)": [[33, "viser.Icon.GENDER_NEUTROIS"]], "gender_third (viser.icon attribute)": [[33, "viser.Icon.GENDER_THIRD"]], "gender_transgender (viser.icon attribute)": [[33, "viser.Icon.GENDER_TRANSGENDER"]], "gender_trasvesti (viser.icon attribute)": [[33, "viser.Icon.GENDER_TRASVESTI"]], "geometry (viser.icon attribute)": [[33, "viser.Icon.GEOMETRY"]], "ghost (viser.icon attribute)": [[33, "viser.Icon.GHOST"]], "ghost_2 (viser.icon attribute)": [[33, "viser.Icon.GHOST_2"]], "ghost_2_filled (viser.icon attribute)": [[33, "viser.Icon.GHOST_2_FILLED"]], "ghost_filled (viser.icon attribute)": [[33, "viser.Icon.GHOST_FILLED"]], "ghost_off (viser.icon attribute)": [[33, "viser.Icon.GHOST_OFF"]], "gif (viser.icon attribute)": [[33, "viser.Icon.GIF"]], "gift (viser.icon attribute)": [[33, "viser.Icon.GIFT"]], "gift_card (viser.icon attribute)": [[33, "viser.Icon.GIFT_CARD"]], "gift_off (viser.icon attribute)": [[33, "viser.Icon.GIFT_OFF"]], "git_branch (viser.icon attribute)": [[33, "viser.Icon.GIT_BRANCH"]], "git_branch_deleted (viser.icon attribute)": [[33, "viser.Icon.GIT_BRANCH_DELETED"]], "git_cherry_pick (viser.icon attribute)": [[33, "viser.Icon.GIT_CHERRY_PICK"]], "git_commit (viser.icon attribute)": [[33, "viser.Icon.GIT_COMMIT"]], "git_compare (viser.icon attribute)": [[33, "viser.Icon.GIT_COMPARE"]], "git_fork (viser.icon attribute)": [[33, "viser.Icon.GIT_FORK"]], "git_merge (viser.icon attribute)": [[33, "viser.Icon.GIT_MERGE"]], "git_pull_request (viser.icon attribute)": [[33, "viser.Icon.GIT_PULL_REQUEST"]], "git_pull_request_closed (viser.icon attribute)": [[33, "viser.Icon.GIT_PULL_REQUEST_CLOSED"]], "git_pull_request_draft (viser.icon attribute)": [[33, "viser.Icon.GIT_PULL_REQUEST_DRAFT"]], "gizmo (viser.icon attribute)": [[33, "viser.Icon.GIZMO"]], "glass (viser.icon attribute)": [[33, "viser.Icon.GLASS"]], "glass_full (viser.icon attribute)": [[33, "viser.Icon.GLASS_FULL"]], "glass_off (viser.icon attribute)": [[33, "viser.Icon.GLASS_OFF"]], "globe (viser.icon attribute)": [[33, "viser.Icon.GLOBE"]], "globe_off (viser.icon attribute)": [[33, "viser.Icon.GLOBE_OFF"]], "golf (viser.icon attribute)": [[33, "viser.Icon.GOLF"]], "golf_off (viser.icon attribute)": [[33, "viser.Icon.GOLF_OFF"]], "go_game (viser.icon attribute)": [[33, "viser.Icon.GO_GAME"]], "gps (viser.icon attribute)": [[33, "viser.Icon.GPS"]], "gradienter (viser.icon attribute)": [[33, "viser.Icon.GRADIENTER"]], "grain (viser.icon attribute)": [[33, "viser.Icon.GRAIN"]], "graph (viser.icon attribute)": [[33, "viser.Icon.GRAPH"]], "graph_off (viser.icon attribute)": [[33, "viser.Icon.GRAPH_OFF"]], "grave (viser.icon attribute)": [[33, "viser.Icon.GRAVE"]], "grave_2 (viser.icon attribute)": [[33, "viser.Icon.GRAVE_2"]], "grid_dots (viser.icon attribute)": [[33, "viser.Icon.GRID_DOTS"]], "grid_pattern (viser.icon attribute)": [[33, "viser.Icon.GRID_PATTERN"]], "grill (viser.icon attribute)": [[33, "viser.Icon.GRILL"]], "grill_fork (viser.icon attribute)": [[33, "viser.Icon.GRILL_FORK"]], "grill_off (viser.icon attribute)": [[33, "viser.Icon.GRILL_OFF"]], "grill_spatula (viser.icon attribute)": [[33, "viser.Icon.GRILL_SPATULA"]], "grip_horizontal (viser.icon attribute)": [[33, "viser.Icon.GRIP_HORIZONTAL"]], "grip_vertical (viser.icon attribute)": [[33, "viser.Icon.GRIP_VERTICAL"]], "growth (viser.icon attribute)": [[33, "viser.Icon.GROWTH"]], "guitar_pick (viser.icon attribute)": [[33, "viser.Icon.GUITAR_PICK"]], "guitar_pick_filled (viser.icon attribute)": [[33, "viser.Icon.GUITAR_PICK_FILLED"]], "hammer (viser.icon attribute)": [[33, "viser.Icon.HAMMER"]], "hammer_off (viser.icon attribute)": [[33, "viser.Icon.HAMMER_OFF"]], "hand_click (viser.icon attribute)": [[33, "viser.Icon.HAND_CLICK"]], "hand_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_FINGER"]], "hand_finger_off (viser.icon attribute)": [[33, "viser.Icon.HAND_FINGER_OFF"]], "hand_grab (viser.icon attribute)": [[33, "viser.Icon.HAND_GRAB"]], "hand_little_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_LITTLE_FINGER"]], "hand_middle_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_MIDDLE_FINGER"]], "hand_move (viser.icon attribute)": [[33, "viser.Icon.HAND_MOVE"]], "hand_off (viser.icon attribute)": [[33, "viser.Icon.HAND_OFF"]], "hand_ring_finger (viser.icon attribute)": [[33, "viser.Icon.HAND_RING_FINGER"]], "hand_rock (viser.icon attribute)": [[33, "viser.Icon.HAND_ROCK"]], "hand_sanitizer (viser.icon attribute)": [[33, "viser.Icon.HAND_SANITIZER"]], "hand_stop (viser.icon attribute)": [[33, "viser.Icon.HAND_STOP"]], "hand_three_fingers (viser.icon attribute)": [[33, "viser.Icon.HAND_THREE_FINGERS"]], "hand_two_fingers (viser.icon attribute)": [[33, "viser.Icon.HAND_TWO_FINGERS"]], "hanger (viser.icon attribute)": [[33, "viser.Icon.HANGER"]], "hanger_2 (viser.icon attribute)": [[33, "viser.Icon.HANGER_2"]], "hanger_off (viser.icon attribute)": [[33, "viser.Icon.HANGER_OFF"]], "hash (viser.icon attribute)": [[33, "viser.Icon.HASH"]], "haze (viser.icon attribute)": [[33, "viser.Icon.HAZE"]], "haze_moon (viser.icon attribute)": [[33, "viser.Icon.HAZE_MOON"]], "hdr (viser.icon attribute)": [[33, "viser.Icon.HDR"]], "heading (viser.icon attribute)": [[33, "viser.Icon.HEADING"]], "heading_off (viser.icon attribute)": [[33, "viser.Icon.HEADING_OFF"]], "headphones (viser.icon attribute)": [[33, "viser.Icon.HEADPHONES"]], "headphones_filled (viser.icon attribute)": [[33, "viser.Icon.HEADPHONES_FILLED"]], "headphones_off (viser.icon attribute)": [[33, "viser.Icon.HEADPHONES_OFF"]], "headset (viser.icon attribute)": [[33, "viser.Icon.HEADSET"]], "headset_off (viser.icon attribute)": [[33, "viser.Icon.HEADSET_OFF"]], "health_recognition (viser.icon attribute)": [[33, "viser.Icon.HEALTH_RECOGNITION"]], "heart (viser.icon attribute)": [[33, "viser.Icon.HEART"]], "heartbeat (viser.icon attribute)": [[33, "viser.Icon.HEARTBEAT"]], "hearts (viser.icon attribute)": [[33, "viser.Icon.HEARTS"]], "hearts_off (viser.icon attribute)": [[33, "viser.Icon.HEARTS_OFF"]], "heart_broken (viser.icon attribute)": [[33, "viser.Icon.HEART_BROKEN"]], "heart_filled (viser.icon attribute)": [[33, "viser.Icon.HEART_FILLED"]], "heart_handshake (viser.icon attribute)": [[33, "viser.Icon.HEART_HANDSHAKE"]], "heart_minus (viser.icon attribute)": [[33, "viser.Icon.HEART_MINUS"]], "heart_off (viser.icon attribute)": [[33, "viser.Icon.HEART_OFF"]], "heart_plus (viser.icon attribute)": [[33, "viser.Icon.HEART_PLUS"]], "heart_rate_monitor (viser.icon attribute)": [[33, "viser.Icon.HEART_RATE_MONITOR"]], "helicopter (viser.icon attribute)": [[33, "viser.Icon.HELICOPTER"]], "helicopter_landing (viser.icon attribute)": [[33, "viser.Icon.HELICOPTER_LANDING"]], "helmet (viser.icon attribute)": [[33, "viser.Icon.HELMET"]], "helmet_off (viser.icon attribute)": [[33, "viser.Icon.HELMET_OFF"]], "help (viser.icon attribute)": [[33, "viser.Icon.HELP"]], "help_circle (viser.icon attribute)": [[33, "viser.Icon.HELP_CIRCLE"]], "help_circle_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_CIRCLE_FILLED"]], "help_hexagon (viser.icon attribute)": [[33, "viser.Icon.HELP_HEXAGON"]], "help_hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_HEXAGON_FILLED"]], "help_octagon (viser.icon attribute)": [[33, "viser.Icon.HELP_OCTAGON"]], "help_octagon_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_OCTAGON_FILLED"]], "help_off (viser.icon attribute)": [[33, "viser.Icon.HELP_OFF"]], "help_small (viser.icon attribute)": [[33, "viser.Icon.HELP_SMALL"]], "help_square (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE"]], "help_square_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE_FILLED"]], "help_square_rounded (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE_ROUNDED"]], "help_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_SQUARE_ROUNDED_FILLED"]], "help_triangle (viser.icon attribute)": [[33, "viser.Icon.HELP_TRIANGLE"]], "help_triangle_filled (viser.icon attribute)": [[33, "viser.Icon.HELP_TRIANGLE_FILLED"]], "hemisphere (viser.icon attribute)": [[33, "viser.Icon.HEMISPHERE"]], "hemisphere_off (viser.icon attribute)": [[33, "viser.Icon.HEMISPHERE_OFF"]], "hemisphere_plus (viser.icon attribute)": [[33, "viser.Icon.HEMISPHERE_PLUS"]], "hexagon (viser.icon attribute)": [[33, "viser.Icon.HEXAGON"]], "hexagonal_prism (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PRISM"]], "hexagonal_prism_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PRISM_OFF"]], "hexagonal_prism_plus (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PRISM_PLUS"]], "hexagonal_pyramid (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PYRAMID"]], "hexagonal_pyramid_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PYRAMID_OFF"]], "hexagonal_pyramid_plus (viser.icon attribute)": [[33, "viser.Icon.HEXAGONAL_PYRAMID_PLUS"]], "hexagons (viser.icon attribute)": [[33, "viser.Icon.HEXAGONS"]], "hexagons_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGONS_OFF"]], "hexagon_0_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_0_FILLED"]], "hexagon_1_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_1_FILLED"]], "hexagon_2_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_2_FILLED"]], "hexagon_3d (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_3D"]], "hexagon_3_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_3_FILLED"]], "hexagon_4_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_4_FILLED"]], "hexagon_5_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_5_FILLED"]], "hexagon_6_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_6_FILLED"]], "hexagon_7_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_7_FILLED"]], "hexagon_8_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_8_FILLED"]], "hexagon_9_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_9_FILLED"]], "hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_FILLED"]], "hexagon_letter_a (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_A"]], "hexagon_letter_b (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_B"]], "hexagon_letter_c (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_C"]], "hexagon_letter_d (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_D"]], "hexagon_letter_e (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_E"]], "hexagon_letter_f (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_F"]], "hexagon_letter_g (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_G"]], "hexagon_letter_h (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_H"]], "hexagon_letter_i (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_I"]], "hexagon_letter_j (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_J"]], "hexagon_letter_k (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_K"]], "hexagon_letter_l (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_L"]], "hexagon_letter_m (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_M"]], "hexagon_letter_n (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_N"]], "hexagon_letter_o (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_O"]], "hexagon_letter_p (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_P"]], "hexagon_letter_q (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_Q"]], "hexagon_letter_r (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_R"]], "hexagon_letter_s (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_S"]], "hexagon_letter_t (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_T"]], "hexagon_letter_u (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_U"]], "hexagon_letter_v (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_V"]], "hexagon_letter_w (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_W"]], "hexagon_letter_x (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_X"]], "hexagon_letter_y (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_Y"]], "hexagon_letter_z (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_LETTER_Z"]], "hexagon_number_0 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_0"]], "hexagon_number_1 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_1"]], "hexagon_number_2 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_2"]], "hexagon_number_3 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_3"]], "hexagon_number_4 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_4"]], "hexagon_number_5 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_5"]], "hexagon_number_6 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_6"]], "hexagon_number_7 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_7"]], "hexagon_number_8 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_8"]], "hexagon_number_9 (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_NUMBER_9"]], "hexagon_off (viser.icon attribute)": [[33, "viser.Icon.HEXAGON_OFF"]], "hierarchy (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY"]], "hierarchy_2 (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY_2"]], "hierarchy_3 (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY_3"]], "hierarchy_off (viser.icon attribute)": [[33, "viser.Icon.HIERARCHY_OFF"]], "highlight (viser.icon attribute)": [[33, "viser.Icon.HIGHLIGHT"]], "highlight_off (viser.icon attribute)": [[33, "viser.Icon.HIGHLIGHT_OFF"]], "history (viser.icon attribute)": [[33, "viser.Icon.HISTORY"]], "history_off (viser.icon attribute)": [[33, "viser.Icon.HISTORY_OFF"]], "history_toggle (viser.icon attribute)": [[33, "viser.Icon.HISTORY_TOGGLE"]], "home (viser.icon attribute)": [[33, "viser.Icon.HOME"]], "home_2 (viser.icon attribute)": [[33, "viser.Icon.HOME_2"]], "home_bolt (viser.icon attribute)": [[33, "viser.Icon.HOME_BOLT"]], "home_cancel (viser.icon attribute)": [[33, "viser.Icon.HOME_CANCEL"]], "home_check (viser.icon attribute)": [[33, "viser.Icon.HOME_CHECK"]], "home_cog (viser.icon attribute)": [[33, "viser.Icon.HOME_COG"]], "home_dollar (viser.icon attribute)": [[33, "viser.Icon.HOME_DOLLAR"]], "home_dot (viser.icon attribute)": [[33, "viser.Icon.HOME_DOT"]], "home_down (viser.icon attribute)": [[33, "viser.Icon.HOME_DOWN"]], "home_eco (viser.icon attribute)": [[33, "viser.Icon.HOME_ECO"]], "home_edit (viser.icon attribute)": [[33, "viser.Icon.HOME_EDIT"]], "home_exclamation (viser.icon attribute)": [[33, "viser.Icon.HOME_EXCLAMATION"]], "home_hand (viser.icon attribute)": [[33, "viser.Icon.HOME_HAND"]], "home_heart (viser.icon attribute)": [[33, "viser.Icon.HOME_HEART"]], "home_infinity (viser.icon attribute)": [[33, "viser.Icon.HOME_INFINITY"]], "home_link (viser.icon attribute)": [[33, "viser.Icon.HOME_LINK"]], "home_minus (viser.icon attribute)": [[33, "viser.Icon.HOME_MINUS"]], "home_move (viser.icon attribute)": [[33, "viser.Icon.HOME_MOVE"]], "home_off (viser.icon attribute)": [[33, "viser.Icon.HOME_OFF"]], "home_plus (viser.icon attribute)": [[33, "viser.Icon.HOME_PLUS"]], "home_question (viser.icon attribute)": [[33, "viser.Icon.HOME_QUESTION"]], "home_ribbon (viser.icon attribute)": [[33, "viser.Icon.HOME_RIBBON"]], "home_search (viser.icon attribute)": [[33, "viser.Icon.HOME_SEARCH"]], "home_share (viser.icon attribute)": [[33, "viser.Icon.HOME_SHARE"]], "home_shield (viser.icon attribute)": [[33, "viser.Icon.HOME_SHIELD"]], "home_signal (viser.icon attribute)": [[33, "viser.Icon.HOME_SIGNAL"]], "home_star (viser.icon attribute)": [[33, "viser.Icon.HOME_STAR"]], "home_stats (viser.icon attribute)": [[33, "viser.Icon.HOME_STATS"]], "home_up (viser.icon attribute)": [[33, "viser.Icon.HOME_UP"]], "home_x (viser.icon attribute)": [[33, "viser.Icon.HOME_X"]], "horse_toy (viser.icon attribute)": [[33, "viser.Icon.HORSE_TOY"]], "hotel_service (viser.icon attribute)": [[33, "viser.Icon.HOTEL_SERVICE"]], "hourglass (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS"]], "hourglass_empty (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_EMPTY"]], "hourglass_filled (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_FILLED"]], "hourglass_high (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_HIGH"]], "hourglass_low (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_LOW"]], "hourglass_off (viser.icon attribute)": [[33, "viser.Icon.HOURGLASS_OFF"]], "html (viser.icon attribute)": [[33, "viser.Icon.HTML"]], "http_connect (viser.icon attribute)": [[33, "viser.Icon.HTTP_CONNECT"]], "http_delete (viser.icon attribute)": [[33, "viser.Icon.HTTP_DELETE"]], "http_get (viser.icon attribute)": [[33, "viser.Icon.HTTP_GET"]], "http_head (viser.icon attribute)": [[33, "viser.Icon.HTTP_HEAD"]], "http_options (viser.icon attribute)": [[33, "viser.Icon.HTTP_OPTIONS"]], "http_patch (viser.icon attribute)": [[33, "viser.Icon.HTTP_PATCH"]], "http_post (viser.icon attribute)": [[33, "viser.Icon.HTTP_POST"]], "http_put (viser.icon attribute)": [[33, "viser.Icon.HTTP_PUT"]], "http_que (viser.icon attribute)": [[33, "viser.Icon.HTTP_QUE"]], "http_trace (viser.icon attribute)": [[33, "viser.Icon.HTTP_TRACE"]], "h_1 (viser.icon attribute)": [[33, "viser.Icon.H_1"]], "h_2 (viser.icon attribute)": [[33, "viser.Icon.H_2"]], "h_3 (viser.icon attribute)": [[33, "viser.Icon.H_3"]], "h_4 (viser.icon attribute)": [[33, "viser.Icon.H_4"]], "h_5 (viser.icon attribute)": [[33, "viser.Icon.H_5"]], "h_6 (viser.icon attribute)": [[33, "viser.Icon.H_6"]], "ice_cream (viser.icon attribute)": [[33, "viser.Icon.ICE_CREAM"]], "ice_cream_2 (viser.icon attribute)": [[33, "viser.Icon.ICE_CREAM_2"]], "ice_cream_off (viser.icon attribute)": [[33, "viser.Icon.ICE_CREAM_OFF"]], "ice_skating (viser.icon attribute)": [[33, "viser.Icon.ICE_SKATING"]], "icons (viser.icon attribute)": [[33, "viser.Icon.ICONS"]], "icons_off (viser.icon attribute)": [[33, "viser.Icon.ICONS_OFF"]], "icon_123 (viser.icon attribute)": [[33, "viser.Icon.ICON_123"]], "icon_24_hours (viser.icon attribute)": [[33, "viser.Icon.ICON_24_HOURS"]], "icon_2fa (viser.icon attribute)": [[33, "viser.Icon.ICON_2FA"]], "icon_360 (viser.icon attribute)": [[33, "viser.Icon.ICON_360"]], "icon_360_view (viser.icon attribute)": [[33, "viser.Icon.ICON_360_VIEW"]], "icon_3d_cube_sphere (viser.icon attribute)": [[33, "viser.Icon.ICON_3D_CUBE_SPHERE"]], "icon_3d_cube_sphere_off (viser.icon attribute)": [[33, "viser.Icon.ICON_3D_CUBE_SPHERE_OFF"]], "icon_3d_rotate (viser.icon attribute)": [[33, "viser.Icon.ICON_3D_ROTATE"]], "id (viser.icon attribute)": [[33, "viser.Icon.ID"]], "id_badge (viser.icon attribute)": [[33, "viser.Icon.ID_BADGE"]], "id_badge_2 (viser.icon attribute)": [[33, "viser.Icon.ID_BADGE_2"]], "id_badge_off (viser.icon attribute)": [[33, "viser.Icon.ID_BADGE_OFF"]], "id_off (viser.icon attribute)": [[33, "viser.Icon.ID_OFF"]], "inbox (viser.icon attribute)": [[33, "viser.Icon.INBOX"]], "inbox_off (viser.icon attribute)": [[33, "viser.Icon.INBOX_OFF"]], "indent_decrease (viser.icon attribute)": [[33, "viser.Icon.INDENT_DECREASE"]], "indent_increase (viser.icon attribute)": [[33, "viser.Icon.INDENT_INCREASE"]], "infinity (viser.icon attribute)": [[33, "viser.Icon.INFINITY"]], "infinity_off (viser.icon attribute)": [[33, "viser.Icon.INFINITY_OFF"]], "info_circle (viser.icon attribute)": [[33, "viser.Icon.INFO_CIRCLE"]], "info_circle_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_CIRCLE_FILLED"]], "info_hexagon (viser.icon attribute)": [[33, "viser.Icon.INFO_HEXAGON"]], "info_hexagon_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_HEXAGON_FILLED"]], "info_octagon (viser.icon attribute)": [[33, "viser.Icon.INFO_OCTAGON"]], "info_octagon_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_OCTAGON_FILLED"]], "info_small (viser.icon attribute)": [[33, "viser.Icon.INFO_SMALL"]], "info_square (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE"]], "info_square_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE_FILLED"]], "info_square_rounded (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE_ROUNDED"]], "info_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_SQUARE_ROUNDED_FILLED"]], "info_triangle (viser.icon attribute)": [[33, "viser.Icon.INFO_TRIANGLE"]], "info_triangle_filled (viser.icon attribute)": [[33, "viser.Icon.INFO_TRIANGLE_FILLED"]], "inner_shadow_bottom (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM"]], "inner_shadow_bottom_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_FILLED"]], "inner_shadow_bottom_left (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT"]], "inner_shadow_bottom_left_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_LEFT_FILLED"]], "inner_shadow_bottom_right (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT"]], "inner_shadow_bottom_right_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_BOTTOM_RIGHT_FILLED"]], "inner_shadow_left (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_LEFT"]], "inner_shadow_left_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_LEFT_FILLED"]], "inner_shadow_right (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_RIGHT"]], "inner_shadow_right_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_RIGHT_FILLED"]], "inner_shadow_top (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP"]], "inner_shadow_top_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_FILLED"]], "inner_shadow_top_left (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_LEFT"]], "inner_shadow_top_left_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_LEFT_FILLED"]], "inner_shadow_top_right (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_RIGHT"]], "inner_shadow_top_right_filled (viser.icon attribute)": [[33, "viser.Icon.INNER_SHADOW_TOP_RIGHT_FILLED"]], "input_search (viser.icon attribute)": [[33, "viser.Icon.INPUT_SEARCH"]], "ironing (viser.icon attribute)": [[33, "viser.Icon.IRONING"]], "ironing_1 (viser.icon attribute)": [[33, "viser.Icon.IRONING_1"]], "ironing_2 (viser.icon attribute)": [[33, "viser.Icon.IRONING_2"]], "ironing_3 (viser.icon attribute)": [[33, "viser.Icon.IRONING_3"]], "ironing_off (viser.icon attribute)": [[33, "viser.Icon.IRONING_OFF"]], "ironing_steam (viser.icon attribute)": [[33, "viser.Icon.IRONING_STEAM"]], "ironing_steam_off (viser.icon attribute)": [[33, "viser.Icon.IRONING_STEAM_OFF"]], "irregular_polyhedron (viser.icon attribute)": [[33, "viser.Icon.IRREGULAR_POLYHEDRON"]], "irregular_polyhedron_off (viser.icon attribute)": [[33, "viser.Icon.IRREGULAR_POLYHEDRON_OFF"]], "irregular_polyhedron_plus (viser.icon attribute)": [[33, "viser.Icon.IRREGULAR_POLYHEDRON_PLUS"]], "italic (viser.icon attribute)": [[33, "viser.Icon.ITALIC"]], "icon (class in viser)": [[33, "viser.Icon"]], "iconname (class in viser)": [[33, "viser.IconName"]], "jacket (viser.icon attribute)": [[33, "viser.Icon.JACKET"]], "jetpack (viser.icon attribute)": [[33, "viser.Icon.JETPACK"]], "jewish_star (viser.icon attribute)": [[33, "viser.Icon.JEWISH_STAR"]], "jewish_star_filled (viser.icon attribute)": [[33, "viser.Icon.JEWISH_STAR_FILLED"]], "jpg (viser.icon attribute)": [[33, "viser.Icon.JPG"]], "json (viser.icon attribute)": [[33, "viser.Icon.JSON"]], "jump_rope (viser.icon attribute)": [[33, "viser.Icon.JUMP_ROPE"]], "karate (viser.icon attribute)": [[33, "viser.Icon.KARATE"]], "kayak (viser.icon attribute)": [[33, "viser.Icon.KAYAK"]], "kering (viser.icon attribute)": [[33, "viser.Icon.KERING"]], "key (viser.icon attribute)": [[33, "viser.Icon.KEY"]], "keyboard (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD"]], "keyboard_hide (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD_HIDE"]], "keyboard_off (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD_OFF"]], "keyboard_show (viser.icon attribute)": [[33, "viser.Icon.KEYBOARD_SHOW"]], "keyframe (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME"]], "keyframes (viser.icon attribute)": [[33, "viser.Icon.KEYFRAMES"]], "keyframe_align_center (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME_ALIGN_CENTER"]], "keyframe_align_horizontal (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME_ALIGN_HORIZONTAL"]], "keyframe_align_vertical (viser.icon attribute)": [[33, "viser.Icon.KEYFRAME_ALIGN_VERTICAL"]], "key_off (viser.icon attribute)": [[33, "viser.Icon.KEY_OFF"]], "ladder (viser.icon attribute)": [[33, "viser.Icon.LADDER"]], "ladder_off (viser.icon attribute)": [[33, "viser.Icon.LADDER_OFF"]], "lambda (viser.icon attribute)": [[33, "viser.Icon.LAMBDA"]], "lamp (viser.icon attribute)": [[33, "viser.Icon.LAMP"]], "lamp_2 (viser.icon attribute)": [[33, "viser.Icon.LAMP_2"]], "lamp_off (viser.icon attribute)": [[33, "viser.Icon.LAMP_OFF"]], "lane (viser.icon attribute)": [[33, "viser.Icon.LANE"]], "language (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE"]], "language_hiragana (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE_HIRAGANA"]], "language_katakana (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE_KATAKANA"]], "language_off (viser.icon attribute)": [[33, "viser.Icon.LANGUAGE_OFF"]], "lasso (viser.icon attribute)": [[33, "viser.Icon.LASSO"]], "lasso_off (viser.icon attribute)": [[33, "viser.Icon.LASSO_OFF"]], "lasso_polygon (viser.icon attribute)": [[33, "viser.Icon.LASSO_POLYGON"]], "layers_difference (viser.icon attribute)": [[33, "viser.Icon.LAYERS_DIFFERENCE"]], "layers_intersect (viser.icon attribute)": [[33, "viser.Icon.LAYERS_INTERSECT"]], "layers_intersect_2 (viser.icon attribute)": [[33, "viser.Icon.LAYERS_INTERSECT_2"]], "layers_linked (viser.icon attribute)": [[33, "viser.Icon.LAYERS_LINKED"]], "layers_off (viser.icon attribute)": [[33, "viser.Icon.LAYERS_OFF"]], "layers_subtract (viser.icon attribute)": [[33, "viser.Icon.LAYERS_SUBTRACT"]], "layers_union (viser.icon attribute)": [[33, "viser.Icon.LAYERS_UNION"]], "layout (viser.icon attribute)": [[33, "viser.Icon.LAYOUT"]], "layout_2 (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_2"]], "layout_align_bottom (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_BOTTOM"]], "layout_align_center (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_CENTER"]], "layout_align_left (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_LEFT"]], "layout_align_middle (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_MIDDLE"]], "layout_align_right (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_RIGHT"]], "layout_align_top (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ALIGN_TOP"]], "layout_board (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOARD"]], "layout_board_split (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOARD_SPLIT"]], "layout_bottombar (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOTTOMBAR"]], "layout_bottombar_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOTTOMBAR_COLLAPSE"]], "layout_bottombar_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_BOTTOMBAR_EXPAND"]], "layout_cards (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_CARDS"]], "layout_collage (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_COLLAGE"]], "layout_columns (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_COLUMNS"]], "layout_dashboard (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_DASHBOARD"]], "layout_distribute_horizontal (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_DISTRIBUTE_HORIZONTAL"]], "layout_distribute_vertical (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_DISTRIBUTE_VERTICAL"]], "layout_grid (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_GRID"]], "layout_grid_add (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_GRID_ADD"]], "layout_grid_remove (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_GRID_REMOVE"]], "layout_kanban (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_KANBAN"]], "layout_list (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_LIST"]], "layout_navbar (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_NAVBAR"]], "layout_navbar_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_NAVBAR_COLLAPSE"]], "layout_navbar_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_NAVBAR_EXPAND"]], "layout_off (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_OFF"]], "layout_rows (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_ROWS"]], "layout_sidebar (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR"]], "layout_sidebar_left_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_LEFT_COLLAPSE"]], "layout_sidebar_left_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_LEFT_EXPAND"]], "layout_sidebar_right (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_RIGHT"]], "layout_sidebar_right_collapse (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_COLLAPSE"]], "layout_sidebar_right_expand (viser.icon attribute)": [[33, "viser.Icon.LAYOUT_SIDEBAR_RIGHT_EXPAND"]], "leaf (viser.icon attribute)": [[33, "viser.Icon.LEAF"]], "leaf_off (viser.icon attribute)": [[33, "viser.Icon.LEAF_OFF"]], "lego (viser.icon attribute)": [[33, "viser.Icon.LEGO"]], "lego_off (viser.icon attribute)": [[33, "viser.Icon.LEGO_OFF"]], "lemon (viser.icon attribute)": [[33, "viser.Icon.LEMON"]], "lemon_2 (viser.icon attribute)": [[33, "viser.Icon.LEMON_2"]], "letter_a (viser.icon attribute)": [[33, "viser.Icon.LETTER_A"]], "letter_b (viser.icon attribute)": [[33, "viser.Icon.LETTER_B"]], "letter_c (viser.icon attribute)": [[33, "viser.Icon.LETTER_C"]], "letter_case (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE"]], "letter_case_lower (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE_LOWER"]], "letter_case_toggle (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE_TOGGLE"]], "letter_case_upper (viser.icon attribute)": [[33, "viser.Icon.LETTER_CASE_UPPER"]], "letter_d (viser.icon attribute)": [[33, "viser.Icon.LETTER_D"]], "letter_e (viser.icon attribute)": [[33, "viser.Icon.LETTER_E"]], "letter_f (viser.icon attribute)": [[33, "viser.Icon.LETTER_F"]], "letter_g (viser.icon attribute)": [[33, "viser.Icon.LETTER_G"]], "letter_h (viser.icon attribute)": [[33, "viser.Icon.LETTER_H"]], "letter_i (viser.icon attribute)": [[33, "viser.Icon.LETTER_I"]], "letter_j (viser.icon attribute)": [[33, "viser.Icon.LETTER_J"]], "letter_k (viser.icon attribute)": [[33, "viser.Icon.LETTER_K"]], "letter_l (viser.icon attribute)": [[33, "viser.Icon.LETTER_L"]], "letter_m (viser.icon attribute)": [[33, "viser.Icon.LETTER_M"]], "letter_n (viser.icon attribute)": [[33, "viser.Icon.LETTER_N"]], "letter_o (viser.icon attribute)": [[33, "viser.Icon.LETTER_O"]], "letter_p (viser.icon attribute)": [[33, "viser.Icon.LETTER_P"]], "letter_q (viser.icon attribute)": [[33, "viser.Icon.LETTER_Q"]], "letter_r (viser.icon attribute)": [[33, "viser.Icon.LETTER_R"]], "letter_s (viser.icon attribute)": [[33, "viser.Icon.LETTER_S"]], "letter_spacing (viser.icon attribute)": [[33, "viser.Icon.LETTER_SPACING"]], "letter_t (viser.icon attribute)": [[33, "viser.Icon.LETTER_T"]], "letter_u (viser.icon attribute)": [[33, "viser.Icon.LETTER_U"]], "letter_v (viser.icon attribute)": [[33, "viser.Icon.LETTER_V"]], "letter_w (viser.icon attribute)": [[33, "viser.Icon.LETTER_W"]], "letter_x (viser.icon attribute)": [[33, "viser.Icon.LETTER_X"]], "letter_y (viser.icon attribute)": [[33, "viser.Icon.LETTER_Y"]], "letter_z (viser.icon attribute)": [[33, "viser.Icon.LETTER_Z"]], "license (viser.icon attribute)": [[33, "viser.Icon.LICENSE"]], "license_off (viser.icon attribute)": [[33, "viser.Icon.LICENSE_OFF"]], "lifebuoy (viser.icon attribute)": [[33, "viser.Icon.LIFEBUOY"]], "lifebuoy_off (viser.icon attribute)": [[33, "viser.Icon.LIFEBUOY_OFF"]], "lighter (viser.icon attribute)": [[33, "viser.Icon.LIGHTER"]], "line (viser.icon attribute)": [[33, "viser.Icon.LINE"]], "line_dashed (viser.icon attribute)": [[33, "viser.Icon.LINE_DASHED"]], "line_dotted (viser.icon attribute)": [[33, "viser.Icon.LINE_DOTTED"]], "line_height (viser.icon attribute)": [[33, "viser.Icon.LINE_HEIGHT"]], "link (viser.icon attribute)": [[33, "viser.Icon.LINK"]], "link_off (viser.icon attribute)": [[33, "viser.Icon.LINK_OFF"]], "list (viser.icon attribute)": [[33, "viser.Icon.LIST"]], "list_check (viser.icon attribute)": [[33, "viser.Icon.LIST_CHECK"]], "list_details (viser.icon attribute)": [[33, "viser.Icon.LIST_DETAILS"]], "list_numbers (viser.icon attribute)": [[33, "viser.Icon.LIST_NUMBERS"]], "list_search (viser.icon attribute)": [[33, "viser.Icon.LIST_SEARCH"]], "list_tree (viser.icon attribute)": [[33, "viser.Icon.LIST_TREE"]], "live_photo (viser.icon attribute)": [[33, "viser.Icon.LIVE_PHOTO"]], "live_photo_off (viser.icon attribute)": [[33, "viser.Icon.LIVE_PHOTO_OFF"]], "live_view (viser.icon attribute)": [[33, "viser.Icon.LIVE_VIEW"]], "loader (viser.icon attribute)": [[33, "viser.Icon.LOADER"]], "loader_2 (viser.icon attribute)": [[33, "viser.Icon.LOADER_2"]], "loader_3 (viser.icon attribute)": [[33, "viser.Icon.LOADER_3"]], "loader_quarter (viser.icon attribute)": [[33, "viser.Icon.LOADER_QUARTER"]], "load_balancer (viser.icon attribute)": [[33, "viser.Icon.LOAD_BALANCER"]], "location (viser.icon attribute)": [[33, "viser.Icon.LOCATION"]], "location_broken (viser.icon attribute)": [[33, "viser.Icon.LOCATION_BROKEN"]], "location_filled (viser.icon attribute)": [[33, "viser.Icon.LOCATION_FILLED"]], "location_off (viser.icon attribute)": [[33, "viser.Icon.LOCATION_OFF"]], "lock (viser.icon attribute)": [[33, "viser.Icon.LOCK"]], "lock_access (viser.icon attribute)": [[33, "viser.Icon.LOCK_ACCESS"]], "lock_access_off (viser.icon attribute)": [[33, "viser.Icon.LOCK_ACCESS_OFF"]], "lock_bolt (viser.icon attribute)": [[33, "viser.Icon.LOCK_BOLT"]], "lock_cancel (viser.icon attribute)": [[33, "viser.Icon.LOCK_CANCEL"]], "lock_check (viser.icon attribute)": [[33, "viser.Icon.LOCK_CHECK"]], "lock_code (viser.icon attribute)": [[33, "viser.Icon.LOCK_CODE"]], "lock_cog (viser.icon attribute)": [[33, "viser.Icon.LOCK_COG"]], "lock_dollar (viser.icon attribute)": [[33, "viser.Icon.LOCK_DOLLAR"]], "lock_down (viser.icon attribute)": [[33, "viser.Icon.LOCK_DOWN"]], "lock_exclamation (viser.icon attribute)": [[33, "viser.Icon.LOCK_EXCLAMATION"]], "lock_heart (viser.icon attribute)": [[33, "viser.Icon.LOCK_HEART"]], "lock_minus (viser.icon attribute)": [[33, "viser.Icon.LOCK_MINUS"]], "lock_off (viser.icon attribute)": [[33, "viser.Icon.LOCK_OFF"]], "lock_open (viser.icon attribute)": [[33, "viser.Icon.LOCK_OPEN"]], "lock_open_off (viser.icon attribute)": [[33, "viser.Icon.LOCK_OPEN_OFF"]], "lock_pause (viser.icon attribute)": [[33, "viser.Icon.LOCK_PAUSE"]], "lock_pin (viser.icon attribute)": [[33, "viser.Icon.LOCK_PIN"]], "lock_plus (viser.icon attribute)": [[33, "viser.Icon.LOCK_PLUS"]], "lock_question (viser.icon attribute)": [[33, "viser.Icon.LOCK_QUESTION"]], "lock_search (viser.icon attribute)": [[33, "viser.Icon.LOCK_SEARCH"]], "lock_share (viser.icon attribute)": [[33, "viser.Icon.LOCK_SHARE"]], "lock_square (viser.icon attribute)": [[33, "viser.Icon.LOCK_SQUARE"]], "lock_square_rounded (viser.icon attribute)": [[33, "viser.Icon.LOCK_SQUARE_ROUNDED"]], "lock_square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.LOCK_SQUARE_ROUNDED_FILLED"]], "lock_star (viser.icon attribute)": [[33, "viser.Icon.LOCK_STAR"]], "lock_up (viser.icon attribute)": [[33, "viser.Icon.LOCK_UP"]], "lock_x (viser.icon attribute)": [[33, "viser.Icon.LOCK_X"]], "logic_and (viser.icon attribute)": [[33, "viser.Icon.LOGIC_AND"]], "logic_buffer (viser.icon attribute)": [[33, "viser.Icon.LOGIC_BUFFER"]], "logic_nand (viser.icon attribute)": [[33, "viser.Icon.LOGIC_NAND"]], "logic_nor (viser.icon attribute)": [[33, "viser.Icon.LOGIC_NOR"]], "logic_not (viser.icon attribute)": [[33, "viser.Icon.LOGIC_NOT"]], "logic_or (viser.icon attribute)": [[33, "viser.Icon.LOGIC_OR"]], "logic_xnor (viser.icon attribute)": [[33, "viser.Icon.LOGIC_XNOR"]], "logic_xor (viser.icon attribute)": [[33, "viser.Icon.LOGIC_XOR"]], "login (viser.icon attribute)": [[33, "viser.Icon.LOGIN"]], "logout (viser.icon attribute)": [[33, "viser.Icon.LOGOUT"]], "logout_2 (viser.icon attribute)": [[33, "viser.Icon.LOGOUT_2"]], "lollipop (viser.icon attribute)": [[33, "viser.Icon.LOLLIPOP"]], "lollipop_off (viser.icon attribute)": [[33, "viser.Icon.LOLLIPOP_OFF"]], "luggage (viser.icon attribute)": [[33, "viser.Icon.LUGGAGE"]], "luggage_off (viser.icon attribute)": [[33, "viser.Icon.LUGGAGE_OFF"]], "lungs (viser.icon attribute)": [[33, "viser.Icon.LUNGS"]], "lungs_off (viser.icon attribute)": [[33, "viser.Icon.LUNGS_OFF"]], "macro (viser.icon attribute)": [[33, "viser.Icon.MACRO"]], "macro_off (viser.icon attribute)": [[33, "viser.Icon.MACRO_OFF"]], "magnet (viser.icon attribute)": [[33, "viser.Icon.MAGNET"]], "magnet_off (viser.icon attribute)": [[33, "viser.Icon.MAGNET_OFF"]], "mail (viser.icon attribute)": [[33, "viser.Icon.MAIL"]], "mailbox (viser.icon attribute)": [[33, "viser.Icon.MAILBOX"]], "mailbox_off (viser.icon attribute)": [[33, "viser.Icon.MAILBOX_OFF"]], "mail_ai (viser.icon attribute)": [[33, "viser.Icon.MAIL_AI"]], "mail_bolt (viser.icon attribute)": [[33, "viser.Icon.MAIL_BOLT"]], "mail_cancel (viser.icon attribute)": [[33, "viser.Icon.MAIL_CANCEL"]], "mail_check (viser.icon attribute)": [[33, "viser.Icon.MAIL_CHECK"]], "mail_code (viser.icon attribute)": [[33, "viser.Icon.MAIL_CODE"]], "mail_cog (viser.icon attribute)": [[33, "viser.Icon.MAIL_COG"]], "mail_dollar (viser.icon attribute)": [[33, "viser.Icon.MAIL_DOLLAR"]], "mail_down (viser.icon attribute)": [[33, "viser.Icon.MAIL_DOWN"]], "mail_exclamation (viser.icon attribute)": [[33, "viser.Icon.MAIL_EXCLAMATION"]], "mail_fast (viser.icon attribute)": [[33, "viser.Icon.MAIL_FAST"]], "mail_filled (viser.icon attribute)": [[33, "viser.Icon.MAIL_FILLED"]], "mail_forward (viser.icon attribute)": [[33, "viser.Icon.MAIL_FORWARD"]], "mail_heart (viser.icon attribute)": [[33, "viser.Icon.MAIL_HEART"]], "mail_minus (viser.icon attribute)": [[33, "viser.Icon.MAIL_MINUS"]], "mail_off (viser.icon attribute)": [[33, "viser.Icon.MAIL_OFF"]], "mail_opened (viser.icon attribute)": [[33, "viser.Icon.MAIL_OPENED"]], "mail_opened_filled (viser.icon attribute)": [[33, "viser.Icon.MAIL_OPENED_FILLED"]], "mail_pause (viser.icon attribute)": [[33, "viser.Icon.MAIL_PAUSE"]], "mail_pin (viser.icon attribute)": [[33, "viser.Icon.MAIL_PIN"]], "mail_plus (viser.icon attribute)": [[33, "viser.Icon.MAIL_PLUS"]], "mail_question (viser.icon attribute)": [[33, "viser.Icon.MAIL_QUESTION"]], "mail_search (viser.icon attribute)": [[33, "viser.Icon.MAIL_SEARCH"]], "mail_share (viser.icon attribute)": [[33, "viser.Icon.MAIL_SHARE"]], "mail_star (viser.icon attribute)": [[33, "viser.Icon.MAIL_STAR"]], "mail_up (viser.icon attribute)": [[33, "viser.Icon.MAIL_UP"]], "mail_x (viser.icon attribute)": [[33, "viser.Icon.MAIL_X"]], "man (viser.icon attribute)": [[33, "viser.Icon.MAN"]], "manual_gearbox (viser.icon attribute)": [[33, "viser.Icon.MANUAL_GEARBOX"]], "map (viser.icon attribute)": [[33, "viser.Icon.MAP"]], "map_2 (viser.icon attribute)": [[33, "viser.Icon.MAP_2"]], "map_off (viser.icon attribute)": [[33, "viser.Icon.MAP_OFF"]], "map_pin (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN"]], "map_pins (viser.icon attribute)": [[33, "viser.Icon.MAP_PINS"]], "map_pin_bolt (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_BOLT"]], "map_pin_cancel (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_CANCEL"]], "map_pin_check (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_CHECK"]], "map_pin_code (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_CODE"]], "map_pin_cog (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_COG"]], "map_pin_dollar (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_DOLLAR"]], "map_pin_down (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_DOWN"]], "map_pin_exclamation (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_EXCLAMATION"]], "map_pin_filled (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_FILLED"]], "map_pin_heart (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_HEART"]], "map_pin_minus (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_MINUS"]], "map_pin_off (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_OFF"]], "map_pin_pause (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_PAUSE"]], "map_pin_pin (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_PIN"]], "map_pin_plus (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_PLUS"]], "map_pin_question (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_QUESTION"]], "map_pin_search (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_SEARCH"]], "map_pin_share (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_SHARE"]], "map_pin_star (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_STAR"]], "map_pin_up (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_UP"]], "map_pin_x (viser.icon attribute)": [[33, "viser.Icon.MAP_PIN_X"]], "map_search (viser.icon attribute)": [[33, "viser.Icon.MAP_SEARCH"]], "markdown (viser.icon attribute)": [[33, "viser.Icon.MARKDOWN"]], "markdown_off (viser.icon attribute)": [[33, "viser.Icon.MARKDOWN_OFF"]], "marquee (viser.icon attribute)": [[33, "viser.Icon.MARQUEE"]], "marquee_2 (viser.icon attribute)": [[33, "viser.Icon.MARQUEE_2"]], "marquee_off (viser.icon attribute)": [[33, "viser.Icon.MARQUEE_OFF"]], "mars (viser.icon attribute)": [[33, "viser.Icon.MARS"]], "mask (viser.icon attribute)": [[33, "viser.Icon.MASK"]], "masks_theater (viser.icon attribute)": [[33, "viser.Icon.MASKS_THEATER"]], "masks_theater_off (viser.icon attribute)": [[33, "viser.Icon.MASKS_THEATER_OFF"]], "mask_off (viser.icon attribute)": [[33, "viser.Icon.MASK_OFF"]], "massage (viser.icon attribute)": [[33, "viser.Icon.MASSAGE"]], "matchstick (viser.icon attribute)": [[33, "viser.Icon.MATCHSTICK"]], "math (viser.icon attribute)": [[33, "viser.Icon.MATH"]], "math_1_divide_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_1_DIVIDE_2"]], "math_1_divide_3 (viser.icon attribute)": [[33, "viser.Icon.MATH_1_DIVIDE_3"]], "math_avg (viser.icon attribute)": [[33, "viser.Icon.MATH_AVG"]], "math_equal_greater (viser.icon attribute)": [[33, "viser.Icon.MATH_EQUAL_GREATER"]], "math_equal_lower (viser.icon attribute)": [[33, "viser.Icon.MATH_EQUAL_LOWER"]], "math_function (viser.icon attribute)": [[33, "viser.Icon.MATH_FUNCTION"]], "math_function_off (viser.icon attribute)": [[33, "viser.Icon.MATH_FUNCTION_OFF"]], "math_function_y (viser.icon attribute)": [[33, "viser.Icon.MATH_FUNCTION_Y"]], "math_greater (viser.icon attribute)": [[33, "viser.Icon.MATH_GREATER"]], "math_integral (viser.icon attribute)": [[33, "viser.Icon.MATH_INTEGRAL"]], "math_integrals (viser.icon attribute)": [[33, "viser.Icon.MATH_INTEGRALS"]], "math_integral_x (viser.icon attribute)": [[33, "viser.Icon.MATH_INTEGRAL_X"]], "math_lower (viser.icon attribute)": [[33, "viser.Icon.MATH_LOWER"]], "math_max (viser.icon attribute)": [[33, "viser.Icon.MATH_MAX"]], "math_min (viser.icon attribute)": [[33, "viser.Icon.MATH_MIN"]], "math_not (viser.icon attribute)": [[33, "viser.Icon.MATH_NOT"]], "math_off (viser.icon attribute)": [[33, "viser.Icon.MATH_OFF"]], "math_pi (viser.icon attribute)": [[33, "viser.Icon.MATH_PI"]], "math_pi_divide_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_PI_DIVIDE_2"]], "math_symbols (viser.icon attribute)": [[33, "viser.Icon.MATH_SYMBOLS"]], "math_xy (viser.icon attribute)": [[33, "viser.Icon.MATH_XY"]], "math_x_divide_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_X_DIVIDE_2"]], "math_x_divide_y (viser.icon attribute)": [[33, "viser.Icon.MATH_X_DIVIDE_Y"]], "math_x_divide_y_2 (viser.icon attribute)": [[33, "viser.Icon.MATH_X_DIVIDE_Y_2"]], "math_x_minus_x (viser.icon attribute)": [[33, "viser.Icon.MATH_X_MINUS_X"]], "math_x_minus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_X_MINUS_Y"]], "math_x_plus_x (viser.icon attribute)": [[33, "viser.Icon.MATH_X_PLUS_X"]], "math_x_plus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_X_PLUS_Y"]], "math_y_minus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_Y_MINUS_Y"]], "math_y_plus_y (viser.icon attribute)": [[33, "viser.Icon.MATH_Y_PLUS_Y"]], "maximize (viser.icon attribute)": [[33, "viser.Icon.MAXIMIZE"]], "maximize_off (viser.icon attribute)": [[33, "viser.Icon.MAXIMIZE_OFF"]], "meat (viser.icon attribute)": [[33, "viser.Icon.MEAT"]], "meat_off (viser.icon attribute)": [[33, "viser.Icon.MEAT_OFF"]], "medal (viser.icon attribute)": [[33, "viser.Icon.MEDAL"]], "medal_2 (viser.icon attribute)": [[33, "viser.Icon.MEDAL_2"]], "medical_cross (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS"]], "medical_cross_circle (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS_CIRCLE"]], "medical_cross_filled (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS_FILLED"]], "medical_cross_off (viser.icon attribute)": [[33, "viser.Icon.MEDICAL_CROSS_OFF"]], "medicine_syrup (viser.icon attribute)": [[33, "viser.Icon.MEDICINE_SYRUP"]], "meeple (viser.icon attribute)": [[33, "viser.Icon.MEEPLE"]], "menorah (viser.icon attribute)": [[33, "viser.Icon.MENORAH"]], "menu (viser.icon attribute)": [[33, "viser.Icon.MENU"]], "menu_2 (viser.icon attribute)": [[33, "viser.Icon.MENU_2"]], "menu_deep (viser.icon attribute)": [[33, "viser.Icon.MENU_DEEP"]], "menu_order (viser.icon attribute)": [[33, "viser.Icon.MENU_ORDER"]], "message (viser.icon attribute)": [[33, "viser.Icon.MESSAGE"]], "messages (viser.icon attribute)": [[33, "viser.Icon.MESSAGES"]], "messages_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGES_OFF"]], "message_2 (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2"]], "message_2_bolt (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_BOLT"]], "message_2_cancel (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_CANCEL"]], "message_2_check (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_CHECK"]], "message_2_code (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_CODE"]], "message_2_cog (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_COG"]], "message_2_dollar (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_DOLLAR"]], "message_2_down (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_DOWN"]], "message_2_exclamation (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_EXCLAMATION"]], "message_2_heart (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_HEART"]], "message_2_minus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_MINUS"]], "message_2_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_OFF"]], "message_2_pause (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_PAUSE"]], "message_2_pin (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_PIN"]], "message_2_plus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_PLUS"]], "message_2_question (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_QUESTION"]], "message_2_search (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_SEARCH"]], "message_2_share (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_SHARE"]], "message_2_star (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_STAR"]], "message_2_up (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_UP"]], "message_2_x (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_2_X"]], "message_bolt (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_BOLT"]], "message_cancel (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CANCEL"]], "message_chatbot (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CHATBOT"]], "message_check (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CHECK"]], "message_circle (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE"]], "message_circle_2 (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_2"]], "message_circle_2_filled (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_2_FILLED"]], "message_circle_bolt (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_BOLT"]], "message_circle_cancel (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_CANCEL"]], "message_circle_check (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_CHECK"]], "message_circle_code (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_CODE"]], "message_circle_cog (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_COG"]], "message_circle_dollar (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_DOLLAR"]], "message_circle_down (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_DOWN"]], "message_circle_exclamation (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_EXCLAMATION"]], "message_circle_heart (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_HEART"]], "message_circle_minus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_MINUS"]], "message_circle_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_OFF"]], "message_circle_pause (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_PAUSE"]], "message_circle_pin (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_PIN"]], "message_circle_plus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_PLUS"]], "message_circle_question (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_QUESTION"]], "message_circle_search (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_SEARCH"]], "message_circle_share (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_SHARE"]], "message_circle_star (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_STAR"]], "message_circle_up (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_UP"]], "message_circle_x (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CIRCLE_X"]], "message_code (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_CODE"]], "message_cog (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_COG"]], "message_dollar (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_DOLLAR"]], "message_dots (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_DOTS"]], "message_down (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_DOWN"]], "message_exclamation (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_EXCLAMATION"]], "message_forward (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_FORWARD"]], "message_heart (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_HEART"]], "message_language (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_LANGUAGE"]], "message_minus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_MINUS"]], "message_off (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_OFF"]], "message_pause (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_PAUSE"]], "message_pin (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_PIN"]], "message_plus (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_PLUS"]], "message_question (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_QUESTION"]], "message_report (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_REPORT"]], "message_search (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_SEARCH"]], "message_share (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_SHARE"]], "message_star (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_STAR"]], "message_up (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_UP"]], "message_x (viser.icon attribute)": [[33, "viser.Icon.MESSAGE_X"]], "meteor (viser.icon attribute)": [[33, "viser.Icon.METEOR"]], "meteor_off (viser.icon attribute)": [[33, "viser.Icon.METEOR_OFF"]], "michelin_bib_gourmand (viser.icon attribute)": [[33, "viser.Icon.MICHELIN_BIB_GOURMAND"]], "michelin_star (viser.icon attribute)": [[33, "viser.Icon.MICHELIN_STAR"]], "michelin_star_green (viser.icon attribute)": [[33, "viser.Icon.MICHELIN_STAR_GREEN"]], "mickey (viser.icon attribute)": [[33, "viser.Icon.MICKEY"]], "mickey_filled (viser.icon attribute)": [[33, "viser.Icon.MICKEY_FILLED"]], "microphone (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE"]], "microphone_2 (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE_2"]], "microphone_2_off (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE_2_OFF"]], "microphone_off (viser.icon attribute)": [[33, "viser.Icon.MICROPHONE_OFF"]], "microscope (viser.icon attribute)": [[33, "viser.Icon.MICROSCOPE"]], "microscope_off (viser.icon attribute)": [[33, "viser.Icon.MICROSCOPE_OFF"]], "microwave (viser.icon attribute)": [[33, "viser.Icon.MICROWAVE"]], "microwave_off (viser.icon attribute)": [[33, "viser.Icon.MICROWAVE_OFF"]], "military_award (viser.icon attribute)": [[33, "viser.Icon.MILITARY_AWARD"]], "military_rank (viser.icon attribute)": [[33, "viser.Icon.MILITARY_RANK"]], "milk (viser.icon attribute)": [[33, "viser.Icon.MILK"]], "milkshake (viser.icon attribute)": [[33, "viser.Icon.MILKSHAKE"]], "milk_off (viser.icon attribute)": [[33, "viser.Icon.MILK_OFF"]], "minimize (viser.icon attribute)": [[33, "viser.Icon.MINIMIZE"]], "minus (viser.icon attribute)": [[33, "viser.Icon.MINUS"]], "minus_vertical (viser.icon attribute)": [[33, "viser.Icon.MINUS_VERTICAL"]], "mist (viser.icon attribute)": [[33, "viser.Icon.MIST"]], "mist_off (viser.icon attribute)": [[33, "viser.Icon.MIST_OFF"]], "mobiledata (viser.icon attribute)": [[33, "viser.Icon.MOBILEDATA"]], "mobiledata_off (viser.icon attribute)": [[33, "viser.Icon.MOBILEDATA_OFF"]], "moneybag (viser.icon attribute)": [[33, "viser.Icon.MONEYBAG"]], "mood_angry (viser.icon attribute)": [[33, "viser.Icon.MOOD_ANGRY"]], "mood_annoyed (viser.icon attribute)": [[33, "viser.Icon.MOOD_ANNOYED"]], "mood_annoyed_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_ANNOYED_2"]], "mood_boy (viser.icon attribute)": [[33, "viser.Icon.MOOD_BOY"]], "mood_check (viser.icon attribute)": [[33, "viser.Icon.MOOD_CHECK"]], "mood_cog (viser.icon attribute)": [[33, "viser.Icon.MOOD_COG"]], "mood_confuzed (viser.icon attribute)": [[33, "viser.Icon.MOOD_CONFUZED"]], "mood_confuzed_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_CONFUZED_FILLED"]], "mood_crazy_happy (viser.icon attribute)": [[33, "viser.Icon.MOOD_CRAZY_HAPPY"]], "mood_cry (viser.icon attribute)": [[33, "viser.Icon.MOOD_CRY"]], "mood_dollar (viser.icon attribute)": [[33, "viser.Icon.MOOD_DOLLAR"]], "mood_edit (viser.icon attribute)": [[33, "viser.Icon.MOOD_EDIT"]], "mood_empty (viser.icon attribute)": [[33, "viser.Icon.MOOD_EMPTY"]], "mood_empty_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_EMPTY_FILLED"]], "mood_happy (viser.icon attribute)": [[33, "viser.Icon.MOOD_HAPPY"]], "mood_happy_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_HAPPY_FILLED"]], "mood_heart (viser.icon attribute)": [[33, "viser.Icon.MOOD_HEART"]], "mood_kid (viser.icon attribute)": [[33, "viser.Icon.MOOD_KID"]], "mood_kid_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_KID_FILLED"]], "mood_look_left (viser.icon attribute)": [[33, "viser.Icon.MOOD_LOOK_LEFT"]], "mood_look_right (viser.icon attribute)": [[33, "viser.Icon.MOOD_LOOK_RIGHT"]], "mood_minus (viser.icon attribute)": [[33, "viser.Icon.MOOD_MINUS"]], "mood_nerd (viser.icon attribute)": [[33, "viser.Icon.MOOD_NERD"]], "mood_nervous (viser.icon attribute)": [[33, "viser.Icon.MOOD_NERVOUS"]], "mood_neutral (viser.icon attribute)": [[33, "viser.Icon.MOOD_NEUTRAL"]], "mood_neutral_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_NEUTRAL_FILLED"]], "mood_off (viser.icon attribute)": [[33, "viser.Icon.MOOD_OFF"]], "mood_pin (viser.icon attribute)": [[33, "viser.Icon.MOOD_PIN"]], "mood_plus (viser.icon attribute)": [[33, "viser.Icon.MOOD_PLUS"]], "mood_sad (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD"]], "mood_sad_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_2"]], "mood_sad_dizzy (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_DIZZY"]], "mood_sad_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_FILLED"]], "mood_sad_squint (viser.icon attribute)": [[33, "viser.Icon.MOOD_SAD_SQUINT"]], "mood_search (viser.icon attribute)": [[33, "viser.Icon.MOOD_SEARCH"]], "mood_share (viser.icon attribute)": [[33, "viser.Icon.MOOD_SHARE"]], "mood_sick (viser.icon attribute)": [[33, "viser.Icon.MOOD_SICK"]], "mood_silence (viser.icon attribute)": [[33, "viser.Icon.MOOD_SILENCE"]], "mood_sing (viser.icon attribute)": [[33, "viser.Icon.MOOD_SING"]], "mood_smile (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE"]], "mood_smile_beam (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE_BEAM"]], "mood_smile_dizzy (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE_DIZZY"]], "mood_smile_filled (viser.icon attribute)": [[33, "viser.Icon.MOOD_SMILE_FILLED"]], "mood_suprised (viser.icon attribute)": [[33, "viser.Icon.MOOD_SUPRISED"]], "mood_tongue (viser.icon attribute)": [[33, "viser.Icon.MOOD_TONGUE"]], "mood_tongue_wink (viser.icon attribute)": [[33, "viser.Icon.MOOD_TONGUE_WINK"]], "mood_tongue_wink_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_TONGUE_WINK_2"]], "mood_unamused (viser.icon attribute)": [[33, "viser.Icon.MOOD_UNAMUSED"]], "mood_up (viser.icon attribute)": [[33, "viser.Icon.MOOD_UP"]], "mood_wink (viser.icon attribute)": [[33, "viser.Icon.MOOD_WINK"]], "mood_wink_2 (viser.icon attribute)": [[33, "viser.Icon.MOOD_WINK_2"]], "mood_wrrr (viser.icon attribute)": [[33, "viser.Icon.MOOD_WRRR"]], "mood_x (viser.icon attribute)": [[33, "viser.Icon.MOOD_X"]], "mood_xd (viser.icon attribute)": [[33, "viser.Icon.MOOD_XD"]], "moon (viser.icon attribute)": [[33, "viser.Icon.MOON"]], "moon_2 (viser.icon attribute)": [[33, "viser.Icon.MOON_2"]], "moon_filled (viser.icon attribute)": [[33, "viser.Icon.MOON_FILLED"]], "moon_off (viser.icon attribute)": [[33, "viser.Icon.MOON_OFF"]], "moon_stars (viser.icon attribute)": [[33, "viser.Icon.MOON_STARS"]], "moped (viser.icon attribute)": [[33, "viser.Icon.MOPED"]], "motorbike (viser.icon attribute)": [[33, "viser.Icon.MOTORBIKE"]], "mountain (viser.icon attribute)": [[33, "viser.Icon.MOUNTAIN"]], "mountain_off (viser.icon attribute)": [[33, "viser.Icon.MOUNTAIN_OFF"]], "mouse (viser.icon attribute)": [[33, "viser.Icon.MOUSE"]], "mouse_2 (viser.icon attribute)": [[33, "viser.Icon.MOUSE_2"]], "mouse_off (viser.icon attribute)": [[33, "viser.Icon.MOUSE_OFF"]], "moustache (viser.icon attribute)": [[33, "viser.Icon.MOUSTACHE"]], "movie (viser.icon attribute)": [[33, "viser.Icon.MOVIE"]], "movie_off (viser.icon attribute)": [[33, "viser.Icon.MOVIE_OFF"]], "mug (viser.icon attribute)": [[33, "viser.Icon.MUG"]], "mug_off (viser.icon attribute)": [[33, "viser.Icon.MUG_OFF"]], "multiplier_0_5x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_0_5X"]], "multiplier_1x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_1X"]], "multiplier_1_5x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_1_5X"]], "multiplier_2x (viser.icon attribute)": [[33, "viser.Icon.MULTIPLIER_2X"]], "mushroom (viser.icon attribute)": [[33, "viser.Icon.MUSHROOM"]], "mushroom_filled (viser.icon attribute)": [[33, "viser.Icon.MUSHROOM_FILLED"]], "mushroom_off (viser.icon attribute)": [[33, "viser.Icon.MUSHROOM_OFF"]], "music (viser.icon attribute)": [[33, "viser.Icon.MUSIC"]], "music_off (viser.icon attribute)": [[33, "viser.Icon.MUSIC_OFF"]], "navigation (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION"]], "navigation_filled (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION_FILLED"]], "navigation_north (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION_NORTH"]], "navigation_off (viser.icon attribute)": [[33, "viser.Icon.NAVIGATION_OFF"]], "needle (viser.icon attribute)": [[33, "viser.Icon.NEEDLE"]], "needle_thread (viser.icon attribute)": [[33, "viser.Icon.NEEDLE_THREAD"]], "network (viser.icon attribute)": [[33, "viser.Icon.NETWORK"]], "network_off (viser.icon attribute)": [[33, "viser.Icon.NETWORK_OFF"]], "news (viser.icon attribute)": [[33, "viser.Icon.NEWS"]], "news_off (viser.icon attribute)": [[33, "viser.Icon.NEWS_OFF"]], "new_section (viser.icon attribute)": [[33, "viser.Icon.NEW_SECTION"]], "nfc (viser.icon attribute)": [[33, "viser.Icon.NFC"]], "nfc_off (viser.icon attribute)": [[33, "viser.Icon.NFC_OFF"]], "north_star (viser.icon attribute)": [[33, "viser.Icon.NORTH_STAR"]], "note (viser.icon attribute)": [[33, "viser.Icon.NOTE"]], "notebook (viser.icon attribute)": [[33, "viser.Icon.NOTEBOOK"]], "notebook_off (viser.icon attribute)": [[33, "viser.Icon.NOTEBOOK_OFF"]], "notes (viser.icon attribute)": [[33, "viser.Icon.NOTES"]], "notes_off (viser.icon attribute)": [[33, "viser.Icon.NOTES_OFF"]], "note_off (viser.icon attribute)": [[33, "viser.Icon.NOTE_OFF"]], "notification (viser.icon attribute)": [[33, "viser.Icon.NOTIFICATION"]], "notification_off (viser.icon attribute)": [[33, "viser.Icon.NOTIFICATION_OFF"]], "no_copyright (viser.icon attribute)": [[33, "viser.Icon.NO_COPYRIGHT"]], "no_creative_commons (viser.icon attribute)": [[33, "viser.Icon.NO_CREATIVE_COMMONS"]], "no_derivatives (viser.icon attribute)": [[33, "viser.Icon.NO_DERIVATIVES"]], "number (viser.icon attribute)": [[33, "viser.Icon.NUMBER"]], "numbers (viser.icon attribute)": [[33, "viser.Icon.NUMBERS"]], "number_0 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_0"]], "number_1 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_1"]], "number_2 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_2"]], "number_3 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_3"]], "number_4 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_4"]], "number_5 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_5"]], "number_6 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_6"]], "number_7 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_7"]], "number_8 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_8"]], "number_9 (viser.icon attribute)": [[33, "viser.Icon.NUMBER_9"]], "nurse (viser.icon attribute)": [[33, "viser.Icon.NURSE"]], "octagon (viser.icon attribute)": [[33, "viser.Icon.OCTAGON"]], "octagon_filled (viser.icon attribute)": [[33, "viser.Icon.OCTAGON_FILLED"]], "octagon_off (viser.icon attribute)": [[33, "viser.Icon.OCTAGON_OFF"]], "octahedron (viser.icon attribute)": [[33, "viser.Icon.OCTAHEDRON"]], "octahedron_off (viser.icon attribute)": [[33, "viser.Icon.OCTAHEDRON_OFF"]], "octahedron_plus (viser.icon attribute)": [[33, "viser.Icon.OCTAHEDRON_PLUS"]], "old (viser.icon attribute)": [[33, "viser.Icon.OLD"]], "olympics (viser.icon attribute)": [[33, "viser.Icon.OLYMPICS"]], "olympics_off (viser.icon attribute)": [[33, "viser.Icon.OLYMPICS_OFF"]], "om (viser.icon attribute)": [[33, "viser.Icon.OM"]], "omega (viser.icon attribute)": [[33, "viser.Icon.OMEGA"]], "outbound (viser.icon attribute)": [[33, "viser.Icon.OUTBOUND"]], "outlet (viser.icon attribute)": [[33, "viser.Icon.OUTLET"]], "oval (viser.icon attribute)": [[33, "viser.Icon.OVAL"]], "oval_filled (viser.icon attribute)": [[33, "viser.Icon.OVAL_FILLED"]], "oval_vertical (viser.icon attribute)": [[33, "viser.Icon.OVAL_VERTICAL"]], "oval_vertical_filled (viser.icon attribute)": [[33, "viser.Icon.OVAL_VERTICAL_FILLED"]], "overline (viser.icon attribute)": [[33, "viser.Icon.OVERLINE"]], "package (viser.icon attribute)": [[33, "viser.Icon.PACKAGE"]], "packages (viser.icon attribute)": [[33, "viser.Icon.PACKAGES"]], "package_export (viser.icon attribute)": [[33, "viser.Icon.PACKAGE_EXPORT"]], "package_import (viser.icon attribute)": [[33, "viser.Icon.PACKAGE_IMPORT"]], "package_off (viser.icon attribute)": [[33, "viser.Icon.PACKAGE_OFF"]], "pacman (viser.icon attribute)": [[33, "viser.Icon.PACMAN"]], "page_break (viser.icon attribute)": [[33, "viser.Icon.PAGE_BREAK"]], "paint (viser.icon attribute)": [[33, "viser.Icon.PAINT"]], "paint_filled (viser.icon attribute)": [[33, "viser.Icon.PAINT_FILLED"]], "paint_off (viser.icon attribute)": [[33, "viser.Icon.PAINT_OFF"]], "palette (viser.icon attribute)": [[33, "viser.Icon.PALETTE"]], "palette_off (viser.icon attribute)": [[33, "viser.Icon.PALETTE_OFF"]], "panorama_horizontal (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_HORIZONTAL"]], "panorama_horizontal_off (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_HORIZONTAL_OFF"]], "panorama_vertical (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_VERTICAL"]], "panorama_vertical_off (viser.icon attribute)": [[33, "viser.Icon.PANORAMA_VERTICAL_OFF"]], "paperclip (viser.icon attribute)": [[33, "viser.Icon.PAPERCLIP"]], "paper_bag (viser.icon attribute)": [[33, "viser.Icon.PAPER_BAG"]], "paper_bag_off (viser.icon attribute)": [[33, "viser.Icon.PAPER_BAG_OFF"]], "parachute (viser.icon attribute)": [[33, "viser.Icon.PARACHUTE"]], "parachute_off (viser.icon attribute)": [[33, "viser.Icon.PARACHUTE_OFF"]], "parentheses (viser.icon attribute)": [[33, "viser.Icon.PARENTHESES"]], "parentheses_off (viser.icon attribute)": [[33, "viser.Icon.PARENTHESES_OFF"]], "parking (viser.icon attribute)": [[33, "viser.Icon.PARKING"]], "parking_off (viser.icon attribute)": [[33, "viser.Icon.PARKING_OFF"]], "password (viser.icon attribute)": [[33, "viser.Icon.PASSWORD"]], "paw (viser.icon attribute)": [[33, "viser.Icon.PAW"]], "paw_filled (viser.icon attribute)": [[33, "viser.Icon.PAW_FILLED"]], "paw_off (viser.icon attribute)": [[33, "viser.Icon.PAW_OFF"]], "pdf (viser.icon attribute)": [[33, "viser.Icon.PDF"]], "peace (viser.icon attribute)": [[33, "viser.Icon.PEACE"]], "pencil (viser.icon attribute)": [[33, "viser.Icon.PENCIL"]], "pencil_minus (viser.icon attribute)": [[33, "viser.Icon.PENCIL_MINUS"]], "pencil_off (viser.icon attribute)": [[33, "viser.Icon.PENCIL_OFF"]], "pencil_plus (viser.icon attribute)": [[33, "viser.Icon.PENCIL_PLUS"]], "pennant (viser.icon attribute)": [[33, "viser.Icon.PENNANT"]], "pennant_2 (viser.icon attribute)": [[33, "viser.Icon.PENNANT_2"]], "pennant_2_filled (viser.icon attribute)": [[33, "viser.Icon.PENNANT_2_FILLED"]], "pennant_filled (viser.icon attribute)": [[33, "viser.Icon.PENNANT_FILLED"]], "pennant_off (viser.icon attribute)": [[33, "viser.Icon.PENNANT_OFF"]], "pentagon (viser.icon attribute)": [[33, "viser.Icon.PENTAGON"]], "pentagon_filled (viser.icon attribute)": [[33, "viser.Icon.PENTAGON_FILLED"]], "pentagon_off (viser.icon attribute)": [[33, "viser.Icon.PENTAGON_OFF"]], "pentagram (viser.icon attribute)": [[33, "viser.Icon.PENTAGRAM"]], "pepper (viser.icon attribute)": [[33, "viser.Icon.PEPPER"]], "pepper_off (viser.icon attribute)": [[33, "viser.Icon.PEPPER_OFF"]], "percentage (viser.icon attribute)": [[33, "viser.Icon.PERCENTAGE"]], "perfume (viser.icon attribute)": [[33, "viser.Icon.PERFUME"]], "perspective (viser.icon attribute)": [[33, "viser.Icon.PERSPECTIVE"]], "perspective_off (viser.icon attribute)": [[33, "viser.Icon.PERSPECTIVE_OFF"]], "phone (viser.icon attribute)": [[33, "viser.Icon.PHONE"]], "phone_call (viser.icon attribute)": [[33, "viser.Icon.PHONE_CALL"]], "phone_calling (viser.icon attribute)": [[33, "viser.Icon.PHONE_CALLING"]], "phone_check (viser.icon attribute)": [[33, "viser.Icon.PHONE_CHECK"]], "phone_filled (viser.icon attribute)": [[33, "viser.Icon.PHONE_FILLED"]], "phone_incoming (viser.icon attribute)": [[33, "viser.Icon.PHONE_INCOMING"]], "phone_off (viser.icon attribute)": [[33, "viser.Icon.PHONE_OFF"]], "phone_outgoing (viser.icon attribute)": [[33, "viser.Icon.PHONE_OUTGOING"]], "phone_pause (viser.icon attribute)": [[33, "viser.Icon.PHONE_PAUSE"]], "phone_plus (viser.icon attribute)": [[33, "viser.Icon.PHONE_PLUS"]], "phone_x (viser.icon attribute)": [[33, "viser.Icon.PHONE_X"]], "photo (viser.icon attribute)": [[33, "viser.Icon.PHOTO"]], "photo_ai (viser.icon attribute)": [[33, "viser.Icon.PHOTO_AI"]], "photo_bolt (viser.icon attribute)": [[33, "viser.Icon.PHOTO_BOLT"]], "photo_cancel (viser.icon attribute)": [[33, "viser.Icon.PHOTO_CANCEL"]], "photo_check (viser.icon attribute)": [[33, "viser.Icon.PHOTO_CHECK"]], "photo_code (viser.icon attribute)": [[33, "viser.Icon.PHOTO_CODE"]], "photo_cog (viser.icon attribute)": [[33, "viser.Icon.PHOTO_COG"]], "photo_dollar (viser.icon attribute)": [[33, "viser.Icon.PHOTO_DOLLAR"]], "photo_down (viser.icon attribute)": [[33, "viser.Icon.PHOTO_DOWN"]], "photo_edit (viser.icon attribute)": [[33, "viser.Icon.PHOTO_EDIT"]], "photo_exclamation (viser.icon attribute)": [[33, "viser.Icon.PHOTO_EXCLAMATION"]], "photo_filled (viser.icon attribute)": [[33, "viser.Icon.PHOTO_FILLED"]], "photo_heart (viser.icon attribute)": [[33, "viser.Icon.PHOTO_HEART"]], "photo_minus (viser.icon attribute)": [[33, "viser.Icon.PHOTO_MINUS"]], "photo_off (viser.icon attribute)": [[33, "viser.Icon.PHOTO_OFF"]], "photo_pause (viser.icon attribute)": [[33, "viser.Icon.PHOTO_PAUSE"]], "photo_pin (viser.icon attribute)": [[33, "viser.Icon.PHOTO_PIN"]], "photo_plus (viser.icon attribute)": [[33, "viser.Icon.PHOTO_PLUS"]], "photo_question (viser.icon attribute)": [[33, "viser.Icon.PHOTO_QUESTION"]], "photo_search (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SEARCH"]], "photo_sensor (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SENSOR"]], "photo_sensor_2 (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SENSOR_2"]], "photo_sensor_3 (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SENSOR_3"]], "photo_share (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SHARE"]], "photo_shield (viser.icon attribute)": [[33, "viser.Icon.PHOTO_SHIELD"]], "photo_star (viser.icon attribute)": [[33, "viser.Icon.PHOTO_STAR"]], "photo_up (viser.icon attribute)": [[33, "viser.Icon.PHOTO_UP"]], "photo_x (viser.icon attribute)": [[33, "viser.Icon.PHOTO_X"]], "physotherapist (viser.icon attribute)": [[33, "viser.Icon.PHYSOTHERAPIST"]], "piano (viser.icon attribute)": [[33, "viser.Icon.PIANO"]], "pick (viser.icon attribute)": [[33, "viser.Icon.PICK"]], "picture_in_picture (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE"]], "picture_in_picture_off (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE_OFF"]], "picture_in_picture_on (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE_ON"]], "picture_in_picture_top (viser.icon attribute)": [[33, "viser.Icon.PICTURE_IN_PICTURE_TOP"]], "pig (viser.icon attribute)": [[33, "viser.Icon.PIG"]], "pig_money (viser.icon attribute)": [[33, "viser.Icon.PIG_MONEY"]], "pig_off (viser.icon attribute)": [[33, "viser.Icon.PIG_OFF"]], "pilcrow (viser.icon attribute)": [[33, "viser.Icon.PILCROW"]], "pill (viser.icon attribute)": [[33, "viser.Icon.PILL"]], "pills (viser.icon attribute)": [[33, "viser.Icon.PILLS"]], "pill_off (viser.icon attribute)": [[33, "viser.Icon.PILL_OFF"]], "pin (viser.icon attribute)": [[33, "viser.Icon.PIN"]], "ping_pong (viser.icon attribute)": [[33, "viser.Icon.PING_PONG"]], "pinned (viser.icon attribute)": [[33, "viser.Icon.PINNED"]], "pinned_filled (viser.icon attribute)": [[33, "viser.Icon.PINNED_FILLED"]], "pinned_off (viser.icon attribute)": [[33, "viser.Icon.PINNED_OFF"]], "pin_filled (viser.icon attribute)": [[33, "viser.Icon.PIN_FILLED"]], "pizza (viser.icon attribute)": [[33, "viser.Icon.PIZZA"]], "pizza_off (viser.icon attribute)": [[33, "viser.Icon.PIZZA_OFF"]], "placeholder (viser.icon attribute)": [[33, "viser.Icon.PLACEHOLDER"]], "plane (viser.icon attribute)": [[33, "viser.Icon.PLANE"]], "planet (viser.icon attribute)": [[33, "viser.Icon.PLANET"]], "planet_off (viser.icon attribute)": [[33, "viser.Icon.PLANET_OFF"]], "plane_arrival (viser.icon attribute)": [[33, "viser.Icon.PLANE_ARRIVAL"]], "plane_departure (viser.icon attribute)": [[33, "viser.Icon.PLANE_DEPARTURE"]], "plane_inflight (viser.icon attribute)": [[33, "viser.Icon.PLANE_INFLIGHT"]], "plane_off (viser.icon attribute)": [[33, "viser.Icon.PLANE_OFF"]], "plane_tilt (viser.icon attribute)": [[33, "viser.Icon.PLANE_TILT"]], "plant (viser.icon attribute)": [[33, "viser.Icon.PLANT"]], "plant_2 (viser.icon attribute)": [[33, "viser.Icon.PLANT_2"]], "plant_2_off (viser.icon attribute)": [[33, "viser.Icon.PLANT_2_OFF"]], "plant_off (viser.icon attribute)": [[33, "viser.Icon.PLANT_OFF"]], "player_eject (viser.icon attribute)": [[33, "viser.Icon.PLAYER_EJECT"]], "player_eject_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_EJECT_FILLED"]], "player_pause (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PAUSE"]], "player_pause_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PAUSE_FILLED"]], "player_play (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PLAY"]], "player_play_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_PLAY_FILLED"]], "player_record (viser.icon attribute)": [[33, "viser.Icon.PLAYER_RECORD"]], "player_record_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_RECORD_FILLED"]], "player_skip_back (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_BACK"]], "player_skip_back_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_BACK_FILLED"]], "player_skip_forward (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_FORWARD"]], "player_skip_forward_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_SKIP_FORWARD_FILLED"]], "player_stop (viser.icon attribute)": [[33, "viser.Icon.PLAYER_STOP"]], "player_stop_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_STOP_FILLED"]], "player_track_next (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_NEXT"]], "player_track_next_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_NEXT_FILLED"]], "player_track_prev (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_PREV"]], "player_track_prev_filled (viser.icon attribute)": [[33, "viser.Icon.PLAYER_TRACK_PREV_FILLED"]], "playlist (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST"]], "playlist_add (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST_ADD"]], "playlist_off (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST_OFF"]], "playlist_x (viser.icon attribute)": [[33, "viser.Icon.PLAYLIST_X"]], "playstation_circle (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_CIRCLE"]], "playstation_square (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_SQUARE"]], "playstation_triangle (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_TRIANGLE"]], "playstation_x (viser.icon attribute)": [[33, "viser.Icon.PLAYSTATION_X"]], "play_basketball (viser.icon attribute)": [[33, "viser.Icon.PLAY_BASKETBALL"]], "play_card (viser.icon attribute)": [[33, "viser.Icon.PLAY_CARD"]], "play_card_off (viser.icon attribute)": [[33, "viser.Icon.PLAY_CARD_OFF"]], "play_football (viser.icon attribute)": [[33, "viser.Icon.PLAY_FOOTBALL"]], "play_handball (viser.icon attribute)": [[33, "viser.Icon.PLAY_HANDBALL"]], "play_volleyball (viser.icon attribute)": [[33, "viser.Icon.PLAY_VOLLEYBALL"]], "plug (viser.icon attribute)": [[33, "viser.Icon.PLUG"]], "plug_connected (viser.icon attribute)": [[33, "viser.Icon.PLUG_CONNECTED"]], "plug_connected_x (viser.icon attribute)": [[33, "viser.Icon.PLUG_CONNECTED_X"]], "plug_off (viser.icon attribute)": [[33, "viser.Icon.PLUG_OFF"]], "plug_x (viser.icon attribute)": [[33, "viser.Icon.PLUG_X"]], "plus (viser.icon attribute)": [[33, "viser.Icon.PLUS"]], "plus_equal (viser.icon attribute)": [[33, "viser.Icon.PLUS_EQUAL"]], "plus_minus (viser.icon attribute)": [[33, "viser.Icon.PLUS_MINUS"]], "png (viser.icon attribute)": [[33, "viser.Icon.PNG"]], "podium (viser.icon attribute)": [[33, "viser.Icon.PODIUM"]], "podium_off (viser.icon attribute)": [[33, "viser.Icon.PODIUM_OFF"]], "point (viser.icon attribute)": [[33, "viser.Icon.POINT"]], "pointer (viser.icon attribute)": [[33, "viser.Icon.POINTER"]], "pointer_bolt (viser.icon attribute)": [[33, "viser.Icon.POINTER_BOLT"]], "pointer_cancel (viser.icon attribute)": [[33, "viser.Icon.POINTER_CANCEL"]], "pointer_check (viser.icon attribute)": [[33, "viser.Icon.POINTER_CHECK"]], "pointer_code (viser.icon attribute)": [[33, "viser.Icon.POINTER_CODE"]], "pointer_cog (viser.icon attribute)": [[33, "viser.Icon.POINTER_COG"]], "pointer_dollar (viser.icon attribute)": [[33, "viser.Icon.POINTER_DOLLAR"]], "pointer_down (viser.icon attribute)": [[33, "viser.Icon.POINTER_DOWN"]], "pointer_exclamation (viser.icon attribute)": [[33, "viser.Icon.POINTER_EXCLAMATION"]], "pointer_heart (viser.icon attribute)": [[33, "viser.Icon.POINTER_HEART"]], "pointer_minus (viser.icon attribute)": [[33, "viser.Icon.POINTER_MINUS"]], "pointer_off (viser.icon attribute)": [[33, "viser.Icon.POINTER_OFF"]], "pointer_pause (viser.icon attribute)": [[33, "viser.Icon.POINTER_PAUSE"]], "pointer_pin (viser.icon attribute)": [[33, "viser.Icon.POINTER_PIN"]], "pointer_plus (viser.icon attribute)": [[33, "viser.Icon.POINTER_PLUS"]], "pointer_question (viser.icon attribute)": [[33, "viser.Icon.POINTER_QUESTION"]], "pointer_search (viser.icon attribute)": [[33, "viser.Icon.POINTER_SEARCH"]], "pointer_share (viser.icon attribute)": [[33, "viser.Icon.POINTER_SHARE"]], "pointer_star (viser.icon attribute)": [[33, "viser.Icon.POINTER_STAR"]], "pointer_up (viser.icon attribute)": [[33, "viser.Icon.POINTER_UP"]], "pointer_x (viser.icon attribute)": [[33, "viser.Icon.POINTER_X"]], "point_filled (viser.icon attribute)": [[33, "viser.Icon.POINT_FILLED"]], "point_off (viser.icon attribute)": [[33, "viser.Icon.POINT_OFF"]], "pokeball (viser.icon attribute)": [[33, "viser.Icon.POKEBALL"]], "pokeball_off (viser.icon attribute)": [[33, "viser.Icon.POKEBALL_OFF"]], "poker_chip (viser.icon attribute)": [[33, "viser.Icon.POKER_CHIP"]], "polaroid (viser.icon attribute)": [[33, "viser.Icon.POLAROID"]], "polaroid_filled (viser.icon attribute)": [[33, "viser.Icon.POLAROID_FILLED"]], "polygon (viser.icon attribute)": [[33, "viser.Icon.POLYGON"]], "polygon_off (viser.icon attribute)": [[33, "viser.Icon.POLYGON_OFF"]], "poo (viser.icon attribute)": [[33, "viser.Icon.POO"]], "pool (viser.icon attribute)": [[33, "viser.Icon.POOL"]], "pool_off (viser.icon attribute)": [[33, "viser.Icon.POOL_OFF"]], "power (viser.icon attribute)": [[33, "viser.Icon.POWER"]], "pray (viser.icon attribute)": [[33, "viser.Icon.PRAY"]], "premium_rights (viser.icon attribute)": [[33, "viser.Icon.PREMIUM_RIGHTS"]], "prescription (viser.icon attribute)": [[33, "viser.Icon.PRESCRIPTION"]], "presentation (viser.icon attribute)": [[33, "viser.Icon.PRESENTATION"]], "presentation_analytics (viser.icon attribute)": [[33, "viser.Icon.PRESENTATION_ANALYTICS"]], "presentation_off (viser.icon attribute)": [[33, "viser.Icon.PRESENTATION_OFF"]], "printer (viser.icon attribute)": [[33, "viser.Icon.PRINTER"]], "printer_off (viser.icon attribute)": [[33, "viser.Icon.PRINTER_OFF"]], "prism (viser.icon attribute)": [[33, "viser.Icon.PRISM"]], "prism_off (viser.icon attribute)": [[33, "viser.Icon.PRISM_OFF"]], "prism_plus (viser.icon attribute)": [[33, "viser.Icon.PRISM_PLUS"]], "prison (viser.icon attribute)": [[33, "viser.Icon.PRISON"]], "progress (viser.icon attribute)": [[33, "viser.Icon.PROGRESS"]], "progress_alert (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_ALERT"]], "progress_bolt (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_BOLT"]], "progress_check (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_CHECK"]], "progress_down (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_DOWN"]], "progress_help (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_HELP"]], "progress_x (viser.icon attribute)": [[33, "viser.Icon.PROGRESS_X"]], "prompt (viser.icon attribute)": [[33, "viser.Icon.PROMPT"]], "propeller (viser.icon attribute)": [[33, "viser.Icon.PROPELLER"]], "propeller_off (viser.icon attribute)": [[33, "viser.Icon.PROPELLER_OFF"]], "pumpkin_scary (viser.icon attribute)": [[33, "viser.Icon.PUMPKIN_SCARY"]], "puzzle (viser.icon attribute)": [[33, "viser.Icon.PUZZLE"]], "puzzle_2 (viser.icon attribute)": [[33, "viser.Icon.PUZZLE_2"]], "puzzle_filled (viser.icon attribute)": [[33, "viser.Icon.PUZZLE_FILLED"]], "puzzle_off (viser.icon attribute)": [[33, "viser.Icon.PUZZLE_OFF"]], "pyramid (viser.icon attribute)": [[33, "viser.Icon.PYRAMID"]], "pyramid_off (viser.icon attribute)": [[33, "viser.Icon.PYRAMID_OFF"]], "pyramid_plus (viser.icon attribute)": [[33, "viser.Icon.PYRAMID_PLUS"]], "qrcode (viser.icon attribute)": [[33, "viser.Icon.QRCODE"]], "qrcode_off (viser.icon attribute)": [[33, "viser.Icon.QRCODE_OFF"]], "question_mark (viser.icon attribute)": [[33, "viser.Icon.QUESTION_MARK"]], "quote (viser.icon attribute)": [[33, "viser.Icon.QUOTE"]], "quote_off (viser.icon attribute)": [[33, "viser.Icon.QUOTE_OFF"]], "radar (viser.icon attribute)": [[33, "viser.Icon.RADAR"]], "radar_2 (viser.icon attribute)": [[33, "viser.Icon.RADAR_2"]], "radar_off (viser.icon attribute)": [[33, "viser.Icon.RADAR_OFF"]], "radio (viser.icon attribute)": [[33, "viser.Icon.RADIO"]], "radioactive (viser.icon attribute)": [[33, "viser.Icon.RADIOACTIVE"]], "radioactive_filled (viser.icon attribute)": [[33, "viser.Icon.RADIOACTIVE_FILLED"]], "radioactive_off (viser.icon attribute)": [[33, "viser.Icon.RADIOACTIVE_OFF"]], "radio_off (viser.icon attribute)": [[33, "viser.Icon.RADIO_OFF"]], "radius_bottom_left (viser.icon attribute)": [[33, "viser.Icon.RADIUS_BOTTOM_LEFT"]], "radius_bottom_right (viser.icon attribute)": [[33, "viser.Icon.RADIUS_BOTTOM_RIGHT"]], "radius_top_left (viser.icon attribute)": [[33, "viser.Icon.RADIUS_TOP_LEFT"]], "radius_top_right (viser.icon attribute)": [[33, "viser.Icon.RADIUS_TOP_RIGHT"]], "rainbow (viser.icon attribute)": [[33, "viser.Icon.RAINBOW"]], "rainbow_off (viser.icon attribute)": [[33, "viser.Icon.RAINBOW_OFF"]], "rating_12_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_12_PLUS"]], "rating_14_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_14_PLUS"]], "rating_16_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_16_PLUS"]], "rating_18_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_18_PLUS"]], "rating_21_plus (viser.icon attribute)": [[33, "viser.Icon.RATING_21_PLUS"]], "razor (viser.icon attribute)": [[33, "viser.Icon.RAZOR"]], "razor_electric (viser.icon attribute)": [[33, "viser.Icon.RAZOR_ELECTRIC"]], "receipt (viser.icon attribute)": [[33, "viser.Icon.RECEIPT"]], "receipt_2 (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_2"]], "receipt_off (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_OFF"]], "receipt_refund (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_REFUND"]], "receipt_tax (viser.icon attribute)": [[33, "viser.Icon.RECEIPT_TAX"]], "recharging (viser.icon attribute)": [[33, "viser.Icon.RECHARGING"]], "record_mail (viser.icon attribute)": [[33, "viser.Icon.RECORD_MAIL"]], "record_mail_off (viser.icon attribute)": [[33, "viser.Icon.RECORD_MAIL_OFF"]], "rectangle (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE"]], "rectangle_filled (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_FILLED"]], "rectangle_rounded_bottom (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_ROUNDED_BOTTOM"]], "rectangle_rounded_top (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_ROUNDED_TOP"]], "rectangle_vertical (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_VERTICAL"]], "rectangle_vertical_filled (viser.icon attribute)": [[33, "viser.Icon.RECTANGLE_VERTICAL_FILLED"]], "rectangular_prism (viser.icon attribute)": [[33, "viser.Icon.RECTANGULAR_PRISM"]], "rectangular_prism_off (viser.icon attribute)": [[33, "viser.Icon.RECTANGULAR_PRISM_OFF"]], "rectangular_prism_plus (viser.icon attribute)": [[33, "viser.Icon.RECTANGULAR_PRISM_PLUS"]], "recycle (viser.icon attribute)": [[33, "viser.Icon.RECYCLE"]], "recycle_off (viser.icon attribute)": [[33, "viser.Icon.RECYCLE_OFF"]], "refresh (viser.icon attribute)": [[33, "viser.Icon.REFRESH"]], "refresh_alert (viser.icon attribute)": [[33, "viser.Icon.REFRESH_ALERT"]], "refresh_dot (viser.icon attribute)": [[33, "viser.Icon.REFRESH_DOT"]], "refresh_off (viser.icon attribute)": [[33, "viser.Icon.REFRESH_OFF"]], "regex (viser.icon attribute)": [[33, "viser.Icon.REGEX"]], "regex_off (viser.icon attribute)": [[33, "viser.Icon.REGEX_OFF"]], "registered (viser.icon attribute)": [[33, "viser.Icon.REGISTERED"]], "relation_many_to_many (viser.icon attribute)": [[33, "viser.Icon.RELATION_MANY_TO_MANY"]], "relation_one_to_many (viser.icon attribute)": [[33, "viser.Icon.RELATION_ONE_TO_MANY"]], "relation_one_to_one (viser.icon attribute)": [[33, "viser.Icon.RELATION_ONE_TO_ONE"]], "reload (viser.icon attribute)": [[33, "viser.Icon.RELOAD"]], "repeat (viser.icon attribute)": [[33, "viser.Icon.REPEAT"]], "repeat_off (viser.icon attribute)": [[33, "viser.Icon.REPEAT_OFF"]], "repeat_once (viser.icon attribute)": [[33, "viser.Icon.REPEAT_ONCE"]], "replace (viser.icon attribute)": [[33, "viser.Icon.REPLACE"]], "replace_filled (viser.icon attribute)": [[33, "viser.Icon.REPLACE_FILLED"]], "replace_off (viser.icon attribute)": [[33, "viser.Icon.REPLACE_OFF"]], "report (viser.icon attribute)": [[33, "viser.Icon.REPORT"]], "report_analytics (viser.icon attribute)": [[33, "viser.Icon.REPORT_ANALYTICS"]], "report_medical (viser.icon attribute)": [[33, "viser.Icon.REPORT_MEDICAL"]], "report_money (viser.icon attribute)": [[33, "viser.Icon.REPORT_MONEY"]], "report_off (viser.icon attribute)": [[33, "viser.Icon.REPORT_OFF"]], "report_search (viser.icon attribute)": [[33, "viser.Icon.REPORT_SEARCH"]], "reserved_line (viser.icon attribute)": [[33, "viser.Icon.RESERVED_LINE"]], "resize (viser.icon attribute)": [[33, "viser.Icon.RESIZE"]], "restore (viser.icon attribute)": [[33, "viser.Icon.RESTORE"]], "rewind_backward_10 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_10"]], "rewind_backward_15 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_15"]], "rewind_backward_20 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_20"]], "rewind_backward_30 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_30"]], "rewind_backward_40 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_40"]], "rewind_backward_5 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_5"]], "rewind_backward_50 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_50"]], "rewind_backward_60 (viser.icon attribute)": [[33, "viser.Icon.REWIND_BACKWARD_60"]], "rewind_forward_10 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_10"]], "rewind_forward_15 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_15"]], "rewind_forward_20 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_20"]], "rewind_forward_30 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_30"]], "rewind_forward_40 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_40"]], "rewind_forward_5 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_5"]], "rewind_forward_50 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_50"]], "rewind_forward_60 (viser.icon attribute)": [[33, "viser.Icon.REWIND_FORWARD_60"]], "ribbon_health (viser.icon attribute)": [[33, "viser.Icon.RIBBON_HEALTH"]], "rings (viser.icon attribute)": [[33, "viser.Icon.RINGS"]], "ripple (viser.icon attribute)": [[33, "viser.Icon.RIPPLE"]], "ripple_off (viser.icon attribute)": [[33, "viser.Icon.RIPPLE_OFF"]], "road (viser.icon attribute)": [[33, "viser.Icon.ROAD"]], "road_off (viser.icon attribute)": [[33, "viser.Icon.ROAD_OFF"]], "road_sign (viser.icon attribute)": [[33, "viser.Icon.ROAD_SIGN"]], "robot (viser.icon attribute)": [[33, "viser.Icon.ROBOT"]], "robot_off (viser.icon attribute)": [[33, "viser.Icon.ROBOT_OFF"]], "rocket (viser.icon attribute)": [[33, "viser.Icon.ROCKET"]], "rocket_off (viser.icon attribute)": [[33, "viser.Icon.ROCKET_OFF"]], "rollercoaster (viser.icon attribute)": [[33, "viser.Icon.ROLLERCOASTER"]], "rollercoaster_off (viser.icon attribute)": [[33, "viser.Icon.ROLLERCOASTER_OFF"]], "roller_skating (viser.icon attribute)": [[33, "viser.Icon.ROLLER_SKATING"]], "rosette (viser.icon attribute)": [[33, "viser.Icon.ROSETTE"]], "rosette_filled (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_FILLED"]], "rosette_number_0 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_0"]], "rosette_number_1 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_1"]], "rosette_number_2 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_2"]], "rosette_number_3 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_3"]], "rosette_number_4 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_4"]], "rosette_number_5 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_5"]], "rosette_number_6 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_6"]], "rosette_number_7 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_7"]], "rosette_number_8 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_8"]], "rosette_number_9 (viser.icon attribute)": [[33, "viser.Icon.ROSETTE_NUMBER_9"]], "rotate (viser.icon attribute)": [[33, "viser.Icon.ROTATE"]], "rotate_2 (viser.icon attribute)": [[33, "viser.Icon.ROTATE_2"]], "rotate_360 (viser.icon attribute)": [[33, "viser.Icon.ROTATE_360"]], "rotate_clockwise (viser.icon attribute)": [[33, "viser.Icon.ROTATE_CLOCKWISE"]], "rotate_clockwise_2 (viser.icon attribute)": [[33, "viser.Icon.ROTATE_CLOCKWISE_2"]], "rotate_dot (viser.icon attribute)": [[33, "viser.Icon.ROTATE_DOT"]], "rotate_rectangle (viser.icon attribute)": [[33, "viser.Icon.ROTATE_RECTANGLE"]], "route (viser.icon attribute)": [[33, "viser.Icon.ROUTE"]], "router (viser.icon attribute)": [[33, "viser.Icon.ROUTER"]], "router_off (viser.icon attribute)": [[33, "viser.Icon.ROUTER_OFF"]], "route_2 (viser.icon attribute)": [[33, "viser.Icon.ROUTE_2"]], "route_off (viser.icon attribute)": [[33, "viser.Icon.ROUTE_OFF"]], "row_insert_bottom (viser.icon attribute)": [[33, "viser.Icon.ROW_INSERT_BOTTOM"]], "row_insert_top (viser.icon attribute)": [[33, "viser.Icon.ROW_INSERT_TOP"]], "row_remove (viser.icon attribute)": [[33, "viser.Icon.ROW_REMOVE"]], "rss (viser.icon attribute)": [[33, "viser.Icon.RSS"]], "rubber_stamp (viser.icon attribute)": [[33, "viser.Icon.RUBBER_STAMP"]], "rubber_stamp_off (viser.icon attribute)": [[33, "viser.Icon.RUBBER_STAMP_OFF"]], "ruler (viser.icon attribute)": [[33, "viser.Icon.RULER"]], "ruler_2 (viser.icon attribute)": [[33, "viser.Icon.RULER_2"]], "ruler_2_off (viser.icon attribute)": [[33, "viser.Icon.RULER_2_OFF"]], "ruler_3 (viser.icon attribute)": [[33, "viser.Icon.RULER_3"]], "ruler_measure (viser.icon attribute)": [[33, "viser.Icon.RULER_MEASURE"]], "ruler_off (viser.icon attribute)": [[33, "viser.Icon.RULER_OFF"]], "run (viser.icon attribute)": [[33, "viser.Icon.RUN"]], "sailboat (viser.icon attribute)": [[33, "viser.Icon.SAILBOAT"]], "sailboat_2 (viser.icon attribute)": [[33, "viser.Icon.SAILBOAT_2"]], "sailboat_off (viser.icon attribute)": [[33, "viser.Icon.SAILBOAT_OFF"]], "salad (viser.icon attribute)": [[33, "viser.Icon.SALAD"]], "salt (viser.icon attribute)": [[33, "viser.Icon.SALT"]], "satellite (viser.icon attribute)": [[33, "viser.Icon.SATELLITE"]], "satellite_off (viser.icon attribute)": [[33, "viser.Icon.SATELLITE_OFF"]], "sausage (viser.icon attribute)": [[33, "viser.Icon.SAUSAGE"]], "scale (viser.icon attribute)": [[33, "viser.Icon.SCALE"]], "scale_off (viser.icon attribute)": [[33, "viser.Icon.SCALE_OFF"]], "scale_outline (viser.icon attribute)": [[33, "viser.Icon.SCALE_OUTLINE"]], "scale_outline_off (viser.icon attribute)": [[33, "viser.Icon.SCALE_OUTLINE_OFF"]], "scan (viser.icon attribute)": [[33, "viser.Icon.SCAN"]], "scan_eye (viser.icon attribute)": [[33, "viser.Icon.SCAN_EYE"]], "schema (viser.icon attribute)": [[33, "viser.Icon.SCHEMA"]], "schema_off (viser.icon attribute)": [[33, "viser.Icon.SCHEMA_OFF"]], "school (viser.icon attribute)": [[33, "viser.Icon.SCHOOL"]], "school_bell (viser.icon attribute)": [[33, "viser.Icon.SCHOOL_BELL"]], "school_off (viser.icon attribute)": [[33, "viser.Icon.SCHOOL_OFF"]], "scissors (viser.icon attribute)": [[33, "viser.Icon.SCISSORS"]], "scissors_off (viser.icon attribute)": [[33, "viser.Icon.SCISSORS_OFF"]], "scooter (viser.icon attribute)": [[33, "viser.Icon.SCOOTER"]], "scooter_electric (viser.icon attribute)": [[33, "viser.Icon.SCOOTER_ELECTRIC"]], "scoreboard (viser.icon attribute)": [[33, "viser.Icon.SCOREBOARD"]], "screenshot (viser.icon attribute)": [[33, "viser.Icon.SCREENSHOT"]], "screen_share (viser.icon attribute)": [[33, "viser.Icon.SCREEN_SHARE"]], "screen_share_off (viser.icon attribute)": [[33, "viser.Icon.SCREEN_SHARE_OFF"]], "scribble (viser.icon attribute)": [[33, "viser.Icon.SCRIBBLE"]], "scribble_off (viser.icon attribute)": [[33, "viser.Icon.SCRIBBLE_OFF"]], "script (viser.icon attribute)": [[33, "viser.Icon.SCRIPT"]], "script_minus (viser.icon attribute)": [[33, "viser.Icon.SCRIPT_MINUS"]], "script_plus (viser.icon attribute)": [[33, "viser.Icon.SCRIPT_PLUS"]], "script_x (viser.icon attribute)": [[33, "viser.Icon.SCRIPT_X"]], "scuba_mask (viser.icon attribute)": [[33, "viser.Icon.SCUBA_MASK"]], "scuba_mask_off (viser.icon attribute)": [[33, "viser.Icon.SCUBA_MASK_OFF"]], "sdk (viser.icon attribute)": [[33, "viser.Icon.SDK"]], "search (viser.icon attribute)": [[33, "viser.Icon.SEARCH"]], "search_off (viser.icon attribute)": [[33, "viser.Icon.SEARCH_OFF"]], "section (viser.icon attribute)": [[33, "viser.Icon.SECTION"]], "section_sign (viser.icon attribute)": [[33, "viser.Icon.SECTION_SIGN"]], "seeding (viser.icon attribute)": [[33, "viser.Icon.SEEDING"]], "seeding_off (viser.icon attribute)": [[33, "viser.Icon.SEEDING_OFF"]], "select (viser.icon attribute)": [[33, "viser.Icon.SELECT"]], "selector (viser.icon attribute)": [[33, "viser.Icon.SELECTOR"]], "select_all (viser.icon attribute)": [[33, "viser.Icon.SELECT_ALL"]], "send (viser.icon attribute)": [[33, "viser.Icon.SEND"]], "send_off (viser.icon attribute)": [[33, "viser.Icon.SEND_OFF"]], "seo (viser.icon attribute)": [[33, "viser.Icon.SEO"]], "separator (viser.icon attribute)": [[33, "viser.Icon.SEPARATOR"]], "separator_horizontal (viser.icon attribute)": [[33, "viser.Icon.SEPARATOR_HORIZONTAL"]], "separator_vertical (viser.icon attribute)": [[33, "viser.Icon.SEPARATOR_VERTICAL"]], "server (viser.icon attribute)": [[33, "viser.Icon.SERVER"]], "server_2 (viser.icon attribute)": [[33, "viser.Icon.SERVER_2"]], "server_bolt (viser.icon attribute)": [[33, "viser.Icon.SERVER_BOLT"]], "server_cog (viser.icon attribute)": [[33, "viser.Icon.SERVER_COG"]], "server_off (viser.icon attribute)": [[33, "viser.Icon.SERVER_OFF"]], "servicemark (viser.icon attribute)": [[33, "viser.Icon.SERVICEMARK"]], "settings (viser.icon attribute)": [[33, "viser.Icon.SETTINGS"]], "settings_2 (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_2"]], "settings_automation (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_AUTOMATION"]], "settings_bolt (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_BOLT"]], "settings_cancel (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_CANCEL"]], "settings_check (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_CHECK"]], "settings_code (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_CODE"]], "settings_cog (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_COG"]], "settings_dollar (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_DOLLAR"]], "settings_down (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_DOWN"]], "settings_exclamation (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_EXCLAMATION"]], "settings_filled (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_FILLED"]], "settings_heart (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_HEART"]], "settings_minus (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_MINUS"]], "settings_off (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_OFF"]], "settings_pause (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_PAUSE"]], "settings_pin (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_PIN"]], "settings_plus (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_PLUS"]], "settings_question (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_QUESTION"]], "settings_search (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_SEARCH"]], "settings_share (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_SHARE"]], "settings_star (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_STAR"]], "settings_up (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_UP"]], "settings_x (viser.icon attribute)": [[33, "viser.Icon.SETTINGS_X"]], "shadow (viser.icon attribute)": [[33, "viser.Icon.SHADOW"]], "shadow_off (viser.icon attribute)": [[33, "viser.Icon.SHADOW_OFF"]], "shape (viser.icon attribute)": [[33, "viser.Icon.SHAPE"]], "shape_2 (viser.icon attribute)": [[33, "viser.Icon.SHAPE_2"]], "shape_3 (viser.icon attribute)": [[33, "viser.Icon.SHAPE_3"]], "shape_off (viser.icon attribute)": [[33, "viser.Icon.SHAPE_OFF"]], "share (viser.icon attribute)": [[33, "viser.Icon.SHARE"]], "share_2 (viser.icon attribute)": [[33, "viser.Icon.SHARE_2"]], "share_3 (viser.icon attribute)": [[33, "viser.Icon.SHARE_3"]], "share_off (viser.icon attribute)": [[33, "viser.Icon.SHARE_OFF"]], "shield (viser.icon attribute)": [[33, "viser.Icon.SHIELD"]], "shield_bolt (viser.icon attribute)": [[33, "viser.Icon.SHIELD_BOLT"]], "shield_cancel (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CANCEL"]], "shield_check (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECK"]], "shield_checkered (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECKERED"]], "shield_checkered_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECKERED_FILLED"]], "shield_check_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHECK_FILLED"]], "shield_chevron (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CHEVRON"]], "shield_code (viser.icon attribute)": [[33, "viser.Icon.SHIELD_CODE"]], "shield_cog (viser.icon attribute)": [[33, "viser.Icon.SHIELD_COG"]], "shield_dollar (viser.icon attribute)": [[33, "viser.Icon.SHIELD_DOLLAR"]], "shield_down (viser.icon attribute)": [[33, "viser.Icon.SHIELD_DOWN"]], "shield_exclamation (viser.icon attribute)": [[33, "viser.Icon.SHIELD_EXCLAMATION"]], "shield_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_FILLED"]], "shield_half (viser.icon attribute)": [[33, "viser.Icon.SHIELD_HALF"]], "shield_half_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_HALF_FILLED"]], "shield_heart (viser.icon attribute)": [[33, "viser.Icon.SHIELD_HEART"]], "shield_lock (viser.icon attribute)": [[33, "viser.Icon.SHIELD_LOCK"]], "shield_lock_filled (viser.icon attribute)": [[33, "viser.Icon.SHIELD_LOCK_FILLED"]], "shield_minus (viser.icon attribute)": [[33, "viser.Icon.SHIELD_MINUS"]], "shield_off (viser.icon attribute)": [[33, "viser.Icon.SHIELD_OFF"]], "shield_pause (viser.icon attribute)": [[33, "viser.Icon.SHIELD_PAUSE"]], "shield_pin (viser.icon attribute)": [[33, "viser.Icon.SHIELD_PIN"]], "shield_plus (viser.icon attribute)": [[33, "viser.Icon.SHIELD_PLUS"]], "shield_question (viser.icon attribute)": [[33, "viser.Icon.SHIELD_QUESTION"]], "shield_search (viser.icon attribute)": [[33, "viser.Icon.SHIELD_SEARCH"]], "shield_share (viser.icon attribute)": [[33, "viser.Icon.SHIELD_SHARE"]], "shield_star (viser.icon attribute)": [[33, "viser.Icon.SHIELD_STAR"]], "shield_up (viser.icon attribute)": [[33, "viser.Icon.SHIELD_UP"]], "shield_x (viser.icon attribute)": [[33, "viser.Icon.SHIELD_X"]], "ship (viser.icon attribute)": [[33, "viser.Icon.SHIP"]], "ship_off (viser.icon attribute)": [[33, "viser.Icon.SHIP_OFF"]], "shirt (viser.icon attribute)": [[33, "viser.Icon.SHIRT"]], "shirt_filled (viser.icon attribute)": [[33, "viser.Icon.SHIRT_FILLED"]], "shirt_off (viser.icon attribute)": [[33, "viser.Icon.SHIRT_OFF"]], "shirt_sport (viser.icon attribute)": [[33, "viser.Icon.SHIRT_SPORT"]], "shi_jumping (viser.icon attribute)": [[33, "viser.Icon.SHI_JUMPING"]], "shoe (viser.icon attribute)": [[33, "viser.Icon.SHOE"]], "shoe_off (viser.icon attribute)": [[33, "viser.Icon.SHOE_OFF"]], "shopping_bag (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_BAG"]], "shopping_cart (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART"]], "shopping_cart_discount (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_DISCOUNT"]], "shopping_cart_off (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_OFF"]], "shopping_cart_plus (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_PLUS"]], "shopping_cart_x (viser.icon attribute)": [[33, "viser.Icon.SHOPPING_CART_X"]], "shovel (viser.icon attribute)": [[33, "viser.Icon.SHOVEL"]], "shredder (viser.icon attribute)": [[33, "viser.Icon.SHREDDER"]], "signal_2g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_2G"]], "signal_3g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_3G"]], "signal_4g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_4G"]], "signal_4g_plus (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_4G_PLUS"]], "signal_5g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_5G"]], "signal_6g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_6G"]], "signal_e (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_E"]], "signal_g (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_G"]], "signal_h (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_H"]], "signal_h_plus (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_H_PLUS"]], "signal_lte (viser.icon attribute)": [[33, "viser.Icon.SIGNAL_LTE"]], "signature (viser.icon attribute)": [[33, "viser.Icon.SIGNATURE"]], "signature_off (viser.icon attribute)": [[33, "viser.Icon.SIGNATURE_OFF"]], "sign_left (viser.icon attribute)": [[33, "viser.Icon.SIGN_LEFT"]], "sign_left_filled (viser.icon attribute)": [[33, "viser.Icon.SIGN_LEFT_FILLED"]], "sign_right (viser.icon attribute)": [[33, "viser.Icon.SIGN_RIGHT"]], "sign_right_filled (viser.icon attribute)": [[33, "viser.Icon.SIGN_RIGHT_FILLED"]], "sitemap (viser.icon attribute)": [[33, "viser.Icon.SITEMAP"]], "sitemap_off (viser.icon attribute)": [[33, "viser.Icon.SITEMAP_OFF"]], "skateboard (viser.icon attribute)": [[33, "viser.Icon.SKATEBOARD"]], "skateboarding (viser.icon attribute)": [[33, "viser.Icon.SKATEBOARDING"]], "skateboard_off (viser.icon attribute)": [[33, "viser.Icon.SKATEBOARD_OFF"]], "skull (viser.icon attribute)": [[33, "viser.Icon.SKULL"]], "slash (viser.icon attribute)": [[33, "viser.Icon.SLASH"]], "slashes (viser.icon attribute)": [[33, "viser.Icon.SLASHES"]], "sleigh (viser.icon attribute)": [[33, "viser.Icon.SLEIGH"]], "slice (viser.icon attribute)": [[33, "viser.Icon.SLICE"]], "slideshow (viser.icon attribute)": [[33, "viser.Icon.SLIDESHOW"]], "smart_home (viser.icon attribute)": [[33, "viser.Icon.SMART_HOME"]], "smart_home_off (viser.icon attribute)": [[33, "viser.Icon.SMART_HOME_OFF"]], "smoking (viser.icon attribute)": [[33, "viser.Icon.SMOKING"]], "smoking_no (viser.icon attribute)": [[33, "viser.Icon.SMOKING_NO"]], "snowflake (viser.icon attribute)": [[33, "viser.Icon.SNOWFLAKE"]], "snowflake_off (viser.icon attribute)": [[33, "viser.Icon.SNOWFLAKE_OFF"]], "snowman (viser.icon attribute)": [[33, "viser.Icon.SNOWMAN"]], "soccer_field (viser.icon attribute)": [[33, "viser.Icon.SOCCER_FIELD"]], "social (viser.icon attribute)": [[33, "viser.Icon.SOCIAL"]], "social_off (viser.icon attribute)": [[33, "viser.Icon.SOCIAL_OFF"]], "sock (viser.icon attribute)": [[33, "viser.Icon.SOCK"]], "sofa (viser.icon attribute)": [[33, "viser.Icon.SOFA"]], "sofa_off (viser.icon attribute)": [[33, "viser.Icon.SOFA_OFF"]], "solar_panel (viser.icon attribute)": [[33, "viser.Icon.SOLAR_PANEL"]], "solar_panel_2 (viser.icon attribute)": [[33, "viser.Icon.SOLAR_PANEL_2"]], "sort_0_9 (viser.icon attribute)": [[33, "viser.Icon.SORT_0_9"]], "sort_9_0 (viser.icon attribute)": [[33, "viser.Icon.SORT_9_0"]], "sort_ascending (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING"]], "sort_ascending_2 (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING_2"]], "sort_ascending_letters (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING_LETTERS"]], "sort_ascending_numbers (viser.icon attribute)": [[33, "viser.Icon.SORT_ASCENDING_NUMBERS"]], "sort_a_z (viser.icon attribute)": [[33, "viser.Icon.SORT_A_Z"]], "sort_descending (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING"]], "sort_descending_2 (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING_2"]], "sort_descending_letters (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING_LETTERS"]], "sort_descending_numbers (viser.icon attribute)": [[33, "viser.Icon.SORT_DESCENDING_NUMBERS"]], "sort_z_a (viser.icon attribute)": [[33, "viser.Icon.SORT_Z_A"]], "sos (viser.icon attribute)": [[33, "viser.Icon.SOS"]], "soup (viser.icon attribute)": [[33, "viser.Icon.SOUP"]], "soup_off (viser.icon attribute)": [[33, "viser.Icon.SOUP_OFF"]], "source_code (viser.icon attribute)": [[33, "viser.Icon.SOURCE_CODE"]], "space (viser.icon attribute)": [[33, "viser.Icon.SPACE"]], "space_off (viser.icon attribute)": [[33, "viser.Icon.SPACE_OFF"]], "spacing_horizontal (viser.icon attribute)": [[33, "viser.Icon.SPACING_HORIZONTAL"]], "spacing_vertical (viser.icon attribute)": [[33, "viser.Icon.SPACING_VERTICAL"]], "spade (viser.icon attribute)": [[33, "viser.Icon.SPADE"]], "spade_filled (viser.icon attribute)": [[33, "viser.Icon.SPADE_FILLED"]], "sparkles (viser.icon attribute)": [[33, "viser.Icon.SPARKLES"]], "speakerphone (viser.icon attribute)": [[33, "viser.Icon.SPEAKERPHONE"]], "speedboat (viser.icon attribute)": [[33, "viser.Icon.SPEEDBOAT"]], "sphere (viser.icon attribute)": [[33, "viser.Icon.SPHERE"]], "sphere_off (viser.icon attribute)": [[33, "viser.Icon.SPHERE_OFF"]], "sphere_plus (viser.icon attribute)": [[33, "viser.Icon.SPHERE_PLUS"]], "spider (viser.icon attribute)": [[33, "viser.Icon.SPIDER"]], "spiral (viser.icon attribute)": [[33, "viser.Icon.SPIRAL"]], "spiral_off (viser.icon attribute)": [[33, "viser.Icon.SPIRAL_OFF"]], "sport_billard (viser.icon attribute)": [[33, "viser.Icon.SPORT_BILLARD"]], "spray (viser.icon attribute)": [[33, "viser.Icon.SPRAY"]], "spy (viser.icon attribute)": [[33, "viser.Icon.SPY"]], "spy_off (viser.icon attribute)": [[33, "viser.Icon.SPY_OFF"]], "sql (viser.icon attribute)": [[33, "viser.Icon.SQL"]], "square (viser.icon attribute)": [[33, "viser.Icon.SQUARE"]], "squares_diagonal (viser.icon attribute)": [[33, "viser.Icon.SQUARES_DIAGONAL"]], "squares_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARES_FILLED"]], "square_0_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_0_FILLED"]], "square_1_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_1_FILLED"]], "square_2_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_2_FILLED"]], "square_3_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_3_FILLED"]], "square_4_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_4_FILLED"]], "square_5_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_5_FILLED"]], "square_6_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_6_FILLED"]], "square_7_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_7_FILLED"]], "square_8_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_8_FILLED"]], "square_9_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_9_FILLED"]], "square_arrow_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_DOWN"]], "square_arrow_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_LEFT"]], "square_arrow_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_RIGHT"]], "square_arrow_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ARROW_UP"]], "square_asterisk (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ASTERISK"]], "square_check (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHECK"]], "square_check_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHECK_FILLED"]], "square_chevrons_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_DOWN"]], "square_chevrons_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_LEFT"]], "square_chevrons_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_RIGHT"]], "square_chevrons_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRONS_UP"]], "square_chevron_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_DOWN"]], "square_chevron_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_LEFT"]], "square_chevron_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_RIGHT"]], "square_chevron_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_CHEVRON_UP"]], "square_dot (viser.icon attribute)": [[33, "viser.Icon.SQUARE_DOT"]], "square_f0 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F0"]], "square_f0_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F0_FILLED"]], "square_f1 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F1"]], "square_f1_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F1_FILLED"]], "square_f2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F2"]], "square_f2_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F2_FILLED"]], "square_f3 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F3"]], "square_f3_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F3_FILLED"]], "square_f4 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F4"]], "square_f4_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F4_FILLED"]], "square_f5 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F5"]], "square_f5_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F5_FILLED"]], "square_f6 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F6"]], "square_f6_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F6_FILLED"]], "square_f7 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F7"]], "square_f7_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F7_FILLED"]], "square_f8 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F8"]], "square_f8_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F8_FILLED"]], "square_f9 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F9"]], "square_f9_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_F9_FILLED"]], "square_forbid (viser.icon attribute)": [[33, "viser.Icon.SQUARE_FORBID"]], "square_forbid_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_FORBID_2"]], "square_half (viser.icon attribute)": [[33, "viser.Icon.SQUARE_HALF"]], "square_key (viser.icon attribute)": [[33, "viser.Icon.SQUARE_KEY"]], "square_letter_a (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_A"]], "square_letter_b (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_B"]], "square_letter_c (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_C"]], "square_letter_d (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_D"]], "square_letter_e (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_E"]], "square_letter_f (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_F"]], "square_letter_g (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_G"]], "square_letter_h (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_H"]], "square_letter_i (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_I"]], "square_letter_j (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_J"]], "square_letter_k (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_K"]], "square_letter_l (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_L"]], "square_letter_m (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_M"]], "square_letter_n (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_N"]], "square_letter_o (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_O"]], "square_letter_p (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_P"]], "square_letter_q (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_Q"]], "square_letter_r (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_R"]], "square_letter_s (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_S"]], "square_letter_t (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_T"]], "square_letter_u (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_U"]], "square_letter_v (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_V"]], "square_letter_w (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_W"]], "square_letter_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_X"]], "square_letter_y (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_Y"]], "square_letter_z (viser.icon attribute)": [[33, "viser.Icon.SQUARE_LETTER_Z"]], "square_minus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_MINUS"]], "square_number_0 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_0"]], "square_number_1 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_1"]], "square_number_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_2"]], "square_number_3 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_3"]], "square_number_4 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_4"]], "square_number_5 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_5"]], "square_number_6 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_6"]], "square_number_7 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_7"]], "square_number_8 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_8"]], "square_number_9 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_NUMBER_9"]], "square_off (viser.icon attribute)": [[33, "viser.Icon.SQUARE_OFF"]], "square_plus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_PLUS"]], "square_root (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROOT"]], "square_root_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROOT_2"]], "square_rotated (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED"]], "square_rotated_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_FILLED"]], "square_rotated_forbid (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_FORBID"]], "square_rotated_forbid_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_FORBID_2"]], "square_rotated_off (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROTATED_OFF"]], "square_rounded (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED"]], "square_rounded_arrow_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN"]], "square_rounded_arrow_down_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_DOWN_FILLED"]], "square_rounded_arrow_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT"]], "square_rounded_arrow_left_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_LEFT_FILLED"]], "square_rounded_arrow_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT"]], "square_rounded_arrow_right_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_RIGHT_FILLED"]], "square_rounded_arrow_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_UP"]], "square_rounded_arrow_up_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_ARROW_UP_FILLED"]], "square_rounded_check (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHECK"]], "square_rounded_check_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHECK_FILLED"]], "square_rounded_chevrons_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN"]], "square_rounded_chevrons_down_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_DOWN_FILLED"]], "square_rounded_chevrons_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT"]], "square_rounded_chevrons_left_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_LEFT_FILLED"]], "square_rounded_chevrons_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT"]], "square_rounded_chevrons_right_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_RIGHT_FILLED"]], "square_rounded_chevrons_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP"]], "square_rounded_chevrons_up_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRONS_UP_FILLED"]], "square_rounded_chevron_down (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN"]], "square_rounded_chevron_down_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_DOWN_FILLED"]], "square_rounded_chevron_left (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT"]], "square_rounded_chevron_left_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_LEFT_FILLED"]], "square_rounded_chevron_right (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT"]], "square_rounded_chevron_right_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_RIGHT_FILLED"]], "square_rounded_chevron_up (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP"]], "square_rounded_chevron_up_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_CHEVRON_UP_FILLED"]], "square_rounded_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_FILLED"]], "square_rounded_letter_a (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_A"]], "square_rounded_letter_b (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_B"]], "square_rounded_letter_c (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_C"]], "square_rounded_letter_d (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_D"]], "square_rounded_letter_e (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_E"]], "square_rounded_letter_f (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_F"]], "square_rounded_letter_g (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_G"]], "square_rounded_letter_h (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_H"]], "square_rounded_letter_i (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_I"]], "square_rounded_letter_j (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_J"]], "square_rounded_letter_k (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_K"]], "square_rounded_letter_l (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_L"]], "square_rounded_letter_m (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_M"]], "square_rounded_letter_n (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_N"]], "square_rounded_letter_o (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_O"]], "square_rounded_letter_p (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_P"]], "square_rounded_letter_q (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_Q"]], "square_rounded_letter_r (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_R"]], "square_rounded_letter_s (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_S"]], "square_rounded_letter_t (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_T"]], "square_rounded_letter_u (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_U"]], "square_rounded_letter_v (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_V"]], "square_rounded_letter_w (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_W"]], "square_rounded_letter_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_X"]], "square_rounded_letter_y (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_Y"]], "square_rounded_letter_z (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_LETTER_Z"]], "square_rounded_minus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_MINUS"]], "square_rounded_number_0 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_0"]], "square_rounded_number_0_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_0_FILLED"]], "square_rounded_number_1 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_1"]], "square_rounded_number_1_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_1_FILLED"]], "square_rounded_number_2 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_2"]], "square_rounded_number_2_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_2_FILLED"]], "square_rounded_number_3 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_3"]], "square_rounded_number_3_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_3_FILLED"]], "square_rounded_number_4 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_4"]], "square_rounded_number_4_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_4_FILLED"]], "square_rounded_number_5 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_5"]], "square_rounded_number_5_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_5_FILLED"]], "square_rounded_number_6 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_6"]], "square_rounded_number_6_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_6_FILLED"]], "square_rounded_number_7 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_7"]], "square_rounded_number_7_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_7_FILLED"]], "square_rounded_number_8 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_8"]], "square_rounded_number_8_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_8_FILLED"]], "square_rounded_number_9 (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_9"]], "square_rounded_number_9_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_NUMBER_9_FILLED"]], "square_rounded_plus (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_PLUS"]], "square_rounded_plus_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_PLUS_FILLED"]], "square_rounded_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_X"]], "square_rounded_x_filled (viser.icon attribute)": [[33, "viser.Icon.SQUARE_ROUNDED_X_FILLED"]], "square_toggle (viser.icon attribute)": [[33, "viser.Icon.SQUARE_TOGGLE"]], "square_toggle_horizontal (viser.icon attribute)": [[33, "viser.Icon.SQUARE_TOGGLE_HORIZONTAL"]], "square_x (viser.icon attribute)": [[33, "viser.Icon.SQUARE_X"]], "stack (viser.icon attribute)": [[33, "viser.Icon.STACK"]], "stack_2 (viser.icon attribute)": [[33, "viser.Icon.STACK_2"]], "stack_3 (viser.icon attribute)": [[33, "viser.Icon.STACK_3"]], "stack_pop (viser.icon attribute)": [[33, "viser.Icon.STACK_POP"]], "stack_push (viser.icon attribute)": [[33, "viser.Icon.STACK_PUSH"]], "stairs (viser.icon attribute)": [[33, "viser.Icon.STAIRS"]], "stairs_down (viser.icon attribute)": [[33, "viser.Icon.STAIRS_DOWN"]], "stairs_up (viser.icon attribute)": [[33, "viser.Icon.STAIRS_UP"]], "star (viser.icon attribute)": [[33, "viser.Icon.STAR"]], "stars (viser.icon attribute)": [[33, "viser.Icon.STARS"]], "stars_filled (viser.icon attribute)": [[33, "viser.Icon.STARS_FILLED"]], "stars_off (viser.icon attribute)": [[33, "viser.Icon.STARS_OFF"]], "star_filled (viser.icon attribute)": [[33, "viser.Icon.STAR_FILLED"]], "star_half (viser.icon attribute)": [[33, "viser.Icon.STAR_HALF"]], "star_half_filled (viser.icon attribute)": [[33, "viser.Icon.STAR_HALF_FILLED"]], "star_off (viser.icon attribute)": [[33, "viser.Icon.STAR_OFF"]], "status_change (viser.icon attribute)": [[33, "viser.Icon.STATUS_CHANGE"]], "steam (viser.icon attribute)": [[33, "viser.Icon.STEAM"]], "steering_wheel (viser.icon attribute)": [[33, "viser.Icon.STEERING_WHEEL"]], "steering_wheel_off (viser.icon attribute)": [[33, "viser.Icon.STEERING_WHEEL_OFF"]], "step_into (viser.icon attribute)": [[33, "viser.Icon.STEP_INTO"]], "step_out (viser.icon attribute)": [[33, "viser.Icon.STEP_OUT"]], "stereo_glasses (viser.icon attribute)": [[33, "viser.Icon.STEREO_GLASSES"]], "stethoscope (viser.icon attribute)": [[33, "viser.Icon.STETHOSCOPE"]], "stethoscope_off (viser.icon attribute)": [[33, "viser.Icon.STETHOSCOPE_OFF"]], "sticker (viser.icon attribute)": [[33, "viser.Icon.STICKER"]], "storm (viser.icon attribute)": [[33, "viser.Icon.STORM"]], "storm_off (viser.icon attribute)": [[33, "viser.Icon.STORM_OFF"]], "stretching (viser.icon attribute)": [[33, "viser.Icon.STRETCHING"]], "stretching_2 (viser.icon attribute)": [[33, "viser.Icon.STRETCHING_2"]], "strikethrough (viser.icon attribute)": [[33, "viser.Icon.STRIKETHROUGH"]], "submarine (viser.icon attribute)": [[33, "viser.Icon.SUBMARINE"]], "subscript (viser.icon attribute)": [[33, "viser.Icon.SUBSCRIPT"]], "subtask (viser.icon attribute)": [[33, "viser.Icon.SUBTASK"]], "sum (viser.icon attribute)": [[33, "viser.Icon.SUM"]], "sum_off (viser.icon attribute)": [[33, "viser.Icon.SUM_OFF"]], "sun (viser.icon attribute)": [[33, "viser.Icon.SUN"]], "sunglasses (viser.icon attribute)": [[33, "viser.Icon.SUNGLASSES"]], "sunrise (viser.icon attribute)": [[33, "viser.Icon.SUNRISE"]], "sunset (viser.icon attribute)": [[33, "viser.Icon.SUNSET"]], "sunset_2 (viser.icon attribute)": [[33, "viser.Icon.SUNSET_2"]], "sun_filled (viser.icon attribute)": [[33, "viser.Icon.SUN_FILLED"]], "sun_high (viser.icon attribute)": [[33, "viser.Icon.SUN_HIGH"]], "sun_low (viser.icon attribute)": [[33, "viser.Icon.SUN_LOW"]], "sun_moon (viser.icon attribute)": [[33, "viser.Icon.SUN_MOON"]], "sun_off (viser.icon attribute)": [[33, "viser.Icon.SUN_OFF"]], "sun_wind (viser.icon attribute)": [[33, "viser.Icon.SUN_WIND"]], "superscript (viser.icon attribute)": [[33, "viser.Icon.SUPERSCRIPT"]], "svg (viser.icon attribute)": [[33, "viser.Icon.SVG"]], "swimming (viser.icon attribute)": [[33, "viser.Icon.SWIMMING"]], "swipe (viser.icon attribute)": [[33, "viser.Icon.SWIPE"]], "switch (viser.icon attribute)": [[33, "viser.Icon.SWITCH"]], "switch_2 (viser.icon attribute)": [[33, "viser.Icon.SWITCH_2"]], "switch_3 (viser.icon attribute)": [[33, "viser.Icon.SWITCH_3"]], "switch_horizontal (viser.icon attribute)": [[33, "viser.Icon.SWITCH_HORIZONTAL"]], "switch_vertical (viser.icon attribute)": [[33, "viser.Icon.SWITCH_VERTICAL"]], "sword (viser.icon attribute)": [[33, "viser.Icon.SWORD"]], "swords (viser.icon attribute)": [[33, "viser.Icon.SWORDS"]], "sword_off (viser.icon attribute)": [[33, "viser.Icon.SWORD_OFF"]], "s_turn_down (viser.icon attribute)": [[33, "viser.Icon.S_TURN_DOWN"]], "s_turn_left (viser.icon attribute)": [[33, "viser.Icon.S_TURN_LEFT"]], "s_turn_right (viser.icon attribute)": [[33, "viser.Icon.S_TURN_RIGHT"]], "s_turn_up (viser.icon attribute)": [[33, "viser.Icon.S_TURN_UP"]], "table (viser.icon attribute)": [[33, "viser.Icon.TABLE"]], "table_alias (viser.icon attribute)": [[33, "viser.Icon.TABLE_ALIAS"]], "table_column (viser.icon attribute)": [[33, "viser.Icon.TABLE_COLUMN"]], "table_down (viser.icon attribute)": [[33, "viser.Icon.TABLE_DOWN"]], "table_export (viser.icon attribute)": [[33, "viser.Icon.TABLE_EXPORT"]], "table_filled (viser.icon attribute)": [[33, "viser.Icon.TABLE_FILLED"]], "table_heart (viser.icon attribute)": [[33, "viser.Icon.TABLE_HEART"]], "table_import (viser.icon attribute)": [[33, "viser.Icon.TABLE_IMPORT"]], "table_minus (viser.icon attribute)": [[33, "viser.Icon.TABLE_MINUS"]], "table_off (viser.icon attribute)": [[33, "viser.Icon.TABLE_OFF"]], "table_options (viser.icon attribute)": [[33, "viser.Icon.TABLE_OPTIONS"]], "table_plus (viser.icon attribute)": [[33, "viser.Icon.TABLE_PLUS"]], "table_row (viser.icon attribute)": [[33, "viser.Icon.TABLE_ROW"]], "table_share (viser.icon attribute)": [[33, "viser.Icon.TABLE_SHARE"]], "table_shortcut (viser.icon attribute)": [[33, "viser.Icon.TABLE_SHORTCUT"]], "tag (viser.icon attribute)": [[33, "viser.Icon.TAG"]], "tags (viser.icon attribute)": [[33, "viser.Icon.TAGS"]], "tags_off (viser.icon attribute)": [[33, "viser.Icon.TAGS_OFF"]], "tag_off (viser.icon attribute)": [[33, "viser.Icon.TAG_OFF"]], "tallymarks (viser.icon attribute)": [[33, "viser.Icon.TALLYMARKS"]], "tallymark_1 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_1"]], "tallymark_2 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_2"]], "tallymark_3 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_3"]], "tallymark_4 (viser.icon attribute)": [[33, "viser.Icon.TALLYMARK_4"]], "tank (viser.icon attribute)": [[33, "viser.Icon.TANK"]], "target (viser.icon attribute)": [[33, "viser.Icon.TARGET"]], "target_arrow (viser.icon attribute)": [[33, "viser.Icon.TARGET_ARROW"]], "target_off (viser.icon attribute)": [[33, "viser.Icon.TARGET_OFF"]], "teapot (viser.icon attribute)": [[33, "viser.Icon.TEAPOT"]], "telescope (viser.icon attribute)": [[33, "viser.Icon.TELESCOPE"]], "telescope_off (viser.icon attribute)": [[33, "viser.Icon.TELESCOPE_OFF"]], "temperature (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE"]], "temperature_celsius (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_CELSIUS"]], "temperature_fahrenheit (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_FAHRENHEIT"]], "temperature_minus (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_MINUS"]], "temperature_off (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_OFF"]], "temperature_plus (viser.icon attribute)": [[33, "viser.Icon.TEMPERATURE_PLUS"]], "template (viser.icon attribute)": [[33, "viser.Icon.TEMPLATE"]], "template_off (viser.icon attribute)": [[33, "viser.Icon.TEMPLATE_OFF"]], "tent (viser.icon attribute)": [[33, "viser.Icon.TENT"]], "tent_off (viser.icon attribute)": [[33, "viser.Icon.TENT_OFF"]], "terminal (viser.icon attribute)": [[33, "viser.Icon.TERMINAL"]], "terminal_2 (viser.icon attribute)": [[33, "viser.Icon.TERMINAL_2"]], "test_pipe (viser.icon attribute)": [[33, "viser.Icon.TEST_PIPE"]], "test_pipe_2 (viser.icon attribute)": [[33, "viser.Icon.TEST_PIPE_2"]], "test_pipe_off (viser.icon attribute)": [[33, "viser.Icon.TEST_PIPE_OFF"]], "tex (viser.icon attribute)": [[33, "viser.Icon.TEX"]], "texture (viser.icon attribute)": [[33, "viser.Icon.TEXTURE"]], "text_caption (viser.icon attribute)": [[33, "viser.Icon.TEXT_CAPTION"]], "text_color (viser.icon attribute)": [[33, "viser.Icon.TEXT_COLOR"]], "text_decrease (viser.icon attribute)": [[33, "viser.Icon.TEXT_DECREASE"]], "text_direction_ltr (viser.icon attribute)": [[33, "viser.Icon.TEXT_DIRECTION_LTR"]], "text_direction_rtl (viser.icon attribute)": [[33, "viser.Icon.TEXT_DIRECTION_RTL"]], "text_increase (viser.icon attribute)": [[33, "viser.Icon.TEXT_INCREASE"]], "text_orientation (viser.icon attribute)": [[33, "viser.Icon.TEXT_ORIENTATION"]], "text_plus (viser.icon attribute)": [[33, "viser.Icon.TEXT_PLUS"]], "text_recognition (viser.icon attribute)": [[33, "viser.Icon.TEXT_RECOGNITION"]], "text_resize (viser.icon attribute)": [[33, "viser.Icon.TEXT_RESIZE"]], "text_size (viser.icon attribute)": [[33, "viser.Icon.TEXT_SIZE"]], "text_spellcheck (viser.icon attribute)": [[33, "viser.Icon.TEXT_SPELLCHECK"]], "text_wrap (viser.icon attribute)": [[33, "viser.Icon.TEXT_WRAP"]], "text_wrap_disabled (viser.icon attribute)": [[33, "viser.Icon.TEXT_WRAP_DISABLED"]], "theater (viser.icon attribute)": [[33, "viser.Icon.THEATER"]], "thermometer (viser.icon attribute)": [[33, "viser.Icon.THERMOMETER"]], "thumb_down (viser.icon attribute)": [[33, "viser.Icon.THUMB_DOWN"]], "thumb_down_filled (viser.icon attribute)": [[33, "viser.Icon.THUMB_DOWN_FILLED"]], "thumb_down_off (viser.icon attribute)": [[33, "viser.Icon.THUMB_DOWN_OFF"]], "thumb_up (viser.icon attribute)": [[33, "viser.Icon.THUMB_UP"]], "thumb_up_filled (viser.icon attribute)": [[33, "viser.Icon.THUMB_UP_FILLED"]], "thumb_up_off (viser.icon attribute)": [[33, "viser.Icon.THUMB_UP_OFF"]], "ticket (viser.icon attribute)": [[33, "viser.Icon.TICKET"]], "ticket_off (viser.icon attribute)": [[33, "viser.Icon.TICKET_OFF"]], "tic_tac (viser.icon attribute)": [[33, "viser.Icon.TIC_TAC"]], "tie (viser.icon attribute)": [[33, "viser.Icon.TIE"]], "tilde (viser.icon attribute)": [[33, "viser.Icon.TILDE"]], "tilt_shift (viser.icon attribute)": [[33, "viser.Icon.TILT_SHIFT"]], "tilt_shift_off (viser.icon attribute)": [[33, "viser.Icon.TILT_SHIFT_OFF"]], "timeline (viser.icon attribute)": [[33, "viser.Icon.TIMELINE"]], "timeline_event (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT"]], "timeline_event_exclamation (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_EXCLAMATION"]], "timeline_event_minus (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_MINUS"]], "timeline_event_plus (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_PLUS"]], "timeline_event_text (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_TEXT"]], "timeline_event_x (viser.icon attribute)": [[33, "viser.Icon.TIMELINE_EVENT_X"]], "time_duration_0 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_0"]], "time_duration_10 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_10"]], "time_duration_15 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_15"]], "time_duration_30 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_30"]], "time_duration_45 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_45"]], "time_duration_5 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_5"]], "time_duration_60 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_60"]], "time_duration_90 (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_90"]], "time_duration_off (viser.icon attribute)": [[33, "viser.Icon.TIME_DURATION_OFF"]], "tir (viser.icon attribute)": [[33, "viser.Icon.TIR"]], "toggle_left (viser.icon attribute)": [[33, "viser.Icon.TOGGLE_LEFT"]], "toggle_right (viser.icon attribute)": [[33, "viser.Icon.TOGGLE_RIGHT"]], "toilet_paper (viser.icon attribute)": [[33, "viser.Icon.TOILET_PAPER"]], "toilet_paper_off (viser.icon attribute)": [[33, "viser.Icon.TOILET_PAPER_OFF"]], "toml (viser.icon attribute)": [[33, "viser.Icon.TOML"]], "tool (viser.icon attribute)": [[33, "viser.Icon.TOOL"]], "tools (viser.icon attribute)": [[33, "viser.Icon.TOOLS"]], "tools_kitchen (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN"]], "tools_kitchen_2 (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN_2"]], "tools_kitchen_2_off (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN_2_OFF"]], "tools_kitchen_off (viser.icon attribute)": [[33, "viser.Icon.TOOLS_KITCHEN_OFF"]], "tools_off (viser.icon attribute)": [[33, "viser.Icon.TOOLS_OFF"]], "tooltip (viser.icon attribute)": [[33, "viser.Icon.TOOLTIP"]], "topology_bus (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_BUS"]], "topology_complex (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_COMPLEX"]], "topology_full (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_FULL"]], "topology_full_hierarchy (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_FULL_HIERARCHY"]], "topology_ring (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_RING"]], "topology_ring_2 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_RING_2"]], "topology_ring_3 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_RING_3"]], "topology_star (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR"]], "topology_star_2 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_2"]], "topology_star_3 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_3"]], "topology_star_ring (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_RING"]], "topology_star_ring_2 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_RING_2"]], "topology_star_ring_3 (viser.icon attribute)": [[33, "viser.Icon.TOPOLOGY_STAR_RING_3"]], "torii (viser.icon attribute)": [[33, "viser.Icon.TORII"]], "tornado (viser.icon attribute)": [[33, "viser.Icon.TORNADO"]], "tournament (viser.icon attribute)": [[33, "viser.Icon.TOURNAMENT"]], "tower (viser.icon attribute)": [[33, "viser.Icon.TOWER"]], "tower_off (viser.icon attribute)": [[33, "viser.Icon.TOWER_OFF"]], "track (viser.icon attribute)": [[33, "viser.Icon.TRACK"]], "tractor (viser.icon attribute)": [[33, "viser.Icon.TRACTOR"]], "trademark (viser.icon attribute)": [[33, "viser.Icon.TRADEMARK"]], "traffic_cone (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_CONE"]], "traffic_cone_off (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_CONE_OFF"]], "traffic_lights (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_LIGHTS"]], "traffic_lights_off (viser.icon attribute)": [[33, "viser.Icon.TRAFFIC_LIGHTS_OFF"]], "train (viser.icon attribute)": [[33, "viser.Icon.TRAIN"]], "transfer_in (viser.icon attribute)": [[33, "viser.Icon.TRANSFER_IN"]], "transfer_out (viser.icon attribute)": [[33, "viser.Icon.TRANSFER_OUT"]], "transform (viser.icon attribute)": [[33, "viser.Icon.TRANSFORM"]], "transform_filled (viser.icon attribute)": [[33, "viser.Icon.TRANSFORM_FILLED"]], "transition_bottom (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_BOTTOM"]], "transition_left (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_LEFT"]], "transition_right (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_RIGHT"]], "transition_top (viser.icon attribute)": [[33, "viser.Icon.TRANSITION_TOP"]], "trash (viser.icon attribute)": [[33, "viser.Icon.TRASH"]], "trash_filled (viser.icon attribute)": [[33, "viser.Icon.TRASH_FILLED"]], "trash_off (viser.icon attribute)": [[33, "viser.Icon.TRASH_OFF"]], "trash_x (viser.icon attribute)": [[33, "viser.Icon.TRASH_X"]], "trash_x_filled (viser.icon attribute)": [[33, "viser.Icon.TRASH_X_FILLED"]], "treadmill (viser.icon attribute)": [[33, "viser.Icon.TREADMILL"]], "tree (viser.icon attribute)": [[33, "viser.Icon.TREE"]], "trees (viser.icon attribute)": [[33, "viser.Icon.TREES"]], "trekking (viser.icon attribute)": [[33, "viser.Icon.TREKKING"]], "trending_down (viser.icon attribute)": [[33, "viser.Icon.TRENDING_DOWN"]], "trending_down_2 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_DOWN_2"]], "trending_down_3 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_DOWN_3"]], "trending_up (viser.icon attribute)": [[33, "viser.Icon.TRENDING_UP"]], "trending_up_2 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_UP_2"]], "trending_up_3 (viser.icon attribute)": [[33, "viser.Icon.TRENDING_UP_3"]], "triangle (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE"]], "triangles (viser.icon attribute)": [[33, "viser.Icon.TRIANGLES"]], "triangle_filled (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_FILLED"]], "triangle_inverted (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_INVERTED"]], "triangle_inverted_filled (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_INVERTED_FILLED"]], "triangle_off (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_OFF"]], "triangle_square_circle (viser.icon attribute)": [[33, "viser.Icon.TRIANGLE_SQUARE_CIRCLE"]], "trident (viser.icon attribute)": [[33, "viser.Icon.TRIDENT"]], "trolley (viser.icon attribute)": [[33, "viser.Icon.TROLLEY"]], "trophy (viser.icon attribute)": [[33, "viser.Icon.TROPHY"]], "trophy_filled (viser.icon attribute)": [[33, "viser.Icon.TROPHY_FILLED"]], "trophy_off (viser.icon attribute)": [[33, "viser.Icon.TROPHY_OFF"]], "trowel (viser.icon attribute)": [[33, "viser.Icon.TROWEL"]], "truck (viser.icon attribute)": [[33, "viser.Icon.TRUCK"]], "truck_delivery (viser.icon attribute)": [[33, "viser.Icon.TRUCK_DELIVERY"]], "truck_loading (viser.icon attribute)": [[33, "viser.Icon.TRUCK_LOADING"]], "truck_off (viser.icon attribute)": [[33, "viser.Icon.TRUCK_OFF"]], "truck_return (viser.icon attribute)": [[33, "viser.Icon.TRUCK_RETURN"]], "txt (viser.icon attribute)": [[33, "viser.Icon.TXT"]], "typography (viser.icon attribute)": [[33, "viser.Icon.TYPOGRAPHY"]], "typography_off (viser.icon attribute)": [[33, "viser.Icon.TYPOGRAPHY_OFF"]], "ufo (viser.icon attribute)": [[33, "viser.Icon.UFO"]], "ufo_off (viser.icon attribute)": [[33, "viser.Icon.UFO_OFF"]], "umbrella (viser.icon attribute)": [[33, "viser.Icon.UMBRELLA"]], "umbrella_filled (viser.icon attribute)": [[33, "viser.Icon.UMBRELLA_FILLED"]], "umbrella_off (viser.icon attribute)": [[33, "viser.Icon.UMBRELLA_OFF"]], "underline (viser.icon attribute)": [[33, "viser.Icon.UNDERLINE"]], "unlink (viser.icon attribute)": [[33, "viser.Icon.UNLINK"]], "upload (viser.icon attribute)": [[33, "viser.Icon.UPLOAD"]], "urgent (viser.icon attribute)": [[33, "viser.Icon.URGENT"]], "usb (viser.icon attribute)": [[33, "viser.Icon.USB"]], "user (viser.icon attribute)": [[33, "viser.Icon.USER"]], "users (viser.icon attribute)": [[33, "viser.Icon.USERS"]], "users_group (viser.icon attribute)": [[33, "viser.Icon.USERS_GROUP"]], "users_minus (viser.icon attribute)": [[33, "viser.Icon.USERS_MINUS"]], "users_plus (viser.icon attribute)": [[33, "viser.Icon.USERS_PLUS"]], "user_bolt (viser.icon attribute)": [[33, "viser.Icon.USER_BOLT"]], "user_cancel (viser.icon attribute)": [[33, "viser.Icon.USER_CANCEL"]], "user_check (viser.icon attribute)": [[33, "viser.Icon.USER_CHECK"]], "user_circle (viser.icon attribute)": [[33, "viser.Icon.USER_CIRCLE"]], "user_code (viser.icon attribute)": [[33, "viser.Icon.USER_CODE"]], "user_cog (viser.icon attribute)": [[33, "viser.Icon.USER_COG"]], "user_dollar (viser.icon attribute)": [[33, "viser.Icon.USER_DOLLAR"]], "user_down (viser.icon attribute)": [[33, "viser.Icon.USER_DOWN"]], "user_edit (viser.icon attribute)": [[33, "viser.Icon.USER_EDIT"]], "user_exclamation (viser.icon attribute)": [[33, "viser.Icon.USER_EXCLAMATION"]], "user_heart (viser.icon attribute)": [[33, "viser.Icon.USER_HEART"]], "user_minus (viser.icon attribute)": [[33, "viser.Icon.USER_MINUS"]], "user_off (viser.icon attribute)": [[33, "viser.Icon.USER_OFF"]], "user_pause (viser.icon attribute)": [[33, "viser.Icon.USER_PAUSE"]], "user_pin (viser.icon attribute)": [[33, "viser.Icon.USER_PIN"]], "user_plus (viser.icon attribute)": [[33, "viser.Icon.USER_PLUS"]], "user_question (viser.icon attribute)": [[33, "viser.Icon.USER_QUESTION"]], "user_search (viser.icon attribute)": [[33, "viser.Icon.USER_SEARCH"]], "user_share (viser.icon attribute)": [[33, "viser.Icon.USER_SHARE"]], "user_shield (viser.icon attribute)": [[33, "viser.Icon.USER_SHIELD"]], "user_star (viser.icon attribute)": [[33, "viser.Icon.USER_STAR"]], "user_up (viser.icon attribute)": [[33, "viser.Icon.USER_UP"]], "user_x (viser.icon attribute)": [[33, "viser.Icon.USER_X"]], "uv_index (viser.icon attribute)": [[33, "viser.Icon.UV_INDEX"]], "ux_circle (viser.icon attribute)": [[33, "viser.Icon.UX_CIRCLE"]], "vaccine (viser.icon attribute)": [[33, "viser.Icon.VACCINE"]], "vaccine_bottle (viser.icon attribute)": [[33, "viser.Icon.VACCINE_BOTTLE"]], "vaccine_bottle_off (viser.icon attribute)": [[33, "viser.Icon.VACCINE_BOTTLE_OFF"]], "vaccine_off (viser.icon attribute)": [[33, "viser.Icon.VACCINE_OFF"]], "vacuum_cleaner (viser.icon attribute)": [[33, "viser.Icon.VACUUM_CLEANER"]], "variable (viser.icon attribute)": [[33, "viser.Icon.VARIABLE"]], "variable_minus (viser.icon attribute)": [[33, "viser.Icon.VARIABLE_MINUS"]], "variable_off (viser.icon attribute)": [[33, "viser.Icon.VARIABLE_OFF"]], "variable_plus (viser.icon attribute)": [[33, "viser.Icon.VARIABLE_PLUS"]], "vector (viser.icon attribute)": [[33, "viser.Icon.VECTOR"]], "vector_bezier (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER"]], "vector_bezier_2 (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER_2"]], "vector_bezier_arc (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER_ARC"]], "vector_bezier_circle (viser.icon attribute)": [[33, "viser.Icon.VECTOR_BEZIER_CIRCLE"]], "vector_off (viser.icon attribute)": [[33, "viser.Icon.VECTOR_OFF"]], "vector_spline (viser.icon attribute)": [[33, "viser.Icon.VECTOR_SPLINE"]], "vector_triangle (viser.icon attribute)": [[33, "viser.Icon.VECTOR_TRIANGLE"]], "vector_triangle_off (viser.icon attribute)": [[33, "viser.Icon.VECTOR_TRIANGLE_OFF"]], "venus (viser.icon attribute)": [[33, "viser.Icon.VENUS"]], "versions (viser.icon attribute)": [[33, "viser.Icon.VERSIONS"]], "versions_filled (viser.icon attribute)": [[33, "viser.Icon.VERSIONS_FILLED"]], "versions_off (viser.icon attribute)": [[33, "viser.Icon.VERSIONS_OFF"]], "video (viser.icon attribute)": [[33, "viser.Icon.VIDEO"]], "video_minus (viser.icon attribute)": [[33, "viser.Icon.VIDEO_MINUS"]], "video_off (viser.icon attribute)": [[33, "viser.Icon.VIDEO_OFF"]], "video_plus (viser.icon attribute)": [[33, "viser.Icon.VIDEO_PLUS"]], "viewfinder (viser.icon attribute)": [[33, "viser.Icon.VIEWFINDER"]], "viewfinder_off (viser.icon attribute)": [[33, "viser.Icon.VIEWFINDER_OFF"]], "viewport_narrow (viser.icon attribute)": [[33, "viser.Icon.VIEWPORT_NARROW"]], "viewport_wide (viser.icon attribute)": [[33, "viser.Icon.VIEWPORT_WIDE"]], "view_360 (viser.icon attribute)": [[33, "viser.Icon.VIEW_360"]], "view_360_off (viser.icon attribute)": [[33, "viser.Icon.VIEW_360_OFF"]], "vinyl (viser.icon attribute)": [[33, "viser.Icon.VINYL"]], "vip (viser.icon attribute)": [[33, "viser.Icon.VIP"]], "vip_off (viser.icon attribute)": [[33, "viser.Icon.VIP_OFF"]], "virus (viser.icon attribute)": [[33, "viser.Icon.VIRUS"]], "virus_off (viser.icon attribute)": [[33, "viser.Icon.VIRUS_OFF"]], "virus_search (viser.icon attribute)": [[33, "viser.Icon.VIRUS_SEARCH"]], "vocabulary (viser.icon attribute)": [[33, "viser.Icon.VOCABULARY"]], "vocabulary_off (viser.icon attribute)": [[33, "viser.Icon.VOCABULARY_OFF"]], "volcano (viser.icon attribute)": [[33, "viser.Icon.VOLCANO"]], "volume (viser.icon attribute)": [[33, "viser.Icon.VOLUME"]], "volume_2 (viser.icon attribute)": [[33, "viser.Icon.VOLUME_2"]], "volume_3 (viser.icon attribute)": [[33, "viser.Icon.VOLUME_3"]], "volume_off (viser.icon attribute)": [[33, "viser.Icon.VOLUME_OFF"]], "walk (viser.icon attribute)": [[33, "viser.Icon.WALK"]], "wall (viser.icon attribute)": [[33, "viser.Icon.WALL"]], "wallet (viser.icon attribute)": [[33, "viser.Icon.WALLET"]], "wallet_off (viser.icon attribute)": [[33, "viser.Icon.WALLET_OFF"]], "wallpaper (viser.icon attribute)": [[33, "viser.Icon.WALLPAPER"]], "wallpaper_off (viser.icon attribute)": [[33, "viser.Icon.WALLPAPER_OFF"]], "wall_off (viser.icon attribute)": [[33, "viser.Icon.WALL_OFF"]], "wand (viser.icon attribute)": [[33, "viser.Icon.WAND"]], "wand_off (viser.icon attribute)": [[33, "viser.Icon.WAND_OFF"]], "wash (viser.icon attribute)": [[33, "viser.Icon.WASH"]], "wash_dry (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY"]], "wash_dryclean (viser.icon attribute)": [[33, "viser.Icon.WASH_DRYCLEAN"]], "wash_dryclean_off (viser.icon attribute)": [[33, "viser.Icon.WASH_DRYCLEAN_OFF"]], "wash_dry_1 (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_1"]], "wash_dry_2 (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_2"]], "wash_dry_3 (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_3"]], "wash_dry_a (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_A"]], "wash_dry_dip (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_DIP"]], "wash_dry_f (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_F"]], "wash_dry_flat (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_FLAT"]], "wash_dry_hang (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_HANG"]], "wash_dry_off (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_OFF"]], "wash_dry_p (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_P"]], "wash_dry_shade (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_SHADE"]], "wash_dry_w (viser.icon attribute)": [[33, "viser.Icon.WASH_DRY_W"]], "wash_eco (viser.icon attribute)": [[33, "viser.Icon.WASH_ECO"]], "wash_gentle (viser.icon attribute)": [[33, "viser.Icon.WASH_GENTLE"]], "wash_hand (viser.icon attribute)": [[33, "viser.Icon.WASH_HAND"]], "wash_machine (viser.icon attribute)": [[33, "viser.Icon.WASH_MACHINE"]], "wash_off (viser.icon attribute)": [[33, "viser.Icon.WASH_OFF"]], "wash_press (viser.icon attribute)": [[33, "viser.Icon.WASH_PRESS"]], "wash_temperature_1 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_1"]], "wash_temperature_2 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_2"]], "wash_temperature_3 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_3"]], "wash_temperature_4 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_4"]], "wash_temperature_5 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_5"]], "wash_temperature_6 (viser.icon attribute)": [[33, "viser.Icon.WASH_TEMPERATURE_6"]], "wash_tumble_dry (viser.icon attribute)": [[33, "viser.Icon.WASH_TUMBLE_DRY"]], "wash_tumble_off (viser.icon attribute)": [[33, "viser.Icon.WASH_TUMBLE_OFF"]], "waterpolo (viser.icon attribute)": [[33, "viser.Icon.WATERPOLO"]], "wave_saw_tool (viser.icon attribute)": [[33, "viser.Icon.WAVE_SAW_TOOL"]], "wave_sine (viser.icon attribute)": [[33, "viser.Icon.WAVE_SINE"]], "wave_square (viser.icon attribute)": [[33, "viser.Icon.WAVE_SQUARE"]], "webhook (viser.icon attribute)": [[33, "viser.Icon.WEBHOOK"]], "webhook_off (viser.icon attribute)": [[33, "viser.Icon.WEBHOOK_OFF"]], "weight (viser.icon attribute)": [[33, "viser.Icon.WEIGHT"]], "wheelchair (viser.icon attribute)": [[33, "viser.Icon.WHEELCHAIR"]], "wheelchair_off (viser.icon attribute)": [[33, "viser.Icon.WHEELCHAIR_OFF"]], "whirl (viser.icon attribute)": [[33, "viser.Icon.WHIRL"]], "wifi (viser.icon attribute)": [[33, "viser.Icon.WIFI"]], "wifi_0 (viser.icon attribute)": [[33, "viser.Icon.WIFI_0"]], "wifi_1 (viser.icon attribute)": [[33, "viser.Icon.WIFI_1"]], "wifi_2 (viser.icon attribute)": [[33, "viser.Icon.WIFI_2"]], "wifi_off (viser.icon attribute)": [[33, "viser.Icon.WIFI_OFF"]], "wind (viser.icon attribute)": [[33, "viser.Icon.WIND"]], "windmill (viser.icon attribute)": [[33, "viser.Icon.WINDMILL"]], "windmill_filled (viser.icon attribute)": [[33, "viser.Icon.WINDMILL_FILLED"]], "windmill_off (viser.icon attribute)": [[33, "viser.Icon.WINDMILL_OFF"]], "window (viser.icon attribute)": [[33, "viser.Icon.WINDOW"]], "window_maximize (viser.icon attribute)": [[33, "viser.Icon.WINDOW_MAXIMIZE"]], "window_minimize (viser.icon attribute)": [[33, "viser.Icon.WINDOW_MINIMIZE"]], "window_off (viser.icon attribute)": [[33, "viser.Icon.WINDOW_OFF"]], "windsock (viser.icon attribute)": [[33, "viser.Icon.WINDSOCK"]], "wind_off (viser.icon attribute)": [[33, "viser.Icon.WIND_OFF"]], "wiper (viser.icon attribute)": [[33, "viser.Icon.WIPER"]], "wiper_wash (viser.icon attribute)": [[33, "viser.Icon.WIPER_WASH"]], "woman (viser.icon attribute)": [[33, "viser.Icon.WOMAN"]], "wood (viser.icon attribute)": [[33, "viser.Icon.WOOD"]], "world (viser.icon attribute)": [[33, "viser.Icon.WORLD"]], "world_bolt (viser.icon attribute)": [[33, "viser.Icon.WORLD_BOLT"]], "world_cancel (viser.icon attribute)": [[33, "viser.Icon.WORLD_CANCEL"]], "world_check (viser.icon attribute)": [[33, "viser.Icon.WORLD_CHECK"]], "world_code (viser.icon attribute)": [[33, "viser.Icon.WORLD_CODE"]], "world_cog (viser.icon attribute)": [[33, "viser.Icon.WORLD_COG"]], "world_dollar (viser.icon attribute)": [[33, "viser.Icon.WORLD_DOLLAR"]], "world_down (viser.icon attribute)": [[33, "viser.Icon.WORLD_DOWN"]], "world_download (viser.icon attribute)": [[33, "viser.Icon.WORLD_DOWNLOAD"]], "world_exclamation (viser.icon attribute)": [[33, "viser.Icon.WORLD_EXCLAMATION"]], "world_heart (viser.icon attribute)": [[33, "viser.Icon.WORLD_HEART"]], "world_latitude (viser.icon attribute)": [[33, "viser.Icon.WORLD_LATITUDE"]], "world_longitude (viser.icon attribute)": [[33, "viser.Icon.WORLD_LONGITUDE"]], "world_minus (viser.icon attribute)": [[33, "viser.Icon.WORLD_MINUS"]], "world_off (viser.icon attribute)": [[33, "viser.Icon.WORLD_OFF"]], "world_pause (viser.icon attribute)": [[33, "viser.Icon.WORLD_PAUSE"]], "world_pin (viser.icon attribute)": [[33, "viser.Icon.WORLD_PIN"]], "world_plus (viser.icon attribute)": [[33, "viser.Icon.WORLD_PLUS"]], "world_question (viser.icon attribute)": [[33, "viser.Icon.WORLD_QUESTION"]], "world_search (viser.icon attribute)": [[33, "viser.Icon.WORLD_SEARCH"]], "world_share (viser.icon attribute)": [[33, "viser.Icon.WORLD_SHARE"]], "world_star (viser.icon attribute)": [[33, "viser.Icon.WORLD_STAR"]], "world_up (viser.icon attribute)": [[33, "viser.Icon.WORLD_UP"]], "world_upload (viser.icon attribute)": [[33, "viser.Icon.WORLD_UPLOAD"]], "world_www (viser.icon attribute)": [[33, "viser.Icon.WORLD_WWW"]], "world_x (viser.icon attribute)": [[33, "viser.Icon.WORLD_X"]], "wrecking_ball (viser.icon attribute)": [[33, "viser.Icon.WRECKING_BALL"]], "writing (viser.icon attribute)": [[33, "viser.Icon.WRITING"]], "writing_off (viser.icon attribute)": [[33, "viser.Icon.WRITING_OFF"]], "writing_sign (viser.icon attribute)": [[33, "viser.Icon.WRITING_SIGN"]], "writing_sign_off (viser.icon attribute)": [[33, "viser.Icon.WRITING_SIGN_OFF"]], "x (viser.icon attribute)": [[33, "viser.Icon.X"]], "xbox_a (viser.icon attribute)": [[33, "viser.Icon.XBOX_A"]], "xbox_b (viser.icon attribute)": [[33, "viser.Icon.XBOX_B"]], "xbox_x (viser.icon attribute)": [[33, "viser.Icon.XBOX_X"]], "xbox_y (viser.icon attribute)": [[33, "viser.Icon.XBOX_Y"]], "xd (viser.icon attribute)": [[33, "viser.Icon.XD"]], "yin_yang (viser.icon attribute)": [[33, "viser.Icon.YIN_YANG"]], "yin_yang_filled (viser.icon attribute)": [[33, "viser.Icon.YIN_YANG_FILLED"]], "yoga (viser.icon attribute)": [[33, "viser.Icon.YOGA"]], "zeppelin (viser.icon attribute)": [[33, "viser.Icon.ZEPPELIN"]], "zeppelin_off (viser.icon attribute)": [[33, "viser.Icon.ZEPPELIN_OFF"]], "zip (viser.icon attribute)": [[33, "viser.Icon.ZIP"]], "zodiac_aquarius (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_AQUARIUS"]], "zodiac_aries (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_ARIES"]], "zodiac_cancer (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_CANCER"]], "zodiac_capricorn (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_CAPRICORN"]], "zodiac_gemini (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_GEMINI"]], "zodiac_leo (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_LEO"]], "zodiac_libra (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_LIBRA"]], "zodiac_pisces (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_PISCES"]], "zodiac_sagittarius (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_SAGITTARIUS"]], "zodiac_scorpio (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_SCORPIO"]], "zodiac_taurus (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_TAURUS"]], "zodiac_virgo (viser.icon attribute)": [[33, "viser.Icon.ZODIAC_VIRGO"]], "zoom_cancel (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CANCEL"]], "zoom_check (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CHECK"]], "zoom_check_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CHECK_FILLED"]], "zoom_code (viser.icon attribute)": [[33, "viser.Icon.ZOOM_CODE"]], "zoom_exclamation (viser.icon attribute)": [[33, "viser.Icon.ZOOM_EXCLAMATION"]], "zoom_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_FILLED"]], "zoom_in (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN"]], "zoom_in_area (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN_AREA"]], "zoom_in_area_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN_AREA_FILLED"]], "zoom_in_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_IN_FILLED"]], "zoom_money (viser.icon attribute)": [[33, "viser.Icon.ZOOM_MONEY"]], "zoom_out (viser.icon attribute)": [[33, "viser.Icon.ZOOM_OUT"]], "zoom_out_area (viser.icon attribute)": [[33, "viser.Icon.ZOOM_OUT_AREA"]], "zoom_out_filled (viser.icon attribute)": [[33, "viser.Icon.ZOOM_OUT_FILLED"]], "zoom_pan (viser.icon attribute)": [[33, "viser.Icon.ZOOM_PAN"]], "zoom_question (viser.icon attribute)": [[33, "viser.Icon.ZOOM_QUESTION"]], "zoom_replace (viser.icon attribute)": [[33, "viser.Icon.ZOOM_REPLACE"]], "zoom_reset (viser.icon attribute)": [[33, "viser.Icon.ZOOM_RESET"]], "zzz (viser.icon attribute)": [[33, "viser.Icon.ZZZ"]], "zzz_off (viser.icon attribute)": [[33, "viser.Icon.ZZZ_OFF"]], "__new__() (viser.iconname method)": [[33, "viser.IconName.__new__"]], "message (class in viser.infra)": [[35, "viser.infra.Message"]], "typescriptannotationoverride (class in viser.infra)": [[35, "viser.infra.TypeScriptAnnotationOverride"]], "websockclientconnection (class in viser.infra)": [[35, "viser.infra.WebsockClientConnection"]], "websockmessagehandler (class in viser.infra)": [[35, "viser.infra.WebsockMessageHandler"]], "websockserver (class in viser.infra)": [[35, "viser.infra.WebsockServer"]], "annotation (viser.infra.typescriptannotationoverride attribute)": [[35, "viser.infra.TypeScriptAnnotationOverride.annotation"]], "as_serializable_dict() (viser.infra.message method)": [[35, "viser.infra.Message.as_serializable_dict"]], "atomic() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.atomic"]], "atomic() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.atomic"]], "atomic() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.atomic"]], "deserialize() (viser.infra.message class method)": [[35, "viser.infra.Message.deserialize"]], "excluded_self_client (viser.infra.message attribute)": [[35, "viser.infra.Message.excluded_self_client"]], "flush() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.flush"]], "flush_client() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.flush_client"]], "generate_typescript_interfaces() (in module viser.infra)": [[35, "viser.infra.generate_typescript_interfaces"]], "get_subclasses() (viser.infra.message class method)": [[35, "viser.infra.Message.get_subclasses"]], "on_client_connect() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.on_client_connect"]], "on_client_disconnect() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.on_client_disconnect"]], "queue_message() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.queue_message"]], "queue_message() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.queue_message"]], "queue_message() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.queue_message"]], "redundancy_key() (viser.infra.message method)": [[35, "viser.infra.Message.redundancy_key"]], "register_handler() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.register_handler"]], "register_handler() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.register_handler"]], "register_handler() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.register_handler"]], "start() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.start"]], "start_recording() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.start_recording"]], "start_recording() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.start_recording"]], "start_recording() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.start_recording"]], "stop() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.stop"]], "unregister_handler() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.unregister_handler"]], "unregister_handler() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.unregister_handler"]], "unregister_handler() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.unregister_handler"]], "unsafe_send_message() (viser.infra.websockclientconnection method)": [[35, "viser.infra.WebsockClientConnection.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockmessagehandler method)": [[35, "viser.infra.WebsockMessageHandler.unsafe_send_message"]], "unsafe_send_message() (viser.infra.websockserver method)": [[35, "viser.infra.WebsockServer.unsafe_send_message"]], "viser.infra": [[35, "module-viser.infra"]], "sceneapi (class in viser)": [[36, "viser.SceneApi"]], "add_3d_gui_container() (viser.sceneapi method)": [[36, "viser.SceneApi.add_3d_gui_container"]], "add_batched_axes() (viser.sceneapi method)": [[36, "viser.SceneApi.add_batched_axes"]], "add_box() (viser.sceneapi method)": [[36, "viser.SceneApi.add_box"]], "add_camera_frustum() (viser.sceneapi method)": [[36, "viser.SceneApi.add_camera_frustum"]], "add_frame() (viser.sceneapi method)": [[36, "viser.SceneApi.add_frame"]], "add_glb() (viser.sceneapi method)": [[36, "viser.SceneApi.add_glb"]], "add_grid() (viser.sceneapi method)": [[36, "viser.SceneApi.add_grid"]], "add_icosphere() (viser.sceneapi method)": [[36, "viser.SceneApi.add_icosphere"]], "add_image() (viser.sceneapi method)": [[36, "viser.SceneApi.add_image"]], "add_label() (viser.sceneapi method)": [[36, "viser.SceneApi.add_label"]], "add_mesh_simple() (viser.sceneapi method)": [[36, "viser.SceneApi.add_mesh_simple"]], "add_mesh_skinned() (viser.sceneapi method)": [[36, "viser.SceneApi.add_mesh_skinned"]], "add_mesh_trimesh() (viser.sceneapi method)": [[36, "viser.SceneApi.add_mesh_trimesh"]], "add_point_cloud() (viser.sceneapi method)": [[36, "viser.SceneApi.add_point_cloud"]], "add_spline_catmull_rom() (viser.sceneapi method)": [[36, "viser.SceneApi.add_spline_catmull_rom"]], "add_spline_cubic_bezier() (viser.sceneapi method)": [[36, "viser.SceneApi.add_spline_cubic_bezier"]], "add_transform_controls() (viser.sceneapi method)": [[36, "viser.SceneApi.add_transform_controls"]], "on_pointer_callback_removed() (viser.sceneapi method)": [[36, "viser.SceneApi.on_pointer_callback_removed"]], "on_pointer_event() (viser.sceneapi method)": [[36, "viser.SceneApi.on_pointer_event"]], "remove_pointer_callback() (viser.sceneapi method)": [[36, "viser.SceneApi.remove_pointer_callback"]], "reset() (viser.sceneapi method)": [[36, "viser.SceneApi.reset"]], "set_background_image() (viser.sceneapi method)": [[36, "viser.SceneApi.set_background_image"]], "set_global_visibility() (viser.sceneapi method)": [[36, "viser.SceneApi.set_global_visibility"]], "set_up_direction() (viser.sceneapi method)": [[36, "viser.SceneApi.set_up_direction"]], "world_axes (viser.sceneapi attribute)": [[36, "viser.SceneApi.world_axes"]], "batchedaxeshandle (class in viser)": [[37, "viser.BatchedAxesHandle"]], "camerafrustumhandle (class in viser)": [[37, "viser.CameraFrustumHandle"]], "framehandle (class in viser)": [[37, "viser.FrameHandle"]], "gaussiansplathandle (class in viser)": [[37, "viser.GaussianSplatHandle"]], "glbhandle (class in viser)": [[37, "viser.GlbHandle"]], "gui3dcontainerhandle (class in viser)": [[37, "viser.Gui3dContainerHandle"]], "imagehandle (class in viser)": [[37, "viser.ImageHandle"]], "labelhandle (class in viser)": [[37, "viser.LabelHandle"]], "meshhandle (class in viser)": [[37, "viser.MeshHandle"]], "meshskinnedbonehandle (class in viser)": [[37, "viser.MeshSkinnedBoneHandle"]], "meshskinnedhandle (class in viser)": [[37, "viser.MeshSkinnedHandle"]], "pointcloudhandle (class in viser)": [[37, "viser.PointCloudHandle"]], "scenenodehandle (class in viser)": [[37, "viser.SceneNodeHandle"]], "transformcontrolshandle (class in viser)": [[37, "viser.TransformControlsHandle"]], "bones (viser.meshskinnedhandle attribute)": [[37, "viser.MeshSkinnedHandle.bones"]], "on_click() (viser.batchedaxeshandle method)": [[37, "viser.BatchedAxesHandle.on_click"]], "on_click() (viser.camerafrustumhandle method)": [[37, "viser.CameraFrustumHandle.on_click"]], "on_click() (viser.framehandle method)": [[37, "viser.FrameHandle.on_click"]], "on_click() (viser.gaussiansplathandle method)": [[37, "viser.GaussianSplatHandle.on_click"]], "on_click() (viser.glbhandle method)": [[37, "viser.GlbHandle.on_click"]], "on_click() (viser.imagehandle method)": [[37, "viser.ImageHandle.on_click"]], "on_click() (viser.meshhandle method)": [[37, "viser.MeshHandle.on_click"]], "on_click() (viser.meshskinnedhandle method)": [[37, "viser.MeshSkinnedHandle.on_click"]], "on_click() (viser.transformcontrolshandle method)": [[37, "viser.TransformControlsHandle.on_click"]], "on_update() (viser.transformcontrolshandle method)": [[37, "viser.TransformControlsHandle.on_update"]], "position (viser.batchedaxeshandle property)": [[37, "viser.BatchedAxesHandle.position"]], "position (viser.camerafrustumhandle property)": [[37, "viser.CameraFrustumHandle.position"]], "position (viser.framehandle property)": [[37, "viser.FrameHandle.position"]], "position (viser.gaussiansplathandle property)": [[37, "viser.GaussianSplatHandle.position"]], "position (viser.glbhandle property)": [[37, "viser.GlbHandle.position"]], "position (viser.gui3dcontainerhandle property)": [[37, "viser.Gui3dContainerHandle.position"]], "position (viser.imagehandle property)": [[37, "viser.ImageHandle.position"]], "position (viser.labelhandle property)": [[37, "viser.LabelHandle.position"]], "position (viser.meshhandle property)": [[37, "viser.MeshHandle.position"]], "position (viser.meshskinnedbonehandle property)": [[37, "viser.MeshSkinnedBoneHandle.position"]], "position (viser.meshskinnedhandle property)": [[37, "viser.MeshSkinnedHandle.position"]], "position (viser.pointcloudhandle property)": [[37, "viser.PointCloudHandle.position"]], "position (viser.scenenodehandle property)": [[37, "viser.SceneNodeHandle.position"]], "position (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.position"]], "remove() (viser.batchedaxeshandle method)": [[37, "viser.BatchedAxesHandle.remove"]], "remove() (viser.camerafrustumhandle method)": [[37, "viser.CameraFrustumHandle.remove"]], "remove() (viser.framehandle method)": [[37, "viser.FrameHandle.remove"]], "remove() (viser.gaussiansplathandle method)": [[37, "viser.GaussianSplatHandle.remove"]], "remove() (viser.glbhandle method)": [[37, "viser.GlbHandle.remove"]], "remove() (viser.gui3dcontainerhandle method)": [[37, "viser.Gui3dContainerHandle.remove"]], "remove() (viser.imagehandle method)": [[37, "viser.ImageHandle.remove"]], "remove() (viser.labelhandle method)": [[37, "viser.LabelHandle.remove"]], "remove() (viser.meshhandle method)": [[37, "viser.MeshHandle.remove"]], "remove() (viser.meshskinnedhandle method)": [[37, "viser.MeshSkinnedHandle.remove"]], "remove() (viser.pointcloudhandle method)": [[37, "viser.PointCloudHandle.remove"]], "remove() (viser.scenenodehandle method)": [[37, "viser.SceneNodeHandle.remove"]], "remove() (viser.transformcontrolshandle method)": [[37, "viser.TransformControlsHandle.remove"]], "update_timestamp (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.update_timestamp"]], "visible (viser.batchedaxeshandle property)": [[37, "viser.BatchedAxesHandle.visible"]], "visible (viser.camerafrustumhandle property)": [[37, "viser.CameraFrustumHandle.visible"]], "visible (viser.framehandle property)": [[37, "viser.FrameHandle.visible"]], "visible (viser.gaussiansplathandle property)": [[37, "viser.GaussianSplatHandle.visible"]], "visible (viser.glbhandle property)": [[37, "viser.GlbHandle.visible"]], "visible (viser.gui3dcontainerhandle property)": [[37, "viser.Gui3dContainerHandle.visible"]], "visible (viser.imagehandle property)": [[37, "viser.ImageHandle.visible"]], "visible (viser.labelhandle property)": [[37, "viser.LabelHandle.visible"]], "visible (viser.meshhandle property)": [[37, "viser.MeshHandle.visible"]], "visible (viser.meshskinnedhandle property)": [[37, "viser.MeshSkinnedHandle.visible"]], "visible (viser.pointcloudhandle property)": [[37, "viser.PointCloudHandle.visible"]], "visible (viser.scenenodehandle property)": [[37, "viser.SceneNodeHandle.visible"]], "visible (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.visible"]], "wxyz (viser.batchedaxeshandle property)": [[37, "viser.BatchedAxesHandle.wxyz"]], "wxyz (viser.camerafrustumhandle property)": [[37, "viser.CameraFrustumHandle.wxyz"]], "wxyz (viser.framehandle property)": [[37, "viser.FrameHandle.wxyz"]], "wxyz (viser.gaussiansplathandle property)": [[37, "viser.GaussianSplatHandle.wxyz"]], "wxyz (viser.glbhandle property)": [[37, "viser.GlbHandle.wxyz"]], "wxyz (viser.gui3dcontainerhandle property)": [[37, "viser.Gui3dContainerHandle.wxyz"]], "wxyz (viser.imagehandle property)": [[37, "viser.ImageHandle.wxyz"]], "wxyz (viser.labelhandle property)": [[37, "viser.LabelHandle.wxyz"]], "wxyz (viser.meshhandle property)": [[37, "viser.MeshHandle.wxyz"]], "wxyz (viser.meshskinnedbonehandle property)": [[37, "viser.MeshSkinnedBoneHandle.wxyz"]], "wxyz (viser.meshskinnedhandle property)": [[37, "viser.MeshSkinnedHandle.wxyz"]], "wxyz (viser.pointcloudhandle property)": [[37, "viser.PointCloudHandle.wxyz"]], "wxyz (viser.scenenodehandle property)": [[37, "viser.SceneNodeHandle.wxyz"]], "wxyz (viser.transformcontrolshandle property)": [[37, "viser.TransformControlsHandle.wxyz"]], "viserserver (class in viser)": [[38, "viser.ViserServer"]], "atomic() (viser.viserserver method)": [[38, "viser.ViserServer.atomic"]], "disconnect_share_url() (viser.viserserver method)": [[38, "viser.ViserServer.disconnect_share_url"]], "flush() (viser.viserserver method)": [[38, "viser.ViserServer.flush"]], "get_clients() (viser.viserserver method)": [[38, "viser.ViserServer.get_clients"]], "get_host() (viser.viserserver method)": [[38, "viser.ViserServer.get_host"]], "get_port() (viser.viserserver method)": [[38, "viser.ViserServer.get_port"]], "gui (viser.viserserver attribute)": [[38, "viser.ViserServer.gui"]], "on_client_connect() (viser.viserserver method)": [[38, "viser.ViserServer.on_client_connect"]], "on_client_disconnect() (viser.viserserver method)": [[38, "viser.ViserServer.on_client_disconnect"]], "request_share_url() (viser.viserserver method)": [[38, "viser.ViserServer.request_share_url"]], "scene (viser.viserserver attribute)": [[38, "viser.ViserServer.scene"]], "send_file_download() (viser.viserserver method)": [[38, "viser.ViserServer.send_file_download"]], "stop() (viser.viserserver method)": [[38, "viser.ViserServer.stop"]], "matrixliegroup (class in viser.transforms)": [[39, "viser.transforms.MatrixLieGroup"]], "se2 (class in viser.transforms)": [[39, "viser.transforms.SE2"]], "se3 (class in viser.transforms)": [[39, "viser.transforms.SE3"]], "sebase (class in viser.transforms)": [[39, "viser.transforms.SEBase"]], "so2 (class in viser.transforms)": [[39, "viser.transforms.SO2"]], "so3 (class in viser.transforms)": [[39, "viser.transforms.SO3"]], "sobase (class in viser.transforms)": [[39, "viser.transforms.SOBase"]], "__matmul__() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.__matmul__"]], "__matmul__() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.__matmul__"]], "__matmul__() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.__matmul__"]], "__matmul__() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.__matmul__"]], "__matmul__() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.__matmul__"]], "__matmul__() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.__matmul__"]], "__matmul__() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.__matmul__"]], "adjoint() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.adjoint"]], "adjoint() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.adjoint"]], "adjoint() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.adjoint"]], "adjoint() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.adjoint"]], "adjoint() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.adjoint"]], "adjoint() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.adjoint"]], "adjoint() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.adjoint"]], "apply() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.apply"]], "apply() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.apply"]], "apply() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.apply"]], "apply() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.apply"]], "apply() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.apply"]], "apply() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.apply"]], "apply() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.apply"]], "as_matrix() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.as_matrix"]], "as_matrix() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.as_matrix"]], "as_matrix() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.as_matrix"]], "as_matrix() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.as_matrix"]], "as_matrix() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.as_matrix"]], "as_matrix() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.as_matrix"]], "as_matrix() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.as_matrix"]], "as_quaternion_xyzw() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.as_quaternion_xyzw"]], "as_radians() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.as_radians"]], "as_rpy_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.as_rpy_radians"]], "compute_pitch_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.compute_pitch_radians"]], "compute_roll_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.compute_roll_radians"]], "compute_yaw_radians() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.compute_yaw_radians"]], "exp() (viser.transforms.matrixliegroup class method)": [[39, "viser.transforms.MatrixLieGroup.exp"]], "exp() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.exp"]], "exp() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.exp"]], "exp() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.exp"]], "exp() (viser.transforms.so2 class method)": [[39, "viser.transforms.SO2.exp"]], "exp() (viser.transforms.so3 class method)": [[39, "viser.transforms.SO3.exp"]], "exp() (viser.transforms.sobase class method)": [[39, "viser.transforms.SOBase.exp"]], "from_matrix() (viser.transforms.matrixliegroup class method)": [[39, "viser.transforms.MatrixLieGroup.from_matrix"]], "from_matrix() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_matrix"]], "from_matrix() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_matrix"]], "from_matrix() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_matrix"]], "from_matrix() (viser.transforms.so2 class method)": [[39, "viser.transforms.SO2.from_matrix"]], "from_matrix() (viser.transforms.so3 class method)": [[39, "viser.transforms.SO3.from_matrix"]], "from_matrix() (viser.transforms.sobase class method)": [[39, "viser.transforms.SOBase.from_matrix"]], "from_quaternion_xyzw() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_quaternion_xyzw"]], "from_radians() (viser.transforms.so2 static method)": [[39, "viser.transforms.SO2.from_radians"]], "from_rotation() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_rotation"]], "from_rotation() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_rotation"]], "from_rotation() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_rotation"]], "from_rotation_and_translation() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_rotation_and_translation"]], "from_rotation_and_translation() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_rotation_and_translation"]], "from_rpy_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_rpy_radians"]], "from_translation() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.from_translation"]], "from_translation() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.from_translation"]], "from_translation() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.from_translation"]], "from_x_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_x_radians"]], "from_xy_theta() (viser.transforms.se2 static method)": [[39, "viser.transforms.SE2.from_xy_theta"]], "from_y_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_y_radians"]], "from_z_radians() (viser.transforms.so3 static method)": [[39, "viser.transforms.SO3.from_z_radians"]], "get_batch_axes() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.get_batch_axes"]], "get_batch_axes() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.get_batch_axes"]], "get_batch_axes() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.get_batch_axes"]], "get_batch_axes() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.get_batch_axes"]], "get_batch_axes() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.get_batch_axes"]], "get_batch_axes() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.get_batch_axes"]], "identity() (viser.transforms.matrixliegroup class method)": [[39, "viser.transforms.MatrixLieGroup.identity"]], "identity() (viser.transforms.se2 class method)": [[39, "viser.transforms.SE2.identity"]], "identity() (viser.transforms.se3 class method)": [[39, "viser.transforms.SE3.identity"]], "identity() (viser.transforms.sebase class method)": [[39, "viser.transforms.SEBase.identity"]], "identity() (viser.transforms.so2 class method)": [[39, "viser.transforms.SO2.identity"]], "identity() (viser.transforms.so3 class method)": [[39, "viser.transforms.SO3.identity"]], "identity() (viser.transforms.sobase class method)": [[39, "viser.transforms.SOBase.identity"]], "inverse() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.inverse"]], "inverse() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.inverse"]], "inverse() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.inverse"]], "inverse() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.inverse"]], "inverse() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.inverse"]], "inverse() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.inverse"]], "inverse() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.inverse"]], "log() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.log"]], "log() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.log"]], "log() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.log"]], "log() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.log"]], "log() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.log"]], "log() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.log"]], "log() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.log"]], "matrix_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.matrix_dim"]], "matrix_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.matrix_dim"]], "matrix_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.matrix_dim"]], "matrix_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.matrix_dim"]], "matrix_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.matrix_dim"]], "matrix_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.matrix_dim"]], "matrix_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.matrix_dim"]], "multiply() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.multiply"]], "multiply() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.multiply"]], "multiply() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.multiply"]], "multiply() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.multiply"]], "multiply() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.multiply"]], "multiply() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.multiply"]], "multiply() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.multiply"]], "normalize() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.normalize"]], "normalize() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.normalize"]], "normalize() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.normalize"]], "normalize() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.normalize"]], "normalize() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.normalize"]], "normalize() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.normalize"]], "normalize() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.normalize"]], "parameters() (viser.transforms.matrixliegroup method)": [[39, "viser.transforms.MatrixLieGroup.parameters"]], "parameters() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.parameters"]], "parameters() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.parameters"]], "parameters() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.parameters"]], "parameters() (viser.transforms.so2 method)": [[39, "viser.transforms.SO2.parameters"]], "parameters() (viser.transforms.so3 method)": [[39, "viser.transforms.SO3.parameters"]], "parameters() (viser.transforms.sobase method)": [[39, "viser.transforms.SOBase.parameters"]], "parameters_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.parameters_dim"]], "parameters_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.parameters_dim"]], "parameters_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.parameters_dim"]], "parameters_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.parameters_dim"]], "parameters_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.parameters_dim"]], "parameters_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.parameters_dim"]], "parameters_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.parameters_dim"]], "rotation() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.rotation"]], "rotation() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.rotation"]], "rotation() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.rotation"]], "space_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.space_dim"]], "space_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.space_dim"]], "space_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.space_dim"]], "space_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.space_dim"]], "space_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.space_dim"]], "space_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.space_dim"]], "space_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.space_dim"]], "tangent_dim (viser.transforms.matrixliegroup attribute)": [[39, "viser.transforms.MatrixLieGroup.tangent_dim"]], "tangent_dim (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.tangent_dim"]], "tangent_dim (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.tangent_dim"]], "tangent_dim (viser.transforms.sebase attribute)": [[39, "viser.transforms.SEBase.tangent_dim"]], "tangent_dim (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.tangent_dim"]], "tangent_dim (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.tangent_dim"]], "tangent_dim (viser.transforms.sobase attribute)": [[39, "viser.transforms.SOBase.tangent_dim"]], "translation() (viser.transforms.se2 method)": [[39, "viser.transforms.SE2.translation"]], "translation() (viser.transforms.se3 method)": [[39, "viser.transforms.SE3.translation"]], "translation() (viser.transforms.sebase method)": [[39, "viser.transforms.SEBase.translation"]], "unit_complex (viser.transforms.so2 attribute)": [[39, "viser.transforms.SO2.unit_complex"]], "unit_complex_xy (viser.transforms.se2 attribute)": [[39, "viser.transforms.SE2.unit_complex_xy"]], "viser.transforms": [[39, "module-viser.transforms"]], "wxyz (viser.transforms.so3 attribute)": [[39, "viser.transforms.SO3.wxyz"]], "wxyz_xyz (viser.transforms.se3 attribute)": [[39, "viser.transforms.SE3.wxyz_xyz"]]}}) \ No newline at end of file