--
-- PostgreSQL database dump
--

SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'SQL_ASCII';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;

--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: 
--

CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;


--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';


SET search_path = public, pg_catalog;

SET default_tablespace = '';

SET default_with_oids = false;

--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE auth_group (
    id integer NOT NULL,
    name character varying(80) NOT NULL
);


ALTER TABLE auth_group OWNER TO app;

--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE auth_group_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE auth_group_id_seq OWNER TO app;

--
-- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE auth_group_id_seq OWNED BY auth_group.id;


--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE auth_group_permissions (
    id integer NOT NULL,
    group_id integer NOT NULL,
    permission_id integer NOT NULL
);


ALTER TABLE auth_group_permissions OWNER TO app;

--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE auth_group_permissions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE auth_group_permissions_id_seq OWNER TO app;

--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE auth_group_permissions_id_seq OWNED BY auth_group_permissions.id;


--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE auth_permission (
    id integer NOT NULL,
    name character varying(50) NOT NULL,
    content_type_id integer NOT NULL,
    codename character varying(100) NOT NULL
);


ALTER TABLE auth_permission OWNER TO app;

--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE auth_permission_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE auth_permission_id_seq OWNER TO app;

--
-- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE auth_permission_id_seq OWNED BY auth_permission.id;


--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE auth_user (
    id integer NOT NULL,
    password character varying(128) NOT NULL,
    last_login timestamp with time zone NOT NULL,
    is_superuser boolean NOT NULL,
    username character varying(30) NOT NULL,
    first_name character varying(30) NOT NULL,
    last_name character varying(30) NOT NULL,
    email character varying(75) NOT NULL,
    is_staff boolean NOT NULL,
    is_active boolean NOT NULL,
    date_joined timestamp with time zone NOT NULL
);


ALTER TABLE auth_user OWNER TO app;

--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE auth_user_groups (
    id integer NOT NULL,
    user_id integer NOT NULL,
    group_id integer NOT NULL
);


ALTER TABLE auth_user_groups OWNER TO app;

--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE auth_user_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE auth_user_groups_id_seq OWNER TO app;

--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE auth_user_groups_id_seq OWNED BY auth_user_groups.id;


--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE auth_user_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE auth_user_id_seq OWNER TO app;

--
-- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE auth_user_id_seq OWNED BY auth_user.id;


--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE auth_user_user_permissions (
    id integer NOT NULL,
    user_id integer NOT NULL,
    permission_id integer NOT NULL
);


ALTER TABLE auth_user_user_permissions OWNER TO app;

--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE auth_user_user_permissions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE auth_user_user_permissions_id_seq OWNER TO app;

--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE auth_user_user_permissions_id_seq OWNED BY auth_user_user_permissions.id;


--
-- Name: cms_aliaspluginmodel; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_aliaspluginmodel (
    cmsplugin_ptr_id integer NOT NULL,
    plugin_id integer,
    alias_placeholder_id integer
);


ALTER TABLE cms_aliaspluginmodel OWNER TO app;

--
-- Name: cms_cmsplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_cmsplugin (
    id integer NOT NULL,
    "position" smallint,
    language character varying(15) NOT NULL,
    plugin_type character varying(50) NOT NULL,
    creation_date timestamp with time zone NOT NULL,
    changed_date timestamp with time zone NOT NULL,
    parent_id integer,
    placeholder_id integer,
    depth integer NOT NULL,
    numchild integer NOT NULL,
    path character varying(255) NOT NULL,
    CONSTRAINT cms_cmsplugin_depth_check CHECK ((depth >= 0)),
    CONSTRAINT cms_cmsplugin_numchild_check CHECK ((numchild >= 0)),
    CONSTRAINT cms_cmsplugin_position_check CHECK (("position" >= 0))
);


ALTER TABLE cms_cmsplugin OWNER TO app;

--
-- Name: cms_cmsplugin_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_cmsplugin_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_cmsplugin_id_seq OWNER TO app;

--
-- Name: cms_cmsplugin_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_cmsplugin_id_seq OWNED BY cms_cmsplugin.id;


--
-- Name: cms_globalpagepermission; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_globalpagepermission (
    id integer NOT NULL,
    can_change boolean NOT NULL,
    can_add boolean NOT NULL,
    can_delete boolean NOT NULL,
    can_change_advanced_settings boolean NOT NULL,
    can_publish boolean NOT NULL,
    can_change_permissions boolean NOT NULL,
    can_move_page boolean NOT NULL,
    can_view boolean NOT NULL,
    can_recover_page boolean NOT NULL,
    group_id integer,
    user_id integer
);


ALTER TABLE cms_globalpagepermission OWNER TO app;

--
-- Name: cms_globalpagepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_globalpagepermission_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_globalpagepermission_id_seq OWNER TO app;

--
-- Name: cms_globalpagepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_globalpagepermission_id_seq OWNED BY cms_globalpagepermission.id;


--
-- Name: cms_globalpagepermission_sites; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_globalpagepermission_sites (
    id integer NOT NULL,
    globalpagepermission_id integer NOT NULL,
    site_id integer NOT NULL
);


ALTER TABLE cms_globalpagepermission_sites OWNER TO app;

--
-- Name: cms_globalpagepermission_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_globalpagepermission_sites_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_globalpagepermission_sites_id_seq OWNER TO app;

--
-- Name: cms_globalpagepermission_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_globalpagepermission_sites_id_seq OWNED BY cms_globalpagepermission_sites.id;


--
-- Name: cms_page; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_page (
    id integer NOT NULL,
    created_by character varying(255) NOT NULL,
    changed_by character varying(255) NOT NULL,
    creation_date timestamp with time zone NOT NULL,
    changed_date timestamp with time zone NOT NULL,
    publication_date timestamp with time zone,
    publication_end_date timestamp with time zone,
    in_navigation boolean NOT NULL,
    soft_root boolean NOT NULL,
    reverse_id character varying(40),
    navigation_extenders character varying(80),
    template character varying(100) NOT NULL,
    login_required boolean NOT NULL,
    limit_visibility_in_menu smallint,
    is_home boolean NOT NULL,
    application_urls character varying(200),
    application_namespace character varying(200),
    publisher_is_draft boolean NOT NULL,
    languages character varying(255),
    revision_id integer NOT NULL,
    xframe_options integer NOT NULL,
    parent_id integer,
    publisher_public_id integer,
    site_id integer NOT NULL,
    depth integer NOT NULL,
    numchild integer NOT NULL,
    path character varying(255) NOT NULL,
    CONSTRAINT cms_page_depth_check CHECK ((depth >= 0)),
    CONSTRAINT cms_page_numchild_check CHECK ((numchild >= 0)),
    CONSTRAINT cms_page_revision_id_check CHECK ((revision_id >= 0))
);


ALTER TABLE cms_page OWNER TO app;

--
-- Name: cms_page_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_page_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_page_id_seq OWNER TO app;

--
-- Name: cms_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_page_id_seq OWNED BY cms_page.id;


--
-- Name: cms_page_placeholders; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_page_placeholders (
    id integer NOT NULL,
    page_id integer NOT NULL,
    placeholder_id integer NOT NULL
);


ALTER TABLE cms_page_placeholders OWNER TO app;

--
-- Name: cms_page_placeholders_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_page_placeholders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_page_placeholders_id_seq OWNER TO app;

--
-- Name: cms_page_placeholders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_page_placeholders_id_seq OWNED BY cms_page_placeholders.id;


--
-- Name: cms_pagepermission; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_pagepermission (
    id integer NOT NULL,
    can_change boolean NOT NULL,
    can_add boolean NOT NULL,
    can_delete boolean NOT NULL,
    can_change_advanced_settings boolean NOT NULL,
    can_publish boolean NOT NULL,
    can_change_permissions boolean NOT NULL,
    can_move_page boolean NOT NULL,
    can_view boolean NOT NULL,
    grant_on integer NOT NULL,
    group_id integer,
    page_id integer,
    user_id integer
);


ALTER TABLE cms_pagepermission OWNER TO app;

--
-- Name: cms_pagepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_pagepermission_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_pagepermission_id_seq OWNER TO app;

--
-- Name: cms_pagepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_pagepermission_id_seq OWNED BY cms_pagepermission.id;


--
-- Name: cms_pageuser; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_pageuser (
    user_ptr_id integer NOT NULL,
    created_by_id integer NOT NULL
);


ALTER TABLE cms_pageuser OWNER TO app;

--
-- Name: cms_pageusergroup; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_pageusergroup (
    group_ptr_id integer NOT NULL,
    created_by_id integer NOT NULL
);


ALTER TABLE cms_pageusergroup OWNER TO app;

--
-- Name: cms_placeholder; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_placeholder (
    id integer NOT NULL,
    slot character varying(255) NOT NULL,
    default_width smallint,
    CONSTRAINT cms_placeholder_default_width_check CHECK ((default_width >= 0))
);


ALTER TABLE cms_placeholder OWNER TO app;

--
-- Name: cms_placeholder_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_placeholder_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_placeholder_id_seq OWNER TO app;

--
-- Name: cms_placeholder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_placeholder_id_seq OWNED BY cms_placeholder.id;


--
-- Name: cms_placeholderreference; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_placeholderreference (
    cmsplugin_ptr_id integer NOT NULL,
    name character varying(255) NOT NULL,
    placeholder_ref_id integer
);


ALTER TABLE cms_placeholderreference OWNER TO app;

--
-- Name: cms_staticplaceholder; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_staticplaceholder (
    id integer NOT NULL,
    name character varying(255) NOT NULL,
    code character varying(255) NOT NULL,
    dirty boolean NOT NULL,
    creation_method character varying(20) NOT NULL,
    draft_id integer,
    public_id integer,
    site_id integer
);


ALTER TABLE cms_staticplaceholder OWNER TO app;

--
-- Name: cms_staticplaceholder_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_staticplaceholder_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_staticplaceholder_id_seq OWNER TO app;

--
-- Name: cms_staticplaceholder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_staticplaceholder_id_seq OWNED BY cms_staticplaceholder.id;


--
-- Name: cms_title; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_title (
    id integer NOT NULL,
    language character varying(15) NOT NULL,
    title character varying(255) NOT NULL,
    page_title character varying(255),
    menu_title character varying(255),
    meta_description text,
    slug character varying(255) NOT NULL,
    path character varying(255) NOT NULL,
    has_url_overwrite boolean NOT NULL,
    redirect character varying(2048),
    creation_date timestamp with time zone NOT NULL,
    published boolean NOT NULL,
    publisher_is_draft boolean NOT NULL,
    publisher_state smallint NOT NULL,
    page_id integer NOT NULL,
    publisher_public_id integer
);


ALTER TABLE cms_title OWNER TO app;

--
-- Name: cms_title_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_title_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_title_id_seq OWNER TO app;

--
-- Name: cms_title_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_title_id_seq OWNED BY cms_title.id;


--
-- Name: cms_usersettings; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cms_usersettings (
    id integer NOT NULL,
    language character varying(10) NOT NULL,
    clipboard_id integer,
    user_id integer NOT NULL
);


ALTER TABLE cms_usersettings OWNER TO app;

--
-- Name: cms_usersettings_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cms_usersettings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cms_usersettings_id_seq OWNER TO app;

--
-- Name: cms_usersettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cms_usersettings_id_seq OWNED BY cms_usersettings.id;


--
-- Name: cmsplugin_filer_file_filerfile; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_file_filerfile (
    cmsplugin_ptr_id integer NOT NULL,
    title character varying(255),
    target_blank boolean NOT NULL,
    style character varying(255) NOT NULL,
    file_id integer NOT NULL
);


ALTER TABLE cmsplugin_filer_file_filerfile OWNER TO app;

--
-- Name: cmsplugin_filer_folder_filerfolder; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_folder_filerfolder (
    cmsplugin_ptr_id integer NOT NULL,
    title character varying(255),
    style character varying(50) NOT NULL,
    folder_id integer NOT NULL
);


ALTER TABLE cmsplugin_filer_folder_filerfolder OWNER TO app;

--
-- Name: cmsplugin_filer_image_filerimage; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_image_filerimage (
    cmsplugin_ptr_id integer NOT NULL,
    style character varying(50) NOT NULL,
    caption_text character varying(255),
    image_url character varying(200),
    alt_text character varying(255),
    use_original_image boolean NOT NULL,
    use_autoscale boolean NOT NULL,
    width integer,
    height integer,
    crop boolean NOT NULL,
    upscale boolean NOT NULL,
    alignment character varying(10),
    free_link character varying(255),
    original_link boolean NOT NULL,
    description text,
    target_blank boolean NOT NULL,
    file_link_id integer,
    image_id integer,
    page_link_id integer,
    thumbnail_option_id integer,
    CONSTRAINT cmsplugin_filer_image_filerimage_height_check CHECK ((height >= 0)),
    CONSTRAINT cmsplugin_filer_image_filerimage_width_check CHECK ((width >= 0))
);


ALTER TABLE cmsplugin_filer_image_filerimage OWNER TO app;

--
-- Name: cmsplugin_filer_image_thumbnailoption; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_image_thumbnailoption (
    id integer NOT NULL,
    name character varying(100) NOT NULL,
    width integer NOT NULL,
    height integer NOT NULL,
    crop boolean NOT NULL,
    upscale boolean NOT NULL
);


ALTER TABLE cmsplugin_filer_image_thumbnailoption OWNER TO app;

--
-- Name: cmsplugin_filer_image_thumbnailoption_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE cmsplugin_filer_image_thumbnailoption_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE cmsplugin_filer_image_thumbnailoption_id_seq OWNER TO app;

--
-- Name: cmsplugin_filer_image_thumbnailoption_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE cmsplugin_filer_image_thumbnailoption_id_seq OWNED BY cmsplugin_filer_image_thumbnailoption.id;


--
-- Name: cmsplugin_filer_link_filerlinkplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_link_filerlinkplugin (
    cmsplugin_ptr_id integer NOT NULL,
    name character varying(255) NOT NULL,
    url character varying(255),
    mailto character varying(75),
    link_style character varying(255) NOT NULL,
    new_window boolean NOT NULL,
    file_id integer,
    page_link_id integer
);


ALTER TABLE cmsplugin_filer_link_filerlinkplugin OWNER TO app;

--
-- Name: cmsplugin_filer_teaser_filerteaser; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_teaser_filerteaser (
    cmsplugin_ptr_id integer NOT NULL,
    title character varying(255) NOT NULL,
    image_url character varying(200),
    style character varying(255) NOT NULL,
    use_autoscale boolean NOT NULL,
    width integer,
    height integer,
    free_link character varying(255),
    description text,
    target_blank boolean NOT NULL,
    image_id integer,
    page_link_id integer,
    CONSTRAINT cmsplugin_filer_teaser_filerteaser_height_check CHECK ((height >= 0)),
    CONSTRAINT cmsplugin_filer_teaser_filerteaser_width_check CHECK ((width >= 0))
);


ALTER TABLE cmsplugin_filer_teaser_filerteaser OWNER TO app;

--
-- Name: cmsplugin_filer_video_filervideo; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE cmsplugin_filer_video_filervideo (
    cmsplugin_ptr_id integer NOT NULL,
    movie_url character varying(255),
    width smallint NOT NULL,
    height smallint NOT NULL,
    auto_play boolean NOT NULL,
    auto_hide boolean NOT NULL,
    fullscreen boolean NOT NULL,
    loop boolean NOT NULL,
    bgcolor character varying(6) NOT NULL,
    textcolor character varying(6) NOT NULL,
    seekbarcolor character varying(6) NOT NULL,
    seekbarbgcolor character varying(6) NOT NULL,
    loadingbarcolor character varying(6) NOT NULL,
    buttonoutcolor character varying(6) NOT NULL,
    buttonovercolor character varying(6) NOT NULL,
    buttonhighlightcolor character varying(6) NOT NULL,
    image_id integer,
    movie_id integer,
    CONSTRAINT cmsplugin_filer_video_filervideo_height_check CHECK ((height >= 0)),
    CONSTRAINT cmsplugin_filer_video_filervideo_width_check CHECK ((width >= 0))
);


ALTER TABLE cmsplugin_filer_video_filervideo OWNER TO app;

--
-- Name: digitalglarus_message; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE digitalglarus_message (
    id integer NOT NULL,
    name character varying(200) NOT NULL,
    email character varying(75) NOT NULL,
    phone_number character varying(200) NOT NULL,
    message text NOT NULL,
    received_date timestamp with time zone NOT NULL
);


ALTER TABLE digitalglarus_message OWNER TO app;

--
-- Name: digitalglarus_message_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE digitalglarus_message_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE digitalglarus_message_id_seq OWNER TO app;

--
-- Name: digitalglarus_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE digitalglarus_message_id_seq OWNED BY digitalglarus_message.id;


--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE django_admin_log (
    id integer NOT NULL,
    action_time timestamp with time zone NOT NULL,
    object_id text,
    object_repr character varying(200) NOT NULL,
    action_flag smallint NOT NULL,
    change_message text NOT NULL,
    content_type_id integer,
    user_id integer NOT NULL,
    CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);


ALTER TABLE django_admin_log OWNER TO app;

--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE django_admin_log_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE django_admin_log_id_seq OWNER TO app;

--
-- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE django_admin_log_id_seq OWNED BY django_admin_log.id;


--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE django_content_type (
    id integer NOT NULL,
    name character varying(100) NOT NULL,
    app_label character varying(100) NOT NULL,
    model character varying(100) NOT NULL
);


ALTER TABLE django_content_type OWNER TO app;

--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE django_content_type_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE django_content_type_id_seq OWNER TO app;

--
-- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE django_content_type_id_seq OWNED BY django_content_type.id;


--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE django_migrations (
    id integer NOT NULL,
    app character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    applied timestamp with time zone NOT NULL
);


ALTER TABLE django_migrations OWNER TO app;

--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE django_migrations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE django_migrations_id_seq OWNER TO app;

--
-- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE django_migrations_id_seq OWNED BY django_migrations.id;


--
-- Name: django_select2_keymap; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE django_select2_keymap (
    id integer NOT NULL,
    key character varying(40) NOT NULL,
    value character varying(100) NOT NULL,
    accessed_on timestamp with time zone NOT NULL
);


ALTER TABLE django_select2_keymap OWNER TO app;

--
-- Name: django_select2_keymap_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE django_select2_keymap_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE django_select2_keymap_id_seq OWNER TO app;

--
-- Name: django_select2_keymap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE django_select2_keymap_id_seq OWNED BY django_select2_keymap.id;


--
-- Name: django_session; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE django_session (
    session_key character varying(40) NOT NULL,
    session_data text NOT NULL,
    expire_date timestamp with time zone NOT NULL
);


ALTER TABLE django_session OWNER TO app;

--
-- Name: django_site; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE django_site (
    id integer NOT NULL,
    domain character varying(100) NOT NULL,
    name character varying(50) NOT NULL
);


ALTER TABLE django_site OWNER TO app;

--
-- Name: django_site_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE django_site_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE django_site_id_seq OWNER TO app;

--
-- Name: django_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE django_site_id_seq OWNED BY django_site.id;


--
-- Name: djangocms_blog_authorentriesplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_authorentriesplugin (
    cmsplugin_ptr_id integer NOT NULL,
    latest_posts integer NOT NULL
);


ALTER TABLE djangocms_blog_authorentriesplugin OWNER TO app;

--
-- Name: djangocms_blog_authorentriesplugin_authors; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_authorentriesplugin_authors (
    id integer NOT NULL,
    authorentriesplugin_id integer NOT NULL,
    user_id integer NOT NULL
);


ALTER TABLE djangocms_blog_authorentriesplugin_authors OWNER TO app;

--
-- Name: djangocms_blog_authorentriesplugin_authors_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_authorentriesplugin_authors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_authorentriesplugin_authors_id_seq OWNER TO app;

--
-- Name: djangocms_blog_authorentriesplugin_authors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_authorentriesplugin_authors_id_seq OWNED BY djangocms_blog_authorentriesplugin_authors.id;


--
-- Name: djangocms_blog_blogcategory; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_blogcategory (
    id integer NOT NULL,
    date_created timestamp with time zone NOT NULL,
    date_modified timestamp with time zone NOT NULL,
    parent_id integer
);


ALTER TABLE djangocms_blog_blogcategory OWNER TO app;

--
-- Name: djangocms_blog_blogcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_blogcategory_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_blogcategory_id_seq OWNER TO app;

--
-- Name: djangocms_blog_blogcategory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_blogcategory_id_seq OWNED BY djangocms_blog_blogcategory.id;


--
-- Name: djangocms_blog_blogcategory_translation; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_blogcategory_translation (
    id integer NOT NULL,
    language_code character varying(15) NOT NULL,
    name character varying(255) NOT NULL,
    slug character varying(50) NOT NULL,
    master_id integer
);


ALTER TABLE djangocms_blog_blogcategory_translation OWNER TO app;

--
-- Name: djangocms_blog_blogcategory_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_blogcategory_translation_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_blogcategory_translation_id_seq OWNER TO app;

--
-- Name: djangocms_blog_blogcategory_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_blogcategory_translation_id_seq OWNED BY djangocms_blog_blogcategory_translation.id;


--
-- Name: djangocms_blog_latestpostsplugin; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_latestpostsplugin (
    cmsplugin_ptr_id integer NOT NULL,
    latest_posts integer NOT NULL
);


ALTER TABLE djangocms_blog_latestpostsplugin OWNER TO app;

--
-- Name: djangocms_blog_latestpostsplugin_categories; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_latestpostsplugin_categories (
    id integer NOT NULL,
    latestpostsplugin_id integer NOT NULL,
    blogcategory_id integer NOT NULL
);


ALTER TABLE djangocms_blog_latestpostsplugin_categories OWNER TO app;

--
-- Name: djangocms_blog_latestpostsplugin_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_latestpostsplugin_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_latestpostsplugin_categories_id_seq OWNER TO app;

--
-- Name: djangocms_blog_latestpostsplugin_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_latestpostsplugin_categories_id_seq OWNED BY djangocms_blog_latestpostsplugin_categories.id;


--
-- Name: djangocms_blog_latestpostsplugin_tags; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_latestpostsplugin_tags (
    id integer NOT NULL,
    latestpostsplugin_id integer NOT NULL,
    tag_id integer NOT NULL
);


ALTER TABLE djangocms_blog_latestpostsplugin_tags OWNER TO app;

--
-- Name: djangocms_blog_latestpostsplugin_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_latestpostsplugin_tags_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_latestpostsplugin_tags_id_seq OWNER TO app;

--
-- Name: djangocms_blog_latestpostsplugin_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_latestpostsplugin_tags_id_seq OWNED BY djangocms_blog_latestpostsplugin_tags.id;


--
-- Name: djangocms_blog_post; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_post (
    id integer NOT NULL,
    date_created timestamp with time zone NOT NULL,
    date_modified timestamp with time zone NOT NULL,
    date_published timestamp with time zone NOT NULL,
    date_published_end timestamp with time zone,
    publish boolean NOT NULL,
    enable_comments boolean NOT NULL,
    author_id integer,
    content_id integer,
    main_image_id integer,
    main_image_full_id integer,
    main_image_thumbnail_id integer
);


ALTER TABLE djangocms_blog_post OWNER TO app;

--
-- Name: djangocms_blog_post_categories; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_post_categories (
    id integer NOT NULL,
    post_id integer NOT NULL,
    blogcategory_id integer NOT NULL
);


ALTER TABLE djangocms_blog_post_categories OWNER TO app;

--
-- Name: djangocms_blog_post_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_post_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_post_categories_id_seq OWNER TO app;

--
-- Name: djangocms_blog_post_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_post_categories_id_seq OWNED BY djangocms_blog_post_categories.id;


--
-- Name: djangocms_blog_post_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_post_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_post_id_seq OWNER TO app;

--
-- Name: djangocms_blog_post_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_post_id_seq OWNED BY djangocms_blog_post.id;


--
-- Name: djangocms_blog_post_sites; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_post_sites (
    id integer NOT NULL,
    post_id integer NOT NULL,
    site_id integer NOT NULL
);


ALTER TABLE djangocms_blog_post_sites OWNER TO app;

--
-- Name: djangocms_blog_post_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_post_sites_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_post_sites_id_seq OWNER TO app;

--
-- Name: djangocms_blog_post_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_post_sites_id_seq OWNED BY djangocms_blog_post_sites.id;


--
-- Name: djangocms_blog_post_translation; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_blog_post_translation (
    id integer NOT NULL,
    language_code character varying(15) NOT NULL,
    title character varying(255) NOT NULL,
    slug character varying(50) NOT NULL,
    abstract text NOT NULL,
    meta_description text NOT NULL,
    meta_keywords text NOT NULL,
    meta_title character varying(255) NOT NULL,
    post_text text NOT NULL,
    master_id integer
);


ALTER TABLE djangocms_blog_post_translation OWNER TO app;

--
-- Name: djangocms_blog_post_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_blog_post_translation_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_blog_post_translation_id_seq OWNER TO app;

--
-- Name: djangocms_blog_post_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_blog_post_translation_id_seq OWNED BY djangocms_blog_post_translation.id;


--
-- Name: djangocms_flash_flash; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_flash_flash (
    cmsplugin_ptr_id integer NOT NULL,
    file character varying(100) NOT NULL,
    width character varying(6) NOT NULL,
    height character varying(6) NOT NULL
);


ALTER TABLE djangocms_flash_flash OWNER TO app;

--
-- Name: djangocms_googlemap_googlemap; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_googlemap_googlemap (
    cmsplugin_ptr_id integer NOT NULL,
    title character varying(100),
    address character varying(150) NOT NULL,
    zipcode character varying(30) NOT NULL,
    city character varying(100) NOT NULL,
    content character varying(255) NOT NULL,
    zoom smallint NOT NULL,
    lat numeric(10,6),
    lng numeric(10,6),
    route_planer_title character varying(150),
    route_planer boolean NOT NULL,
    width character varying(6) NOT NULL,
    height character varying(6) NOT NULL,
    info_window boolean NOT NULL,
    scrollwheel boolean NOT NULL,
    double_click_zoom boolean NOT NULL,
    draggable boolean NOT NULL,
    keyboard_shortcuts boolean NOT NULL,
    pan_control boolean NOT NULL,
    zoom_control boolean NOT NULL,
    street_view_control boolean NOT NULL,
    CONSTRAINT djangocms_googlemap_googlemap_zoom_check CHECK ((zoom >= 0))
);


ALTER TABLE djangocms_googlemap_googlemap OWNER TO app;

--
-- Name: djangocms_inherit_inheritpageplaceholder; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_inherit_inheritpageplaceholder (
    cmsplugin_ptr_id integer NOT NULL,
    from_language character varying(5),
    from_page_id integer
);


ALTER TABLE djangocms_inherit_inheritpageplaceholder OWNER TO app;

--
-- Name: djangocms_link_link; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_link_link (
    cmsplugin_ptr_id integer NOT NULL,
    name character varying(256) NOT NULL,
    url character varying(200),
    anchor character varying(128) NOT NULL,
    mailto character varying(75),
    phone character varying(40),
    target character varying(100) NOT NULL,
    page_link_id integer
);


ALTER TABLE djangocms_link_link OWNER TO app;

--
-- Name: djangocms_page_meta_pagemeta; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_page_meta_pagemeta (
    id integer NOT NULL,
    og_type character varying(255) NOT NULL,
    og_author_url character varying(255) NOT NULL,
    og_author_fbid character varying(16) NOT NULL,
    og_publisher character varying(255) NOT NULL,
    og_app_id character varying(255) NOT NULL,
    twitter_author character varying(255) NOT NULL,
    twitter_site character varying(255) NOT NULL,
    twitter_type character varying(255) NOT NULL,
    gplus_author character varying(255) NOT NULL,
    gplus_type character varying(255) NOT NULL,
    extended_object_id integer NOT NULL,
    image_id integer,
    og_author_id integer,
    public_extension_id integer
);


ALTER TABLE djangocms_page_meta_pagemeta OWNER TO app;

--
-- Name: djangocms_page_meta_pagemeta_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_page_meta_pagemeta_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_page_meta_pagemeta_id_seq OWNER TO app;

--
-- Name: djangocms_page_meta_pagemeta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_page_meta_pagemeta_id_seq OWNED BY djangocms_page_meta_pagemeta.id;


--
-- Name: djangocms_page_meta_titlemeta; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_page_meta_titlemeta (
    id integer NOT NULL,
    keywords character varying(400) NOT NULL,
    description character varying(400) NOT NULL,
    og_description character varying(400) NOT NULL,
    twitter_description character varying(140) NOT NULL,
    gplus_description character varying(400) NOT NULL,
    extended_object_id integer NOT NULL,
    image_id integer,
    public_extension_id integer
);


ALTER TABLE djangocms_page_meta_titlemeta OWNER TO app;

--
-- Name: djangocms_page_meta_titlemeta_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_page_meta_titlemeta_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_page_meta_titlemeta_id_seq OWNER TO app;

--
-- Name: djangocms_page_meta_titlemeta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_page_meta_titlemeta_id_seq OWNED BY djangocms_page_meta_titlemeta.id;


--
-- Name: djangocms_snippet_snippet; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_snippet_snippet (
    id integer NOT NULL,
    name character varying(255) NOT NULL,
    html text NOT NULL,
    template character varying(50) NOT NULL
);


ALTER TABLE djangocms_snippet_snippet OWNER TO app;

--
-- Name: djangocms_snippet_snippet_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE djangocms_snippet_snippet_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE djangocms_snippet_snippet_id_seq OWNER TO app;

--
-- Name: djangocms_snippet_snippet_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE djangocms_snippet_snippet_id_seq OWNED BY djangocms_snippet_snippet.id;


--
-- Name: djangocms_snippet_snippetptr; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_snippet_snippetptr (
    cmsplugin_ptr_id integer NOT NULL,
    snippet_id integer NOT NULL
);


ALTER TABLE djangocms_snippet_snippetptr OWNER TO app;

--
-- Name: djangocms_teaser_teaser; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_teaser_teaser (
    cmsplugin_ptr_id integer NOT NULL,
    title character varying(255) NOT NULL,
    image character varying(100),
    url character varying(255),
    description text,
    page_link_id integer
);


ALTER TABLE djangocms_teaser_teaser OWNER TO app;

--
-- Name: djangocms_text_ckeditor_text; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE djangocms_text_ckeditor_text (
    cmsplugin_ptr_id integer NOT NULL,
    body text NOT NULL
);


ALTER TABLE djangocms_text_ckeditor_text OWNER TO app;

--
-- Name: easy_thumbnails_source; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE easy_thumbnails_source (
    id integer NOT NULL,
    storage_hash character varying(40) NOT NULL,
    name character varying(255) NOT NULL,
    modified timestamp with time zone NOT NULL
);


ALTER TABLE easy_thumbnails_source OWNER TO app;

--
-- Name: easy_thumbnails_source_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE easy_thumbnails_source_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE easy_thumbnails_source_id_seq OWNER TO app;

--
-- Name: easy_thumbnails_source_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE easy_thumbnails_source_id_seq OWNED BY easy_thumbnails_source.id;


--
-- Name: easy_thumbnails_thumbnail; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE easy_thumbnails_thumbnail (
    id integer NOT NULL,
    storage_hash character varying(40) NOT NULL,
    name character varying(255) NOT NULL,
    modified timestamp with time zone NOT NULL,
    source_id integer NOT NULL
);


ALTER TABLE easy_thumbnails_thumbnail OWNER TO app;

--
-- Name: easy_thumbnails_thumbnail_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE easy_thumbnails_thumbnail_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE easy_thumbnails_thumbnail_id_seq OWNER TO app;

--
-- Name: easy_thumbnails_thumbnail_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE easy_thumbnails_thumbnail_id_seq OWNED BY easy_thumbnails_thumbnail.id;


--
-- Name: easy_thumbnails_thumbnaildimensions; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE easy_thumbnails_thumbnaildimensions (
    id integer NOT NULL,
    thumbnail_id integer NOT NULL,
    width integer,
    height integer,
    CONSTRAINT easy_thumbnails_thumbnaildimensions_height_check CHECK ((height >= 0)),
    CONSTRAINT easy_thumbnails_thumbnaildimensions_width_check CHECK ((width >= 0))
);


ALTER TABLE easy_thumbnails_thumbnaildimensions OWNER TO app;

--
-- Name: easy_thumbnails_thumbnaildimensions_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE easy_thumbnails_thumbnaildimensions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE easy_thumbnails_thumbnaildimensions_id_seq OWNER TO app;

--
-- Name: easy_thumbnails_thumbnaildimensions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE easy_thumbnails_thumbnaildimensions_id_seq OWNED BY easy_thumbnails_thumbnaildimensions.id;


--
-- Name: filer_clipboard; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE filer_clipboard (
    id integer NOT NULL,
    user_id integer NOT NULL
);


ALTER TABLE filer_clipboard OWNER TO app;

--
-- Name: filer_clipboard_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE filer_clipboard_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE filer_clipboard_id_seq OWNER TO app;

--
-- Name: filer_clipboard_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE filer_clipboard_id_seq OWNED BY filer_clipboard.id;


--
-- Name: filer_clipboarditem; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE filer_clipboarditem (
    id integer NOT NULL,
    clipboard_id integer NOT NULL,
    file_id integer NOT NULL
);


ALTER TABLE filer_clipboarditem OWNER TO app;

--
-- Name: filer_clipboarditem_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE filer_clipboarditem_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE filer_clipboarditem_id_seq OWNER TO app;

--
-- Name: filer_clipboarditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE filer_clipboarditem_id_seq OWNED BY filer_clipboarditem.id;


--
-- Name: filer_file; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE filer_file (
    id integer NOT NULL,
    file character varying(255),
    _file_size integer,
    sha1 character varying(40) NOT NULL,
    has_all_mandatory_data boolean NOT NULL,
    original_filename character varying(255),
    name character varying(255) NOT NULL,
    description text,
    uploaded_at timestamp with time zone NOT NULL,
    modified_at timestamp with time zone NOT NULL,
    is_public boolean NOT NULL,
    folder_id integer,
    owner_id integer,
    polymorphic_ctype_id integer
);


ALTER TABLE filer_file OWNER TO app;

--
-- Name: filer_file_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE filer_file_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE filer_file_id_seq OWNER TO app;

--
-- Name: filer_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE filer_file_id_seq OWNED BY filer_file.id;


--
-- Name: filer_folder; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE filer_folder (
    id integer NOT NULL,
    name character varying(255) NOT NULL,
    uploaded_at timestamp with time zone NOT NULL,
    created_at timestamp with time zone NOT NULL,
    modified_at timestamp with time zone NOT NULL,
    lft integer NOT NULL,
    rght integer NOT NULL,
    tree_id integer NOT NULL,
    level integer NOT NULL,
    owner_id integer,
    parent_id integer,
    CONSTRAINT filer_folder_level_check CHECK ((level >= 0)),
    CONSTRAINT filer_folder_lft_check CHECK ((lft >= 0)),
    CONSTRAINT filer_folder_rght_check CHECK ((rght >= 0)),
    CONSTRAINT filer_folder_tree_id_check CHECK ((tree_id >= 0))
);


ALTER TABLE filer_folder OWNER TO app;

--
-- Name: filer_folder_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE filer_folder_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE filer_folder_id_seq OWNER TO app;

--
-- Name: filer_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE filer_folder_id_seq OWNED BY filer_folder.id;


--
-- Name: filer_folderpermission; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE filer_folderpermission (
    id integer NOT NULL,
    type smallint NOT NULL,
    everybody boolean NOT NULL,
    can_edit smallint,
    can_read smallint,
    can_add_children smallint,
    folder_id integer,
    group_id integer,
    user_id integer
);


ALTER TABLE filer_folderpermission OWNER TO app;

--
-- Name: filer_folderpermission_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE filer_folderpermission_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE filer_folderpermission_id_seq OWNER TO app;

--
-- Name: filer_folderpermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE filer_folderpermission_id_seq OWNED BY filer_folderpermission.id;


--
-- Name: filer_image; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE filer_image (
    file_ptr_id integer NOT NULL,
    _height integer,
    _width integer,
    date_taken timestamp with time zone,
    default_alt_text character varying(255),
    default_caption character varying(255),
    author character varying(255),
    must_always_publish_author_credit boolean NOT NULL,
    must_always_publish_copyright boolean NOT NULL,
    subject_location character varying(64)
);


ALTER TABLE filer_image OWNER TO app;

--
-- Name: hosting_railsbetauser; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE hosting_railsbetauser (
    id integer NOT NULL,
    email character varying(75) NOT NULL,
    received_date timestamp with time zone NOT NULL
);


ALTER TABLE hosting_railsbetauser OWNER TO app;

--
-- Name: hosting_railsbetauser_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE hosting_railsbetauser_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE hosting_railsbetauser_id_seq OWNER TO app;

--
-- Name: hosting_railsbetauser_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE hosting_railsbetauser_id_seq OWNED BY hosting_railsbetauser.id;


--
-- Name: menus_cachekey; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE menus_cachekey (
    id integer NOT NULL,
    language character varying(255) NOT NULL,
    site integer NOT NULL,
    key character varying(255) NOT NULL,
    CONSTRAINT menus_cachekey_site_check CHECK ((site >= 0))
);


ALTER TABLE menus_cachekey OWNER TO app;

--
-- Name: menus_cachekey_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE menus_cachekey_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE menus_cachekey_id_seq OWNER TO app;

--
-- Name: menus_cachekey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE menus_cachekey_id_seq OWNED BY menus_cachekey.id;


--
-- Name: railshosting_railsbetauser; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE railshosting_railsbetauser (
    id integer NOT NULL,
    email character varying(75) NOT NULL,
    received_date timestamp with time zone NOT NULL
);


ALTER TABLE railshosting_railsbetauser OWNER TO app;

--
-- Name: railshosting_railsbetauser_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE railshosting_railsbetauser_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE railshosting_railsbetauser_id_seq OWNER TO app;

--
-- Name: railshosting_railsbetauser_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE railshosting_railsbetauser_id_seq OWNED BY railshosting_railsbetauser.id;


--
-- Name: reversion_revision; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE reversion_revision (
    id integer NOT NULL,
    manager_slug character varying(191) NOT NULL,
    date_created timestamp with time zone NOT NULL,
    comment text NOT NULL,
    user_id integer
);


ALTER TABLE reversion_revision OWNER TO app;

--
-- Name: reversion_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE reversion_revision_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE reversion_revision_id_seq OWNER TO app;

--
-- Name: reversion_revision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE reversion_revision_id_seq OWNED BY reversion_revision.id;


--
-- Name: reversion_version; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE reversion_version (
    id integer NOT NULL,
    object_id text NOT NULL,
    object_id_int integer,
    format character varying(255) NOT NULL,
    serialized_data text NOT NULL,
    object_repr text NOT NULL,
    content_type_id integer NOT NULL,
    revision_id integer NOT NULL
);


ALTER TABLE reversion_version OWNER TO app;

--
-- Name: reversion_version_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE reversion_version_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE reversion_version_id_seq OWNER TO app;

--
-- Name: reversion_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE reversion_version_id_seq OWNED BY reversion_version.id;


--
-- Name: taggit_tag; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE taggit_tag (
    id integer NOT NULL,
    name character varying(100) NOT NULL,
    slug character varying(100) NOT NULL
);


ALTER TABLE taggit_tag OWNER TO app;

--
-- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE taggit_tag_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE taggit_tag_id_seq OWNER TO app;

--
-- Name: taggit_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE taggit_tag_id_seq OWNED BY taggit_tag.id;


--
-- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE taggit_taggeditem (
    id integer NOT NULL,
    object_id integer NOT NULL,
    content_type_id integer NOT NULL,
    tag_id integer NOT NULL
);


ALTER TABLE taggit_taggeditem OWNER TO app;

--
-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE taggit_taggeditem_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE taggit_taggeditem_id_seq OWNER TO app;

--
-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE taggit_taggeditem_id_seq OWNED BY taggit_taggeditem.id;


--
-- Name: ungleich_ungleichpage; Type: TABLE; Schema: public; Owner: app; Tablespace: 
--

CREATE TABLE ungleich_ungleichpage (
    id integer NOT NULL,
    extended_object_id integer NOT NULL,
    public_extension_id integer,
    image_id integer
);


ALTER TABLE ungleich_ungleichpage OWNER TO app;

--
-- Name: ungleich_ungleichpage_id_seq; Type: SEQUENCE; Schema: public; Owner: app
--

CREATE SEQUENCE ungleich_ungleichpage_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE ungleich_ungleichpage_id_seq OWNER TO app;

--
-- Name: ungleich_ungleichpage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: app
--

ALTER SEQUENCE ungleich_ungleichpage_id_seq OWNED BY ungleich_ungleichpage.id;


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_group ALTER COLUMN id SET DEFAULT nextval('auth_group_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('auth_group_permissions_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_permission ALTER COLUMN id SET DEFAULT nextval('auth_permission_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user ALTER COLUMN id SET DEFAULT nextval('auth_user_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user_groups ALTER COLUMN id SET DEFAULT nextval('auth_user_groups_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('auth_user_user_permissions_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_cmsplugin ALTER COLUMN id SET DEFAULT nextval('cms_cmsplugin_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_globalpagepermission ALTER COLUMN id SET DEFAULT nextval('cms_globalpagepermission_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_globalpagepermission_sites ALTER COLUMN id SET DEFAULT nextval('cms_globalpagepermission_sites_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page ALTER COLUMN id SET DEFAULT nextval('cms_page_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page_placeholders ALTER COLUMN id SET DEFAULT nextval('cms_page_placeholders_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pagepermission ALTER COLUMN id SET DEFAULT nextval('cms_pagepermission_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_placeholder ALTER COLUMN id SET DEFAULT nextval('cms_placeholder_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_staticplaceholder ALTER COLUMN id SET DEFAULT nextval('cms_staticplaceholder_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_title ALTER COLUMN id SET DEFAULT nextval('cms_title_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_usersettings ALTER COLUMN id SET DEFAULT nextval('cms_usersettings_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_image_thumbnailoption ALTER COLUMN id SET DEFAULT nextval('cmsplugin_filer_image_thumbnailoption_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY digitalglarus_message ALTER COLUMN id SET DEFAULT nextval('digitalglarus_message_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_admin_log ALTER COLUMN id SET DEFAULT nextval('django_admin_log_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_content_type ALTER COLUMN id SET DEFAULT nextval('django_content_type_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_migrations ALTER COLUMN id SET DEFAULT nextval('django_migrations_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_select2_keymap ALTER COLUMN id SET DEFAULT nextval('django_select2_keymap_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_site ALTER COLUMN id SET DEFAULT nextval('django_site_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin_authors ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_authorentriesplugin_authors_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_blogcategory ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_blogcategory_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_blogcategory_translation ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_blogcategory_translation_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_categories ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_latestpostsplugin_categories_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_tags ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_latestpostsplugin_tags_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_categories ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_categories_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_sites ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_sites_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_translation ALTER COLUMN id SET DEFAULT nextval('djangocms_blog_post_translation_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta ALTER COLUMN id SET DEFAULT nextval('djangocms_page_meta_pagemeta_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta ALTER COLUMN id SET DEFAULT nextval('djangocms_page_meta_titlemeta_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_snippet_snippet ALTER COLUMN id SET DEFAULT nextval('djangocms_snippet_snippet_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY easy_thumbnails_source ALTER COLUMN id SET DEFAULT nextval('easy_thumbnails_source_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY easy_thumbnails_thumbnail ALTER COLUMN id SET DEFAULT nextval('easy_thumbnails_thumbnail_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions ALTER COLUMN id SET DEFAULT nextval('easy_thumbnails_thumbnaildimensions_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_clipboard ALTER COLUMN id SET DEFAULT nextval('filer_clipboard_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_clipboarditem ALTER COLUMN id SET DEFAULT nextval('filer_clipboarditem_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_file ALTER COLUMN id SET DEFAULT nextval('filer_file_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folder ALTER COLUMN id SET DEFAULT nextval('filer_folder_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folderpermission ALTER COLUMN id SET DEFAULT nextval('filer_folderpermission_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY hosting_railsbetauser ALTER COLUMN id SET DEFAULT nextval('hosting_railsbetauser_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY menus_cachekey ALTER COLUMN id SET DEFAULT nextval('menus_cachekey_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY railshosting_railsbetauser ALTER COLUMN id SET DEFAULT nextval('railshosting_railsbetauser_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY reversion_revision ALTER COLUMN id SET DEFAULT nextval('reversion_revision_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY reversion_version ALTER COLUMN id SET DEFAULT nextval('reversion_version_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY taggit_tag ALTER COLUMN id SET DEFAULT nextval('taggit_tag_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY taggit_taggeditem ALTER COLUMN id SET DEFAULT nextval('taggit_taggeditem_id_seq'::regclass);


--
-- Name: id; Type: DEFAULT; Schema: public; Owner: app
--

ALTER TABLE ONLY ungleich_ungleichpage ALTER COLUMN id SET DEFAULT nextval('ungleich_ungleichpage_id_seq'::regclass);


--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: app
--

COPY auth_group (id, name) FROM stdin;
\.


--
-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('auth_group_id_seq', 1, false);


--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: app
--

COPY auth_group_permissions (id, group_id, permission_id) FROM stdin;
\.


--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('auth_group_permissions_id_seq', 1, false);


--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: app
--

COPY auth_permission (id, name, content_type_id, codename) FROM stdin;
1	Can add log entry	1	add_logentry
2	Can change log entry	1	change_logentry
3	Can delete log entry	1	delete_logentry
4	Can add permission	2	add_permission
5	Can change permission	2	change_permission
6	Can delete permission	2	delete_permission
7	Can add group	3	add_group
8	Can change group	3	change_group
9	Can delete group	3	delete_group
10	Can add user	4	add_user
11	Can change user	4	change_user
12	Can delete user	4	delete_user
13	Can add content type	5	add_contenttype
14	Can change content type	5	change_contenttype
15	Can delete content type	5	delete_contenttype
16	Can add session	6	add_session
17	Can change session	6	change_session
18	Can delete session	6	delete_session
19	Can add site	7	add_site
20	Can change site	7	change_site
21	Can delete site	7	delete_site
22	Can add user setting	8	add_usersettings
23	Can change user setting	8	change_usersettings
24	Can delete user setting	8	delete_usersettings
25	Can add placeholder	9	add_placeholder
26	Can change placeholder	9	change_placeholder
27	Can delete placeholder	9	delete_placeholder
28	Can use Structure mode	9	use_structure
29	Can add cms plugin	10	add_cmsplugin
30	Can change cms plugin	10	change_cmsplugin
31	Can delete cms plugin	10	delete_cmsplugin
32	Can add page	11	add_page
33	Can change page	11	change_page
34	Can delete page	11	delete_page
35	Can view page	11	view_page
36	Can publish page	11	publish_page
37	Can edit static placeholders	11	edit_static_placeholder
38	Can add Page global permission	12	add_globalpagepermission
39	Can change Page global permission	12	change_globalpagepermission
40	Can delete Page global permission	12	delete_globalpagepermission
41	Can add Page permission	13	add_pagepermission
42	Can change Page permission	13	change_pagepermission
43	Can delete Page permission	13	delete_pagepermission
44	Can add User (page)	14	add_pageuser
45	Can change User (page)	14	change_pageuser
46	Can delete User (page)	14	delete_pageuser
47	Can add User group (page)	15	add_pageusergroup
48	Can change User group (page)	15	change_pageusergroup
49	Can delete User group (page)	15	delete_pageusergroup
50	Can add title	16	add_title
51	Can change title	16	change_title
52	Can delete title	16	delete_title
53	Can add placeholder reference	17	add_placeholderreference
54	Can change placeholder reference	17	change_placeholderreference
55	Can delete placeholder reference	17	delete_placeholderreference
56	Can add static placeholder	18	add_staticplaceholder
57	Can change static placeholder	18	change_staticplaceholder
58	Can delete static placeholder	18	delete_staticplaceholder
59	Can add alias plugin model	19	add_aliaspluginmodel
60	Can change alias plugin model	19	change_aliaspluginmodel
61	Can delete alias plugin model	19	delete_aliaspluginmodel
62	Can add cache key	20	add_cachekey
63	Can change cache key	20	change_cachekey
64	Can delete cache key	20	delete_cachekey
65	Can add flash	21	add_flash
66	Can change flash	21	change_flash
67	Can delete flash	21	delete_flash
68	Can add google map	22	add_googlemap
69	Can change google map	22	change_googlemap
70	Can delete google map	22	delete_googlemap
71	Can add inherit page placeholder	23	add_inheritpageplaceholder
72	Can change inherit page placeholder	23	change_inheritpageplaceholder
73	Can delete inherit page placeholder	23	delete_inheritpageplaceholder
74	Can add link	24	add_link
75	Can change link	24	change_link
76	Can delete link	24	delete_link
77	Can add Snippet	25	add_snippet
78	Can change Snippet	25	change_snippet
79	Can delete Snippet	25	delete_snippet
80	Can add Snippet	26	add_snippetptr
81	Can change Snippet	26	change_snippetptr
82	Can delete Snippet	26	delete_snippetptr
83	Can add teaser	27	add_teaser
84	Can change teaser	27	change_teaser
85	Can delete teaser	27	delete_teaser
86	Can add filer file	28	add_filerfile
87	Can change filer file	28	change_filerfile
88	Can delete filer file	28	delete_filerfile
89	Can add filer folder	29	add_filerfolder
90	Can change filer folder	29	change_filerfolder
91	Can delete filer folder	29	delete_filerfolder
92	Can add filer link plugin	30	add_filerlinkplugin
93	Can change filer link plugin	30	change_filerlinkplugin
94	Can delete filer link plugin	30	delete_filerlinkplugin
95	Can add filer teaser	31	add_filerteaser
96	Can change filer teaser	31	change_filerteaser
97	Can delete filer teaser	31	delete_filerteaser
98	Can add filer video	32	add_filervideo
99	Can change filer video	32	change_filervideo
100	Can delete filer video	32	delete_filervideo
101	Can add revision	33	add_revision
102	Can change revision	33	change_revision
103	Can delete revision	33	delete_revision
104	Can add version	34	add_version
105	Can change version	34	change_version
106	Can delete version	34	delete_version
107	Can add text	35	add_text
108	Can change text	35	change_text
109	Can delete text	35	delete_text
110	Can add Folder	36	add_folder
111	Can change Folder	36	change_folder
112	Can delete Folder	36	delete_folder
113	Can use directory listing	36	can_use_directory_listing
114	Can add folder permission	37	add_folderpermission
115	Can change folder permission	37	change_folderpermission
116	Can delete folder permission	37	delete_folderpermission
117	Can add file	38	add_file
118	Can change file	38	change_file
119	Can delete file	38	delete_file
120	Can add clipboard	39	add_clipboard
121	Can change clipboard	39	change_clipboard
122	Can delete clipboard	39	delete_clipboard
123	Can add clipboard item	40	add_clipboarditem
124	Can change clipboard item	40	change_clipboarditem
125	Can delete clipboard item	40	delete_clipboarditem
126	Can add image	41	add_image
127	Can change image	41	change_image
128	Can delete image	41	delete_image
129	Can add source	42	add_source
130	Can change source	42	change_source
131	Can delete source	42	delete_source
132	Can add thumbnail	43	add_thumbnail
133	Can change thumbnail	43	change_thumbnail
134	Can delete thumbnail	43	delete_thumbnail
135	Can add thumbnail dimensions	44	add_thumbnaildimensions
136	Can change thumbnail dimensions	44	change_thumbnaildimensions
137	Can delete thumbnail dimensions	44	delete_thumbnaildimensions
138	Can add filer image	45	add_filerimage
139	Can change filer image	45	change_filerimage
140	Can delete filer image	45	delete_filerimage
141	Can add thumbnail option	46	add_thumbnailoption
142	Can change thumbnail option	46	change_thumbnailoption
143	Can delete thumbnail option	46	delete_thumbnailoption
144	Can add Tag	47	add_tag
145	Can change Tag	47	change_tag
146	Can delete Tag	47	delete_tag
147	Can add Tagged Item	48	add_taggeditem
148	Can change Tagged Item	48	change_taggeditem
149	Can delete Tagged Item	48	delete_taggeditem
150	Can add key map	49	add_keymap
151	Can change key map	49	change_keymap
152	Can delete key map	49	delete_keymap
153	Can add blog category	51	add_blogcategory
154	Can change blog category	51	change_blogcategory
155	Can delete blog category	51	delete_blogcategory
156	Can add blog article	53	add_post
157	Can change blog article	53	change_post
158	Can delete blog article	53	delete_post
159	Can add latest posts plugin	54	add_latestpostsplugin
160	Can change latest posts plugin	54	change_latestpostsplugin
161	Can delete latest posts plugin	54	delete_latestpostsplugin
162	Can add author entries plugin	55	add_authorentriesplugin
163	Can change author entries plugin	55	change_authorentriesplugin
164	Can delete author entries plugin	55	delete_authorentriesplugin
165	Can add ungleich page	56	add_ungleichpage
166	Can change ungleich page	56	change_ungleichpage
167	Can delete ungleich page	56	delete_ungleichpage
168	Can add rails beta user	57	add_railsbetauser
169	Can change rails beta user	57	change_railsbetauser
170	Can delete rails beta user	57	delete_railsbetauser
171	Can add message	58	add_message
172	Can change message	58	change_message
173	Can delete message	58	delete_message
174	Can add Page meta info (all languages)	59	add_pagemeta
175	Can change Page meta info (all languages)	59	change_pagemeta
176	Can delete Page meta info (all languages)	59	delete_pagemeta
177	Can add Page meta info (language-dependent)	60	add_titlemeta
178	Can change Page meta info (language-dependent)	60	change_titlemeta
179	Can delete Page meta info (language-dependent)	60	delete_titlemeta
180	Can add rails beta user	61	add_railsbetauser
181	Can change rails beta user	61	change_railsbetauser
182	Can delete rails beta user	61	delete_railsbetauser
\.


--
-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('auth_permission_id_seq', 182, true);


--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: app
--

COPY auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin;
2	pbkdf2_sha256$15000$E4aOwgpuNSUy$ieeVxRVFCmC8zZKM3HqQJS7aug6aR7cvLKjue5mDiWs=	2015-06-13 13:22:13+00	t	sanghee	Sanghee	Kim	sanghee.kim@ungleich.ch	t	t	2015-06-13 13:22:13+00
3	pbkdf2_sha256$15000$LAd0VLScS9wH$Eo11OsKUhRwU0FITHREHDY3CaqhDmdtec+1pqYi/NTM=	2015-07-18 11:31:35.526078+00	t	nico	Nico	Schottelius	nico.schottelius@ungleich.ch	t	t	2015-06-13 13:22:45+00
4	pbkdf2_sha256$15000$Y98E4iEKgL0S$bgf0Zo1vl3yshqYtACeP5paZpVbmgNc17w3YA/Zi5nc=	2016-03-20 22:07:50.015532+00	t	samantha	Samantha	Meyer	samantha.meyer@ungleich.ch	t	t	2016-03-17 08:37:30+00
1	pbkdf2_sha256$15000$EEGheVZj8bac$EmhJJGLebseAsKhay6p5/yJpKSsKU8u/gcFxUNujuBw=	2016-03-21 14:35:42.967192+00	t	ungleich			team@ungleich.ch	t	t	2015-06-12 16:49:33.596112+00
5	pbkdf2_sha256$15000$IvHSvTOcnAvX$iMgecL0ssjKeps+FNAkQ2kwP8GfEAUS8NHzF7mXBtQM=	2016-03-24 21:14:12.406233+00	t	tom			tmslav@gmail.com	t	t	2016-03-22 15:44:51.772702+00
\.


--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: app
--

COPY auth_user_groups (id, user_id, group_id) FROM stdin;
\.


--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('auth_user_groups_id_seq', 1, false);


--
-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('auth_user_id_seq', 5, true);


--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: app
--

COPY auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
\.


--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('auth_user_user_permissions_id_seq', 9, true);


--
-- Data for Name: cms_aliaspluginmodel; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_aliaspluginmodel (cmsplugin_ptr_id, plugin_id, alias_placeholder_id) FROM stdin;
\.


--
-- Data for Name: cms_cmsplugin; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_cmsplugin (id, "position", language, plugin_type, creation_date, changed_date, parent_id, placeholder_id, depth, numchild, path) FROM stdin;
26	2	en-us	FilerLinkPlugin	2015-06-15 13:46:46.817737+00	2015-06-15 13:46:49.750618+00	21	12	2	0	00090003
27	3	en-us	FilerLinkPlugin	2015-06-15 13:47:13.777197+00	2015-06-15 13:47:16.894176+00	21	12	2	0	00090004
14	0	en-us	FilerLinkPlugin	2015-06-13 17:51:58.005466+00	2015-06-13 17:52:11.876651+00	13	11	2	0	00060001
44	2	en-us	FilerLinkPlugin	2015-06-16 20:27:50.389155+00	2015-06-16 20:28:03.458509+00	41	14	2	0	000C0003
29	5	en-us	FilerLinkPlugin	2015-06-15 13:50:48.437019+00	2015-06-15 13:50:51.257944+00	21	12	2	0	00090006
98	6	en-us	FilerImagePlugin	2015-08-14 23:28:41.015433+00	2015-08-14 23:28:57.967379+00	85	21	2	0	000I000C
64	2	en-us	FilerLinkPlugin	2015-07-20 19:30:44.212912+00	2015-07-20 19:30:48.353798+00	61	18	2	0	000F0003
30	6	en-us	FilerLinkPlugin	2015-06-15 13:51:33.387763+00	2015-06-15 13:51:36.855665+00	21	12	2	0	00090007
45	3	en-us	FilerLinkPlugin	2015-06-16 20:28:36.269318+00	2015-06-16 20:28:58.767315+00	41	14	2	0	000C0004
31	7	en-us	FilerLinkPlugin	2015-06-15 13:51:57.676414+00	2015-06-15 13:52:00.825409+00	21	12	2	0	00090008
8	0	en-us	FilerLinkPlugin	2015-06-12 20:33:35.572452+00	2015-06-12 20:34:25.8933+00	6	7	2	0	00040001
32	8	en-us	FilerLinkPlugin	2015-06-15 13:52:15.269583+00	2015-06-15 13:52:18.496+00	21	12	2	0	00090009
49	6	en-us	FilerImagePlugin	2015-06-16 21:15:54.671685+00	2015-06-16 21:19:53.133018+00	41	14	2	0	000C0008
6	0	en-us	TextPlugin	2015-06-12 19:58:50.169957+00	2015-06-12 21:04:36.831752+00	\N	7	1	1	0004
33	9	en-us	FilerLinkPlugin	2015-06-15 13:52:39.176543+00	2015-06-15 13:52:44.554555+00	21	12	2	0	0009000A
13	0	en-us	TextPlugin	2015-06-13 17:47:15.784346+00	2015-06-14 04:46:11.774696+00	\N	11	1	4	0006
9	0	en-us	FilerImagePlugin	2015-06-12 21:10:09.310396+00	2015-06-12 21:10:09.319275+00	4	9	2	0	00030001
4	0	en-us	TextPlugin	2015-06-12 17:54:49.162118+00	2015-06-12 21:06:53.345931+00	\N	9	1	1	0003
17	1	en-us	FilerImagePlugin	2015-06-14 04:43:51.755039+00	2015-06-14 04:46:11.833131+00	13	11	2	0	00060003
18	2	en-us	FilerImagePlugin	2015-06-14 04:44:09.869605+00	2015-06-14 04:46:11.842905+00	13	11	2	0	00060004
19	3	en-us	FilerImagePlugin	2015-06-14 04:44:22.081435+00	2015-06-14 04:46:11.852445+00	13	11	2	0	00060005
20	0	en-us	TextPlugin	2015-06-14 05:11:57.14237+00	2015-06-14 05:11:57.314821+00	\N	10	1	0	0008
46	4	en-us	FilerLinkPlugin	2015-06-16 20:33:58.086631+00	2015-06-16 20:34:01.279322+00	41	14	2	0	000C0005
34	10	en-us	FilerLinkPlugin	2015-06-15 13:52:59.217126+00	2015-06-15 13:53:01.666042+00	21	12	2	0	0009000B
50	7	en-us	FilerImagePlugin	2015-06-16 21:17:01.340229+00	2015-06-16 21:19:53.142557+00	41	14	2	0	000C0009
51	8	en-us	FilerImagePlugin	2015-06-16 21:17:51.462657+00	2015-06-16 21:19:53.152077+00	41	14	2	0	000C000A
67	1	en-us	FilerLinkPlugin	2015-07-26 22:47:45.188355+00	2015-07-26 22:48:20.01272+00	65	19	2	0	000G0002
52	9	en-us	FilerImagePlugin	2015-06-16 21:18:41.569576+00	2015-06-16 21:20:16.720179+00	41	14	2	0	000C000B
24	0	en-us	FilerLinkPlugin	2015-06-14 21:37:56.549604+00	2015-06-14 21:38:27.668868+00	21	12	2	0	00090001
38	0	en-us	FilerImagePlugin	2015-06-15 20:12:38.592686+00	2015-06-15 20:24:16.70615+00	22	13	2	0	000A0003
393	0	en-us	FilerImagePlugin	2015-10-27 12:57:35.207504+00	2015-10-27 13:16:23.306234+00	392	165	2	0	006Y0001
25	1	en-us	FilerLinkPlugin	2015-06-14 22:02:41.481822+00	2015-06-14 22:02:51.619338+00	21	12	2	0	00090002
39	1	en-us	FilerImagePlugin	2015-06-15 20:12:59.845088+00	2015-06-15 20:24:16.716705+00	22	13	2	0	000A0004
40	2	en-us	FilerImagePlugin	2015-06-15 20:23:41.774831+00	2015-06-15 20:24:16.727631+00	22	13	2	0	000A0005
47	5	en-us	FilerLinkPlugin	2015-06-16 20:47:38.009169+00	2015-06-16 20:47:46.891696+00	41	14	2	0	000C0006
28	4	en-us	FilerLinkPlugin	2015-06-15 13:47:55.647303+00	2015-06-15 14:06:02.531631+00	21	12	2	0	00090005
41	0	en-us	TextPlugin	2015-06-16 20:14:04.282513+00	2015-06-16 21:20:21.669854+00	\N	14	1	10	000C
53	0	en-us	TextPlugin	2015-06-21 08:31:55.480776+00	2015-06-22 21:56:08.369576+00	\N	15	1	4	000D
101	0	en-us	FilerLinkPlugin	2015-08-24 22:13:39.950723+00	2015-08-24 22:14:00.535082+00	100	23	2	0	000J0001
21	0	en-us	TextPlugin	2015-06-14 21:22:06.930688+00	2015-06-15 15:30:02.895475+00	\N	12	1	11	0009
71	0	en-us	TextPlugin	2015-08-09 17:56:26.254999+00	2015-08-09 20:45:58.97029+00	\N	20	1	11	000H
68	2	en-us	FilerLinkPlugin	2015-07-26 23:15:03.311183+00	2015-07-26 23:15:27.731662+00	65	19	2	0	000G0003
22	0	en-us	TextPlugin	2015-06-14 21:24:27.724016+00	2015-06-15 20:38:14.86652+00	\N	13	1	3	000A
59	0	en-us	TextPlugin	2015-06-26 09:45:50.300563+00	2015-06-26 09:45:50.460937+00	\N	16	1	1	000E
55	0	en-us	FilerImagePlugin	2015-06-22 13:39:11.56687+00	2015-06-22 21:29:11.992851+00	53	15	2	0	000D0001
42	0	en-us	FilerLinkPlugin	2015-06-16 20:17:27.55228+00	2015-06-16 20:17:37.61838+00	41	14	2	0	000C0001
56	1	en-us	FilerImagePlugin	2015-06-22 21:20:35.790788+00	2015-06-22 21:29:19.787657+00	53	15	2	0	000D0002
43	1	en-us	FilerLinkPlugin	2015-06-16 20:22:32.166113+00	2015-06-16 20:22:36.349296+00	41	14	2	0	000C0002
57	2	en-us	FilerImagePlugin	2015-06-22 21:28:15.995528+00	2015-06-22 21:29:27.840494+00	53	15	2	0	000D0003
60	0	en-us	FilerLinkPlugin	2015-06-26 09:47:07.129332+00	2015-06-26 09:47:11.833642+00	59	16	2	0	000E0001
61	0	en-us	TextPlugin	2015-07-20 19:15:27.714523+00	2015-07-20 19:31:59.07523+00	\N	18	1	3	000F
58	3	en-us	FilerLinkPlugin	2015-06-22 21:37:33.698877+00	2015-06-22 21:37:45.17474+00	53	15	2	0	000D0004
62	0	en-us	FilerLinkPlugin	2015-07-20 19:17:28.199265+00	2015-07-20 19:17:35.893519+00	61	18	2	0	000F0001
69	3	en-us	FilerLinkPlugin	2015-07-26 23:37:32.062729+00	2015-07-26 23:37:36.078352+00	65	19	2	0	000G0004
63	1	en-us	FilerLinkPlugin	2015-07-20 19:20:11.650034+00	2015-07-20 19:20:15.208989+00	61	18	2	0	000F0002
70	4	en-us	FilerLinkPlugin	2015-07-26 23:37:46.86029+00	2015-07-26 23:37:49.867409+00	65	19	2	0	000G0005
66	0	en-us	FilerLinkPlugin	2015-07-26 22:47:27.322604+00	2015-07-26 22:47:32.134591+00	65	19	2	0	000G0001
105	1	en-us	FilerLinkPlugin	2015-08-28 15:35:38.97489+00	2015-08-28 15:36:21.037711+00	103	24	2	0	000K0002
107	3	en-us	FilerImagePlugin	2015-08-28 16:57:12.001482+00	2015-08-28 22:28:47.340897+00	103	24	2	0	000K0004
109	4	en-us	FilerImagePlugin	2015-08-28 22:26:14.370709+00	2015-08-28 22:26:47.661753+00	103	24	2	0	000K0005
103	0	en-us	TextPlugin	2015-08-28 14:30:15.002616+00	2015-08-29 13:39:42.704001+00	\N	24	1	6	000K
191	0	en-us	TextPlugin	2015-10-04 18:07:07.395899+00	2016-01-29 19:50:40.842455+00	\N	84	1	0	001T
1	0	en-us	TextPlugin	2015-06-12 16:53:05.418334+00	2016-01-27 16:54:42.66932+00	\N	2	1	0	0001
119	2	en-us	FilerLinkPlugin	2015-09-02 12:55:14.640227+00	2015-09-02 12:55:20.35184+00	115	26	2	0	000N0004
73	0	en-us	FilerLinkPlugin	2015-08-09 18:17:11.081383+00	2015-08-09 19:15:49.316316+00	71	20	2	0	000H0002
74	1	en-us	FilerLinkPlugin	2015-08-09 18:21:17.777022+00	2015-08-09 19:15:49.32558+00	71	20	2	0	000H0003
125	0	en-us	TextPlugin	2015-09-17 19:06:32.769182+00	2015-09-18 11:45:31.500097+00	\N	27	1	1	000O
65	0	en-us	TextPlugin	2015-07-26 22:38:45.141585+00	2015-09-26 22:12:22.084417+00	\N	19	1	5	000G
75	2	en-us	FilerLinkPlugin	2015-08-09 18:33:00.48878+00	2015-08-09 19:15:49.334923+00	71	20	2	0	000H0004
76	3	en-us	FilerLinkPlugin	2015-08-09 18:36:44.517946+00	2015-08-09 19:15:49.345702+00	71	20	2	0	000H0005
77	4	en-us	FilerLinkPlugin	2015-08-09 18:41:23.645018+00	2015-08-09 19:15:49.355821+00	71	20	2	0	000H0006
78	5	en-us	FilerLinkPlugin	2015-08-09 19:10:56.286813+00	2015-08-09 19:15:49.365892+00	71	20	2	0	000H0007
79	6	en-us	FilerLinkPlugin	2015-08-09 19:15:17.332263+00	2015-08-09 19:15:49.375057+00	71	20	2	0	000H0008
80	7	en-us	FilerLinkPlugin	2015-08-09 19:23:11.927367+00	2015-08-09 19:23:16.033656+00	71	20	2	0	000H0009
115	1	en-us	TextPlugin	2015-09-02 12:33:39.810411+00	2015-09-02 13:59:08.70863+00	\N	26	1	4	000N
82	8	en-us	FilerImagePlugin	2015-08-09 20:37:39.857693+00	2015-08-09 20:39:20.160014+00	71	20	2	0	000H000B
117	0	en-us	FilerLinkPlugin	2015-09-02 12:41:37.209036+00	2015-09-02 12:48:37.577613+00	115	26	2	0	000N0002
118	1	en-us	FilerLinkPlugin	2015-09-02 12:46:48.435556+00	2015-09-02 12:48:37.624457+00	115	26	2	0	000N0003
84	10	en-us	FilerImagePlugin	2015-08-09 20:42:44.15351+00	2015-08-09 20:45:28.001537+00	71	20	2	0	000H000D
83	9	en-us	FilerImagePlugin	2015-08-09 20:39:00.945532+00	2015-08-09 20:45:56.114356+00	71	20	2	0	000H000C
93	4	en-us	FilerImagePlugin	2015-08-14 23:09:22.928199+00	2015-08-14 23:10:04.426994+00	85	21	2	0	000I0008
114	0	en-us	TextPlugin	2015-09-02 12:30:10.871342+00	2015-09-02 12:48:37.68106+00	\N	26	1	0	000M
126	0	en-us	FilerImagePlugin	2015-09-17 19:17:36.98171+00	2015-09-17 19:18:13.39417+00	125	27	2	0	000O0001
128	0	en-us	FilerLinkPlugin	2015-09-24 14:03:28.729672+00	2015-09-24 14:03:33.551647+00	127	28	2	0	000P0001
394	1	en-us	FilerImagePlugin	2015-10-27 13:19:59.430762+00	2015-10-27 13:20:20.99752+00	392	165	2	0	006Y0002
129	1	en-us	FilerImagePlugin	2015-09-24 14:07:33.599253+00	2015-09-24 14:11:18.973003+00	127	28	2	0	000P0002
147	7	en-us	FilerImagePlugin	2015-09-25 14:50:39.190766+00	2015-09-25 14:52:00.830289+00	138	29	2	0	000Q0009
641	0	en-us	FilerLinkPlugin	2015-12-07 13:36:17.936241+00	2015-12-07 13:36:24.602425+00	640	195	2	0	00A40001
87	0	en-us	FilerLinkPlugin	2015-08-14 22:15:12.17447+00	2015-08-14 22:48:47.154844+00	85	21	2	0	000I0002
88	1	en-us	FilerLinkPlugin	2015-08-14 22:20:39.569008+00	2015-08-14 22:48:47.164533+00	85	21	2	0	000I0003
149	0	en-us	TextPlugin	2015-09-29 19:40:16.887721+00	2015-09-30 05:51:38.460106+00	\N	30	1	1	000R
90	3	en-us	FilerLinkPlugin	2015-08-14 22:51:08.475823+00	2015-08-14 22:51:15.169878+00	85	21	2	0	000I0005
111	0	en-us	TextPlugin	2015-09-02 09:52:33.499198+00	2015-09-02 13:42:54.613627+00	\N	25	1	1	000L
143	3	en-us	FilerImagePlugin	2015-09-25 14:06:06.709808+00	2015-09-25 14:18:27.515336+00	138	29	2	0	000Q0005
89	2	en-us	FilerLinkPlugin	2015-08-14 22:26:14.397748+00	2015-08-14 22:52:37.583213+00	85	21	2	0	000I0004
102	1	en-us	FilerLinkPlugin	2015-08-24 22:17:34.244685+00	2015-08-24 22:17:43.72771+00	100	23	2	0	000J0002
152	0	en-us	FilerLinkPlugin	2015-09-30 05:51:25.163136+00	2015-09-30 05:51:38.500111+00	149	30	2	0	000R0003
100	0	en-us	TextPlugin	2015-08-24 21:19:03.121329+00	2015-08-24 22:17:45.163284+00	\N	23	1	2	000J
104	0	en-us	FilerLinkPlugin	2015-08-28 14:32:35.2814+00	2015-08-28 14:32:40.443024+00	103	24	2	0	000K0001
97	5	en-us	FilerImagePlugin	2015-08-14 23:24:51.073565+00	2015-08-14 23:28:17.206701+00	85	21	2	0	000I000B
162	0	de	TextPlugin	2015-10-04 17:20:34.38365+00	2015-11-29 18:45:41.198784+00	\N	39	1	0	0011
196	0	de	TextPlugin	2015-10-04 18:06:26.767411+00	2015-11-29 18:47:44.78896+00	\N	81	1	0	001V
110	5	en-us	FilerLinkPlugin	2015-08-28 22:31:06.618079+00	2015-08-28 22:31:10.237881+00	103	24	2	0	000K0006
106	2	en-us	FilerImagePlugin	2015-08-28 16:09:31.463593+00	2015-08-29 13:39:38.289144+00	103	24	2	0	000K0003
99	7	en-us	FilerImagePlugin	2015-08-14 23:31:39.401775+00	2015-08-14 23:31:55.649052+00	85	21	2	0	000I000D
112	0	en-us	FilerImagePlugin	2015-09-02 10:10:30.003766+00	2015-09-02 10:21:54.397909+00	111	25	2	0	000L0001
85	0	en-us	TextPlugin	2015-08-14 22:12:59.170085+00	2015-08-14 23:31:59.083117+00	\N	21	1	9	000I
133	3	en-us	FilerLinkPlugin	2015-09-24 14:22:11.04353+00	2015-09-24 14:22:25.653986+00	127	28	2	0	000P0006
127	0	en-us	TextPlugin	2015-09-24 14:01:24.312122+00	2015-09-25 19:02:10.322514+00	\N	28	1	6	000P
144	4	en-us	FilerLinkPlugin	2015-09-25 14:31:57.54264+00	2015-09-25 14:37:37.812047+00	138	29	2	0	000Q0006
139	0	en-us	FilerImagePlugin	2015-09-25 13:11:00.83098+00	2015-09-25 13:11:45.975109+00	138	29	2	0	000Q0001
145	5	en-us	FilerLinkPlugin	2015-09-25 14:38:00.801365+00	2015-09-25 14:38:04.453905+00	138	29	2	0	000Q0007
124	3	en-us	FilerImagePlugin	2015-09-02 13:57:16.334441+00	2015-09-02 13:57:49.158941+00	115	26	2	0	000N0009
130	2	en-us	FilerImagePlugin	2015-09-24 14:14:48.407836+00	2015-09-24 14:57:45.463839+00	127	28	2	0	000P0003
140	1	en-us	FilerImagePlugin	2015-09-25 13:25:20.314467+00	2015-09-25 14:43:06.875901+00	138	29	2	0	000Q0002
142	2	en-us	FilerImagePlugin	2015-09-25 13:29:45.432689+00	2015-09-25 14:43:33.363524+00	138	29	2	0	000Q0004
135	4	en-us	FilerImagePlugin	2015-09-24 15:09:09.056052+00	2015-09-24 15:10:22.509681+00	127	28	2	0	000P0007
148	8	en-us	FilerImagePlugin	2015-09-25 14:56:10.100897+00	2015-09-25 14:57:19.058015+00	138	29	2	0	000Q000A
136	5	en-us	FilerImagePlugin	2015-09-24 15:11:02.489789+00	2015-09-24 15:11:10.485466+00	127	28	2	0	000P0008
155	0	en-us	TextPlugin	2015-10-04 16:59:46.792796+00	2015-10-04 16:59:52.991713+00	\N	34	1	0	000U
138	0	en-us	TextPlugin	2015-09-25 13:05:51.158396+00	2015-09-25 17:56:37.625409+00	\N	29	1	9	000Q
146	6	en-us	FilerLinkPlugin	2015-09-25 14:44:23.935696+00	2015-09-25 14:44:27.034527+00	138	29	2	0	000Q0008
156	0	en-us	TextPlugin	2015-10-04 17:00:03.379218+00	2015-10-04 17:00:11.37735+00	\N	33	1	0	000V
159	0	en-us	TextPlugin	2015-10-04 17:01:30.763349+00	2015-10-04 17:01:35.916952+00	\N	37	1	0	000Y
157	0	en-us	TextPlugin	2015-10-04 17:00:37.507873+00	2015-10-04 17:00:43.059233+00	\N	35	1	0	000W
154	0	en-us	TextPlugin	2015-10-04 16:56:41.534844+00	2015-10-04 16:56:47.550179+00	\N	31	1	0	000T
158	0	en-us	TextPlugin	2015-10-04 17:01:04.021107+00	2015-10-04 17:01:09.865712+00	\N	36	1	0	000X
160	0	en-us	TextPlugin	2015-10-04 17:01:51.549308+00	2015-10-04 17:01:59.197806+00	\N	38	1	0	000Z
164	0	de	TextPlugin	2015-10-04 17:22:41.094306+00	2015-10-04 17:22:47.375806+00	\N	32	1	0	0013
166	0	de	TextPlugin	2015-10-04 17:23:23.851326+00	2015-10-04 17:23:28.835032+00	\N	34	1	0	0015
168	0	de	TextPlugin	2015-10-04 17:26:47.617404+00	2015-10-04 17:26:47.955105+00	\N	2	1	0	0016
163	0	de	TextPlugin	2015-10-04 17:22:11.318342+00	2015-10-04 17:40:11.985625+00	\N	31	1	0	0012
169	0	en-us	TextPlugin	2015-06-12 16:53:05.418334+00	2015-10-04 17:27:41.620441+00	\N	3	1	0	0017
171	0	de	TextPlugin	2015-10-04 17:31:39.702947+00	2015-10-04 17:31:46.273531+00	\N	36	1	0	0019
165	0	de	TextPlugin	2015-10-04 17:23:05.607806+00	2015-10-04 17:39:51.912669+00	\N	33	1	0	0014
172	0	de	TextPlugin	2015-10-04 17:32:07.260014+00	2015-10-04 17:39:29.358558+00	\N	37	1	0	001A
173	0	de	TextPlugin	2015-10-04 17:36:07.616707+00	2015-10-04 17:36:16.255071+00	\N	38	1	0	001B
170	0	de	TextPlugin	2015-10-04 17:31:20.090022+00	2015-10-04 17:39:08.100765+00	\N	35	1	0	0018
175	0	en-us	TextPlugin	2015-10-04 17:46:20.372898+00	2015-10-04 17:46:27.188238+00	\N	67	1	0	001D
195	0	en-us	TextPlugin	2015-10-04 18:10:28.015404+00	2015-10-04 18:11:17.160015+00	\N	83	1	0	001U
176	0	en-us	TextPlugin	2015-10-04 17:46:40.251564+00	2015-10-04 17:46:52.84976+00	\N	68	1	0	001E
205	0	de	TextPlugin	2015-10-04 19:35:23.668818+00	2015-11-29 18:45:25.172142+00	\N	93	1	0	0024
177	0	en-us	TextPlugin	2015-10-04 17:47:04.566022+00	2015-10-04 17:47:14.264967+00	\N	69	1	0	001F
190	0	en-us	TextPlugin	2015-10-04 18:06:49.275704+00	2015-10-04 18:12:53.711186+00	\N	82	1	0	001S
178	0	en-us	TextPlugin	2015-10-04 17:47:33.925637+00	2015-10-04 17:47:41.78941+00	\N	70	1	0	001G
179	0	en-us	TextPlugin	2015-10-04 17:47:50.728833+00	2015-10-04 17:47:57.022408+00	\N	71	1	0	001H
209	0	de	TextPlugin	2015-10-04 19:56:30.645057+00	2015-10-04 19:58:13.941633+00	\N	97	1	0	0028
180	0	en-us	TextPlugin	2015-10-04 17:48:04.82884+00	2015-10-04 17:48:12.22353+00	\N	72	1	0	001I
199	0	de	TextPlugin	2015-10-04 18:16:22.743467+00	2015-10-05 01:48:02.21355+00	\N	84	1	0	001Y
197	0	de	TextPlugin	2015-10-04 18:14:38.170897+00	2015-10-04 18:15:40.462391+00	\N	82	1	0	001W
183	0	de	TextPlugin	2015-10-04 17:52:54.182045+00	2015-10-04 17:53:03.407087+00	\N	68	1	0	001L
181	0	de	TextPlugin	2015-10-04 17:45:58.715573+00	2015-11-29 18:47:28.621844+00	\N	66	1	0	001J
577	0	de	TextPlugin	2015-10-04 18:06:26.767411+00	2015-11-29 18:47:55.083905+00	\N	143	1	0	0094
198	0	de	TextPlugin	2015-10-04 18:16:04.529371+00	2015-10-04 18:17:33.72536+00	\N	83	1	0	001X
200	0	en-us	TextPlugin	2015-10-04 19:30:01.255176+00	2015-10-04 19:30:26.592931+00	\N	94	1	0	001Z
201	0	en-us	TextPlugin	2015-10-04 19:30:45.478049+00	2015-10-04 19:31:37.378305+00	\N	95	1	0	0020
189	0	en-us	TextPlugin	2015-10-04 18:06:26.767411+00	2015-11-29 14:56:35.337796+00	\N	81	1	0	001R
182	0	de	TextPlugin	2015-10-04 17:52:38.665903+00	2015-10-04 17:57:08.08932+00	\N	67	1	0	001K
395	2	en-us	FilerImagePlugin	2015-10-27 13:24:22.886306+00	2015-10-27 13:24:59.6234+00	392	165	2	0	006Y0003
594	0	de	TextPlugin	2015-10-04 19:35:23.668818+00	2015-11-29 18:48:45.076256+00	\N	156	1	0	009L
202	0	en-us	TextPlugin	2015-10-04 19:31:45.82309+00	2015-10-04 19:37:11.853514+00	\N	96	1	0	0021
203	0	en-us	TextPlugin	2015-10-04 19:32:35.14572+00	2015-10-04 19:37:34.513871+00	\N	97	1	0	0022
185	0	de	TextPlugin	2015-10-04 17:55:24.521891+00	2015-10-04 17:58:54.653826+00	\N	70	1	0	001N
415	10	en-us	FilerImagePlugin	2015-10-27 15:20:31.78518+00	2015-10-27 15:20:40.87686+00	392	165	2	0	006Y000N
188	0	de	TextPlugin	2015-10-04 17:56:28.318812+00	2015-10-04 17:59:12.135133+00	\N	71	1	0	001Q
187	0	de	TextPlugin	2015-10-04 17:56:10.917672+00	2015-10-04 17:59:41.183006+00	\N	72	1	0	001P
642	1	en-us	FilerImagePlugin	2015-12-07 14:00:25.156157+00	2015-12-07 16:07:55.86911+00	640	195	2	0	00A40002
184	0	de	TextPlugin	2015-10-04 17:55:08.645778+00	2015-10-04 18:00:01.920142+00	\N	69	1	0	001M
578	0	de	TextPlugin	2015-10-04 18:14:38.170897+00	2015-11-29 18:47:55.110959+00	\N	140	1	0	0095
206	0	de	TextPlugin	2015-10-04 19:54:37.668765+00	2015-10-04 19:55:12.396075+00	\N	94	1	0	0025
418	13	en-us	FilerLinkPlugin	2015-10-27 15:35:19.864916+00	2015-10-27 15:35:26.64234+00	392	165	2	0	006Y000Q
595	0	de	TextPlugin	2015-10-04 19:54:37.668765+00	2015-11-29 18:48:45.094403+00	\N	152	1	0	009M
445	5	en-us	FilerImagePlugin	2015-11-08 22:29:14.309946+00	2015-11-08 22:30:23.611342+00	435	169	2	0	0072000A
647	4	en-us	FilerImagePlugin	2015-12-07 14:14:15.452136+00	2015-12-07 15:42:33.575503+00	640	195	2	0	00A40007
579	0	de	TextPlugin	2015-10-04 18:16:04.529371+00	2015-11-29 18:47:55.133655+00	\N	141	1	0	0096
421	15	en-us	FilerLinkPlugin	2015-10-27 15:43:21.173886+00	2015-10-27 16:26:09.546053+00	392	165	2	0	006Y000T
207	0	de	TextPlugin	2015-10-04 19:30:45.478049+00	2015-10-04 19:57:32.21944+00	\N	95	1	0	0026
208	0	de	TextPlugin	2015-10-04 19:56:14.042232+00	2015-10-04 19:57:52.947159+00	\N	96	1	0	0027
399	5	en-us	FilerImagePlugin	2015-10-27 13:37:35.705887+00	2015-10-27 16:34:17.005904+00	392	165	2	0	006Y0007
429	0	en-us	FilerLinkPlugin	2015-11-02 07:34:59.648353+00	2015-11-02 07:35:04.234361+00	428	167	2	0	00700001
428	0	en-us	TextPlugin	2015-11-02 07:14:07.950561+00	2015-11-02 07:37:49.547343+00	\N	167	1	1	0070
596	0	de	TextPlugin	2015-10-04 19:30:45.478049+00	2015-11-29 18:48:45.113954+00	\N	153	1	0	009N
673	0	de	FilerLinkPlugin	2015-11-25 20:15:33.454257+00	2015-12-15 15:18:47.487297+00	672	185	2	0	00A60001
460	0	en-us	TextPlugin	2015-11-15 00:01:22.760865+00	2015-11-21 16:36:27.27302+00	\N	171	1	0	0074
448	6	en-us	FilerImagePlugin	2015-11-09 18:57:13.875494+00	2015-11-09 18:57:32.650515+00	435	169	2	0	0072000D
677	0	en-us	TextPlugin	2016-01-13 21:20:51.274182+00	2016-01-14 22:17:04.449001+00	\N	196	1	8	00A7
580	0	de	TextPlugin	2015-10-04 18:16:22.743467+00	2015-11-29 18:47:55.163839+00	\N	142	1	0	0097
672	0	de	TextPlugin	2015-11-25 07:06:27.105989+00	2015-12-15 15:18:47.513278+00	\N	185	1	1	00A6
439	1	en-us	FilerLinkPlugin	2015-11-08 21:35:57.543549+00	2015-11-08 21:50:17.18246+00	435	169	2	0	00720004
442	4	en-us	FilerImagePlugin	2015-11-08 21:46:28.69263+00	2015-11-08 21:50:17.211032+00	435	169	2	0	00720007
597	0	de	TextPlugin	2015-10-04 19:56:14.042232+00	2015-11-29 18:48:45.131478+00	\N	154	1	0	009O
454	2	en-us	FilerLinkPlugin	2015-11-13 05:54:53.273223+00	2015-11-13 05:58:28.008606+00	449	170	2	0	00730005
457	5	en-us	FilerLinkPlugin	2015-11-13 05:56:18.51104+00	2015-11-13 05:58:28.036466+00	449	170	2	0	00730008
204	0	en-us	TextPlugin	2015-10-04 19:35:23.668818+00	2015-11-29 14:55:24.411086+00	\N	93	1	0	0023
598	0	de	TextPlugin	2015-10-04 19:56:30.645057+00	2015-11-29 18:48:45.150153+00	\N	155	1	0	009P
174	0	en-us	TextPlugin	2015-10-04 17:45:58.715573+00	2015-11-29 14:56:18.192852+00	\N	66	1	0	001C
416	11	en-us	FilerImagePlugin	2015-10-27 15:25:57.512554+00	2015-10-27 15:26:08.892321+00	392	165	2	0	006Y000O
437	0	en-us	FilerImagePlugin	2015-11-08 21:08:44.921041+00	2015-11-08 21:50:17.041856+00	435	169	2	0	00720002
690	7	en-us	FilerImagePlugin	2016-01-14 16:38:17.050882+00	2016-01-14 16:38:39.862103+00	677	196	2	0	00A70008
396	3	en-us	FilerImagePlugin	2015-10-27 13:25:05.300627+00	2015-10-27 13:25:36.842345+00	392	165	2	0	006Y0004
581	0	de	TextPlugin	2015-10-04 17:22:11.318342+00	2015-11-29 18:48:17.680337+00	\N	98	1	0	0098
510	1	en-us	FilerLinkPlugin	2015-11-19 21:13:14.446613+00	2015-11-19 21:13:57.891054+00	508	174	2	0	00870002
440	2	en-us	FilerImagePlugin	2015-11-08 21:44:25.41338+00	2015-11-08 21:50:17.191886+00	435	169	2	0	00720005
533	0	en-us	FilerLinkPlugin	2015-11-25 06:50:51.131351+00	2015-11-25 06:51:01.597235+00	532	184	2	0	008E0001
663	9	en-us	FilerLinkPlugin	2015-12-07 15:55:21.502045+00	2015-12-07 16:21:32.520594+00	640	195	2	0	00A4000N
419	14	en-us	FilerImagePlugin	2015-10-27 15:36:50.127747+00	2015-10-27 15:36:57.153015+00	392	165	2	0	006Y000R
664	10	en-us	FilerLinkPlugin	2015-12-07 15:56:40.718989+00	2015-12-07 16:21:32.53109+00	640	195	2	0	00A4000O
400	6	en-us	FilerImagePlugin	2015-10-27 13:39:51.574231+00	2015-10-27 13:43:51.699624+00	392	165	2	0	006Y0008
506	1	en-us	FilerImagePlugin	2015-11-15 14:48:25.981834+00	2015-11-15 14:48:25.991879+00	504	173	2	0	00860002
674	4	en-us	FilerImagePlugin	2016-01-06 13:49:24.109384+00	2016-01-06 13:49:24.120147+00	508	174	2	0	00870006
504	0	en-us	TextPlugin	2015-11-15 10:13:07.595484+00	2015-11-15 10:13:07.944678+00	\N	173	1	3	0086
582	0	de	TextPlugin	2015-10-04 17:22:41.094306+00	2015-11-29 18:48:17.701625+00	\N	99	1	0	0099
648	5	en-us	FilerImagePlugin	2015-12-07 14:21:28.565765+00	2015-12-07 15:42:33.586309+00	640	195	2	0	00A40008
512	2	en-us	FilerLinkPlugin	2015-11-19 21:14:58.349542+00	2015-11-19 21:20:29.299837+00	508	174	2	0	00870004
461	0	de	TextPlugin	2015-11-15 00:25:49.040969+00	2015-11-15 01:23:07.287388+00	\N	171	1	0	0075
426	18	en-us	FilerLinkPlugin	2015-10-27 21:29:13.403446+00	2015-10-27 21:35:54.086143+00	392	165	2	0	006Y000Y
693	0	en-us	FilerImagePlugin	2016-01-15 15:34:34.693403+00	2016-01-15 15:35:26.075566+00	691	197	2	0	00A80001
413	8	en-us	FilerImagePlugin	2015-10-27 15:18:35.975633+00	2015-10-27 15:18:47.312407+00	392	165	2	0	006Y000L
449	0	en-us	TextPlugin	2015-11-13 05:30:23.192477+00	2015-11-13 05:58:27.948248+00	\N	170	1	8	0073
508	0	en-us	TextPlugin	2015-11-19 20:46:24.485909+00	2015-11-19 21:39:11.943284+00	\N	174	1	7	0087
583	0	de	TextPlugin	2015-10-04 17:23:05.607806+00	2015-11-29 18:48:17.71919+00	\N	100	1	0	009A
422	16	en-us	FilerImagePlugin	2015-10-27 16:25:12.198994+00	2015-10-27 16:26:09.55557+00	392	165	2	0	006Y000U
452	0	en-us	FilerLinkPlugin	2015-11-13 05:54:16.892882+00	2015-11-13 05:58:27.990192+00	449	170	2	0	00730003
455	3	en-us	FilerLinkPlugin	2015-11-13 05:55:18.694671+00	2015-11-13 05:58:28.017848+00	449	170	2	0	00730006
652	7	en-us	FilerImagePlugin	2015-12-07 14:32:26.589425+00	2015-12-07 15:42:33.909919+00	640	195	2	0	00A4000C
458	6	en-us	FilerLinkPlugin	2015-11-13 05:57:46.583694+00	2015-11-13 05:58:28.045609+00	449	170	2	0	00730009
392	0	en-us	TextPlugin	2015-10-27 12:42:08.560007+00	2015-10-28 16:36:41.488833+00	\N	165	1	20	006Y
435	0	en-us	TextPlugin	2015-11-08 20:40:01.583862+00	2015-11-09 18:57:32.613802+00	\N	169	1	7	0072
584	0	de	TextPlugin	2015-10-04 17:23:23.851326+00	2015-11-29 18:48:17.740934+00	\N	101	1	0	009B
696	3	en-us	FilerImagePlugin	2016-01-15 15:37:01.397408+00	2016-01-15 15:37:16.843658+00	691	197	2	0	00A80004
430	0	en-us	TextPlugin	2015-11-03 07:14:15.348536+00	2015-11-03 18:19:23.173653+00	\N	168	1	1	0071
699	6	en-us	FilerImagePlugin	2016-01-15 15:38:16.271761+00	2016-01-15 15:38:28.923154+00	691	197	2	0	00A80007
684	1	en-us	FilerImagePlugin	2016-01-14 15:02:38.790989+00	2016-01-14 15:02:52.697913+00	677	196	2	0	00A70002
702	8	en-us	FilerLinkPlugin	2016-01-15 15:40:40.055742+00	2016-01-15 15:41:07.6947+00	691	197	2	0	00A8000A
585	0	de	TextPlugin	2015-10-04 17:31:20.090022+00	2015-11-29 18:48:17.813458+00	\N	102	1	0	009C
687	4	en-us	FilerImagePlugin	2016-01-14 16:05:46.612886+00	2016-01-14 16:05:52.462317+00	677	196	2	0	00A70005
586	0	de	TextPlugin	2015-10-04 17:31:39.702947+00	2015-11-29 18:48:17.833297+00	\N	103	1	0	009D
587	0	de	TextPlugin	2015-10-04 17:32:07.260014+00	2015-11-29 18:48:17.852328+00	\N	104	1	0	009E
542	1	en-us	FilerLinkPlugin	2015-11-25 19:42:12.795471+00	2015-11-25 19:42:49.547087+00	532	184	2	0	008E0002
544	2	en-us	FilerLinkPlugin	2015-11-25 19:46:37.04755+00	2015-11-25 19:49:19.954083+00	532	184	2	0	008E0004
557	0	en-us	TextPlugin	2015-10-04 19:30:45.478049+00	2015-11-29 14:55:34.53846+00	\N	153	1	0	008K
555	0	en-us	TextPlugin	2015-10-04 19:35:23.668818+00	2015-11-29 14:55:34.499207+00	\N	156	1	0	008I
556	0	en-us	TextPlugin	2015-10-04 19:30:01.255176+00	2015-11-29 14:55:34.518584+00	\N	152	1	0	008J
558	0	en-us	TextPlugin	2015-10-04 19:31:45.82309+00	2015-11-29 14:55:34.558962+00	\N	154	1	0	008L
559	0	en-us	TextPlugin	2015-10-04 19:32:35.14572+00	2015-11-29 14:55:34.580708+00	\N	155	1	0	008M
397	4	en-us	FilerImagePlugin	2015-10-27 13:34:24.3696+00	2015-10-27 13:35:30.659912+00	392	165	2	0	006Y0005
606	0	de	TextPlugin	2015-10-04 17:52:38.665903+00	2015-11-29 18:49:10.898562+00	\N	125	1	0	009T
640	0	en-us	TextPlugin	2015-12-06 21:27:30.050753+00	2015-12-07 16:27:18.208096+00	\N	195	1	14	00A4
675	5	en-us	FilerImagePlugin	2016-01-06 14:01:25.483038+00	2016-01-06 14:01:25.504255+00	508	174	2	0	00870007
427	0	en-us	TextPlugin	2015-10-29 13:58:02.940891+00	2015-10-29 13:58:03.268334+00	\N	166	1	0	006Z
694	1	en-us	FilerImagePlugin	2016-01-15 15:35:50.05548+00	2016-01-15 15:36:02.258644+00	691	197	2	0	00A80002
434	19	en-us	FilerLinkPlugin	2015-11-03 18:04:49.321683+00	2015-11-03 18:04:49.33096+00	392	165	2	0	006Y000Z
697	4	en-us	FilerImagePlugin	2016-01-15 15:37:20.366654+00	2016-01-15 15:37:27.260221+00	691	197	2	0	00A80005
509	0	en-us	FilerImagePlugin	2015-11-19 21:10:20.919132+00	2015-11-19 21:10:29.587154+00	508	174	2	0	00870001
607	0	de	TextPlugin	2015-10-04 17:52:54.182045+00	2015-11-29 18:49:10.918129+00	\N	126	1	0	009U
685	2	en-us	FilerImagePlugin	2016-01-14 15:02:57.488251+00	2016-01-14 15:03:09.34173+00	677	196	2	0	00A70003
588	0	de	TextPlugin	2015-10-04 17:36:07.616707+00	2015-11-29 18:48:17.875106+00	\N	105	1	0	009F
532	0	en-us	TextPlugin	2015-11-25 06:36:07.172082+00	2015-12-02 04:09:10.660997+00	\N	184	1	3	008E
441	3	en-us	FilerImagePlugin	2015-11-08 21:45:24.133482+00	2015-11-08 21:50:17.201463+00	435	169	2	0	00720006
688	5	en-us	FilerLinkPlugin	2016-01-14 16:22:34.497705+00	2016-01-14 16:22:37.688682+00	677	196	2	0	00A70006
608	0	de	TextPlugin	2015-10-04 17:55:08.645778+00	2015-11-29 18:49:10.939132+00	\N	127	1	0	009V
589	0	de	TextPlugin	2015-10-04 17:20:34.38365+00	2015-11-29 18:48:17.893088+00	\N	106	1	0	009G
644	2	en-us	FilerImagePlugin	2015-12-07 14:02:56.868729+00	2015-12-07 15:42:33.35919+00	640	195	2	0	00A40004
599	0	de	TextPlugin	2015-11-15 00:25:49.040969+00	2015-11-29 18:48:45.183307+00	\N	172	1	0	009Q
513	3	en-us	FilerImagePlugin	2015-11-19 21:26:50.975129+00	2015-11-19 21:27:13.803388+00	508	174	2	0	00870005
665	11	en-us	FilerLinkPlugin	2015-12-07 15:57:31.453656+00	2015-12-07 16:21:32.541495+00	640	195	2	0	00A4000P
667	13	en-us	FilerLinkPlugin	2015-12-07 16:11:19.775054+00	2015-12-07 16:21:32.563036+00	640	195	2	0	00A4000R
153	0	en-us	TextPlugin	2015-10-04 16:56:13.254472+00	2015-10-13 14:02:19.803785+00	\N	32	1	0	000S
411	7	en-us	FilerImagePlugin	2015-10-27 15:12:14.163751+00	2015-10-27 15:13:28.857303+00	392	165	2	0	006Y000J
414	9	en-us	FilerImagePlugin	2015-10-27 15:19:02.659674+00	2015-10-27 15:19:45.378386+00	392	165	2	0	006Y000M
417	12	en-us	FilerLinkPlugin	2015-10-27 15:35:00.684411+00	2015-10-27 15:35:09.546125+00	392	165	2	0	006Y000P
609	0	de	TextPlugin	2015-10-04 17:55:24.521891+00	2015-11-29 18:49:10.959015+00	\N	128	1	0	009W
423	17	en-us	FilerLinkPlugin	2015-10-27 18:49:46.094514+00	2015-10-27 18:49:52.844627+00	392	165	2	0	006Y000V
605	0	de	TextPlugin	2015-10-04 17:45:58.715573+00	2015-11-29 18:49:10.880241+00	\N	131	1	0	009S
453	1	en-us	FilerLinkPlugin	2015-11-13 05:54:37.454544+00	2015-11-13 05:58:27.999383+00	449	170	2	0	00730004
456	4	en-us	FilerLinkPlugin	2015-11-13 05:55:51.91029+00	2015-11-13 05:58:28.027145+00	449	170	2	0	00730007
459	7	en-us	FilerLinkPlugin	2015-11-13 05:58:16.185562+00	2015-11-13 05:58:28.054721+00	449	170	2	0	0073000A
610	0	de	TextPlugin	2015-10-04 17:56:28.318812+00	2015-11-29 18:49:10.978802+00	\N	129	1	0	009X
564	0	en-us	TextPlugin	2015-10-04 16:59:46.792796+00	2015-11-29 14:57:13.359591+00	\N	101	1	0	008R
611	0	de	TextPlugin	2015-10-04 17:56:10.917672+00	2015-11-29 18:49:10.997189+00	\N	130	1	0	009Y
560	0	en-us	TextPlugin	2015-11-15 00:01:22.760865+00	2015-11-29 14:55:34.615626+00	\N	172	1	0	008N
161	0	en-us	TextPlugin	2015-10-04 17:02:21.812903+00	2015-11-29 14:55:56.749124+00	\N	39	1	0	0010
505	0	en-us	FilerImagePlugin	2015-11-15 14:47:03.450234+00	2015-11-15 14:47:03.458311+00	504	173	2	0	00860001
507	2	en-us	FilerImagePlugin	2015-11-15 14:54:12.515102+00	2015-11-15 14:54:12.524394+00	504	173	2	0	00860003
551	0	de	FilerLinkPlugin	2015-11-25 20:15:33.454257+00	2015-11-25 20:15:46.897861+00	537	184	2	0	008G0001
561	0	en-us	TextPlugin	2015-10-04 16:56:41.534844+00	2015-11-29 14:57:13.295013+00	\N	98	1	0	008O
562	0	en-us	TextPlugin	2015-10-04 16:56:13.254472+00	2015-11-29 14:57:13.317175+00	\N	99	1	0	008P
537	0	de	TextPlugin	2015-11-25 07:06:27.105989+00	2015-11-25 20:18:11.193552+00	\N	184	1	1	008G
563	0	en-us	TextPlugin	2015-10-04 17:00:03.379218+00	2015-11-29 14:57:13.33889+00	\N	100	1	0	008Q
565	0	en-us	TextPlugin	2015-10-04 17:00:37.507873+00	2015-11-29 14:57:13.381272+00	\N	102	1	0	008S
566	0	en-us	TextPlugin	2015-10-04 17:01:04.021107+00	2015-11-29 14:57:13.401304+00	\N	103	1	0	008T
567	0	en-us	TextPlugin	2015-10-04 17:01:30.763349+00	2015-11-29 14:57:13.458298+00	\N	104	1	0	008U
669	0	en-us	FilerLinkPlugin	2015-11-25 06:50:51.131351+00	2015-12-15 15:18:12.715189+00	668	185	2	0	00A50001
568	0	en-us	TextPlugin	2015-10-04 17:01:51.549308+00	2015-11-29 14:57:13.486097+00	\N	105	1	0	008V
590	0	en-us	TextPlugin	2015-10-04 18:06:26.767411+00	2015-11-29 18:48:33.74376+00	\N	143	1	0	009H
569	0	en-us	TextPlugin	2015-10-04 17:02:21.812903+00	2015-11-29 14:57:13.50845+00	\N	106	1	0	008W
570	0	en-us	TextPlugin	2015-10-04 17:45:58.715573+00	2015-11-29 14:57:26.36118+00	\N	131	1	0	008X
591	0	en-us	TextPlugin	2015-10-04 18:06:49.275704+00	2015-11-29 18:48:33.763476+00	\N	140	1	0	009I
645	3	en-us	FilerImagePlugin	2015-12-07 14:03:11.868625+00	2015-12-07 15:42:33.369596+00	640	195	2	0	00A40005
571	0	en-us	TextPlugin	2015-10-04 17:46:20.372898+00	2015-11-29 14:57:26.38269+00	\N	125	1	0	008Y
670	1	en-us	FilerLinkPlugin	2015-11-25 19:42:12.795471+00	2015-12-15 15:18:12.735375+00	668	185	2	0	00A50002
592	0	en-us	TextPlugin	2015-10-04 18:10:28.015404+00	2015-11-29 18:48:33.786137+00	\N	141	1	0	009J
572	0	en-us	TextPlugin	2015-10-04 17:46:40.251564+00	2015-11-29 14:57:26.402591+00	\N	126	1	0	008Z
671	2	en-us	FilerLinkPlugin	2015-11-25 19:46:37.04755+00	2015-12-15 15:18:12.745066+00	668	185	2	0	00A50003
573	0	en-us	TextPlugin	2015-10-04 17:47:04.566022+00	2015-11-29 14:57:26.422766+00	\N	127	1	0	0090
650	6	en-us	FilerImagePlugin	2015-12-07 14:30:54.503529+00	2015-12-07 15:42:33.761666+00	640	195	2	0	00A4000A
593	0	en-us	TextPlugin	2015-10-04 18:07:07.395899+00	2015-11-29 18:48:33.846763+00	\N	142	1	0	009K
574	0	en-us	TextPlugin	2015-10-04 17:47:33.925637+00	2015-11-29 14:57:26.443985+00	\N	128	1	0	0091
668	0	en-us	TextPlugin	2015-11-25 06:36:07.172082+00	2015-12-15 15:18:12.778063+00	\N	185	1	3	00A5
575	0	en-us	TextPlugin	2015-10-04 17:47:50.728833+00	2015-11-29 14:57:26.465934+00	\N	129	1	0	0092
676	6	en-us	FilerImagePlugin	2016-01-06 17:18:16.583585+00	2016-01-06 17:18:16.595737+00	508	174	2	0	00870008
576	0	en-us	TextPlugin	2015-10-04 17:48:04.82884+00	2015-11-29 14:57:26.485572+00	\N	130	1	0	0093
683	0	en-us	FilerImagePlugin	2016-01-14 15:01:23.621599+00	2016-01-14 15:01:47.754985+00	677	196	2	0	00A70001
686	3	en-us	FilerImagePlugin	2016-01-14 15:55:49.266747+00	2016-01-14 15:56:28.869312+00	677	196	2	0	00A70004
689	6	en-us	FilerImagePlugin	2016-01-14 16:35:07.669476+00	2016-01-14 16:35:32.395031+00	677	196	2	0	00A70007
695	2	en-us	FilerImagePlugin	2016-01-15 15:36:19.569446+00	2016-01-15 15:36:45.27614+00	691	197	2	0	00A80003
698	5	en-us	FilerImagePlugin	2016-01-15 15:37:45.663001+00	2016-01-15 15:38:02.560488+00	691	197	2	0	00A80006
701	7	en-us	FilerLinkPlugin	2016-01-15 15:39:42.294183+00	2016-01-15 15:41:07.683981+00	691	197	2	0	00A80009
662	8	en-us	FilerImagePlugin	2015-12-07 15:54:15.851671+00	2015-12-07 16:21:32.510121+00	640	195	2	0	00A4000M
666	12	en-us	FilerImagePlugin	2015-12-07 16:01:31.687609+00	2015-12-07 16:21:32.552615+00	640	195	2	0	00A4000Q
691	0	en-us	TextPlugin	2016-01-15 15:18:10.62021+00	2016-03-22 17:39:35.040554+00	\N	197	1	9	00A8
692	1	en-us	FilerImagePlugin	2016-01-15 15:18:53.82954+00	2016-03-22 17:39:35.072247+00	\N	197	1	0	00AG
703	2	en-us	FilerFolderPlugin	2016-03-22 17:33:10.360439+00	2016-03-22 17:39:35.101724+00	\N	197	1	0	00AA
704	3	en-us	TeaserPlugin	2016-03-22 17:33:31.584233+00	2016-03-22 17:39:35.13472+00	\N	197	1	0	00AB
705	4	en-us	BlogArchivePlugin	2016-03-22 17:35:44.594126+00	2016-03-22 17:39:35.173876+00	\N	197	1	0	00AC
706	5	en-us	InheritPagePlaceholderPlugin	2016-03-22 17:36:29.069125+00	2016-03-22 17:39:35.238346+00	\N	197	1	0	00AD
707	6	en-us	TextPlugin	2016-03-22 17:36:37.49401+00	2016-03-22 17:39:35.288607+00	\N	197	1	0	00AE
708	7	en-us	BlogAuthorPostsPlugin	2016-03-22 17:38:34.608119+00	2016-03-22 17:39:35.337345+00	\N	197	1	0	00AF
709	\N	en-us	PlaceholderPlugin	2016-03-22 22:53:28.166519+00	2016-03-22 22:53:28.173422+00	\N	217	1	0	00AH
711	0	en-us	FilerImagePlugin	2015-06-15 20:12:38.592686+00	2016-03-22 22:53:28.370534+00	710	219	2	0	00AI0001
712	1	en-us	FilerImagePlugin	2015-06-15 20:12:59.845088+00	2016-03-22 22:53:28.433876+00	710	219	2	0	00AI0002
713	2	en-us	FilerImagePlugin	2015-06-15 20:23:41.774831+00	2016-03-22 22:53:28.446862+00	710	219	2	0	00AI0003
710	0	en-us	TextPlugin	2015-06-14 21:24:27.724016+00	2016-03-22 22:53:28.469383+00	\N	219	1	3	00AI
\.


--
-- Name: cms_cmsplugin_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_cmsplugin_id_seq', 713, true);


--
-- Data for Name: cms_globalpagepermission; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_globalpagepermission (id, can_change, can_add, can_delete, can_change_advanced_settings, can_publish, can_change_permissions, can_move_page, can_view, can_recover_page, group_id, user_id) FROM stdin;
\.


--
-- Name: cms_globalpagepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_globalpagepermission_id_seq', 1, false);


--
-- Data for Name: cms_globalpagepermission_sites; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_globalpagepermission_sites (id, globalpagepermission_id, site_id) FROM stdin;
\.


--
-- Name: cms_globalpagepermission_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_globalpagepermission_sites_id_seq', 1, false);


--
-- Data for Name: cms_page; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_page (id, created_by, changed_by, creation_date, changed_date, publication_date, publication_end_date, in_navigation, soft_root, reverse_id, navigation_extenders, template, login_required, limit_visibility_in_menu, is_home, application_urls, application_namespace, publisher_is_draft, languages, revision_id, xframe_options, parent_id, publisher_public_id, site_id, depth, numchild, path) FROM stdin;
7	ungleich	ungleich	2015-10-04 18:05:38.15065+00	2016-01-29 19:50:41.450861+00	2015-10-04 23:27:38.405173+00	\N	t	f	\N		cms/digitalglarus/contact.html	f	\N	f		\N	t	en-us,de	0	0	5	13	1	2	0	00050002
12	ungleich	ungleich	2015-10-04 23:27:26.914465+00	2015-11-29 18:49:11.001574+00	2015-10-04 23:27:26.906591+00	\N	t	f	\N		cms/digitalglarus/about.html	f	\N	f		\N	f	en-us,de	0	0	9	6	1	2	0	00060001
6	ungleich	ungleich	2015-10-04 17:45:05.381054+00	2015-11-29 18:49:11.149388+00	2015-10-04 23:27:26.906591+00	\N	t	f	\N		cms/digitalglarus/about.html	f	\N	f		\N	t	en-us,de	0	0	5	12	1	2	0	00050001
9	ungleich	ungleich	2015-10-04 22:19:37.058419+00	2015-11-29 18:48:17.897326+00	2015-10-04 22:19:37.050098+00	\N	t	t	digital-glarus-page		cms/digitalglarus/index.html	f	\N	f		\N	f	en-us,de	0	0	\N	5	1	1	4	0006
4	ungleich	ungleich	2015-06-12 17:17:49.270519+00	2015-11-29 18:48:17.913709+00	2015-06-12 17:17:49.261484+00	\N	f	f	\N		cms/ungleichch/blog.html	f	\N	t	BlogApp	djangocms_blog	f	en-us	0	0	\N	3	1	1	0	0004
13	ungleich	ungleich	2015-10-04 23:27:38.415897+00	2015-11-29 18:48:33.851636+00	2015-10-04 23:27:38.405173+00	\N	t	f	\N		cms/digitalglarus/contact.html	f	\N	f		\N	f	en-us,de	0	0	9	7	1	2	0	00060002
14	ungleich	ungleich	2015-10-04 23:27:52.90541+00	2015-11-29 18:48:45.187376+00	2015-10-04 23:27:52.894729+00	\N	t	f	\N		cms/digitalglarus/one_column.html	f	\N	f		\N	f	en-us,de	0	0	9	8	1	2	0	00060003
8	ungleich	ungleich	2015-10-04 18:54:49.173916+00	2015-11-29 18:48:45.288396+00	2015-10-04 23:27:52.894729+00	\N	t	f	\N		cms/digitalglarus/one_column.html	f	\N	f		\N	t	en-us,de	0	0	5	14	1	2	0	00050003
3	ungleich	ungleich	2015-06-12 17:05:57.028042+00	2016-02-28 15:12:18.423307+00	2015-06-12 17:17:49.261484+00	\N	f	f	\N		cms/ungleichch/blog.html	f	\N	t	BlogApp	djangocms_blog	t	en-us,de	0	0	\N	4	1	1	0	0003
15	ungleich	ungleich	2015-11-25 06:19:53.576477+00	2016-02-28 15:13:01.724826+00	2015-11-25 07:04:21.089598+00	\N	f	f	\N	\N	cms/digitalglarus/one_column.html	f	\N	f	\N	\N	t	en-us,de	0	0	5	16	1	2	0	00050004
18	ungleich	ungleich	2016-02-28 15:12:18.253391+00	2016-02-28 15:12:18.408831+00	\N	\N	t	f	\N	\N	INHERIT	f	\N	f	\N	\N	t	en-us	0	0	\N	\N	1	1	0	0007
5	ungleich	ungleich	2015-10-04 16:53:42.17135+00	2015-11-29 18:48:18.065597+00	2015-10-04 22:19:37.050098+00	\N	t	t	digital-glarus-page		cms/digitalglarus/index.html	f	\N	f		\N	t	en-us,de	0	0	\N	9	1	1	5	0005
16	ungleich	ungleich	2015-11-25 07:04:21.100041+00	2016-02-28 15:13:01.784425+00	2015-11-25 07:04:21.089598+00	\N	f	f	\N	\N	cms/digitalglarus/one_column.html	f	\N	f	\N	\N	f	en-us,de	0	0	9	15	1	2	0	00060004
\.


--
-- Name: cms_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_page_id_seq', 18, true);


--
-- Data for Name: cms_page_placeholders; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_page_placeholders (id, page_id, placeholder_id) FROM stdin;
3	3	6
4	4	8
5	5	31
6	5	32
7	5	33
8	5	34
9	5	35
10	5	36
11	5	37
12	5	38
13	5	39
32	6	58
33	6	59
34	6	60
35	6	61
36	6	62
37	6	63
38	6	64
39	6	65
40	6	66
41	6	67
42	6	68
43	6	69
44	6	70
45	6	71
46	6	72
47	7	73
48	7	74
49	7	75
50	7	76
51	7	77
52	7	78
53	7	79
54	7	80
55	7	81
56	7	82
57	7	83
58	7	84
59	8	85
60	8	86
61	8	87
62	8	88
63	8	89
64	8	90
65	8	91
66	8	92
67	8	93
68	8	94
69	8	95
70	8	96
71	8	97
72	9	98
73	9	99
74	9	100
75	9	101
76	9	102
77	9	103
78	9	104
79	9	105
80	9	106
99	12	125
100	12	126
101	12	127
102	12	128
103	12	129
104	12	130
105	12	131
106	12	132
107	12	133
108	12	134
109	12	135
110	12	136
111	12	137
112	12	138
113	12	139
114	13	140
115	13	141
116	13	142
117	13	143
118	13	144
119	13	145
120	13	146
121	13	147
122	13	148
123	13	149
124	13	150
125	13	151
126	14	152
127	14	153
128	14	154
129	14	155
130	14	156
131	14	160
132	14	161
133	14	162
134	14	163
135	14	164
136	14	157
137	14	158
138	14	159
139	8	171
140	14	172
141	15	175
142	15	176
143	15	177
144	15	178
145	15	179
146	15	180
147	15	181
148	15	182
149	15	183
150	15	184
151	16	185
152	16	186
153	16	192
154	16	193
155	16	194
156	16	187
157	16	188
158	16	189
159	16	190
160	16	191
170	18	207
171	18	208
172	18	209
173	18	210
174	18	211
175	18	212
176	18	213
177	18	214
178	18	215
179	18	218
\.


--
-- Name: cms_page_placeholders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_page_placeholders_id_seq', 179, true);


--
-- Data for Name: cms_pagepermission; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_pagepermission (id, can_change, can_add, can_delete, can_change_advanced_settings, can_publish, can_change_permissions, can_move_page, can_view, grant_on, group_id, page_id, user_id) FROM stdin;
\.


--
-- Name: cms_pagepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_pagepermission_id_seq', 1, false);


--
-- Data for Name: cms_pageuser; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_pageuser (user_ptr_id, created_by_id) FROM stdin;
\.


--
-- Data for Name: cms_pageusergroup; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_pageusergroup (group_ptr_id, created_by_id) FROM stdin;
\.


--
-- Data for Name: cms_placeholder; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_placeholder (id, slot, default_width) FROM stdin;
1	clipboard	\N
2	footer_copyright	\N
3	footer_copyright	\N
6	page_content	\N
7	post_content	\N
8	page_content	\N
9	post_content	\N
10	post_content	\N
11	post_content	\N
12	post_content	\N
13	post_content	\N
14	post_content	\N
15	post_content	\N
16	post_content	\N
17	clipboard	\N
18	post_content	\N
19	post_content	\N
20	post_content	\N
21	post_content	\N
22	post_content	\N
23	post_content	\N
24	post_content	\N
25	post_content	\N
26	post_content	\N
27	post_content	\N
28	post_content	\N
29	post_content	\N
30	post_content	\N
31	digital_glarus_build_a_tech_valley	\N
32	digital_glarus_build_a_tech_valley_content	\N
33	digital_glarus_a_new_area	\N
34	digital_glarus_a_new_area_content	\N
35	digital_glarus_why_be_interested	\N
36	digital_glarus_why_be_interested_content	\N
37	digital_glarus_where_we_are	\N
38	digital_glarus_where_we_are_content	\N
39	digital_glarus_legend	\N
58	digital_glarus_build_a_tech_valley	\N
59	digital_glarus_build_a_tech_valley_content	\N
60	digital_glarus_a_new_area	\N
61	digital_glarus_a_new_area_content	\N
62	digital_glarus_why_be_interested	\N
63	digital_glarus_why_be_interested_content	\N
64	digital_glarus_where_we_are	\N
65	digital_glarus_where_we_are_content	\N
66	digital_glarus_legend	\N
67	digitalglarus_why_us	\N
68	digitalglarus_why_us_content	\N
69	digitalglarus_why_glarus	\N
70	digitalglarus_why_glarus_beautiful_landscape	\N
71	digitalglarus_why_glarus_affordable_price	\N
72	digitalglarus_why_glarus_direct_connection_zurich	\N
73	digital_glarus_build_a_tech_valley	\N
74	digital_glarus_build_a_tech_valley_content	\N
75	digital_glarus_a_new_area	\N
76	digital_glarus_a_new_area_content	\N
77	digital_glarus_why_be_interested	\N
78	digital_glarus_why_be_interested_content	\N
79	digital_glarus_where_we_are	\N
80	digital_glarus_where_we_are_content	\N
81	digital_glarus_legend	\N
82	digital_glarus_contact	\N
83	digital_glarus_contact_content	\N
84	digital_glarus_contact_information	\N
85	digital_glarus_build_a_tech_valley	\N
86	digital_glarus_build_a_tech_valley_content	\N
87	digital_glarus_a_new_area	\N
88	digital_glarus_a_new_area_content	\N
89	digital_glarus_why_be_interested	\N
90	digital_glarus_why_be_interested_content	\N
91	digital_glarus_where_we_are	\N
92	digital_glarus_where_we_are_content	\N
93	digital_glarus_legend	\N
94	digitalglarus_why_glarus	\N
95	digitalglarus_why_glarus_beautiful_landscape	\N
96	digitalglarus_why_glarus_affordable_price	\N
97	digitalglarus_why_glarus_direct_connection_zurich	\N
98	digital_glarus_build_a_tech_valley	\N
99	digital_glarus_build_a_tech_valley_content	\N
100	digital_glarus_a_new_area	\N
101	digital_glarus_a_new_area_content	\N
102	digital_glarus_why_be_interested	\N
103	digital_glarus_why_be_interested_content	\N
104	digital_glarus_where_we_are	\N
105	digital_glarus_where_we_are_content	\N
106	digital_glarus_legend	\N
125	digitalglarus_why_us	\N
126	digitalglarus_why_us_content	\N
127	digitalglarus_why_glarus	\N
128	digitalglarus_why_glarus_beautiful_landscape	\N
129	digitalglarus_why_glarus_affordable_price	\N
130	digitalglarus_why_glarus_direct_connection_zurich	\N
131	digital_glarus_legend	\N
132	digital_glarus_build_a_tech_valley	\N
133	digital_glarus_build_a_tech_valley_content	\N
134	digital_glarus_a_new_area	\N
135	digital_glarus_a_new_area_content	\N
136	digital_glarus_why_be_interested	\N
137	digital_glarus_why_be_interested_content	\N
138	digital_glarus_where_we_are	\N
139	digital_glarus_where_we_are_content	\N
140	digital_glarus_contact	\N
141	digital_glarus_contact_content	\N
142	digital_glarus_contact_information	\N
143	digital_glarus_legend	\N
144	digital_glarus_build_a_tech_valley	\N
145	digital_glarus_build_a_tech_valley_content	\N
146	digital_glarus_a_new_area	\N
147	digital_glarus_a_new_area_content	\N
148	digital_glarus_why_be_interested	\N
149	digital_glarus_why_be_interested_content	\N
150	digital_glarus_where_we_are	\N
151	digital_glarus_where_we_are_content	\N
152	digitalglarus_why_glarus	\N
153	digitalglarus_why_glarus_beautiful_landscape	\N
154	digitalglarus_why_glarus_affordable_price	\N
155	digitalglarus_why_glarus_direct_connection_zurich	\N
156	digital_glarus_legend	\N
157	digital_glarus_build_a_tech_valley	\N
158	digital_glarus_build_a_tech_valley_content	\N
159	digital_glarus_a_new_area	\N
160	digital_glarus_a_new_area_content	\N
161	digital_glarus_why_be_interested	\N
162	digital_glarus_why_be_interested_content	\N
163	digital_glarus_where_we_are	\N
164	digital_glarus_where_we_are_content	\N
165	post_content	\N
166	post_content	\N
167	post_content	\N
168	post_content	\N
169	post_content	\N
170	post_content	\N
171	digitalglarus_why_us	\N
172	digitalglarus_why_us	\N
173	post_content	\N
174	post_content	\N
175	digital_glarus_build_a_tech_valley	\N
176	digital_glarus_build_a_tech_valley_content	\N
177	digital_glarus_a_new_area	\N
178	digital_glarus_a_new_area_content	\N
179	digital_glarus_why_be_interested	\N
180	digital_glarus_why_be_interested_content	\N
181	digital_glarus_where_we_are	\N
182	digital_glarus_where_we_are_content	\N
183	digital_glarus_legend	\N
184	digitalglarus_why_us	\N
185	digitalglarus_why_us	\N
186	digital_glarus_legend	\N
187	digital_glarus_build_a_tech_valley	\N
188	digital_glarus_build_a_tech_valley_content	\N
189	digital_glarus_a_new_area	\N
190	digital_glarus_a_new_area_content	\N
191	digital_glarus_why_be_interested	\N
192	digital_glarus_why_be_interested_content	\N
193	digital_glarus_where_we_are	\N
194	digital_glarus_where_we_are_content	\N
195	post_content	\N
196	post_content	\N
197	post_content	\N
207	digital_glarus_build_a_tech_valley	\N
208	digital_glarus_build_a_tech_valley_content	\N
209	digital_glarus_a_new_area	\N
210	digital_glarus_a_new_area_content	\N
211	digital_glarus_why_be_interested	\N
212	digital_glarus_why_be_interested_content	\N
213	digital_glarus_where_we_are	\N
214	digital_glarus_where_we_are_content	\N
215	digital_glarus_legend	\N
216	clipboard	\N
217	clipboard	\N
218	page_content	\N
219	clipboard	\N
\.


--
-- Name: cms_placeholder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_placeholder_id_seq', 219, true);


--
-- Data for Name: cms_placeholderreference; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_placeholderreference (cmsplugin_ptr_id, name, placeholder_ref_id) FROM stdin;
709	Content	219
\.


--
-- Data for Name: cms_staticplaceholder; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_staticplaceholder (id, name, code, dirty, creation_method, draft_id, public_id, site_id) FROM stdin;
1	footer_copyright	footer_copyright	t	template	2	3	\N
\.


--
-- Name: cms_staticplaceholder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_staticplaceholder_id_seq', 1, true);


--
-- Data for Name: cms_title; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_title (id, language, title, page_title, menu_title, meta_description, slug, path, has_url_overwrite, redirect, creation_date, published, publisher_is_draft, publisher_state, page_id, publisher_public_id) FROM stdin;
17	en-us	Digital Glarus - About	Digital Glarus - About	about	The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13	digital-glarus-about	digitalglarus-home/digital-glarus-about	f		2015-10-04 17:45:05.433404+00	t	f	0	12	7
7	en-us	Digital Glarus - About	Digital Glarus - About	about	The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13	digital-glarus-about	digitalglarus-home/digital-glarus-about	f		2015-10-04 17:45:05.433404+00	t	t	0	6	17
23	de	blog	ungleich blog	blog	on OpenSource, technology, our passion and interests...	blog		f	\N	2015-11-04 21:54:05.650107+00	f	t	1	3	\N
9	en-us	Digital Glarus - Contact	Digital Glarus - Contact	contact	Contact DIGITAL GLARUS 	digital-glarus-contact	digitalglarus-home/digital-glarus-contact	f		2015-10-04 18:05:38.201108+00	t	t	1	7	18
19	en-us	Digital Glarus - Crowdfunding	Digital Glarus - Crowdfunding	crowdfunding	Digital Glarus - Crowdfunding	digital-glarus-crowdfunding	digitalglarus	t		2015-10-04 18:54:49.222459+00	t	f	0	14	11
11	en-us	Digital Glarus - Crowdfunding	Digital Glarus - Crowdfunding	crowdfunding	Digital Glarus - Crowdfunding	digital-glarus-crowdfunding	digitalglarus	t		2015-10-04 18:54:49.222459+00	t	t	0	8	19
6	de	Digital Glarus - Startseite	Digital Glarus - Startseite	Startseite	DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ	digitalglarus-startseite	digitalglarus-startseite	f		2015-10-04 17:20:12.951092+00	t	t	0	5	14
13	en-us	Digital Glarus - Welcome	Digital Glarus	home	BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND	digitalglarus-home	digitalglarus-home	f		2015-10-04 16:53:42.348209+00	t	f	0	9	5
5	en-us	Digital Glarus - Welcome	Digital Glarus	home	BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND	digitalglarus-home	digitalglarus-home	f		2015-10-04 16:53:42.348209+00	t	t	0	5	13
18	en-us	Digital Glarus - Contact	Digital Glarus - Contact	contact	Contact DIGITAL GLARUS 	digital-glarus-contact	digitalglarus-home/digital-glarus-contact	f		2015-10-04 18:05:38.201108+00	t	f	0	13	9
21	de	Digital Glarus - Kontakt	Digital Glarus - Kontakt	Kontakt	Digital Glarus - Kontakt	digital-glarus-kontakt	digitalglarus-startseite/digital-glarus-kontakt	f	\N	2015-10-04 18:14:07.928851+00	t	f	0	13	10
10	de	Digital Glarus - Kontakt	Digital Glarus - Kontakt	Kontakt	Digital Glarus - Kontakt	digital-glarus-kontakt	digitalglarus-startseite/digital-glarus-kontakt	f	\N	2015-10-04 18:14:07.928851+00	t	t	0	7	21
14	de	Digital Glarus - Startseite	Digital Glarus - Startseite	Startseite	DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ	digitalglarus-startseite	digitalglarus-startseite	f		2015-10-04 17:20:12.951092+00	t	f	0	9	6
22	de	Digital Glarus - Crowdfunding	Digital Glarus - Crowdfunding	Crowdfunding	Digital Glarus - Crowdfunding	digital-glarus-crowdfunding	digitalglarus-startseite/digital-glarus-crowdfunding	f	\N	2015-10-04 19:49:28.161298+00	t	f	0	14	12
12	de	Digital Glarus - Crowdfunding	Digital Glarus - Crowdfunding	Crowdfunding	Digital Glarus - Crowdfunding	digital-glarus-crowdfunding	digitalglarus-startseite/digital-glarus-crowdfunding	f	\N	2015-10-04 19:49:28.161298+00	t	t	0	8	22
20	de	Digital Glarus - Ãœber uns	Digital Glarus - Ãœber uns	Ãœber uns	DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ	digital-glarus-uber-uns	digitalglarus-startseite/digital-glarus-uber-uns	f	\N	2015-10-04 17:54:39.076803+00	t	f	0	12	8
8	de	Digital Glarus - Ãœber uns	Digital Glarus - Ãœber uns	Ãœber uns	DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ	digital-glarus-uber-uns	digitalglarus-startseite/digital-glarus-uber-uns	f	\N	2015-10-04 17:54:39.076803+00	t	t	0	6	20
4	en-us	Blog	ungleich Blog	Blog	on OpenSource, technology, our passion and interests...	blog	blog	t		2015-06-12 17:05:57.066362+00	t	f	0	4	3
3	en-us	Blog	ungleich Blog	Blog	on OpenSource, technology, our passion and interests...	blog	blog	t		2015-06-12 17:05:57.066362+00	t	t	0	3	4
29	en-us	events	Events	Events	events	events	events	f	\N	2016-02-28 15:12:18.340514+00	f	t	1	18	\N
26	de	Let's Jazz in Glarus	Jazz in Glarus!	jazz	jazz, glarus, coworking	lets-jazz-glarus	digitalglarus-startseite/lets-jazz-glarus	f	\N	2015-11-25 07:05:18.587715+00	t	t	0	15	27
24	en-us	Let's Jazz in Glarus!	Jazz in Glarus!	jazz		lets-jazz-glarus	digitalglarus-home/lets-jazz-glarus	f	\N	2015-11-25 06:19:53.724038+00	t	t	0	15	25
27	de	Let's Jazz in Glarus	Jazz in Glarus!	jazz	jazz, glarus, coworking	lets-jazz-glarus	digitalglarus-startseite/lets-jazz-glarus	f	\N	2015-11-25 07:05:18.587715+00	t	f	0	16	26
25	en-us	Let's Jazz in Glarus!	Jazz in Glarus!	jazz		lets-jazz-glarus	digitalglarus-home/lets-jazz-glarus	f	\N	2015-11-25 06:19:53.724038+00	t	f	0	16	24
\.


--
-- Name: cms_title_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_title_id_seq', 29, true);


--
-- Data for Name: cms_usersettings; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cms_usersettings (id, language, clipboard_id, user_id) FROM stdin;
1	en-us	1	1
2	en-us	17	3
3	en-us	216	4
4	en-us	217	5
\.


--
-- Name: cms_usersettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cms_usersettings_id_seq', 4, true);


--
-- Data for Name: cmsplugin_filer_file_filerfile; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_file_filerfile (cmsplugin_ptr_id, title, target_blank, style, file_id) FROM stdin;
\.


--
-- Data for Name: cmsplugin_filer_folder_filerfolder; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_folder_filerfolder (cmsplugin_ptr_id, title, style, folder_id) FROM stdin;
\.


--
-- Data for Name: cmsplugin_filer_image_filerimage; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_image_filerimage (cmsplugin_ptr_id, style, caption_text, image_url, alt_text, use_original_image, use_autoscale, width, height, crop, upscale, alignment, free_link, original_link, description, target_blank, file_link_id, image_id, page_link_id, thumbnail_option_id) FROM stdin;
17					f	f	\N	\N	t	t	\N		f		f	\N	13	\N	\N
18					f	f	\N	\N	t	t	\N		f		f	\N	11	\N	\N
19					f	f	\N	\N	t	t	\N		f		f	\N	12	\N	\N
38					f	f	\N	\N	t	t	\N		f		f	\N	19	\N	\N
39					f	f	\N	\N	t	t	\N		f		f	\N	21	\N	\N
40					f	f	\N	\N	t	t	\N		f		f	\N	22	\N	\N
49					f	f	\N	\N	t	t	\N		f		f	\N	24	\N	\N
50					f	f	\N	\N	t	t	\N		f		f	\N	25	\N	\N
51					f	f	\N	\N	t	t	\N		f		f	\N	26	\N	\N
52					f	f	\N	\N	t	t	\N		f		f	\N	27	\N	\N
55					f	f	\N	\N	t	t	\N		f		f	\N	29	\N	\N
56					f	f	\N	\N	t	t	\N		f		f	\N	30	\N	\N
57					f	f	\N	\N	t	t	\N		f		f	\N	31	\N	\N
82					f	f	\N	\N	t	t	\N		f		f	\N	35	\N	\N
84					t	f	\N	\N	t	t	\N		f		f	\N	37	\N	\N
83					f	f	\N	\N	t	t	\N		f		f	\N	38	\N	\N
93					f	f	\N	\N	t	t	\N		f		f	\N	39	\N	\N
644					f	f	\N	\N	t	t	\N		f		f	\N	163	\N	\N
645					f	f	\N	\N	t	t	\N		f		f	\N	165	\N	\N
97					f	f	\N	\N	t	t	\N		f		f	\N	42	\N	\N
98					f	f	\N	\N	t	t	\N		f		f	\N	44	\N	\N
99					f	f	\N	\N	t	t	\N		f		f	\N	45	\N	\N
109					f	f	\N	\N	t	t	\N		f		f	\N	50	\N	\N
107					f	f	\N	\N	t	t	\N		f		f	\N	48	\N	\N
106					f	f	\N	\N	t	t	\N		f		f	\N	53	\N	\N
647					f	f	\N	\N	t	t	\N		f		f	\N	166	\N	\N
112					f	f	\N	\N	t	t	\N		f		f	\N	55	\N	\N
124					f	f	\N	\N	t	t	\N		f		f	\N	61	\N	\N
126					f	f	\N	\N	t	t	\N		f		f	\N	62	\N	\N
129					f	f	\N	\N	t	t	\N		f		f	\N	71	\N	\N
130					f	f	\N	\N	t	t	\N	http://www.digitalglarus.ch	f		f	\N	72	\N	\N
135					f	f	\N	\N	t	t	\N		f		f	\N	73	\N	\N
136					f	f	\N	\N	t	t	\N		f		f	\N	74	\N	\N
139					f	f	\N	\N	t	t	\N		f		f	\N	78	\N	\N
143					f	f	\N	\N	t	t	\N		f		f	\N	81	\N	\N
140		Getting ready for welcoming the audience			f	f	\N	\N	t	t	\N		f		f	\N	79	\N	\N
142		Nico explaining what is a coworking space			f	f	\N	\N	t	t	\N		f		f	\N	80	\N	\N
147					f	f	\N	\N	t	t	\N	http://www.100-days.net/de/projekt/start-digital-glarus	f		f	\N	72	\N	\N
648					f	f	\N	\N	t	t	\N		f		f	\N	167	\N	\N
148					f	f	600	\N	t	t	\N	https://blog.ungleich.ch/blog/2015/09/24/digital-glarus-radio-german/	f		f	\N	71	\N	\N
650					f	f	\N	\N	t	t	\N		f		f	\N	169	\N	\N
393					f	f	\N	\N	t	t	\N		f		f	\N	85	\N	\N
394					f	f	\N	\N	t	t	\N		f		f	\N	86	\N	\N
395					f	f	\N	\N	t	t	\N		f		f	\N	88	\N	\N
396					f	f	\N	\N	t	t	\N		f		f	\N	87	\N	\N
397					f	f	\N	\N	t	t	\N		f		f	\N	89	\N	\N
400					f	f	\N	\N	t	t	\N		f		f	\N	91	\N	\N
411					f	f	\N	\N	t	t	\N		f		f	\N	92	\N	\N
413					f	f	\N	\N	t	t	\N		f		f	\N	93	\N	\N
414					f	f	\N	\N	t	t	\N		f		f	\N	94	\N	\N
415					f	f	\N	\N	t	t	\N		f		f	\N	96	\N	\N
416					f	f	\N	\N	t	t	\N		f		f	\N	97	\N	\N
419					f	f	\N	\N	t	t	\N		f		f	\N	98	\N	\N
422					f	f	\N	\N	t	t	\N		f		f	\N	99	\N	\N
399					f	f	\N	\N	t	t	\N		f		f	\N	90	\N	\N
437					f	f	\N	\N	t	t	\N		f		f	\N	118	\N	\N
440					f	f	\N	\N	t	t	\N		f		f	\N	119	\N	\N
441					f	f	\N	\N	t	t	\N		f		f	\N	120	\N	\N
442					f	f	\N	\N	t	t	\N		f		f	\N	121	\N	\N
445					f	f	\N	\N	t	t	\N		f		f	\N	124	\N	\N
448					f	f	\N	\N	t	t	\N		f		f	\N	148	\N	\N
509					f	f	\N	\N	t	t	\N		f		f	\N	126	\N	\N
513					f	f	\N	\N	t	t	\N	http://www.100-days.net/en/projekt/start-digital-glarus	f		f	\N	72	\N	\N
652					f	f	\N	\N	t	t	\N		f		f	\N	168	\N	\N
662					f	f	\N	\N	t	t	\N		f		f	\N	171	\N	\N
666					f	f	\N	\N	t	t	\N	http://www.100-days.net/de/projekt/start-digital-glarus	f		f	\N	72	\N	\N
642					f	f	\N	\N	t	t	\N		f		f	\N	173	\N	\N
683					f	f	\N	\N	t	t	\N		f		f	\N	176	\N	\N
684					f	f	\N	\N	t	t	\N		f		f	\N	180	\N	\N
685					f	f	\N	\N	t	t	\N		f		f	\N	181	\N	\N
686					f	f	\N	\N	t	t	\N		f		f	\N	187	\N	\N
687					f	f	\N	\N	t	t	\N		f		f	\N	178	\N	\N
689					f	f	\N	\N	t	t	\N		f		f	\N	183	\N	\N
690					f	f	\N	\N	t	t	\N		f		f	\N	188	\N	\N
693					f	f	\N	\N	t	t	\N		f		f	\N	178	\N	\N
694					f	f	\N	\N	t	t	\N		f		f	\N	188	\N	\N
695					f	f	\N	\N	t	t	\N		f		f	\N	176	\N	\N
696					f	f	\N	\N	t	t	\N		f		f	\N	180	\N	\N
697					f	f	\N	\N	t	t	\N		f		f	\N	181	\N	\N
698					f	f	\N	\N	t	t	\N		f		f	\N	187	\N	\N
699					f	f	\N	\N	t	t	\N		f		f	\N	185	\N	\N
711					f	f	\N	\N	t	t	\N		f		f	\N	19	\N	\N
712					f	f	\N	\N	t	t	\N		f		f	\N	21	\N	\N
713					f	f	\N	\N	t	t	\N		f		f	\N	22	\N	\N
\.


--
-- Data for Name: cmsplugin_filer_image_thumbnailoption; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_image_thumbnailoption (id, name, width, height, crop, upscale) FROM stdin;
1	100x100	100	100	t	t
\.


--
-- Name: cmsplugin_filer_image_thumbnailoption_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('cmsplugin_filer_image_thumbnailoption_id_seq', 1, true);


--
-- Data for Name: cmsplugin_filer_link_filerlinkplugin; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_link_filerlinkplugin (cmsplugin_ptr_id, name, url, mailto, link_style, new_window, file_id, page_link_id) FROM stdin;
8	DjangoCMS blog	https://github.com/nephila/djangocms-blog		 	t	\N	\N
14	OpenNebulaConf 2015.	http://2015.opennebulaconf.com/		 	t	\N	\N
24	rails-hosting.ch	http://rails-hosting.ch		 	t	\N	\N
25	OpenNebula	http://opennebula.org		 	f	\N	\N
26	Ceph	http://ceph.com/		 	f	\N	\N
27	GlusterFS	http://www.gluster.org/		 	f	\N	\N
29	Nginx	http://nginx.org/		 	f	\N	\N
30	PostgreSQL	https://www.postgresql.org/		 	f	\N	\N
31	DjangoCMS Blog	https://github.com/nephila/djangocms-blog		 	f	\N	\N
32	DjangoCMS	http://django-cms.org/		 	f	\N	\N
33	uwsgi	http://uwsgi-docs.readthedocs.org/en/latest/		 	f	\N	\N
34	Django	https://www.djangoproject.com/		 	f	\N	\N
28	cdist	http://www.nico.schottelius.org/software/cdist/		 	f	\N	\N
42	OpenCloudDay 2015 in Bern	http://ch-open.ch/events/aktuelle-events/160615-open-cloud-day-2015/		 	f	\N	\N
43	@Jens	https://twitter.com/jcfischer		 	f	\N	\N
44	Digital Glarus	https://digitalglarus.ungleich.ch		 	f	\N	\N
45	follow us on Twitter	https://twitter.com/ungleich		 	f	\N	\N
46	/ch/open	http://www.ch-open.ch/		 	f	\N	\N
47	@ICCLab	https://twitter.com/icc_lab		 	f	\N	\N
58	Digital Glarus	https://digitalglarus.ungleich.ch		 	f	\N	\N
60	PostgreSQL Europe	https://www.postgresql.eu/		 	f	\N	\N
62	Digital Glarus	https://digitalglarus.ungleich.ch		 	f	\N	\N
63	Makers im Zigerschlitz	http://www.meetup.com/Makers-im-Zigerschlitz/events/223111211/		 	f	\N	\N
64	follow us on Twitter	https://twitter.com/ungleich		 	f	\N	\N
66	Co-Working Space	https://en.wikipedia.org/wiki/Coworking		 	f	\N	\N
67	Digital Glarus	https://digitalglarus.ungleich.ch/		 	f	\N	\N
68	@ungleich	https://twitter.com/ungleich		 	f	\N	\N
69	fill out the form	https://docs.google.com/forms/d/1S2pQ2LDdRi2zbYHeBlusR5SoQjFy0HlHPTKgNKYIGak/viewform?usp=send_form		 	f	\N	\N
70	fill out the project form	https://docs.google.com/forms/d/1S2pQ2LDdRi2zbYHeBlusR5SoQjFy0HlHPTKgNKYIGak/viewform?usp=send_form		 	f	\N	\N
423	Digital Glarus stickers 	http://www.digitalglarus.ch		 	f	\N	\N
73	ungleich	http://www.ungleich.ch		 	f	\N	\N
74	nginx location documentation	http://nginx.org/en/docs/http/ngx_http_core_module.html#location		 	f	\N	\N
75	django-hosting.ch	http://django-hosting.ch		 	f	\N	\N
76	digitalglarus	http://digitalglarus.ungleich.ch		 	f	\N	\N
77	django-hosting.ungleich.ch	django-hosting.ungleich.ch		 	f	\N	\N
426	ungleich goes to Barcelona!	https://blog.ungleich.ch/en-us/blog/2015/05/12/opennebulaconf-2015/		 	f	\N	\N
78	should usually be avoided	http://wiki.nginx.org/IfIsEvil		 	f	\N	\N
79	rails-hosting.ch	http://rails-hosting.ch		 	f	\N	\N
80	Twitter	https://twitter.com/ungleich		 	f	\N	\N
87	recently published some details of our nginx configuration	https://blog.ungleich.ch/blog/2015/08/09/ungleich-nginx-configuration-explained/		 	f	\N	\N
88	from the previous article	https://blog.ungleich.ch/blog/2015/08/09/ungleich-nginx-configuration-explained/		 	f	\N	\N
90	ungleich.ch	http://www.ungleich.ch		 	f	\N	\N
89	digitalglarus.ch	http://digitalglarus.ch		 	f	\N	\N
101	follow us on Twitter	https://twitter.com/ungleich		 	f	\N	\N
102	Digital Glarus	http://www.digitalglarus.ch		 	f	\N	\N
104	be careful with it!	https://www.youtube.com/watch?v=UTBsm0LzSP0		 	f	\N	\N
105	via Twitter	https://twitter.com/ungleich		 	f	\N	\N
110	© r.wiedenmeier	http://www.wiedenmeier.ch/wordpress/2013/10/22/diesbach-fotos/		 	f	\N	\N
117	here	http://www.nico.schottelius.org/software/cdist/man/latest/		 	f	\N	\N
118	man7/cdist-best-practice	http://www.nico.schottelius.org/software/cdist/man/latest/man7/cdist-best-practice.html		 	f	\N	\N
119	github page	https://github.com/telmich/cdist		 	f	\N	\N
128	 Radiocentral	http://radiocentral.ch/		 	f	\N	\N
133	Visit Digital Glarus crowdfunding	http://www.100-days.net/en/projekt/start-digital-glarus		 	f	\N	\N
144	Mr.Christian Zweifel	https://twitter.com/chriglzweifel		 	f	\N	\N
145	Radiocentral	http://radiocentral.ch/		 	f	\N	\N
146	our previous post.	https://blog.ungleich.ch/blog/2015/09/24/digital-glarus-radio-german/		 	f	\N	\N
152	testiaeiaei			 	f	75	\N
417	OpenNebula workshop	http://www.meetup.com/Digital-Glarus-Business-Technology/events/225093212/		 	f	\N	\N
418	Digital Chalet Schwanden	https://digitalglarus.ungleich.ch/en-us/digitalglarus/		 	f	\N	\N
421	Barrio Gotico	https://www.google.ch/search?q=barrio+gotico&espv=2&biw=1074&bih=634&site=webhp&source=lnms&tbm=isch&sa=X&ved=0CAYQ_AUoAWoVChMIya3Y9P7iyAIVydcaCh2Yswba		 	f	\N	\N
429	melde Dich via Meetup an	http://www.meetup.com/Digital-Glarus-Business-Technology/events/226479181/		 	f	\N	\N
439	meetup	http://www.meetup.com/Digital-Glarus-Business-Technology/events/225093212/		 	f	\N	\N
452	wedoino	http://www.wedoino.ch		 	f	\N	\N
453	wissenstausch.ch	http://www.wissenstausch.ch		 	f	\N	\N
454	www.digitalglarus.ch	http://www.digitalglarus.ch		 	f	\N	\N
455	ungleich	http://www.ungleich.ch		 	f	\N	\N
456	@wedoino	https://twitter.com/wedoino		 	f	\N	\N
457	https://www.facebook.com/wissenstausch/	https://www.facebook.com/wissenstausch/		 	f	\N	\N
458	@DigitalGlarus	https://twitter.com/DigitalGlarus		 	f	\N	\N
459	https://www.facebook.com/digitalglarus/	https://www.facebook.com/digitalglarus/		 	f	\N	\N
510	meetup	http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/		 	f	\N	\N
512	band	http://fivepasteight.ch/		 	f	\N	\N
533	100-days.net/start-digital-glarus	 http://100-days.net/start-digital-glarus		 	f	\N	\N
542	Jazzband FivePastEight	https://www.facebook.com/fivepasteight/photos_stream		 	f	\N	\N
544	meetup	 http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/		 	f	\N	\N
551	meetup.com	 http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/		 	f	\N	\N
641	previous post	https://blog.ungleich.ch/en-us/blog/2015/11/19/jazz-digital-glarus/		 	f	\N	\N
663	crowdfunding project	http://www.100-days.net/de/projekt/start-digital-glarus		 	f	\N	\N
664	facebook	https://www.facebook.com/fivepasteight/?ref=profile		 	f	\N	\N
665	website	http://fivepasteight.ch/		 	f	\N	\N
667	Our crowdfunding campaign	http://www.100-days.net/de/projekt/start-digital-glarus		 	f	\N	\N
669	100-days.net/start-digital-glarus	 http://100-days.net/start-digital-glarus		 	f	\N	\N
670	Jazzband FivePastEight	https://www.facebook.com/fivepasteight/photos_stream		 	f	\N	\N
671	meetup	 http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/		 	f	\N	\N
673	meetup.com	 http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/		 	f	\N	\N
688	website	https://digitalglarus.ungleich.ch/en-us/digitalglarus/ 		 	f	\N	\N
701	info@digitalglarus.ch 		info@digitalglarus.ch	 	f	\N	\N
702	Webseite	https://digitalglarus.ungleich.ch/en-us/digitalglarus/		 	f	\N	\N
\.


--
-- Data for Name: cmsplugin_filer_teaser_filerteaser; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_teaser_filerteaser (cmsplugin_ptr_id, title, image_url, style, use_autoscale, width, height, free_link, description, target_blank, image_id, page_link_id) FROM stdin;
\.


--
-- Data for Name: cmsplugin_filer_video_filervideo; Type: TABLE DATA; Schema: public; Owner: app
--

COPY cmsplugin_filer_video_filervideo (cmsplugin_ptr_id, movie_url, width, height, auto_play, auto_hide, fullscreen, loop, bgcolor, textcolor, seekbarcolor, seekbarbgcolor, loadingbarcolor, buttonoutcolor, buttonovercolor, buttonhighlightcolor, image_id, movie_id) FROM stdin;
\.


--
-- Data for Name: digitalglarus_message; Type: TABLE DATA; Schema: public; Owner: app
--

COPY digitalglarus_message (id, name, email, phone_number, message, received_date) FROM stdin;
1	Jenny Hans	hans.jenny@goldenline.ch	+41794551338	Ich bin zwar bereits 73 Jahre alt, war aber in meinem aktiven Berufsleben bis zu meinem 63. Lebensjahr Informatikleiter und Logistikchef der Stadtpolizei Winterthur und begleitete unzählige kleine und grosse Informatik-Projekte als Projektleiter. Logisch hat sich die digitale Welt mit unvermindertem Tempo verändert und wer nicht am Ball bleibt wird schnell vom "Ball" getrennt. Die Arbeit des Projektleiters hat sich jedoch nicht wesentlich geändert. Während für den Projektleiter spezifisches und detailliertes Informatik-Fachwissen eher in den Hintergrund tritt, ist Sozialkompetenz und die Fähigkeit Probleme ganzheitlich, zielorientiert und gemeinsam mit der Projektgruppe zu lösen im Vordergrund geblieben.\r\nDas "Flugblatt" bzw. die Einladung zur Podiumsdiskussion (in deutscher Sprache) hat mich als gebürtiger Glarner und "Heimkehrer" sofort angesprochen. Ich bin nach 40 Jahren "in der Fremde" und als "Wiederkehrer" vom Slogan "Glarner Land (Glarus Süd) wiederbeleben" überzeugt.\r\nWas mich sofort gestört hat ist, dass die Homepage ausnahmslos in der englischen Sprache verfasst ist und somit Personen, die die englischen Sprache nicht, oder nur teilweise beherrschen, ausgeschlossen werden.\r\nMit freundlichen Grüssen, Hans Jenny\r\n	2015-09-08 18:27:31.160152+00
2	Fernando Reust	reust@sbp.ch	+41556409168	Hallo Nico\r\nWie tel vorher besprochen, zur Info www.sbp.ch\r\nBis bald\r\nHerzlichst\r\nFernando	2015-09-17 15:44:28.127849+00
3	Luchsinger Hermann 	luchsinger@alp-consulting.ch	079 421 36 56	guten tag nico Schottelius\r\nbitte gelegentlich um telefonische kontaktaufnahme, würde gerne ein paar gedanken mit ihnen tauschen.\r\nmit freundlichem gruss\r\nhermann luchsinger	2015-10-06 08:14:31.759356+00
6	felizita	felizita@gmx.ch	-	Hallo Zusammen\r\n\r\nÜber 100 Days fand ich euer Projekt mit dem Co-Working Space im Glarus. Gerne würde ich ein solches Space in Zürich eröffnen und suche nach Kontakten, die sich allenfalls gerne über Ideen, Visionen und Erfahrungen diesbezüglich unterhalten möchte.\r\n\r\nSolltet ihr Interesse haben, freue ich mich sehr über eine Rückmeldung.\r\n\r\nLiebe Grüsse aus Zürich\r\nFelizita	2015-11-27 15:09:19.89684+00
\.


--
-- Name: digitalglarus_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('digitalglarus_message_id_seq', 12, true);


--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: app
--

COPY django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
1	2015-06-12 16:53:01.623776+00	1	Home	1		11	1
2	2015-06-12 17:05:57.105218+00	3	Blog	1		11	1
3	2015-06-12 17:06:25.68614+00	3	Blog	2	Changed application_urls, application_namespace and xframe_options.	11	1
4	2015-06-12 17:07:21.654196+00	1	announcement	1		51	1
5	2015-06-12 17:10:34.583595+00	1	ungleich Blog launched	1		53	1
6	2015-06-12 17:14:13.032533+00	3	Blog	2	Changed template and xframe_options.	11	1
7	2015-06-12 17:14:40.886446+00	1	ungleich blog launched	2	Changed title and tags.	53	1
8	2015-06-12 17:17:49.46888+00	3	Blog	2		11	1
9	2015-06-12 17:21:50.285698+00	2	opennebula	1		51	1
10	2015-06-12 17:23:37.226156+00	2	OpenNebulaConf 2015	1		53	1
11	2015-06-12 17:24:42.572774+00	1	ungleich.ch	2	Changed domain and name.	7	1
12	2015-06-12 17:25:07.868424+00	1	blog.ungleich.ch	2	Changed domain.	7	1
13	2015-06-12 17:26:30.363273+00	2	OpenNebulaConf 2015	2	Changed abstract and tags.	53	1
14	2015-06-12 17:28:56.127053+00	2	OpenNebulaConf 2015	2	Changed categories and tags.	53	1
15	2015-06-12 17:32:08.451294+00	2	OpenNebulaConf 2015	2	Changed publish and tags.	53	1
16	2015-06-12 17:35:00.637214+00	2	OpenNebulaConf 2015	2	Changed abstract and tags.	53	1
17	2015-06-12 17:49:43.82979+00	1	ungleich	2	No fields changed.	8	1
18	2015-06-12 17:55:36.291237+00	2	OpenNebulaConf 2015	2	Changed abstract and tags.	53	1
19	2015-06-12 19:55:54.701245+00	1	ungleich blog launched	2	Changed abstract and tags.	53	1
20	2015-06-12 19:57:19.415793+00	5	5	3		10	1
21	2015-06-12 19:57:33.678+00	1	ungleich	2	No fields changed.	8	1
22	2015-06-12 19:58:26.402886+00	1	ungleich blog launched	2	Changed abstract and tags.	53	1
23	2015-06-12 20:03:12.485109+00	3	Blog	2	Changed page_title.	11	1
24	2015-06-12 20:04:54.009245+00	3	Blog	2		11	1
25	2015-06-12 20:06:13.555449+00	3	Blog	2	Changed menu_title and page_title.	11	1
26	2015-06-12 20:06:55.919673+00	3	Blog	2	Changed page_title.	11	1
27	2015-06-12 20:07:32.136411+00	3	Blog	2		11	1
28	2015-06-12 20:17:24.393782+00	3	Blog	2	Changed page_title.	11	1
29	2015-06-12 20:24:27.361495+00	3	hosting	1		51	1
30	2015-06-12 20:25:21.343339+00	3	Application Hosting	1		53	1
31	2015-06-12 20:25:31.019931+00	3	Application Hosting	2	Changed tags.	53	1
32	2015-06-12 20:25:53.92103+00	3	Application Hosting	2	Changed tags and date_published.	53	1
33	2015-06-12 21:06:07.746567+00	2	OpenNebulaConf 2015	2	Changed tags and date_published.	53	1
34	2015-06-12 21:07:42.088516+00	3	Blog	2		11	1
35	2015-06-13 08:14:14.632456+00	2	OpenNebulaConf 2015	2	Changed categories and tags.	53	1
36	2015-06-13 09:27:58.111546+00	2	OpenNebulaConf 2015	3		53	1
37	2015-06-13 09:29:11.435971+00	4	 OpenNebulaConf 2015 	1		53	1
38	2015-06-13 09:29:16.09016+00	4	 OpenNebulaConf 2015 	2	Changed tags.	53	1
39	2015-06-13 09:30:48.787184+00	4	 OpenNebulaConf 2015 	2	Changed tags.	53	1
40	2015-06-13 09:32:13.135422+00	10	10	3		10	1
41	2015-06-13 13:04:06.799637+00	1	ungleich blog launched	2	Changed abstract and tags.	53	1
42	2015-06-13 13:11:03.536055+00	3	Blog	2		11	1
43	2015-06-13 13:13:17.878856+00	3	Blog	2		11	1
44	2015-06-13 13:22:13.384436+00	2	sanghee	1		4	1
45	2015-06-13 13:22:45.638851+00	3	nico	1		4	1
46	2015-06-13 13:23:05.973436+00	3	nico	2	Changed first_name, last_name, email, is_staff and is_superuser.	4	1
47	2015-06-13 13:23:25.19965+00	2	sanghee	2	Changed first_name, last_name, email, is_staff and is_superuser.	4	1
48	2015-06-13 17:37:46.061872+00	4	 OpenNebulaConf 2015 	2	Changed abstract and tags.	53	1
49	2015-06-13 17:46:50.586349+00	4	October 20-22 2015, Meet us in Barcelona!	2	Changed title, publish and tags.	53	1
50	2015-06-13 17:52:25.565082+00	3	Blog	2		11	1
51	2015-06-13 18:15:22.853187+00	1	14473379828_84376f1229_h.jpg	3		41	1
52	2015-06-13 18:22:46.173677+00	3	14473379828_84376f1229_h.jpg	2	No fields changed.	41	1
53	2015-06-13 18:22:51.892558+00	4	14473379828_84376f1229_h.jpg	3		41	1
54	2015-06-13 18:22:55.655192+00	3	14473379828_84376f1229_h.jpg	3		41	1
55	2015-06-13 18:22:59.813589+00	2	14473379828_84376f1229_h.jpg	3		41	1
56	2015-06-13 18:23:42.481738+00	6	14473379828_84376f1229_h.jpg	3		41	1
57	2015-06-14 02:53:32.803307+00	2	articles	2	Changed name.	36	1
58	2015-06-14 02:53:45.679853+00	5	14473379828_84376f1229_h.jpg	3		41	1
59	2015-06-14 03:10:32.327331+00	3	img	2	Changed name.	36	1
60	2015-06-14 03:13:23.742703+00	4	October 20-22 2015, Meet us in Barcelona!	2	Changed tags and main_image.	53	1
61	2015-06-14 03:14:35.023026+00	3	Blog	2	Changed meta_description.	11	1
62	2015-06-14 03:15:00.309542+00	3	Blog	2		11	1
63	2015-06-14 03:17:31.940109+00	14	14473379828_84376f1229_h.jpg	3		41	1
64	2015-06-14 03:17:50.419391+00	4	October 20-22 2015, Meet us in Barcelona!	2	Changed tags and main_image.	53	1
65	2015-06-14 03:42:24.173543+00	4	October 20-22 2015, Meet us in Barcelona!	2	Changed tags and sites.	53	1
66	2015-06-14 03:42:44.242971+00	1	blog.ungleich.ch	2	Changed name.	7	1
67	2015-06-14 03:43:15.804351+00	3	Blog	2	Changed xframe_options.	11	1
68	2015-06-14 03:43:22.039775+00	3	Blog	2	No fields changed.	11	1
69	2015-06-14 04:11:11.055257+00	4	October 20-22 2015, Meet us in Barcelona!	2	Changed tags.	53	1
70	2015-06-14 04:48:27.067971+00	1	UngleichPage object	1		56	1
71	2015-06-14 04:48:33.905655+00	3	Blog	2		11	1
72	2015-06-14 04:49:44.904955+00	1	ungleich blog launched	2	Changed abstract and tags.	53	1
73	2015-06-14 04:56:02.063255+00	1	ungleich blog launched	2	Changed abstract, tags and main_image.	53	1
74	2015-06-14 04:56:32.225684+00	1	ungleich blog launched	2	Changed abstract and tags.	53	1
75	2015-06-14 05:05:22.149361+00	3	Blog	2		11	1
76	2015-06-14 05:20:25.178737+00	1	https://blog.ungleich.ch	2	Changed domain.	7	1
77	2015-06-14 05:21:09.484391+00	1	blog.ungleich.ch	2	Changed domain.	7	1
78	2015-06-14 05:26:04.698325+00	1	https://blog.ungleich.ch	2	Changed domain.	7	1
79	2015-06-14 05:26:32.802673+00	1	blog.ungleich.ch	2	Changed domain.	7	1
80	2015-06-14 21:19:37.816758+00	5	Preview of the ungleich hosting technologies	1		53	1
81	2015-06-14 21:22:29.215379+00	4	technology	1		51	1
82	2015-06-14 21:22:38.10048+00	5	Preview of the ungleich hosting technologies	2	Changed categories, abstract and tags.	53	1
83	2015-06-14 21:23:32.370425+00	6	OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern	1		53	1
84	2015-06-14 21:28:20.839641+00	19	opencloudday.png	2	No fields changed.	41	1
85	2015-06-14 21:54:31.800422+00	5	Preview of the ungleich hosting technologies	2	Changed abstract and tags.	53	1
159	2015-09-02 13:58:45.050349+00	18	Basic cdist usage	2	Changed publish and tags.	53	1
86	2015-06-15 13:54:14.507513+00	5	Preview of the ungleich hosting technologies	2	Changed tags and meta_keywords.	53	1
87	2015-06-15 13:54:36.288491+00	3	Blog	2		11	1
88	2015-06-15 13:57:51.794578+00	5	Preview of the ungleich hosting technologies	2	Changed publish and tags.	53	1
89	2015-06-15 14:05:44.487266+00	3	Blog	2		11	1
90	2015-06-15 15:31:20.07251+00	5	Preview of the ungleich hosting technologies	2	Changed abstract and tags.	53	1
91	2015-06-15 20:11:20.148583+00	20	magical-bern-switzerland.jpg	2	No fields changed.	41	1
92	2015-06-15 20:17:30.322259+00	6	OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern	2	Changed publish and tags.	53	1
93	2015-06-15 20:19:52.426803+00	6	OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern	2	Changed tags and main_image.	53	1
94	2015-06-15 20:21:31.396896+00	6	OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern	2	Changed slug and tags.	53	1
95	2015-06-16 08:02:02.348565+00	1	Title Meta for Blog (blog, en-us)	1		60	1
96	2015-06-16 08:02:34.781253+00	3	Blog	2		11	1
97	2015-06-16 08:08:34.882691+00	23	380600.png	3		41	1
98	2015-06-16 08:09:21.40288+00	1	Title Meta for Blog (blog, en-us)	2	Changed keywords.	60	1
99	2015-06-16 08:09:30.836111+00	3	Blog	2		11	1
100	2015-06-16 08:21:30.955727+00	1	Title Meta for Blog (blog, en-us)	2	Changed description.	60	1
101	2015-06-16 08:21:40.885815+00	3	Blog	2		11	1
102	2015-06-16 20:11:45.853073+00	5	conference	1		51	1
103	2015-06-16 20:13:52.403868+00	7	A great OpenCloudDay 2015 in Bern	1		53	1
104	2015-06-16 21:02:07.980118+00	7	A great OpenCloudDay 2015 in Bern	2	Changed tags.	53	1
105	2015-06-16 21:21:51.253139+00	7	A great OpenCloudDay 2015 in Bern	2	Changed tags and main_image.	53	1
106	2015-06-16 21:22:23.131324+00	7	A great OpenCloudDay 2015 in Bern	2	Changed publish and tags.	53	1
107	2015-06-21 08:25:00.377457+00	6	digitalglarus	1		51	1
108	2015-06-21 08:30:44.63475+00	8	The merger of Born Informatik and adesso Schweiz AG	1		53	1
109	2015-06-21 08:39:11.215368+00	8	The merger of Born Informatik and adesso Schweiz AG	2	Changed tags and author.	53	1
110	2015-06-22 08:04:01.598254+00	8	The merger of Born Informatik and adesso Schweiz AG	2	Changed abstract and tags.	53	1
111	2015-06-22 21:32:43.975477+00	8	The merger of Born Informatik and adesso Schweiz AG	2	Changed tags.	53	1
112	2015-06-22 21:32:53.563821+00	8	The merger of Born Informatik and adesso Schweiz AG	2	Changed tags.	53	1
113	2015-06-22 21:57:05.197117+00	8	The merger of Born Informatik and adesso Schweiz AG	2	Changed publish, tags and meta_keywords.	53	1
114	2015-06-26 09:44:24.689614+00	9	Swiss Postgres Conference with cdist	1		53	1
115	2015-07-20 19:15:15.624943+00	10	Digital Glarus: The first meetup meeting	1		53	1
116	2015-07-20 19:33:03.280347+00	10	Digital Glarus: The first meetup meeting	2	Changed publish, tags and meta_keywords.	53	1
117	2015-07-26 22:38:36.977578+00	11	Digital Glarus: Call for Hacking	1		53	1
118	2015-07-26 22:44:20.704181+00	11	Digital Glarus: Call for Hacking	2	Changed abstract and tags.	53	1
119	2015-07-26 23:55:50.68159+00	11	Digital Glarus: Call for Hacking	2	Changed publish and tags.	53	1
120	2015-08-09 17:56:15.470965+00	12	The ungleich nginx configuration explained	1		53	1
121	2015-08-09 18:50:45.593779+00	12	The ungleich nginx configuration explained	2	Changed abstract and tags.	53	1
122	2015-08-09 19:27:06.904068+00	12	The ungleich nginx configuration explained	2	Changed abstract and tags.	53	1
123	2015-08-09 19:27:19.812389+00	12	The ungleich nginx configuration explained	2	Changed abstract and tags.	53	1
124	2015-08-09 19:27:36.539205+00	12	The ungleich nginx configuration explained	2	Changed abstract and tags.	53	1
125	2015-08-09 20:09:56.84612+00	12	The ungleich nginx configuration explained	2	Changed tags.	53	1
126	2015-08-09 20:10:45.91599+00	12	The ungleich nginx configuration explained	2	Changed tags.	53	1
127	2015-08-09 20:47:19.00995+00	12	The ungleich nginx configuration explained	2	Changed publish and tags.	53	1
128	2015-08-14 22:12:29.997336+00	13	The ungleich nginx configuration explained (2)	1		53	1
129	2015-08-14 22:49:03.315545+00	13	The ungleich nginx configuration explained (2)	2	Changed tags.	53	1
130	2015-08-14 23:28:12.16195+00	40	Puzzle.jpg	3		41	1
131	2015-08-14 23:28:17.167131+00	41	puzzle.png	3		41	1
132	2015-08-14 23:29:27.692657+00	13	The ungleich nginx configuration explained (2)	2	Changed publish and tags.	53	1
133	2015-08-24 11:18:24.234776+00	14	The Digital Glarus Manifesto	1		53	1
134	2015-08-24 11:19:15.620387+00	14	The Digital Glarus Manifesto	2	Changed tags.	53	1
135	2015-08-24 21:14:32.91166+00	14	The Digital Glarus Manifesto	3		53	1
136	2015-08-24 21:16:38.844679+00	15	Digital Glarus: The transformation of Glarus started	1		53	1
137	2015-08-24 21:19:25.666574+00	15	Digital Glarus: The transformation of Glarus started	2	Changed abstract and tags.	53	1
138	2015-08-24 21:19:49.071102+00	15	Digital Glarus: The transformation of Glarus started	2	Changed abstract and tags.	53	1
139	2015-08-24 22:13:08.912165+00	15	Digital Glarus: The transformation of Glarus started	2	Changed tags and main_image.	53	1
140	2015-08-24 22:16:48.904563+00	15	Digital Glarus: The transformation of Glarus started	2	Changed publish and tags.	53	1
141	2015-08-25 20:54:03.744297+00	2	babedream312@gmx.de - 2015-07-23 10:46:59+00:00	2	No fields changed.	57	1
142	2015-08-28 14:30:10.018513+00	16	The Digital Glarus Manifesto	1		53	1
143	2015-08-28 15:50:19.966041+00	46	steam-train-small.jpg	2	Changed file.	41	1
144	2015-08-28 17:03:15.233717+00	49	join-us.jpg	3		41	1
145	2015-08-28 22:38:23.477665+00	16	The Digital Glarus Manifesto	2	Changed publish and tags.	53	1
146	2015-08-28 23:43:36.657379+00	16	The Digital Glarus Manifesto	2	Changed categories, tags and main_image.	53	1
147	2015-09-02 09:51:10.828983+00	17	Digital Glarus in Press(in German)	1		53	1
148	2015-09-02 09:51:34.139894+00	17	Digital Glarus in Press(in German)	2	Changed tags.	53	1
149	2015-09-02 11:58:28.074311+00	17	Digital Glarus in Press (in German)	2	Changed title and tags.	53	1
150	2015-09-02 12:25:19.29789+00	18	Basic cdist usage	1		53	1
151	2015-09-02 12:26:02.457296+00	18	Basic cdist usage	2	Changed tags.	53	1
152	2015-09-02 12:46:53.199815+00	7	press	1		51	1
153	2015-09-02 12:46:56.646791+00	17	Digital Glarus in Press (in German)	2	Changed categories, publish and tags.	53	1
154	2015-09-02 12:54:06.765898+00	17	Digital Glarus in Press (in German)	2	Changed tags and main_image.	53	1
155	2015-09-02 13:46:06.759294+00	17	Digital Glarus in Press (in German)	2	Changed tags and main_image.	53	1
156	2015-09-02 13:54:38.144681+00	18	Basic cdist usage	2	Changed tags and main_image.	53	1
157	2015-09-02 13:55:52.843579+00	59	connectivity.jpg	3		41	1
158	2015-09-02 13:56:06.146372+00	18	Basic cdist usage	2	Changed tags and main_image.	53	1
236	2015-10-04 22:41:23.230808+00	1	Home	3		11	1
160	2015-09-02 13:59:15.597379+00	18	Basic cdist usage	2	Changed tags.	53	1
161	2015-09-17 19:03:35.307596+00	19	Our CEO, Nico Schottelius in Press (in German) 	1		53	1
162	2015-09-17 19:19:59.765757+00	19	Our CEO, Nico Schottelius in Press (in German) 	2	Changed abstract and tags.	53	1
163	2015-09-17 19:20:12.790667+00	19	Our CEO, Nico Schottelius in Press (in German) 	2	Changed abstract and tags.	53	1
164	2015-09-17 19:28:49.763696+00	19	Our CEO, Nico Schottelius in Press (in German) 	2	Changed tags.	53	1
165	2015-09-17 19:28:57.431987+00	19	Our CEO, Nico Schottelius in Press (in German) 	2	Changed abstract and tags.	53	1
166	2015-09-17 19:30:18.485447+00	62	newspaper.png	2	No fields changed.	41	1
167	2015-09-17 19:32:33.166221+00	19	Our CEO, Nico Schottelius in Press (in German) 	2	Changed tags and main_image.	53	1
168	2015-09-17 19:34:31.208498+00	19	Nico Schottelius Talks to Press (in German) 	2	Changed title, publish and tags.	53	1
169	2015-09-17 19:35:51.65118+00	63	diesbach_legler450.jpg	3		41	1
170	2015-09-17 19:41:18.698082+00	19	Nico Schottelius Talks to Press (in German) 	2	Changed abstract, tags and main_image.	53	1
171	2015-09-17 19:41:25.014593+00	19	Nico Schottelius Talks to Press (in German) 	2	Changed tags.	53	1
172	2015-09-17 19:45:19.415525+00	64	6276688407_12900948a2.jpg	3		41	1
173	2015-09-17 19:45:40.139858+00	65	breakfast_coffee	3		38	1
174	2015-09-17 19:46:28.940885+00	66	breakfast_coffee	3		38	1
175	2015-09-17 19:48:02.776217+00	19	Nico Schottelius Talks to Press (in German) 	2	Changed tags and main_image.	53	1
176	2015-09-24 14:01:08.773826+00	20	Digital Glarus on Radio! (in German)	1		53	1
177	2015-09-24 15:24:47.954518+00	20	Digital Glarus on Radio! (in German)	2	Changed tags.	53	1
178	2015-09-24 15:25:05.993367+00	20	Digital Glarus on Radio! (in German)	2	Changed tags.	53	1
179	2015-09-24 15:25:39.103881+00	20	Digital Glarus on Radio! (in German)	2	Changed publish and tags.	53	1
180	2015-09-24 15:34:03.420984+00	75	Radio Central - Digital Glarus - Crowdfunding 20150923	2	Changed name.	38	1
181	2015-09-25 12:58:19.011543+00	21	1st Community Meeting of Digital Glarus 	1		53	1
182	2015-09-25 12:58:56.518111+00	21	1st Community Meeting of Digital Glarus 	2	Changed tags.	53	1
183	2015-09-25 12:59:52.415371+00	21	1st Community Meeting of Digital Glarus 	2	Changed tags.	53	1
184	2015-09-25 13:08:13.744807+00	76	thumb_DSC00605_1024.jpg	3		41	1
185	2015-09-25 13:08:38.786703+00	21	1st Community Meeting of Digital Glarus 	2	Changed tags and main_image.	53	1
186	2015-09-25 14:25:42.165657+00	21	1st Community Meeting of Digital Glarus 	2	Changed tags and main_image.	53	1
187	2015-09-25 15:03:04.283369+00	21	1st Community Meeting of Digital Glarus 	2	Changed abstract and tags.	53	1
188	2015-09-25 15:03:26.694127+00	21	1st Community Meeting of Digital Glarus 	2	Changed tags.	53	1
189	2015-09-25 18:00:43.139116+00	21	1st Community Meeting of Digital Glarus 	2	Changed publish and tags.	53	1
190	2015-09-26 23:08:03.33147+00	21	1st Community Meeting of Digital Glarus 	2	Changed tags.	53	1
191	2015-09-26 23:08:46.652136+00	20	Digital Glarus on Radio! (in German)	2	Changed tags.	53	1
192	2015-09-26 23:09:04.221046+00	19	Nico Schottelius Talks to Press (in German) 	2	Changed tags.	53	1
193	2015-09-26 23:09:18.327759+00	17	Digital Glarus in Press (in German)	2	Changed tags.	53	1
194	2015-09-26 23:09:34.777996+00	16	The Digital Glarus Manifesto	2	Changed tags.	53	1
195	2015-09-26 23:09:47.968525+00	15	Digital Glarus: The transformation of Glarus started	2	Changed tags.	53	1
196	2015-09-26 23:10:08.717142+00	11	Digital Glarus: Call for Hacking	2	Changed tags.	53	1
197	2015-09-26 23:10:57.800059+00	10	Digital Glarus: The first meetup meeting	2	Changed tags.	53	1
198	2015-09-29 19:39:48.222808+00	22	Test raul	1		53	1
199	2015-09-30 03:11:11.196764+00	22	Test raul	2	Changed publish and tags.	53	1
200	2015-09-30 03:11:31.604502+00	22	Test raul	2	Changed publish and tags.	53	1
201	2015-09-30 03:28:30.864094+00	3	Blog	2	The US English page "Blog" was successfully unpublished	11	1
202	2015-09-30 03:28:35.554277+00	3	Blog	2		11	1
203	2015-09-30 03:31:40.065956+00	22	Test raul	2	Changed tags and sites.	53	1
204	2015-09-30 03:41:53.074368+00	22	Test raul	2	Changed abstract and tags.	53	1
205	2015-09-30 04:13:16.75345+00	1	100x100 -- 100 x 100	1		46	1
206	2015-10-04 16:53:42.449613+00	5	digital.glarus	1		11	1
207	2015-10-04 16:53:54.016225+00	5	digital.glarus	2	Changed overwrite_url and xframe_options.	11	1
208	2015-10-04 16:54:59.85671+00	5	digital.glarus	2	Changed template, reverse_id, soft_root and xframe_options.	11	1
209	2015-10-04 17:20:13.014567+00	5	digital.glarus	2	Changed title, slug, menu_title, page_title and meta_description.	11	1
210	2015-10-04 17:25:55.123334+00	167	167	3		10	1
211	2015-10-04 17:26:43.227966+00	3	Blog	2	template und xframe_options geändert.	11	1
212	2015-10-04 17:27:41.623749+00	3	Blog	2		11	1
213	2015-10-04 17:30:20.377646+00	5	digital.glarus	2	No fields changed.	11	1
214	2015-10-04 17:45:05.477751+00	6	digital.glarus.about	1		11	1
215	2015-10-04 17:45:25.239792+00	6	digital.glarus.about	2	template und xframe_options geändert.	11	1
216	2015-10-04 17:54:39.112013+00	6	digital.glarus.about	2	Changed title, slug, menu_title, page_title and meta_description.	11	1
217	2015-10-04 17:54:50.355713+00	6	digital.glarus.about	2	No fields changed.	11	1
218	2015-10-04 17:56:45.208837+00	186	186	3		10	1
219	2015-10-04 18:01:41.358106+00	6	digital.glarus.about	2	Changed xframe_options.	11	1
220	2015-10-04 18:05:38.21883+00	7	digital.glarus.contact	1		11	1
221	2015-10-04 18:06:00.442126+00	7	digital.glarus.contact	2	Changed template and xframe_options.	11	1
222	2015-10-04 18:08:00.651215+00	192	192	3		10	1
223	2015-10-04 18:09:42.668353+00	193	193	3		10	1
224	2015-10-04 18:09:52.51388+00	194	194	3		10	1
225	2015-10-04 18:14:07.949769+00	7	digital.glarus.contact	2	Changed title, slug, menu_title, page_title and meta_description.	11	1
226	2015-10-04 18:54:49.260192+00	8	digital.glarus.crowdfunding	1		11	1
227	2015-10-04 18:55:04.350575+00	8	digital.glarus.crowdfunding	2	template und xframe_options geändert.	11	1
228	2015-10-04 19:49:28.177641+00	8	digital.glarus.crowdfunding	2	Changed title, slug, menu_title, page_title and meta_description.	11	1
229	2015-10-04 22:17:59.293434+00	5	digital.glarus	2	Changed overwrite_url and xframe_options.	11	1
230	2015-10-04 22:19:31.038797+00	5	digital.glarus	2	No fields changed.	11	1
231	2015-10-04 22:19:37.442364+00	5	Digital Glarus - Home	2		11	1
232	2015-10-04 22:25:30.010116+00	5	digital.glarus	2	Changed xframe_options.	11	1
233	2015-10-04 22:25:59.375907+00	5	Digital Glarus - Startseite	2		11	1
234	2015-10-04 22:29:48.576723+00	2	digitalglarus.ungleich.ch	1		7	1
235	2015-10-04 22:36:22.960873+00	5	Digital Glarus - Home	2		11	1
237	2015-10-04 22:43:26.180117+00	10	Digital Glarus - Welcome	1		11	1
238	2015-10-04 22:43:48.035196+00	10	Digital Glarus - Welcome	2	Changed template and xframe_options.	11	1
239	2015-10-04 22:44:35.992789+00	10	Digital Glarus - Welcome	2	Changed overwrite_url and xframe_options.	11	1
240	2015-10-04 22:47:09.137055+00	5	Digital Glarus - Startseite	2		11	1
241	2015-10-04 23:23:56.838232+00	2	digitalglarus.ungleich.ch	3		7	1
242	2015-10-04 23:27:04.94222+00	5	Digital Glarus - Home	2		11	1
243	2015-10-04 23:27:27.159556+00	6	Digital Glarus - About	2		11	1
244	2015-10-04 23:27:38.603226+00	7	Digital Glarus - Contact	2		11	1
245	2015-10-04 23:27:53.10471+00	8	Digital Glarus - Crowdfunding	2		11	1
246	2015-10-04 23:28:36.616476+00	6	digital.glarus.about	2	Changed menu_title.	11	1
247	2015-10-04 23:28:49.990438+00	7	digital.glarus.contact	2	Changed menu_title.	11	1
248	2015-10-04 23:29:04.006039+00	8	digital.glarus.crowdfunding	2	Changed menu_title.	11	1
249	2015-10-04 23:29:24.837765+00	5	digital.glarus	2	Changed title and menu_title.	11	1
250	2015-10-04 23:29:34.145053+00	5	Digital Glarus - Welcome	2		11	1
251	2015-10-04 23:29:41.551619+00	6	Digital Glarus - About	2		11	1
252	2015-10-04 23:29:48.624721+00	7	Digital Glarus - Contact	2		11	1
253	2015-10-04 23:29:56.973779+00	8	Digital Glarus - Crowdfunding	2		11	1
254	2015-10-04 23:34:04.656728+00	3	Blog	2	Changed overwrite_url and xframe_options.	11	1
255	2015-10-04 23:34:15.691897+00	3	Blog	2		11	1
256	2015-10-04 23:35:54.280027+00	3	Blog	2	Changed soft_root and xframe_options.	11	1
257	2015-10-04 23:36:02.064613+00	3	Blog	2		11	1
258	2015-10-04 23:38:38.671422+00	5	home	2	No fields changed.	11	1
259	2015-10-04 23:38:41.541454+00	5	Digital Glarus - Startseite	2		11	1
260	2015-10-04 23:39:11.938552+00	6	about	2	Changed menu_title.	11	1
261	2015-10-04 23:39:22.566103+00	6	Digital Glarus - Ãœber uns	2		11	1
262	2015-10-04 23:39:40.076913+00	7	contact	2	Changed menu_title.	11	1
263	2015-10-04 23:39:51.457388+00	7	Digital Glarus - Kontakt	2		11	1
264	2015-10-04 23:40:13.747119+00	8	crowdfunding	2	Changed menu_title.	11	1
265	2015-10-04 23:40:24.482527+00	8	Digital Glarus - Crowdfunding	2		11	1
266	2015-10-04 23:41:01.802823+00	5	home	2	Changed xframe_options.	11	1
267	2015-10-04 23:41:09.99967+00	5	Digital Glarus - Startseite	2		11	1
268	2015-10-04 23:47:25.905781+00	5	home	2	Changed slug.	11	1
269	2015-10-04 23:47:36.05386+00	5	home	2	Changed slug.	11	1
270	2015-10-04 23:56:07.357454+00	5	home	2	Changed reverse_id and xframe_options.	11	1
271	2015-10-04 23:56:15.635918+00	5	Digital Glarus - Welcome	2		11	1
272	2015-10-04 23:56:23.031513+00	5	Digital Glarus - Startseite	2		11	1
273	2015-10-05 01:46:51.261031+00	7	Digital Glarus - Contact	2		11	1
274	2015-10-05 01:47:27.423667+00	7	Digital Glarus - Contact	2		11	1
275	2015-10-05 01:48:08.154114+00	7	Digital Glarus - Kontakt	2		11	1
276	2015-10-10 19:00:40.623803+00	3	Blog	2	Changed soft_root and xframe_options.	11	1
277	2015-10-13 13:34:07.654167+00	5	home	2	Changed overwrite_url and xframe_options.	11	1
278	2015-10-13 13:34:45.115061+00	5	Digital Glarus - Welcome	2		11	1
279	2015-10-13 13:35:07.32626+00	5	home	2	Changed slug.	11	1
280	2015-10-13 13:35:27.418632+00	5	Digital Glarus - Welcome	2		11	1
281	2015-10-13 13:35:55.847891+00	5	home	2	Changed xframe_options.	11	1
282	2015-10-13 13:36:40.913569+00	5	home	2	Changed slug.	11	1
283	2015-10-13 13:36:49.552751+00	5	Digital Glarus - Startseite	2		11	1
284	2015-10-13 13:36:55.167599+00	8	crowdfunding	2	Changed overwrite_url and xframe_options.	11	1
285	2015-10-13 13:37:03.92039+00	8	Digital Glarus - Crowdfunding	2		11	1
286	2015-10-27 12:42:02.588215+00	23	OpenNebulaConf 2015 with ungleich	1		53	1
287	2015-10-27 12:44:29.292739+00	23	OpenNebulaConf 2015 with ungleich	2	Changed tags and main_image.	53	1
288	2015-10-27 12:46:27.230458+00	23	OpenNebulaConf 2015 with ungleich	2	Changed tags.	53	1
289	2015-10-27 19:12:29.289521+00	3	Blog	2		11	1
290	2015-10-27 19:13:01.801105+00	23	OpenNebulaConf 2015 with ungleich	2	Changed publish and tags.	53	1
291	2015-10-28 12:57:06.144476+00	22	Test raul	3		53	1
292	2015-10-29 13:57:51.284732+00	24	Warum wir das Projekt Digital Glarus gestartet haben	1		53	1
293	2015-11-02 07:14:03.34876+00	25	Fondue im Digital Chalet Schwanden	1		53	1
294	2015-11-02 07:42:11.652142+00	25	Fondue im Digital Chalet Schwanden	2	Changed publish and tags.	53	1
295	2015-11-03 07:14:10.133762+00	26	Das Glarnerland, ein Schatz zum Teilen	1		53	1
296	2015-11-03 10:13:55.782269+00	100	logo-black	2	Changed name and description.	38	1
297	2015-11-03 10:16:11.957752+00	101	ungleich-logo-black-png	2	Changed name, description and file.	41	1
298	2015-11-03 10:18:00.625189+00	102	ungleich-symbol-black-small	2	Changed name and description.	41	1
299	2015-11-03 10:32:00.134507+00	103	digitalglarus-banner-jazz-concert	2	Changed name.	41	1
300	2015-11-03 10:39:03.573396+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed tags and date_published.	53	1
301	2015-11-03 10:39:24.772433+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed tags and date_published.	53	1
302	2015-11-03 10:46:50.577793+00	104	digitalglarus-banner-opening	2	Changed name.	41	1
303	2015-11-03 10:58:55.681334+00	105	digital-glarus-first-chalet-exterior	2	Changed name.	41	1
304	2015-11-03 11:06:49.464627+00	106	newspaper-13092015-dontknowthename	2	Changed name.	41	1
305	2015-11-03 11:12:52.589091+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed tags and main_image.	53	1
306	2015-11-03 11:14:14.143557+00	107	digitalglarus_vision_background_nico.jpg	3		41	1
307	2015-11-03 11:14:24.523521+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed tags and main_image.	53	1
308	2015-11-03 13:42:27.319183+00	111	digitalglarus_scenery.jpg	3		41	1
309	2015-11-03 13:44:30.225583+00	110	luchsingen_snow_landscpae_glarus_.png	3		41	1
310	2015-11-03 13:44:46.504653+00	109	luchsingen_snow_landscpae_glarus_.png	3		41	1
311	2015-11-03 13:44:52.055986+00	112	digitalglarus_scenery_jpg	3		38	1
312	2015-11-03 17:44:09.338539+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed abstract and tags.	53	1
313	2015-11-03 18:09:38.15242+00	25	Fondue im Digital Chalet Schwanden	2	Changed tags and main_image.	53	1
314	2015-11-03 18:12:55.853353+00	114	fondue.png	3		41	1
315	2015-11-03 18:15:47.849007+00	25	Fondue im Digital Chalet Schwanden	2	Changed tags and main_image.	53	1
316	2015-11-03 18:24:07.858065+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed publish and tags.	53	1
317	2015-11-04 21:22:57.347584+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed tags.	53	1
318	2015-11-04 21:24:54.939959+00	26	Das Glarnerland, ein Schatz zum Teilen	2	Changed tags.	53	1
319	2015-11-04 21:54:05.781674+00	3	Blog	2	Changed title, slug, menu_title and page_title.	11	1
320	2015-11-04 21:54:19.687818+00	3	Blog	2	Changed meta_description.	11	1
321	2015-11-04 21:54:23.11546+00	3	Blog	2	No fields changed.	11	1
322	2015-11-08 20:36:33.731308+00	27	OpenNebula workshop at Digital Glarus	1		53	1
323	2015-11-08 20:39:33.661122+00	27	OpenNebula workshop at Digital Glarus	2	Changed tags and main_image.	53	1
324	2015-11-08 20:40:33.032632+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
325	2015-11-08 22:03:27.212035+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
326	2015-11-08 22:04:28.24093+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
327	2015-11-08 22:06:25.637925+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
328	2015-11-08 22:06:59.031886+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
329	2015-11-08 22:09:37.124654+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
330	2015-11-08 22:10:23.782393+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
331	2015-11-08 22:10:42.598123+00	27	OpenNebula workshop at Digital Glarus	2	Changed abstract and tags.	53	1
332	2015-11-08 22:13:58.512068+00	27	OpenNebula workshop at Digital Glarus	2	Changed publish and tags.	53	1
333	2015-11-09 16:12:49.568881+00	130	television_background	3		38	1
334	2015-11-09 16:12:57.2458+00	132	television_background	3		38	1
335	2015-11-09 16:13:06.365776+00	133	television_background	3		38	1
336	2015-11-09 18:12:18.065971+00	143	logo_white.png	3		41	1
337	2015-11-09 18:16:42.631348+00	144	logo_white.png	3		41	1
338	2015-11-13 05:29:45.479206+00	28	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	1		53	1
339	2015-11-13 06:03:47.002377+00	28	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	2	Changed abstract and tags.	53	1
340	2015-11-13 06:04:13.345215+00	28	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	2	Changed publish and tags.	53	1
341	2015-11-13 23:29:01.420166+00	28	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	2	Changed tags and main_image.	53	1
342	2015-11-13 23:31:05.879969+00	149	wissen.jpg	2	Changed file.	41	1
343	2015-11-13 23:31:24.711771+00	28	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	2	Changed tags.	53	1
344	2015-11-15 00:28:38.230946+00	8	Digital Glarus - Crowdfunding	2		11	1
345	2015-11-15 00:30:17.733748+00	8	Digital Glarus - Crowdfunding	2		11	1
346	2015-11-15 00:43:27.236439+00	8	Digital Glarus - Crowdfunding	2		11	1
347	2015-11-15 00:57:39.179023+00	8	Digital Glarus - Crowdfunding	2		11	1
348	2015-11-15 01:22:15.320458+00	8	Digital Glarus - Crowdfunding	2		11	1
349	2015-11-15 01:23:20.986583+00	8	Digital Glarus - Crowdfunding	2		11	1
350	2015-11-15 01:24:49.987306+00	8	Digital Glarus - Crowdfunding	2		11	1
351	2015-11-15 10:12:56.113146+00	29	Linux ERFA in Digital Glarus	1		53	1
352	2015-11-15 14:55:59.46573+00	150	newspaper.jpg	3		41	1
353	2015-11-19 10:32:37.668786+00	29	Linux ERFA in Digital Glarus	3		53	1
354	2015-11-19 20:45:52.606023+00	30	Jazz in Digital Glarus	1		53	1
355	2015-11-19 20:46:15.871625+00	30	Jazz in Digital Glarus	2	Changed tags and main_image.	53	1
356	2015-11-19 20:46:59.957267+00	30	Jazz in Digital Glarus	2	Changed tags and main_image.	53	1
357	2015-11-19 20:53:17.881123+00	30	Jazz in Digital Glarus	2	Changed tags and main_image.	53	1
358	2015-11-19 21:22:00.950685+00	30	Jazz in Digital Glarus	2	Changed abstract and tags.	53	1
359	2015-11-19 21:34:47.155285+00	30	Jazz in Digital Glarus	2	Changed publish and tags.	53	1
360	2015-11-21 16:34:09.862565+00	8	Digital Glarus - Crowdfunding	2		11	1
361	2015-11-21 16:34:48.869821+00	8	Digital Glarus - Crowdfunding	2		11	1
362	2015-11-21 16:36:50.873531+00	8	Digital Glarus - Crowdfunding	2		11	1
363	2015-11-21 16:38:33.215318+00	30	Jazz in Digital Glarus	2	Changed tags.	53	1
364	2015-11-21 17:34:52.105792+00	28	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	2	Changed tags.	53	1
365	2015-11-21 17:35:38.341615+00	27	OpenNebula workshop at Digital Glarus	2	Changed tags.	53	1
366	2015-11-21 17:36:05.230708+00	24	Warum wir das Projekt Digital Glarus gestartet haben	2	Changed tags.	53	1
367	2015-11-21 17:37:33.814375+00	24	Warum wir das Projekt Digital Glarus gestartet haben	2	Changed tags.	53	1
368	2015-11-25 06:19:53.764096+00	15	jazz	1		11	1
369	2015-11-25 06:21:29.938676+00	15	jazz	2	No fields changed.	11	1
370	2015-11-25 07:04:21.301326+00	15	Let's Jazz in Glarus!	2		11	1
371	2015-11-25 07:05:18.602592+00	15	jazz	2	Changed title and slug.	11	1
372	2015-11-25 07:06:13.337269+00	15	jazz	2	Changed menu_title, page_title and meta_description.	11	1
373	2015-11-25 07:11:12.080237+00	15	Let's Jazz in Glarus	2		11	1
374	2015-11-25 21:14:01.98167+00	15	Let's Jazz in Glarus	2		11	1
375	2015-11-29 14:55:34.721432+00	8	Digital Glarus - Crowdfunding	2		11	1
376	2015-11-29 14:57:13.609441+00	5	Digital Glarus - Welcome	2		11	1
377	2015-11-29 14:57:26.524423+00	6	Digital Glarus - About	2		11	1
378	2015-11-29 18:47:55.226619+00	7	Digital Glarus - Kontakt	2		11	1
379	2015-11-29 18:48:17.984245+00	5	Digital Glarus - Startseite	2		11	1
380	2015-11-29 18:48:33.89021+00	7	Digital Glarus - Contact	2		11	1
381	2015-11-29 18:48:45.218152+00	8	Digital Glarus - Crowdfunding	2		11	1
382	2015-11-29 18:48:56.741149+00	15	Let's Jazz in Glarus!	2		11	1
383	2015-11-29 18:49:11.03458+00	6	Digital Glarus - Ãœber uns	2		11	1
384	2015-12-01 23:40:23.640831+00	15	jazz	2	Changed slug.	11	1
385	2015-12-01 23:40:41.836681+00	15	Let's Jazz in Glarus!	2		11	1
386	2015-12-01 23:40:47.498963+00	15	Let's Jazz in Glarus!	2		11	1
387	2015-12-01 23:41:08.331575+00	15	Let's Jazz in Glarus!	2		11	1
388	2015-12-01 23:41:38.473858+00	15	jazz	2	Changed slug.	11	1
389	2015-12-01 23:41:49.721305+00	15	Let's Jazz in Glarus	2		11	1
390	2015-12-01 23:43:25.185049+00	15	jazz	2	Changed slug.	11	1
391	2015-12-01 23:43:34.296047+00	15	jazz	2	Changed slug.	11	1
392	2015-12-01 23:43:41.75795+00	15	jazz	2	No fields changed.	11	1
393	2015-12-01 23:43:53.214556+00	15	Let's Jazz in Glarus!	2		11	1
394	2015-12-01 23:44:05.549671+00	15	Let's Jazz in Glarus	2		11	1
395	2015-12-02 04:09:19.460337+00	15	Let's Jazz in Glarus!	2		11	1
396	2015-12-06 21:27:25.783558+00	31	Jazz at Digital Chalet Schwanden	1		53	1
397	2015-12-07 13:32:19.220868+00	31	Jazz at Digital Chalet Schwanden	2	Changed tags and main_image.	53	1
398	2015-12-07 13:33:03.917916+00	31	Jazz at Digital Chalet Schwanden	2	Changed abstract and tags.	53	1
399	2015-12-07 13:34:59.269925+00	31	Jazz at Digital Chalet Schwanden	2	Changed tags and main_image.	53	1
400	2015-12-07 14:01:45.114104+00	161	digitalglarus_jazz_concert_coupons	3		38	1
401	2015-12-07 15:49:20.02925+00	31	Jazz at Digital Chalet Schwanden	2	Changed tags.	53	1
402	2015-12-07 16:07:36.960589+00	172	digitalglarus_jazz_concert_coupons	3		38	1
403	2015-12-07 16:27:53.953604+00	31	Jazz at Digital Chalet Schwanden	2	Changed publish and tags.	53	1
404	2015-12-07 16:29:38.248791+00	31	Jazz at Digital Chalet Schwanden	2	Changed tags.	53	1
405	2015-12-15 15:16:08.904742+00	15	Let's Jazz in Glarus!	2	The English page "jazz" was successfully unpublished	11	1
406	2015-12-15 15:18:12.81997+00	15	Let's Jazz in Glarus!	2		11	1
407	2015-12-15 15:18:47.552121+00	15	Let's Jazz in Glarus	2		11	1
408	2016-01-06 14:42:27.834551+00	7	Sandra - ralsukkheq@udkdoles.net - 2015-12-30 18:17:33.484646+00:00	3		58	1
409	2016-01-06 14:42:44.352867+00	5	Sandra - jmwjew@sskdolek.net - 2015-11-26 10:03:07.928067+00:00	3		58	1
410	2016-01-06 14:42:52.793422+00	4	Sandra - jwdmxausjt@sskdolek.net - 2015-11-22 07:08:42.870237+00:00	3		58	1
411	2016-01-06 16:57:17.16154+00	177	20,000	3		38	1
412	2016-01-06 17:33:17.763091+00	179	nico_schottelius_tv_2016-01-06.png	3		41	1
413	2016-01-06 18:05:29.481507+00	174	top-50-2012.jpg	3		41	1
414	2016-01-13 21:20:27.505844+00	32	Crowdfunding campaign : mission accomplished!	1		53	1
415	2016-01-13 21:21:36.053618+00	32	Crowdfunding campaign : mission accomplished!	2	Changed tags and main_image.	53	1
416	2016-01-13 21:24:03.25082+00	32	Crowdfunding campaign : mission accomplished!	2	Changed tags and main_image.	53	1
417	2016-01-13 21:25:18.482369+00	32	Crowdfunding campaign : mission accomplished!	2	Changed abstract and tags.	53	1
418	2016-01-13 21:27:14.083846+00	32	Crowdfunding campaign : mission accomplished!	2	Changed abstract and tags.	53	1
419	2016-01-14 16:55:01.879735+00	32	Crowdfunding campaign : mission accomplished!	2	Changed publish and tags.	53	1
420	2016-01-15 15:17:46.04259+00	33	Crowdfunding-Kampagne: Mission erfolgreich.	1		53	1
421	2016-01-15 15:31:32.269837+00	176	nico_schottelius_frontpage_newspaper_2016_01_06_.jpg	2	No fields changed.	41	1
422	2016-01-15 15:31:54.203234+00	180	nico_schottelius_tv_2016-01-06_.png	2	No fields changed.	41	1
423	2016-01-15 15:32:02.299618+00	181	nico_schottelius_tv_interview_2016-01-06_.png	2	No fields changed.	41	1
424	2016-01-15 15:32:13.544442+00	187	snow_luchsingen_small.jpg	2	No fields changed.	41	1
425	2016-01-15 15:32:25.57266+00	178	20000.jpg	2	No fields changed.	41	1
426	2016-01-15 15:32:52.745626+00	183	twitter_header_thankyou_confetti.png	2	No fields changed.	41	1
427	2016-01-15 15:33:04.487975+00	188	too-many-emails.png	2	No fields changed.	41	1
428	2016-01-15 15:35:17.034028+00	178	20000.jpg	2	No fields changed.	41	1
429	2016-01-15 15:37:55.262769+00	187	snow_luchsingen_small.jpg	2	No fields changed.	41	1
430	2016-01-15 15:46:20.417434+00	33	Crowdfunding-Kampagne: Mission erfolgreich.	2	Changed tags and main_image.	53	1
431	2016-01-15 15:46:51.465636+00	186	twitter_header_thankyou_confetti_dark.png	2	No fields changed.	41	1
432	2016-01-15 15:47:00.82654+00	33	Crowdfunding-Kampagne: Mission erfolgreich.	2	Changed tags and main_image.	53	1
433	2016-01-15 15:55:10.072055+00	33	Crowdfunding-Kampagne: Mission erfolgreich.	2	Changed publish and tags.	53	1
434	2016-01-27 16:52:02.552876+00	10	Samantha - botnmhg@udkdoles.net - 2016-01-26 22:54:49.983113+00:00	3		58	1
435	2016-01-27 16:52:09.395261+00	9	Sandra - wjszekaq@udkdoles.net - 2016-01-17 23:43:57.245536+00:00	3		58	1
436	2016-01-27 16:52:14.787897+00	8	Sandra - xpbmimvm@udkdoles.net - 2016-01-07 06:26:31.095446+00:00	3		58	1
437	2016-01-28 17:05:18.427051+00	32	Crowdfunding campaign : mission accomplished!	2	Changed tags.	53	1
438	2016-01-28 17:05:50.059252+00	33	Crowdfunding-Kampagne: Mission erfolgreich.	2	Changed tags.	53	1
439	2016-02-22 13:39:04.500437+00	11	Samantha - rhrrif@udkdoles.net - 2016-01-30 16:26:45.541261+00:00	3		58	1
440	2016-02-28 15:08:34.401991+00	17	test	1		11	1
441	2016-02-28 15:11:10.878079+00	17	test	3		11	1
442	2016-02-28 15:12:18.373853+00	18	Events	1		11	1
443	2016-02-29 18:57:53.882004+00	12	Samantha - fsldwbxe@udkdoles.net - 2016-02-29 11:09:12.649428+00:00	3		58	1
444	2016-03-17 08:37:30.353486+00	4	samantha	1		4	1
445	2016-03-17 08:39:29.061493+00	4	samantha	2	Changed first_name, last_name, email and user_permissions.	4	1
446	2016-03-20 22:02:11.410084+00	4	samantha	2	Changed password.	4	1
447	2016-03-20 22:03:28.913486+00	4	samantha	2	Changed is_staff and user_permissions.	4	1
448	2016-03-20 22:04:26.138349+00	4	samantha	2	Changed is_superuser.	4	1
449	2016-03-22 22:53:27.91351+00	217	clipboard	3		9	5
\.


--
-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('django_admin_log_id_seq', 449, true);


--
-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: app
--

COPY django_content_type (id, name, app_label, model) FROM stdin;
1	log entry	admin	logentry
2	permission	auth	permission
3	group	auth	group
4	user	auth	user
5	content type	contenttypes	contenttype
6	session	sessions	session
7	site	sites	site
8	user setting	cms	usersettings
9	placeholder	cms	placeholder
10	cms plugin	cms	cmsplugin
11	page	cms	page
12	Page global permission	cms	globalpagepermission
13	Page permission	cms	pagepermission
14	User (page)	cms	pageuser
15	User group (page)	cms	pageusergroup
16	title	cms	title
17	placeholder reference	cms	placeholderreference
18	static placeholder	cms	staticplaceholder
19	alias plugin model	cms	aliaspluginmodel
20	cache key	menus	cachekey
21	flash	djangocms_flash	flash
22	google map	djangocms_googlemap	googlemap
23	inherit page placeholder	djangocms_inherit	inheritpageplaceholder
24	link	djangocms_link	link
25	Snippet	djangocms_snippet	snippet
26	Snippet	djangocms_snippet	snippetptr
27	teaser	djangocms_teaser	teaser
28	filer file	cmsplugin_filer_file	filerfile
29	filer folder	cmsplugin_filer_folder	filerfolder
30	filer link plugin	cmsplugin_filer_link	filerlinkplugin
31	filer teaser	cmsplugin_filer_teaser	filerteaser
32	filer video	cmsplugin_filer_video	filervideo
33	revision	reversion	revision
34	version	reversion	version
35	text	djangocms_text_ckeditor	text
36	Folder	filer	folder
37	folder permission	filer	folderpermission
38	file	filer	file
39	clipboard	filer	clipboard
40	clipboard item	filer	clipboarditem
41	image	filer	image
42	source	easy_thumbnails	source
43	thumbnail	easy_thumbnails	thumbnail
44	thumbnail dimensions	easy_thumbnails	thumbnaildimensions
45	filer image	cmsplugin_filer_image	filerimage
46	thumbnail option	cmsplugin_filer_image	thumbnailoption
47	Tag	taggit	tag
48	Tagged Item	taggit	taggeditem
49	key map	django_select2	keymap
50	blog category Translation	djangocms_blog	blogcategorytranslation
51	blog category	djangocms_blog	blogcategory
52	blog article Translation	djangocms_blog	posttranslation
53	blog article	djangocms_blog	post
54	latest posts plugin	djangocms_blog	latestpostsplugin
55	author entries plugin	djangocms_blog	authorentriesplugin
56	ungleich page	ungleich	ungleichpage
57	rails beta user	railshosting	railsbetauser
58	message	digitalglarus	message
59	Page meta info (all languages)	djangocms_page_meta	pagemeta
60	Page meta info (language-dependent)	djangocms_page_meta	titlemeta
61	rails beta user	hosting	railsbetauser
\.


--
-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('django_content_type_id_seq', 61, true);


--
-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: app
--

COPY django_migrations (id, app, name, applied) FROM stdin;
1	contenttypes	0001_initial	2015-06-12 16:47:37.586053+00
2	auth	0001_initial	2015-06-12 16:47:40.078096+00
3	admin	0001_initial	2015-06-12 16:47:40.720962+00
4	sites	0001_initial	2015-06-12 16:47:40.90432+00
5	cms	0001_initial	2015-06-12 16:47:46.81365+00
6	cms	0002_auto_20140816_1918	2015-06-12 16:47:52.040742+00
7	cms	0003_auto_20140926_2347	2015-06-12 16:47:52.324788+00
8	cms	0004_auto_20140924_1038	2015-06-12 16:48:05.488729+00
9	cms	0005_auto_20140924_1039	2015-06-12 16:48:05.781437+00
10	cms	0006_auto_20140924_1110	2015-06-12 16:48:06.81011+00
11	cms	0007_auto_20141028_1559	2015-06-12 16:48:07.423593+00
12	cms	0008_auto_20150208_2149	2015-06-12 16:48:07.901227+00
13	cms	0008_auto_20150121_0059	2015-06-12 16:48:08.605592+00
14	cms	0009_merge	2015-06-12 16:48:08.904628+00
15	cms	0010_migrate_use_structure	2015-06-12 16:48:09.357941+00
16	cms	0011_auto_20150419_1006	2015-06-12 16:48:09.966304+00
17	filer	0001_initial	2015-06-12 16:48:13.197141+00
18	cmsplugin_filer_file	0001_initial	2015-06-12 16:48:13.937341+00
19	cmsplugin_filer_folder	0001_initial	2015-06-12 16:48:14.60625+00
20	cmsplugin_filer_image	0001_initial	2015-06-12 16:48:16.090267+00
21	cmsplugin_filer_link	0001_initial	2015-06-12 16:48:16.873574+00
22	cmsplugin_filer_link	0002_auto_20150612_1635	2015-06-12 16:48:17.230453+00
23	cmsplugin_filer_teaser	0001_initial	2015-06-12 16:48:18.132015+00
24	cmsplugin_filer_video	0001_initial	2015-06-12 16:48:19.031049+00
25	digitalglarus	0001_initial	2015-06-12 16:48:19.432218+00
26	digitalglarus	0002_auto_20150527_1023	2015-06-12 16:48:19.906423+00
27	digitalglarus	0002_auto_20150522_0450	2015-06-12 16:48:20.007307+00
28	digitalglarus	0003_merge	2015-06-12 16:48:20.073792+00
29	taggit	0001_initial	2015-06-12 16:48:21.308116+00
30	djangocms_blog	0001_initial	2015-06-12 16:48:27.326915+00
31	djangocms_blog	0002_post_sites	2015-06-12 16:48:28.662507+00
32	djangocms_blog	0003_auto_20141201_2252	2015-06-12 16:48:29.295249+00
33	djangocms_blog	0004_auto_20150108_1435	2015-06-12 16:48:30.336189+00
34	djangocms_blog	0005_auto_20150212_1118	2015-06-12 16:48:31.145054+00
35	djangocms_blog	0006_auto_20150612_1635	2015-06-12 16:48:32.195251+00
36	djangocms_flash	0001_initial	2015-06-12 16:48:32.512199+00
37	djangocms_googlemap	0001_initial	2015-06-12 16:48:32.862443+00
38	djangocms_inherit	0001_initial	2015-06-12 16:48:33.378062+00
39	djangocms_link	0001_initial	2015-06-12 16:48:34.295429+00
40	djangocms_link	0002_auto_20140929_1705	2015-06-12 16:48:34.469398+00
41	djangocms_link	0003_auto_20150212_1310	2015-06-12 16:48:34.657091+00
42	djangocms_snippet	0001_initial	2015-06-12 16:48:36.072264+00
43	djangocms_teaser	0001_initial	2015-06-12 16:48:36.698633+00
44	djangocms_text_ckeditor	0001_initial	2015-06-12 16:48:37.165737+00
45	easy_thumbnails	0001_initial	2015-06-12 16:48:39.062327+00
46	easy_thumbnails	0002_thumbnaildimensions	2015-06-12 16:48:39.408439+00
47	filer	0002_auto_20150612_1635	2015-06-12 16:48:39.767056+00
48	reversion	0001_initial	2015-06-12 16:48:41.231149+00
49	reversion	0002_auto_20141216_1509	2015-06-12 16:48:42.220029+00
50	sessions	0001_initial	2015-06-12 16:48:42.787999+00
51	ungleich	0001_initial	2015-06-12 16:48:43.91062+00
52	ungleich	0002_ungleichpage_image	2015-06-12 16:48:44.696539+00
53	ungleich	0003_remove_ungleichpage_image_header	2015-06-12 16:48:45.323423+00
54	djangocms_page_meta	0001_initial	2015-06-16 07:51:34.515936+00
55	djangocms_blog	0007_auto_20150616_0751	2015-06-16 07:52:05.543796+00
56	djangocms_page_meta	0002_auto_20150616_0751	2015-06-16 07:52:07.373163+00
57	cmsplugin_filer_link	0002_auto_20160228_1504	2016-02-28 15:04:53.254176+00
58	djangocms_blog	0006_auto_20160228_1504	2016-02-28 15:04:54.20186+00
59	djangocms_page_meta	0002_auto_20160228_1504	2016-02-28 15:04:55.612642+00
60	filer	0002_auto_20160228_1504	2016-02-28 15:04:56.043266+00
\.


--
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('django_migrations_id_seq', 60, true);


--
-- Data for Name: django_select2_keymap; Type: TABLE DATA; Schema: public; Owner: app
--

COPY django_select2_keymap (id, key, value, accessed_on) FROM stdin;
\.


--
-- Name: django_select2_keymap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('django_select2_keymap_id_seq', 1, false);


--
-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: app
--

COPY django_session (session_key, session_data, expire_date) FROM stdin;
irm9c6an9s9ihgoqp0cpmk147gyzi12v	NzMwNDZjOGFiMzQzYjkzNTBjNDVhZWQzYTAyMmQ2ZGRjYjlmYjA3Yjp7ImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2VkaXQiOnRydWUsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==	2015-06-26 17:28:56.575209+00
c9hxn2v7skuwz5j6k2n9drupqiq3w9wp	MWIyYjBhMDEwNDE3OTBmZWNkZDFjOGRkZDI5ZWZlYWZiMDMxNzIyNjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSJ9	2015-08-12 23:44:34.167791+00
2q7xrigv8riwxzmdary3kbkbmmm2vul3	YWYzMDQxZjVjMWYxOTBiYWEwMzJmNzZmY2IwNmNlMzhiOTdkNzE0ZTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImZpbGVyX2xhc3RfZm9sZGVyX2lkIjoiMiJ9	2015-08-13 11:50:28.45562+00
o9yhzaa0k26xx7hvnk5w2uoq5f8r70oz	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-08-19 12:19:53.607418+00
7s4cnu4kfs2hccibkkib41qxqq330qxv	MGMxNDMzNGNmZGZlMzljMGRkMGJiOTIzZWJhMDBiOGRhM2U3MjEzMjp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfZWRpdCI6ZmFsc2UsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiZmlsZXJfbGFzdF9mb2xkZXJfaWQiOiI3In0=	2015-06-28 05:02:09.521374+00
vn7n1uxj515z59h12izfoh1yngf5iyxg	MWIyYjBhMDEwNDE3OTBmZWNkZDFjOGRkZDI5ZWZlYWZiMDMxNzIyNjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSJ9	2015-08-23 16:04:10.896781+00
u300329af7b1feo24pliih9wz4y15g3m	MmQ2ODM2ZmY2NjcyMGIzZDZhNTgwNWQ1NDlhNjkwOTNhN2NjODMzNzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiY21zX2VkaXQiOnRydWUsIl9hdXRoX3VzZXJfaWQiOjF9	2015-06-28 05:04:12.268289+00
3bmm2rr1074u3x8aaapakjhcm672mzit	NjNhYTE5ZDhjNWU3N2YyYjczZTM2NGFlMWZjMzc1ZDM0ZTY1OTI0Njp7fQ==	2015-09-16 13:36:58.600226+00
s56u6azleh84vfbid2w3qwm3pny6aoyh	NDA1YTZhYzdjYzliNzQ4ZDExNjY5Mzc0MzgzM2IyZGVlODdhNWMxYjp7Il9hdXRoX3VzZXJfaWQiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOnRydWUsImNtc19hZG1pbl9zaXRlIjoxLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIifQ==	2015-08-31 07:19:59.936994+00
c4c236ege3x815kbjleyvmn11pd59yw5	OWM0NzFmM2QwNzgyNjI1MDMxMWZhMjkxMjEwNDlkYzM5MDg1MTM5ZTp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2015-09-01 15:15:20.79676+00
lkogc9ii0bv0z919sv9t1pll74aitovk	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-09-07 09:16:58.55433+00
r7prkd96h5iyrcpuc7h1ewgak5y9yqvd	MWI0NTFhYWYzMWIzY2FkZTMzMGUyZGNlNTAyMWViZjY3ZWZhYTdkNjp7ImZpbGVyX2xhc3RfZm9sZGVyX2lkIjpudWxsLCJjbXNfZWRpdCI6dHJ1ZSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2xvZ19sYXRlc3QiOjQ3LCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEifQ==	2015-06-27 13:23:25.252719+00
uz95ucvgvwgu1k9awrfm2e705dj3hcvb	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-08-25 14:11:37.162712+00
stxduhogbri7f5uvsbggqxfa5durcl9d	OGQ1Yzk2ZWUzOWM2ZTUxNjYzZTgzMTAwOTMxNWRhNjljMTc4YmNiNzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjoxLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ==	2015-06-30 21:22:23.649062+00
wfzzuu9ooymxe0kz8m5a7unvkf743ptx	MDFhY2NhOWVjNjE5ZDlkNDI4ZTUwYzMxMjA5NDIxMGNiMzNjMGIyNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjoxLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjkiLCJfYXV0aF91c2VyX2hhc2giOiI5OGQ5NDg2ZjVkNGFjYzI1NGJkNWU4YzljYzRhNzBjMTA1ZWMyZTJhIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ==	2015-07-10 09:45:51.459851+00
p8f8hr94tp8p8h3r6jqn4e2fhyfjfdsm	MDdjM2M0N2FjZTRjMDhhNTZhMWU0ZWJiOWU5YmVjMGUyMzEyYWU5Mzp7ImNtc19lZGl0IjpmYWxzZX0=	2015-06-29 14:02:38.430264+00
65pa9lzb2pux8uen15p0nprazzhjy3jy	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-06-29 14:02:38.715406+00
kbbr9swxmy1bg3ft4513xj30de2e468m	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-06-29 14:02:38.716762+00
48e7l9i82zr7p70nclduvom343atknqu	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-06-29 14:02:38.876276+00
xlxl8q57irsexpitxdilwika0jgyexnw	MzNhYWRlZWJlZmQ5MTJkNDhjYmNkZDljODYyNTM5OTNjNDFkMDA3MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSIsIl9hdXRoX3VzZXJfaWQiOjF9	2015-07-13 13:56:24.81215+00
4bi8l75ny44r8m7wa7idfsqpk2gqjk2n	OGYwNDExNjdmNGY5MGQ4MzQ3YjQzMTM4OTFmMjg2ODkxYWVlMTNkNzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMjQxZDIzY2I3ZjAyNDYzOWJmOTkwYjI2NjY1MjIxYWQwNDg0MWM4MCIsIl9hdXRoX3VzZXJfaWQiOjN9	2015-08-01 11:31:35.598436+00
ev4qckmxp1oshcpd1k6qzlb27i450hc5	YTAwMTdiNmM1YWNhMDczZDU4OGZiNDI0YjhmYjg1MGI5MjcxZjI4ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6MSwiZmlsZXJfbGFzdF9mb2xkZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiOThkOTQ4NmY1ZDRhY2MyNTRiZDVlOGM5Y2M0YTcwYzEwNWVjMmUyYSIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZX0=	2015-06-30 08:22:30.986731+00
5rdzi2gvz72ddzta0pixtzzwd3w8yaxr	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-08-04 20:57:28.1185+00
kb7mvjoecqs7r9ujhxunhla1giik5uf6	NDVlYjE1ODE2ZTM2NWY4MjU5N2QzMzY1M2FlYjk1MzI1ZjU4OTExYzp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWV9	2015-08-09 19:07:37.734037+00
j9jia158070l24j8qdxom9xvx4n2qgsp	OWM0NzFmM2QwNzgyNjI1MDMxMWZhMjkxMjEwNDlkYzM5MDg1MTM5ZTp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2015-08-23 19:53:06.035632+00
zbovj4uwgatxvwpefgagwlsmctyk8xr9	MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ==	2015-10-09 19:03:44.290398+00
2v249ai88j4rt0iy9bsrasttephn73im	MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ==	2015-10-24 19:03:05.81982+00
yl0e392ujnpy5hv7nysoc3cq1o760kfw	YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2015-11-30 11:57:03.440037+00
1cawdjquz8x5qvb040xvixibb6fdbltd	ZjU4NDA2ZjIxMzkxMzg5YWI4MTI5ODIwMTljOGNlZTRmNGM1MmVmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsIl9hdXRoX3VzZXJfaWQiOjF9	2016-01-20 14:41:58.398525+00
usm99l1d1iv2jn2jci63tqaz873dyath	MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ==	2015-11-17 18:13:00.498259+00
4r4sg14xutf85pldjzu2e703pdpdfrft	Y2UyZjFkMzIxZGM5NDBkOTJiOGVhNDQ4MWUxODNjM2QzMzRjMzdkMzp7Il9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgiLCJjbXNfYWRtaW5fc2l0ZSI6MSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsImZpbGVyX2xhc3RfZm9sZGVyX2lkIjoiMSIsIl9hdXRoX3VzZXJfaWQiOjEsImNtc19lZGl0Ijp0cnVlfQ==	2015-10-10 20:05:16.803703+00
3r3ocqt6fusoq552ojdi260pqnkc5osv	ZGM1YjNlOTUzNmFiMjdlN2Q0MzU0YjM4NmUxOTRlNGUwNzhjMjY0MTp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJjbXNfZWRpdCI6dHJ1ZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2V9	2016-01-11 22:23:42.313664+00
vmfbysejdhwvazmzmujfawe0p69gx5mt	NjNhYTE5ZDhjNWU3N2YyYjczZTM2NGFlMWZjMzc1ZDM0ZTY1OTI0Njp7fQ==	2015-09-15 21:32:25.908758+00
6inagfv8ab5aqh3g9gg0uf7jgn73paem	MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ==	2015-11-17 11:50:56.628829+00
kq7wpvy6ocq3cw3zm96z9s1jgxujatgt	YmM3YWY0MTUyOWZhMzIxNmIyOGNmNWM5OTIzMzQ2ZmU5ZmU4ODVhYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlfQ==	2015-09-16 13:59:16.272347+00
nkhhqwi34uha14mx5hyaka7qvs15xcyd	YjhkM2VlNjE4NTM5OTI0YWM5ODlkNzFlZGMwZWZiZGRhNjlmM2JmYTp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWUsIl9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOWIxNGI0M2JlZWViZDBhZGQ2ZGI1ZDM2ZTQ2ODI2MDhhZjg1MWFmOCJ9	2015-09-23 20:25:07.545083+00
qputxop95swzll33wd8itmrjzdkjkahf	MGM1ZDVhNDJjMmY0OGRmN2ZlODI2Yzc4ZWEzNDc1YjE0NWUzYzMyNTp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOWIxNGI0M2JlZWViZDBhZGQ2ZGI1ZDM2ZTQ2ODI2MDhhZjg1MWFmOCJ9	2015-09-24 22:20:16.289156+00
yfsz7l6mshwfv4zmj6yy1jrlsker3dm5	M2I2MmE1MWI1ZGE4MzE3MTI3MjM2MTNhM2JlNTE0OTUyNDk4YzRlNjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiOWIxNGI0M2JlZWViZDBhZGQ2ZGI1ZDM2ZTQ2ODI2MDhhZjg1MWFmOCIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWUsIl9hdXRoX3VzZXJfaWQiOjF9	2015-11-17 12:46:49.079327+00
hue6r2076rf2iwov4ckq6oz6kwrp59u6	NjZhYzQwNTI3YmE2M2NhMWU1YjJjZTM1OWFjYWY4NGZlN2MwZTg4Mjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2015-10-11 17:30:57.806276+00
9gg1gkozcb3xh92vh3vtrpfowix0s1y9	NzNiYzQ1NjE0MDg3MTNjNzRmNGYyMzhmMWNlZDYyYTU4NjEzMzFlZjp7Il9hdXRoX3VzZXJfaWQiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiY21zX2VkaXQiOnRydWUsImZpbGVyX2xhc3RfZm9sZGVyX2lkIjoiMTAiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgifQ==	2015-10-13 19:40:35.773884+00
eybzi8kkruesunk3zjhnbvnsijjnhpku	NTZlOWM5NjQxMzk2YjJhZDc3ZDRiZmU2MjdlMTYyZTQ2NTQ2MDNiNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiJiY2RlY2VmZjI1NDg1MDc2YzNlNTU5MmRlYzJkNzgwNThmOGNmMTZlIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfYWRtaW5fc2l0ZSI6MX0=	2015-12-05 16:38:34.551346+00
l5h8btmza573zpnh4mq247yedi788mb5	YmM3YWY0MTUyOWZhMzIxNmIyOGNmNWM5OTIzMzQ2ZmU5ZmU4ODVhYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc19lZGl0Ijp0cnVlfQ==	2015-09-16 12:46:57.114096+00
wjpazoft96yruu0iupl9qfend0rakc62	NDU3YWZiYmNjZmMxZDQ5Y2Q0OTM2NmI2ZDg0Yzc0NzZkM2M1NTNlMjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfbG9nX2xhdGVzdCI6MTQxLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2015-09-08 20:54:03.81748+00
6b8utlaefok78yboiopvnxdfm5gta5kv	Yjg2OTZjMjI3NzBhMDc3NWZmYjAwMTQ4MDViMDZmMmJiODcwNTM2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOnRydWUsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5YjE0YjQzYmVlZWJkMGFkZDZkYjVkMzZlNDY4MjYwOGFmODUxYWY4IiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ==	2015-10-27 14:02:22.408738+00
2n7bmnmlp2obpdmagemqvgbev64lr1wn	NjZhYzQwNTI3YmE2M2NhMWU1YjJjZTM1OWFjYWY4NGZlN2MwZTg4Mjp7Il9hdXRoX3VzZXJfaWQiOjEsIl9hdXRoX3VzZXJfaGFzaCI6IjliMTRiNDNiZWVlYmQwYWRkNmRiNWQzNmU0NjgyNjA4YWY4NTFhZjgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2015-10-09 18:07:10.114395+00
3gtuuqi71af18qu9klvatzk9g1m0x7ce	YzM4ZGFlZDc4MjAxNDQ0Mzc4NzQ1MzBhYTYyODU0ZjU3ZjE2YjViYTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijk4ZDk0ODZmNWQ0YWNjMjU0YmQ1ZThjOWNjNGE3MGMxMDVlYzJlMmEiLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2015-09-16 13:37:19.660071+00
zp10cgwmbk1z5en4u15gug25sltd1k2v	NTZlOWM5NjQxMzk2YjJhZDc3ZDRiZmU2MjdlMTYyZTQ2NTQ2MDNiNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiJiY2RlY2VmZjI1NDg1MDc2YzNlNTU5MmRlYzJkNzgwNThmOGNmMTZlIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfYWRtaW5fc2l0ZSI6MX0=	2015-11-29 01:24:50.596146+00
fucj24zxshv89ehwi7in2c7xbenflcwn	MzE3MzE1ZGU3MzA1NDQyYTM5N2Q5ZDZhNWUxMGUxYzg0MzNjNTkzNTp7fQ==	2015-11-12 22:48:46.634114+00
3jazcr6qodaqylmloid2wsmhbq3h9gl1	MDFiYzljZmM0YzA4MzQyMzhhOWYxMzU5M2NmMThjMDBmNjlkMjRlNDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOnRydWUsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2hhc2giOiI5YjE0YjQzYmVlZWJkMGFkZDZkYjVkMzZlNDY4MjYwOGFmODUxYWY4IiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxfQ==	2015-10-24 19:00:52.156612+00
aapphedq6gu41alumsaq67etdjbcm1ok	NjJhNTU0YjEyNDE3YzY0MjY5MTFiMWI0M2Y1ZDlkNzEyMWJkNWMxMjp7ImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiZmlsZXJfbGFzdF9mb2xkZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfZWRpdCI6dHJ1ZSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2015-11-27 23:31:25.331195+00
sgiitzqjhl2qh5wbf3xk59cchl13k010	NTZlOWM5NjQxMzk2YjJhZDc3ZDRiZmU2MjdlMTYyZTQ2NTQ2MDNiNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiJiY2RlY2VmZjI1NDg1MDc2YzNlNTU5MmRlYzJkNzgwNThmOGNmMTZlIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfYWRtaW5fc2l0ZSI6MX0=	2015-12-09 21:14:30.609706+00
0i47wrbriv9biyjttp5ekkvwyluyai19	ZjU4NDA2ZjIxMzkxMzg5YWI4MTI5ODIwMTljOGNlZTRmNGM1MmVmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsIl9hdXRoX3VzZXJfaWQiOjF9	2016-02-10 16:51:45.472214+00
0y8x56y4um82189het0jz8vhujngln02	YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2015-12-02 13:35:17.922098+00
r9aw0z2g8uddz272zh3axmrink6dkn7x	NjA1OTYxNWQzNDBjNzNjNDgyZjZkYThhZDEyNjEyMTMzMmFlMTk3Mjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjoxLCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2V9	2016-02-11 17:05:51.592439+00
rs8nhreis91x8jupwtbg1fcg3rm8iu7n	ZjhhOTUxOTgzNjhlYmRiZDg5MmM3MzY1NmMwMWUwNTIyMjM1MzU3Nzp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjEiLCJjbXNfZWRpdCI6dHJ1ZSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ==	2016-02-12 19:52:46.726372+00
9uc5llh6e7fn46rxidnzg4kf0w6h503n	MGY5YTAwOThhYWFjZDQ1NjAwYTdlZTY1ZmQ4ZTFlOTI1NzczNDhhOTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19hZG1pbl9zaXRlIjoxLCJfYXV0aF91c2VyX2lkIjoxfQ==	2015-12-16 04:11:26.713576+00
uxpbiyhl03dd2cj5i1wd00xexrkv8h40	ZjhhOTUxOTgzNjhlYmRiZDg5MmM3MzY1NmMwMWUwNTIyMjM1MzU3Nzp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJmaWxlcl9sYXN0X2ZvbGRlcl9pZCI6IjEiLCJjbXNfZWRpdCI6dHJ1ZSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlfQ==	2015-12-29 15:16:37.924183+00
d4kzp4neoc035vuh4en5v16a2cmo7yzl	ZjAzODczMTkwOTUzMjYyYjk4MzZjOGI4YTAyYzkzNzEwMzY1NTBhMTp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJjbXNfYWRtaW5fc2l0ZSI6MSwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZX0=	2015-12-29 15:18:48.326702+00
bfdjeu2jto4ev6pry80a76ikemrj5a0c	ZjU4NDA2ZjIxMzkxMzg5YWI4MTI5ODIwMTljOGNlZTRmNGM1MmVmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsIl9hdXRoX3VzZXJfaWQiOjF9	2016-01-29 15:02:49.841675+00
jq6kqf7pf0qi2y1ruh7h119qii7k6suk	YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2016-03-13 15:06:40.35285+00
uketg46qiq3r2qwhberl1rc17w36cyx6	MTQ3MWJiZjllOGQxOWM5NmIxNmRkNjljNWEwMTdmODFhYmZhNWI4Zjp7ImNtc19lZGl0Ijp0cnVlLCJjbXNfYWRtaW5fc2l0ZSI6MSwiX2F1dGhfdXNlcl9pZCI6NSwiY21zX3Rvb2xiYXJfZGlzYWJsZWQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjU0ZTJmM2RmYWMzZGI4ZTU4YTNjZTI1NjU0ODBkNDMwODg3YjEyNTcifQ==	2016-04-05 17:40:58.128542+00
ose4gg8h6ub44zqux6v9rfhskozgp9sm	NmY0ZmUyNzI5ODRmYzBiNzk0YTNkN2RhZGZkOTViMGE4MWYyMjQwODp7ImNtc19lZGl0Ijp0cnVlLCJfYXV0aF91c2VyX2lkIjo1LCJjbXNfdG9vbGJhcl9kaXNhYmxlZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6IjU0ZTJmM2RmYWMzZGI4ZTU4YTNjZTI1NjU0ODBkNDMwODg3YjEyNTciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2016-04-05 17:42:09.042424+00
nu4g8snmupzpl91e34qe4tn7gste0axc	YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2016-03-13 15:53:17.456073+00
8ked8q72mcdba3m82v3855nk487axsqj	YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2016-03-13 15:54:34.876659+00
akgyj8x6cfljpk2af3wwqb72oagksodz	ZTAyZGJiMDg3ZWZjM2I2ZjlhMWVmNWRiZTNiZmNmN2Q0NWUwOTc1MDp7Il9hdXRoX3VzZXJfaGFzaCI6ImJjZGVjZWZmMjU0ODUwNzZjM2U1NTkyZGVjMmQ3ODA1OGY4Y2YxNmUiLCJfYXV0aF91c2VyX2lkIjoxLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9	2016-03-14 18:57:25.753727+00
741qh19tf64xunim3puvtlu50npspuf5	MjIyZDY1NzQ3YTEzY2U4ODZmZDZhMzYxNDRkYzFhYmY1Yjc0ZDAzMDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19lZGl0Ijp0cnVlfQ==	2016-03-29 12:00:25.99816+00
i8a1elji6gtptq9h2x7m699a6jz2wx5n	YWI5MzI2M2ZlMzNmNThiNGFjOTc1YzVlOTI5ODQ5ZTNkMWYwNTg1Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSJ9	2016-04-01 15:05:45.9282+00
xyt2dfbh34bq2an8dil290lzp9qi9vt2	YjM2MmJkMzYxZGI2NmIwYjc5MGY5Zjc1ZjkyZTk2YmUxZDVmMzFiZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6NCwiX2F1dGhfdXNlcl9oYXNoIjoiZTMzMDQyMDY0NzA0M2JhZDdlZTJjZjg0YWUxNmI2ZWE1N2Q5YWY5MyJ9	2016-04-03 22:05:17.625101+00
8q00iaf4c3076tnud5prb3k3j8u8swok	YjM2MmJkMzYxZGI2NmIwYjc5MGY5Zjc1ZjkyZTk2YmUxZDVmMzFiZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6NCwiX2F1dGhfdXNlcl9oYXNoIjoiZTMzMDQyMDY0NzA0M2JhZDdlZTJjZjg0YWUxNmI2ZWE1N2Q5YWY5MyJ9	2016-04-03 22:07:50.132803+00
w2985lqn2log0j4cifm7f1rmppnesgy7	MjIyZDY1NzQ3YTEzY2U4ODZmZDZhMzYxNDRkYzFhYmY1Yjc0ZDAzMDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6MSwiY21zX2FkbWluX3NpdGUiOjEsImNtc190b29sYmFyX2Rpc2FibGVkIjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiYmNkZWNlZmYyNTQ4NTA3NmMzZTU1OTJkZWMyZDc4MDU4ZjhjZjE2ZSIsImNtc19lZGl0Ijp0cnVlfQ==	2016-04-04 14:36:30.237366+00
f6vqsjk5p4bie3lo8jvrfmu4fotdibvd	MmRiOGRjNGFlODJhODJmN2VjNzJhZmVhNzRhNzg5OGI4Y2YzZWMzMDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6NSwiY21zX2FkbWluX3NpdGUiOjEsIl9hdXRoX3VzZXJfaGFzaCI6IjU0ZTJmM2RmYWMzZGI4ZTU4YTNjZTI1NjU0ODBkNDMwODg3YjEyNTcifQ==	2016-04-07 21:14:25.684417+00
\.


--
-- Data for Name: django_site; Type: TABLE DATA; Schema: public; Owner: app
--

COPY django_site (id, domain, name) FROM stdin;
1	blog.ungleich.ch	blog.ungleich.ch
\.


--
-- Name: django_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('django_site_id_seq', 2, true);


--
-- Data for Name: djangocms_blog_authorentriesplugin; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_authorentriesplugin (cmsplugin_ptr_id, latest_posts) FROM stdin;
\.


--
-- Data for Name: djangocms_blog_authorentriesplugin_authors; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_authorentriesplugin_authors (id, authorentriesplugin_id, user_id) FROM stdin;
\.


--
-- Name: djangocms_blog_authorentriesplugin_authors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_authorentriesplugin_authors_id_seq', 1, false);


--
-- Data for Name: djangocms_blog_blogcategory; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_blogcategory (id, date_created, date_modified, parent_id) FROM stdin;
1	2015-06-12 17:07:21.648995+00	2015-06-12 17:07:21.649044+00	\N
2	2015-06-12 17:21:50.282983+00	2015-06-12 17:21:50.283027+00	\N
3	2015-06-12 20:24:27.358927+00	2015-06-12 20:24:27.358964+00	\N
4	2015-06-14 21:22:29.212861+00	2015-06-14 21:22:29.212901+00	\N
5	2015-06-16 20:11:45.850517+00	2015-06-16 20:11:45.850556+00	\N
6	2015-06-21 08:25:00.361649+00	2015-06-21 08:25:00.361757+00	\N
7	2015-09-02 12:46:53.192677+00	2015-09-02 12:46:53.192717+00	\N
\.


--
-- Name: djangocms_blog_blogcategory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_blogcategory_id_seq', 7, true);


--
-- Data for Name: djangocms_blog_blogcategory_translation; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_blogcategory_translation (id, language_code, name, slug, master_id) FROM stdin;
1	en-us	announcement	announcement	1
2	en-us	opennebula	opennebula	2
3	en-us	hosting	hosting	3
4	en-us	technology	technology	4
5	en-us	conference	conference	5
6	en-us	digitalglarus	digitalglarus	6
7	en-us	press	press	7
\.


--
-- Name: djangocms_blog_blogcategory_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_blogcategory_translation_id_seq', 7, true);


--
-- Data for Name: djangocms_blog_latestpostsplugin; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_latestpostsplugin (cmsplugin_ptr_id, latest_posts) FROM stdin;
\.


--
-- Data for Name: djangocms_blog_latestpostsplugin_categories; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_latestpostsplugin_categories (id, latestpostsplugin_id, blogcategory_id) FROM stdin;
\.


--
-- Name: djangocms_blog_latestpostsplugin_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_latestpostsplugin_categories_id_seq', 1, false);


--
-- Data for Name: djangocms_blog_latestpostsplugin_tags; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_latestpostsplugin_tags (id, latestpostsplugin_id, tag_id) FROM stdin;
\.


--
-- Name: djangocms_blog_latestpostsplugin_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_latestpostsplugin_tags_id_seq', 1, false);


--
-- Data for Name: djangocms_blog_post; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_post (id, date_created, date_modified, date_published, date_published_end, publish, enable_comments, author_id, content_id, main_image_id, main_image_full_id, main_image_thumbnail_id) FROM stdin;
23	2015-10-27 12:42:02.441073+00	2015-10-27 19:13:01.792686+00	2015-10-26 21:46:10+00	\N	t	f	1	165	83	\N	\N
18	2015-09-02 12:25:19.265662+00	2015-09-02 13:59:15.590283+00	2015-09-02 12:19:58+00	\N	t	f	1	26	60	\N	\N
3	2015-06-12 20:25:21.334309+00	2015-06-12 20:25:53.912084+00	2015-05-08 20:24:07+00	\N	f	t	1	10	\N	\N	\N
25	2015-11-02 07:14:03.208984+00	2015-11-03 18:15:47.839482+00	2015-11-02 07:13:37+00	\N	t	f	1	167	115	\N	\N
26	2015-11-03 07:14:10.10583+00	2015-11-04 21:24:54.861349+00	2015-11-03 07:13:44+00	\N	t	f	1	168	108	\N	\N
4	2015-06-13 09:29:11.424986+00	2015-06-14 04:11:11.044024+00	2015-05-12 09:28:15+00	\N	t	t	1	11	15	\N	\N
1	2015-06-12 17:10:34.563775+00	2015-06-14 04:56:32.215333+00	2015-06-12 17:06:39+00	\N	t	t	1	7	18	\N	\N
5	2015-06-14 21:19:37.805402+00	2015-06-15 15:31:20.062429+00	2015-06-14 21:13:04+00	\N	t	f	1	12	\N	\N	\N
6	2015-06-14 21:23:32.36135+00	2015-06-15 20:21:31.387582+00	2015-06-14 21:21:18+00	\N	t	f	1	13	20	\N	\N
7	2015-06-16 20:13:52.392931+00	2015-06-16 21:22:23.122968+00	2015-06-16 20:11:22+00	\N	t	f	1	14	28	\N	\N
21	2015-09-25 12:58:19.001805+00	2015-09-26 23:08:03.300532+00	2015-09-25 12:50:49+00	\N	t	f	1	29	82	\N	\N
8	2015-06-21 08:30:44.597597+00	2015-06-22 21:57:05.18626+00	2015-06-21 08:24:37+00	\N	t	f	3	15	\N	\N	\N
9	2015-06-26 09:44:24.647018+00	2015-06-26 09:44:24.647059+00	2015-06-26 09:42:43+00	\N	f	f	1	16	\N	\N	\N
20	2015-09-24 14:01:08.712668+00	2015-09-26 23:08:46.642198+00	2015-09-24 13:53:38+00	\N	t	f	1	28	70	\N	\N
19	2015-09-17 19:03:35.293726+00	2015-09-26 23:09:04.211077+00	2015-09-17 18:53:36+00	\N	t	f	1	27	69	\N	\N
17	2015-09-02 09:51:10.78948+00	2015-09-26 23:09:18.317626+00	2015-09-02 09:48:58+00	\N	t	f	1	25	58	\N	\N
16	2015-08-28 14:30:09.988232+00	2015-09-26 23:09:34.766784+00	2015-08-28 14:28:39+00	\N	t	f	1	24	52	\N	\N
15	2015-08-24 21:16:38.83604+00	2015-09-26 23:09:47.958431+00	2015-08-24 21:14:37+00	\N	t	f	1	23	46	\N	\N
11	2015-07-26 22:38:36.92184+00	2015-09-26 23:10:08.706555+00	2015-07-26 22:32:38+00	\N	t	f	1	19	33	\N	\N
10	2015-07-20 19:15:15.52741+00	2015-09-26 23:10:57.788728+00	2015-07-20 18:58:22+00	\N	t	f	1	18	32	\N	\N
12	2015-08-09 17:56:15.448767+00	2015-08-09 20:47:19.000223+00	2015-08-09 17:50:25+00	\N	t	f	1	20	\N	\N	\N
13	2015-08-14 22:12:29.983903+00	2015-08-14 23:29:27.6642+00	2015-08-14 22:11:19+00	\N	t	f	1	21	\N	\N	\N
30	2015-11-19 20:45:52.51515+00	2015-11-21 16:38:33.169207+00	2015-11-19 20:44:34+00	\N	t	f	1	174	154	\N	\N
28	2015-11-13 05:29:45.387387+00	2015-11-21 17:34:52.094002+00	2015-11-13 05:28:17+00	\N	t	f	1	170	149	\N	\N
27	2015-11-08 20:36:33.582928+00	2015-11-21 17:35:38.331615+00	2015-11-08 20:33:56+00	\N	t	f	1	169	116	\N	\N
24	2015-10-29 13:57:51.225249+00	2015-11-21 17:37:33.806163+00	2015-10-29 13:56:31+00	\N	f	f	1	166	\N	\N	\N
31	2015-12-06 21:27:25.53174+00	2015-12-07 16:29:38.237257+00	2015-12-06 21:26:00+00	\N	t	f	1	195	159	\N	\N
32	2016-01-13 21:20:27.348644+00	2016-01-28 17:05:18.376656+00	2016-01-13 21:18:32+00	\N	t	f	1	196	186	\N	\N
33	2016-01-15 15:17:46.001644+00	2016-01-28 17:05:50.046459+00	2016-01-15 15:15:46+00	\N	t	f	1	197	186	\N	\N
\.


--
-- Data for Name: djangocms_blog_post_categories; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_post_categories (id, post_id, blogcategory_id) FROM stdin;
200	15	1
201	15	6
202	11	1
203	11	6
67	5	3
68	5	4
136	13	3
137	13	4
71	6	2
204	10	6
269	31	6
78	7	2
79	7	5
19	3	1
20	3	3
213	23	2
280	32	6
281	33	6
95	8	1
96	8	5
97	8	6
98	9	5
99	9	6
228	25	1
229	25	6
51	4	1
52	4	2
53	4	3
232	26	6
56	1	1
171	18	4
129	12	1
130	12	3
131	12	4
256	30	6
194	21	6
195	20	6
196	19	6
197	17	6
198	17	7
199	16	1
257	28	6
258	27	2
261	24	1
262	24	6
\.


--
-- Name: djangocms_blog_post_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_post_categories_id_seq', 281, true);


--
-- Name: djangocms_blog_post_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_post_id_seq', 33, true);


--
-- Data for Name: djangocms_blog_post_sites; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_post_sites (id, post_id, site_id) FROM stdin;
2	4	1
\.


--
-- Name: djangocms_blog_post_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_post_sites_id_seq', 4, true);


--
-- Data for Name: djangocms_blog_post_translation; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_blog_post_translation (id, language_code, title, slug, abstract, meta_description, meta_keywords, meta_title, post_text, master_id) FROM stdin;
19	en-us	Nico Schottelius Talks to Press (in German) 	our-ceo-nico-schottelius-press-german	<p><font><font>Our CEO, Nico Schottelius talks to&nbsp;press</font></font><font><font>&nbsp;About our Digital Glarus project.</font></font></p>\r\n					19
12	en-us	The ungleich nginx configuration explained	ungleich-nginx-configuration-explained	<p>Our websites are powered by nginx and lots of love</p>\r\n		nginx, django, uwsgi, proxy, configuration			12
13	en-us	The ungleich nginx configuration explained (2)	ungleich-nginx-configuration-explained-2	<p>More details of our nginx configuration - with uwsgi and django</p>\r\n		django, uwsgi, nginx			13
3	en-us	Application Hosting	application-hosting	<p>ungleich application hosting starts closed beta!</p>\r\n		ruby on rails, hosting, ungleich, switzerland			3
20	en-us	Digital Glarus on Radio! (in German)	digital-glarus-radio-german	<p>Project&nbsp;Digital Glarus is broadcasted&nbsp;on Radio! For the ones who missed it on Radiocentral yesterday, we prepared a transcript.&nbsp;</p>\r\n					20
15	en-us	Digital Glarus: The transformation of Glarus started	digital-glarus-transformation-glarus-started	<p>Find out where the Digital Glarus train is heading to</p>\r\n		Digital Glarus			15
4	en-us	October 20-22 2015, Meet us in Barcelona!	opennebulaconf-2015	<p class="subheading">After Berlin, Philadelphia, Hamburg, Dublin, this time it&#39;s sunny Barcelona!</p>\r\n					4
16	en-us	The Digital Glarus Manifesto	digital-glarus-manifesto	<p>Everything you need to know about Digital Glarus</p>\r\n		Manifesto, Digital Glarus			16
1	en-us	ungleich blog launched	ungleich-blog-launched	<p>Stay tuned for our updates...</p>\r\n					1
17	en-us	Digital Glarus in Press (in German)	digital-glarus-press-german	<p>Was brauchen Sie, um ihrer Arbeit nachgehen zu k&ouml;nnen? Nicht mehr, als&nbsp;einen Arbeitsplatz und Ruhe, ist IT-Spezialist Nico Schottelius &uuml;berzeugt.&nbsp;Seine Firma ist von Z&uuml;rich nach Luchsingen umgezogen, seinem Beispiel&nbsp;sollen weitere&nbsp;Unternehmen folgen.</p>\r\n					17
18	en-us	Basic cdist usage	basic-cdist-usage	<p>Get in touch with the most simple and lightweight configuration management system</p>\r\n		cdist, Configuration Management System			18
5	en-us	Preview of the ungleich hosting technologies	preview-ungleich-hosting-technologies	<p>Curious which technologies are behind ungleich&nbsp;hosting?</p>\r\n		hosting, opennebula, gluster, ceph, Linux, Ruby On Rails, Django, NodeJS, GlusterFS, cdist, PostgreSQL			5
6	en-us	OpenNebula + Openstack + Cloudstack = Open Cloud Day Bern	opennebula-openstack-cloudstack-opencloudday-bern	<p>ungleich presents OpenNebula workshop this Tuesday, 16th of June 2015 in Bern at the Open Cloud Day.</p>\r\n					6
7	en-us	A great OpenCloudDay 2015 in Bern	great-opencloudday-2015-bern	<p>Great talks about OpenNebula, Openstack, Cloudstack, cdist, Ceph, Digital Glarus and much more...</p>\r\n					7
8	en-us	The merger of Born Informatik and adesso Schweiz AG	merger-born-informatik-and-adesso-schweiz-ag	<p>A short report on what happened (at the BBQ)</p>\r\n		born informatik, adesso, adesso Schweiz AG, digital glarus			8
9	en-us	Swiss Postgres Conference with cdist	swiss-postgres-conference-cdist	<p>The Swiss PostgreSQL experts meeting in Rapperswil</p>\r\n		postgresql, cdist, rapperswil, digitalglarus			9
10	en-us	Digital Glarus: The first meetup meeting	digital-glarus-first-meetup-meeting	<p>Today the &quot;Makers im Zigerschlitz&quot; met the first time</p>\r\n		digital glarus, meetup, hackers, makers, zigerschlitz			10
11	en-us	Digital Glarus: Call for Hacking	digital-glarus-call-hacking	<p>Have you ever hacked a house?</p>\r\n		hacking, digital glarus, property, security, camera, co-working			11
21	en-us	1st Community Meeting of Digital Glarus 	1st-community-meeting-digital-glarus	<p>The very first community meeting by ungleich! Digital Glarus project explained to our&nbsp;very warm and supportive local crowd.&nbsp;</p>\r\n					21
27	en-us	OpenNebula workshop at Digital Glarus	opennebula-workshop-digital-glarus	<p><span style="line-height: 20.8px;">A very&nbsp;international group came to our OpenNebula workshop&nbsp;in&nbsp;Digital Glarus today.</span></p>\r\n					27
23	en-us	OpenNebulaConf 2015 with ungleich	opennebulaconf-2015-ungleich	<p>ungleich loves OpenNebula! Team ungleich joined OpenNebula Conference 2015 in Barcelona.&nbsp;</p>\r\n					23
24	en-us	Warum wir das Projekt Digital Glarus gestartet haben	warum-wir-das-projekt-digital-glarus-gestartet-hab	<p>Ein IT-Valley in Glarus?&nbsp;Warum das nur?</p>\r\n					24
25	en-us	Fondue im Digital Chalet Schwanden	fondue-im-digital-chalet-schwanden	<p>Endlich wird es kalt genug...</p>\r\n					25
26	en-us	Das Glarnerland, ein Schatz zum Teilen	das-glarnerland-ein-schatz-zum-teilen	<p>Oder: Warum ich das Projekt Digital Glarus gestartet habe</p>\r\n					26
30	en-us	Jazz in Digital Glarus	jazz-digital-glarus	<p>Digital Glarus gets only cooler and cooler. This time, it&#39;s jazz!</p>\r\n					30
28	en-us	Wissen tauschen neu mit wissenstausch.ch in Digital Glarus	wissen-tauschen-neu-mit-wissenstauschch-digital-gl	<p>Wissenstausch.ch erweitert das Angebot um Kurse im Glarnerland!</p>\r\n					28
31	en-us	Jazz at Digital Chalet Schwanden	jazz-digital-chalet-schwanden	<p>Jazzband FivePastEight played&nbsp;at Digital Chalet Schwanden! A night with a great music at our coworking space!</p>\r\n					31
32	en-us	Crowdfunding campaign : mission accomplished!	crowdfunding-campaign-mission-accomplished	<p>111.1% funded! Read our 100 days of success!&nbsp;</p>\r\n					32
33	en-us	Crowdfunding-Kampagne: Mission erfolgreich.	crowdfunding-kampagne-mission-erfolgreich	<p>111.11% finanziert! Lies von unseren 100 Tagen des Erfolges</p>\r\n					33
\.


--
-- Name: djangocms_blog_post_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_blog_post_translation_id_seq', 33, true);


--
-- Data for Name: djangocms_flash_flash; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_flash_flash (cmsplugin_ptr_id, file, width, height) FROM stdin;
\.


--
-- Data for Name: djangocms_googlemap_googlemap; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_googlemap_googlemap (cmsplugin_ptr_id, title, address, zipcode, city, content, zoom, lat, lng, route_planer_title, route_planer, width, height, info_window, scrollwheel, double_click_zoom, draggable, keyboard_shortcuts, pan_control, zoom_control, street_view_control) FROM stdin;
\.


--
-- Data for Name: djangocms_inherit_inheritpageplaceholder; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_inherit_inheritpageplaceholder (cmsplugin_ptr_id, from_language, from_page_id) FROM stdin;
\.


--
-- Data for Name: djangocms_link_link; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_link_link (cmsplugin_ptr_id, name, url, anchor, mailto, phone, target, page_link_id) FROM stdin;
\.


--
-- Data for Name: djangocms_page_meta_pagemeta; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_page_meta_pagemeta (id, og_type, og_author_url, og_author_fbid, og_publisher, og_app_id, twitter_author, twitter_site, twitter_type, gplus_author, gplus_type, extended_object_id, image_id, og_author_id, public_extension_id) FROM stdin;
\.


--
-- Name: djangocms_page_meta_pagemeta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_page_meta_pagemeta_id_seq', 1, false);


--
-- Data for Name: djangocms_page_meta_titlemeta; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_page_meta_titlemeta (id, keywords, description, og_description, twitter_description, gplus_description, extended_object_id, image_id, public_extension_id) FROM stdin;
1	blog, ungleich, hosting, switzerland	ungleich blog				3	\N	2
2	blog, ungleich, hosting, switzerland	ungleich blog				4	\N	\N
\.


--
-- Name: djangocms_page_meta_titlemeta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_page_meta_titlemeta_id_seq', 2, true);


--
-- Data for Name: djangocms_snippet_snippet; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_snippet_snippet (id, name, html, template) FROM stdin;
\.


--
-- Name: djangocms_snippet_snippet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('djangocms_snippet_snippet_id_seq', 1, false);


--
-- Data for Name: djangocms_snippet_snippetptr; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_snippet_snippetptr (cmsplugin_ptr_id, snippet_id) FROM stdin;
\.


--
-- Data for Name: djangocms_teaser_teaser; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_teaser_teaser (cmsplugin_ptr_id, title, image, url, description, page_link_id) FROM stdin;
\.


--
-- Data for Name: djangocms_text_ckeditor_text; Type: TABLE DATA; Schema: public; Owner: app
--

COPY djangocms_text_ckeditor_text (cmsplugin_ptr_id, body) FROM stdin;
195	\n<iframe width="100%" height="400" src="//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed" scrolling="no" frameborder="0"></iframe>
111	<h1>Wenn (Büro)-raum und (Arbeits)-zeit keine Rolle mehr spielen</h1>\n\n<h2>Was brauchen Sie, um ihrer Arbeit nachgehen zu können? Nicht mehr, als einen Arbeitsplatz und Ruhe, ist IT-Spezialist Nico Schottelius überzeugt. Seine Firma ist von Zürich nach Luchsingen umgezogen, seinem Beispiel sollen weitere Unternehmen folgen.</h2>\n\n<p> </p>\n\n<h4>Von Tina Wintle</h4>\n\n<p>Bis vor Kurzem sei das Glarnerland für ihn ein schwarzer Fleck auf der Landkarte gewesen. Und nicht nur für ihn: Â«Dass man in Ziegelbrücke auch rechts abbiegen kann, ist vielen Zürchern immer noch nicht bekannt», lacht Nico Schottelius, der gebürtige Deutsche aus Zürich, der seit 2014 im Glarnerland wohnt und seit vergangenen März auch dort arbeitet.</p>\n\n<p> </p>\n\n<p>Für seine wachsende IT-Firma ungleich.ch war Schottelius auf der Suche nach neuen Büroräumlichkeiten. In Zürich und Umgebung wurde er nicht fündig, die Mietpreise sind zu hoch, ausserdem sei Zürich laut, teuer und Ã¼berfüllt. Seine Firma beschäftigt zurzeit sechs Mitarbeiter, davon arbeiten vier in der Schweiz, einer in El Salvador und einer in Tschechien. «Für unsere Arbeit in der IT-Branche spielt es keine Rolle, wo wir uns befinden.» Da er zur Ausübung seines Berufes nichts weiter als einen Arbeitsplatz und Ruhe brauche, sei er auf das Glarnerland gekommen, wegen der leistbaren Immobilienpreise und eben, der Ruhe. Anstatt zu mieten, hat er sich kurzerhand ein Haus in Luchsingen gekauft, wo er nun gleichermassen lebt und arbeitet. «Ich nenne das Glarnerland ‘Märchental’ es ist so schön, hier zu leben. Warum also soll es nicht auch schön sein, hier zu arbeiten?» ist er überzeugt. Das Glarnerland habe einen unglaublichen natürlichen Charme zu bieten, Charme, der in Zürich teuer gekauft werden muss. </p>\n\n<p> </p>\n\n<p>Schottelius hat die Adressänderung seines neuen «Headquarters» den Kunden erst gar nicht mitgeteilt. «Wir arbeiten komplett virtuell, ich dachte, das interessiert ja keinen, wo sich unser Firmensitz befindet». In der IT- Branche gebe es heutzutage keinen Grund mehr, vor Ort zu arbeiten.</p>\n\n<p> </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__1011x792_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_112" title="Image - Glarnerwoche2015_09_02_crop_small.png" alt="Image"></p>\n\n<p style="line-height: 20.7999992370605px;"><span style="color: #808080;">Hat Spass am Leben und an seiner Arbeit: Nico Schottelius ist mit seiner Firma und seinen Ideen auf Erfolgskurs. </span></p>\n\n<p style="line-height: 20.7999992370605px; text-align: right;"><span style="color: #808080;">Bild Tina Wintle</span></p>\n\n<p style="line-height: 20.7999992370605px;"> </p>\n\n<p style="line-height: 20.7999992370605px;"> </p>\n\n<h3>Co-Working Spaces im Glarnerland geplant</h3>\n\n<p> </p>\n\n<p>Schottelius ist überzeugt, dass weitere Firmen von der Ruhe des Glarnerlandes, der günstigen Büroräumlichkeiten sowie der Nähe zu Zürich profitieren würden, wüssten sie, dass «das Glarnerland auch als Wohn- und Arbeitsplatz existiert». Er hatte deshalb die Idee, weitere Firmen nach Glarus, im Speziellen nach Glarus Süd zu holen. Das Konzept der sogenannten Working-Spaces, also Firmen, die in gemeinsam genutzten Räumen tätig sind, sorgt derzeit in den grossen Schweizer Städten für Furore. Bei den Co-Working-Spaces arbeiten verschiedene Firmen unter einem Dach, in dem sie einzelne Arbeitsplätze oder Büros mieten. Dadurch werden Kosten gespart, Synergien genutzt, sowie soziale Kontakte gepflegt. «Solche geteilte Arbeitsplätze sind unglaublich inspirativ», ist Schottelius überzeugt. Waren es erst Einzel- dann Grossraumbüros, welche die Firmen ihren Mitarbeiter anboten, und folglich dann wieder das Homeoffice, so seien es heute die co-working-spaces, die die zukünftige Arbeitsweise darstellten. «Das ist nicht nur Zukunftsmusik, sondern ein Trend, der der Zukunft voraus ist», ist Schottelius überzeugt.</p>\n\n<p> </p>\n\n<h3>Haus in Schwanden gekauft </h3>\n\n<p> </p>\n\n<p>In Schwanden soll nun der erste Co-Working-Space im Glarnerland entstehen. Das Haus sei ein charmanter Altbau und soll erst einmal vier bis sechs Arbeitsplätze bieten. Zusätzlich sind jeweils vermietbare Studentenzimmer in den Häusern geplant. Pro Tag soll ein Co-Working-Space 15 Franken kosten, pro Monat ist ein maximaler Mietbetrag von 300 Franken vorgesehen. </p>\n\n<p> </p>\n\n<p>«Das Haus in Schwanden ist ein Prototyp zum Anfassen, auch, damit die Bevölkerung sieht, wie das System der Co-Working-Spaces funktionieren soll.» Bereits habe er Anfragen von interessierten Firmen erhalten, die Idee komme gut an, mit ersten Mietern sei man im Gespräch. Er sei von seinem eigenen Zug überrollt worden, erklärt Schottelius, in einem Testausschreiben sollen sich auch bereits Zürcher Studenten gemeldet haben, die an den geplanten Zimmern in Schwanden Interesse zeigten. «Die Preise sind einfach unschlagbar und die Distanzen zu den grossen Ballungszenten gering». Schottelius stellt sich vor, dass die zu mietenden Arbeitsplätze ab 2016 zur Verfügung stehen. Die Studentenzimmer dürften ab Oktober zum Einzug bereit sein. </p>\n\n<p> </p>\n\n<p>«Menschen gehen dorthin, wo andere Menschen sind», ist er überzeugt. Kämen die ersten Firmen, würden weitere folgen. Es schweben ihm weitere Ideen vor, wie Restaurantpässe sowie Freizeitangebote, welche die Co-Workers und Studenten vergünstigt nutzen können oder mietbare Velos, um noch schneller von den Bahnhöfen zu den Arbeitsplätzen zu gelangen. Funktioniert das Konzept in Schwanden, will er weitere Co-Working-Spaces aufbauen, in Glarus Süd, aber auch im ganzen Glarnerland.</p>\n\n<p style="text-align: right;">- Glarnerwoche 2015/09/02 </p>\n\n<p style="text-align: right;"> </p>\n
138	<p>It finally happened! Team ungleich invited the local people of Glarus to join us for an open talk, sharing our vision of Glarus as the future IT valley of Switzerland.</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__3456x2056_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_meeting_luchsingen.jpg" alt="Image" id="plugin_obj_139"></p>\n\n<p>It was a rainy Tuesday evening, not a very typical time for locals to go out for sitting at a meeting they are not super familiar with. But still the adventurous, kind and curious people of Glarus showed up to check us out, and everybody ended up having a great time with us. </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__3648x2056_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_meeting_prep.png" alt="Image" id="plugin_obj_140"></p>\n\n<p>Our event started by Nico's introduction of team ungleich, followed by his presentation explaining project Digital Glarus. During presentation Nico shared ungleich's vision of giving life to old and unused buildings of Glarus, by bringing tech people from too expensive and too crowded IT hub Zurich. </p>\n\n<p> </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__3648x2056_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_meeting_luchsingen_nicoshottelius.png" alt="Image" id="plugin_obj_142"></p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__3256x3059_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_meeting.png" alt="Image" id="plugin_obj_143"></p>\n\n<p><span style="line-height: 20.8px;">Very positive and constructive feedback was shared by the audience after Nico's presentation. Everybody remained after the presentation to have a cozy apéro prepared by team ungleich. What a lively talk we had with the audience! Certainly from our audience, the project Digital Glarus is warmly welcomed by our community.</span><span style="line-height: 20.8px;"> D</span><span style="line-height: 20.8px;">uring the evening</span><span style="line-height: 20.8px;"> we were assured multiple times that we chose the right place to start such a project. </span></p>\n\n<p><span style="line-height: 20.8px;">With the internet we can connect with anybody anywhere, still it was great to have real human contact, talk to them in person and be energized and inspired. </span></p>\n\n<p>The event was broadcasted by <img src="/static/cms/images/plugins/link.png" title="Link - Radiocentral" alt="Link" id="plugin_obj_145">, thanks to <img src="/static/cms/images/plugins/link.png" title="Link - Mr.Christian Zweifel" alt="Link" id="plugin_obj_144"> who were with us there. The full interview's transcript you can check out in <img src="/static/cms/images/plugins/link.png" title="Link - our previous post." alt="Link" id="plugin_obj_146"></p>\n\n<p style="text-align: center;"><img src="/media/filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__600x403_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_interview_nicoschottelius_radio.png" alt="Image" id="plugin_obj_148"></p>\n\n<p> </p>\n\n<p>Oh and special thanks to our great team, Dominique and Dave, who came all the way from Fribourg and Zug to charm our guests as handsome bartenders!</p>\n\n<p> </p>\n\n<p>Step by step we're moving forward! Please check out our crowdfunding campaign too! </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__1062x274_q85_crop_subsampling-2_upscale.png" title="Image - banner_100days_resized.png" alt="Image" id="plugin_obj_147"></p>\n\n<p> </p>\n
205	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
170	WIESO SOLLTE SICH JEMAND FÃœR DAS INTERESSIEREN?\n
174	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
561	<h2 class="intro-text text-center">Build a tech valley <strong>in the heart of switzerland</strong></h2>\n
6	<p>Finally!</p>\n\n<p>After some years that most of our work appeared in individual blogs, we are today starting the ungleich blog. For those who have been visiting our blog before and  wonder why we are announcing it today: The previous blog was just a static site, wheras this blog is based on <img title="Link - DjangoCMS blog" id="plugin_obj_8" src="/static/cms/images/plugins/link.png" alt="Link">.</p>\n\n<p>It will be a technical, maybe even social blog. So stay tuned for our updates...</p>\n
4	<h2 class="section-heading" style="font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; line-height: 1.1; color: rgb(64, 64, 64); margin-top: 60px; margin-bottom: 10px; font-size: 36px;">ungleich goes to Barcelona!</h2>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">We're on the road again! After Berlin <a href="http://www.linuxtag.org/2014/en/program/talk-details/?eventid=1238" style="color: rgb(64, 64, 64); background-color: transparent;">(LinuxTag)</a>, Philadelphia <a href="https://www.usenix.org/conference/ucms14/summit-program/presentation/schottelius" style="color: rgb(64, 64, 64); background-color: transparent;">(UCMS)</a>, Hamburg, and Dublin <a href="https://websummit.net/" style="color: rgb(64, 64, 64); background-color: transparent;">(Websummit)</a>, ungleich visits another fabulous city to meet great people out there in the OpenSource community. This time, it's sunny Barcelona!</p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">Team ungleich is proud to announce that we are sponsoring OpenNebulaConf 2015.</p>\n\n<div class="embed-responsive embed-responsive-16by9" style="height: 0px; overflow: hidden; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px; line-height: 22.8571434020996px;"><iframe src="https://2015.opennebulaconf.com/" class="embed-responsive-item" style="width: 778.325012207031px; height: 437.799987792969px; border-width: 0px;"></iframe></div>\n\n<p><span class="caption text-muted" style="color: rgb(119, 119, 119); text-align: center; font-size: 14px; padding: 10px; font-style: italic; margin: 0px; display: block; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; font-family: Lora, 'Times New Roman', serif;">Official website of OpenNebulaConf2015</span></p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">ungleich, a passionate supporter of <a href="http://en.wikipedia.org/wiki/Free_and_open-source_software" style="color: rgb(64, 64, 64); background-color: transparent;">FOSS</a>, has been using <a href="http://opennebula.org/" style="color: rgb(64, 64, 64); background-color: transparent;">OpenNebula</a> for a while, and now became a gold sponsor of the upcoming annual OpenNebula conference.</p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">We will be on site at the conference to meet and exchange ideas of users and supporters of OpenNebula. It is an exciting opportunity for ungleich to contribute to the FOSS community!</p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;"><a href="http://blog.ungleich.ch/opennebulaconf-2015/#" style="color: rgb(64, 64, 64); background-color: transparent;"><img alt="" src="http://blog.ungleich.ch/img/opennebulaplusungleich.png" class="img-reponsive" style="border-width: 0px; vertical-align: middle;"></a></p>\n\n<h2 class="section-heading" style="font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; line-height: 1.1; color: rgb(64, 64, 64); margin-top: 60px; margin-bottom: 10px; font-size: 36px;">Why are we loving OpenNebula?</h2>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">Compared to bigger-named peers like Openstack or cloudstack, OpenNebula is (yet) less known in the field. There are reasons why ungleich is enthusiastic about OpenNebula, and one is its beautiful simplicity! OpenNebula is lean and is made for real world problems, very well fitted to experts at team ungleich, and maybe you.(=Linux user, FOSS supporter, distressed sysadmin!) OpenNebula is easily configurable with our configuration management <a href="http://www.nico.schottelius.org/software/cdist/" style="color: rgb(64, 64, 64); background-color: transparent;">cdist</a>.</p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;"><a href="http://blog.ungleich.ch/opennebulaconf-2015/#" style="color: rgb(64, 64, 64); background-color: transparent;"><img alt="" src="http://blog.ungleich.ch/img/cdist.png" class="img-responsive" style="border-width: 0px; vertical-align: middle; display: block; height: auto;"></a><span class="caption text-muted" style="color: rgb(119, 119, 119); text-align: center; font-size: 14px; padding: 10px; font-style: italic; margin: 0px; display: block; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px;">cdist, an innovative configuration management system</span></p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">Meet us at OpenNebulaConf 2015 and learn how small to large scale hosting infrastructures are configured with the configuration management system cdist.</p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">We are excited to connect with many of OpenSource supporters out there, hopefully to inspire others and to be inspired! And, October in Barcelona, doesn't it just sound very tempting?!</p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;">See you soon in Barcelona!</p>\n\n<p><a href="https://blog.ungleich.ch/opennebulaconf-2015/#" style="color: rgb(64, 64, 64); text-decoration: none; font-family: Lora, 'Times New Roman', serif; font-size: 20px; line-height: 22.8571434020996px;"><img alt="" src="http://blog.ungleich.ch/img/barcelona_1.jpg" class="img-responsive" style="border-width: 0px; vertical-align: middle; display: block; height: auto;"></a></p>\n\n<p style="margin: 30px 0px; line-height: 1.5; color: rgb(64, 64, 64); font-family: Lora, 'Times New Roman', serif; font-size: 20px;"> </p>\n
562	<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\n\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge variety of great food offers forms what we call "Digital Glarus".</p>\n\n<p>The valley also known as "Glarnerland" has many gorgeous, eye-catching buildings from former industrial area.</p>\n\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\n\n<p> </p>\n\n
563	<h2 class="intro-text text-center">a new <strong>area</strong></h2>\n
691	<p>Lieber Blog-Folger und Leser, wir sind sehr erfreut, dass wir ein erfolgreiches Ende unserer 100 tägigen Crowdfunding-Kampagne ankündigen können. Mit sehr grosszügigen Spenden unserer Unterstützer haben wir unser Ziel von 20'000 CHF erreicht, nicht nur das, unsere Kampagne wurde schlussendlich mit 111.11% finanziert. Juhu! Danke viel mals für all die Unterstützung und Aufmerksamkeit, welche wir während der ganzen Kampagne von euch erhalten haben.</p>\n\n<p style="margin-bottom: 0in; line-height: 100%;"><img alt="Image" title="Image - 20000.jpg" src="/media/filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__590x300_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_693"></p>\n\n<p>Dieser Artikel ist schon lange überfällig, da unsere Crowdfunding-Kampagne bereits seit einer Woche beendet ist, aber unser Team war zu sehr damit beschäftigt, Anrufe und E-Mails mit Gratulationen und Glückwunschen aus der Opensource Community, aus der Coworking Space Community, lokalen und nationalen Geschäften, und unseren Freunden, zu beantworten.</p>\n\n<p><br>\n<img alt="Image" title="Image - too-many-emails.png" src="/media/filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__493x335_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_694"></p>\n\n<p>Und wir sollten nicht vergessen zu erwähnen, dass wir es in der Zwischenzeit auf die Titelseite der Zeitung geschafft haben.</p>\n\n<p style="margin-bottom: 0in; font-weight: normal; line-height: 100%;"> </p>\n\n<p><img alt="Image" title="Image - nico_schottelius_frontpage_newspaper_2016_01_06_.jpg" src="/media/filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__632x346_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_695"></p>\n\n<p>Haben wir schön gesagt wie cool es war, unseren Projektleiter auf der Titelseite zu sehen? Falls wir es vergessen haben, es war wirklich, wirklich cool. Wie unser Teammitglied Dominique sagen würde «meeega cool».</p>\n\n<p><br>\n<img alt="Image" title="Image - nico_schottelius_tv_2016-01-06_.png" src="/media/filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__768x406_q85_crop_subsampling-2_upscale.png" id="plugin_obj_696"></p>\n\n<p><img alt="Image" title="Image - nico_schottelius_tv_interview_2016-01-06_.png" src="/media/filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__768x421_q85_crop_subsampling-2_upscale.png" id="plugin_obj_697"></p>\n\n<p>… Und es war auch super cool wie das Renovationsprojekt unseres Coworking-Spaces in den Abendnachrichtem um 18:00 Uhr im Fernsehn kam. Wenn sich Erfolg so anfühlt, könnten uns sehr schnell daran gewöhnen!</p>\n\n<p> </p>\n\n<p>Obwohl die Kampagne nun beendet ist, liegt noch einen Haufen Arbeit vor uns, oder, die eigentliche Arbeit beginnt erst jetzt. Die Crowdfunding-Kampagne war nur der Beginn einers Marathons und wir sind jetzt bereit für einen langen Lauf. Laut der Kampagnen-Platform 100days.net, erhalten wir die Finanzierung in zwei Monaten: Wir probieren so transparent wie möglich zu sein in Anbetracht der Verwendung des Geldes für die Renovation und Umgestaltung des Coworking Spaces. Unsere Goodies für die Unterstützer, wie beispielsweise Postkarten oder T-Shirts sind in der Produktion. Die Renovation des Coworking Spaces wird im Frühling starten. Nicht weil wir unnötig länger mit der Renovation warten möchten, sondern…</p>\n\n<p style="margin-bottom: 0in; font-weight: normal; line-height: 100%;"><img alt="Image" title="Image - snow_luchsingen_small.jpg" src="/media/filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__730x411_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_698"></p>\n\n<p>weil wir hier in der Schweiz leben und das Wetter hier zurzeit so aussieht. Das ganze Gebiet wird die nächsten Monaten unter dieser Schneedecke versteckt bleiben, kein ideales Wetter um das Dach zu öffnen, oder die Fenster zu wechseln. In der Zwischenzeit werden wir mit der Planung beginnen. Im Frühling können wird dann die Arbeiten unter besseren Wetterbedingungen beginnen.</p>\n\n<p> </p>\n\n<p>Wir können nicht genug Dank an unsere Unterstützer für diesen Erfolg aussprechen. Wir wissen das ohne unsere Unterstützer, welche uns bei unseren Ideen zugehört haben und uns in unserer Vision ermutigt haben, nichts geklappt hätte. Wir möchten nochmals erwähnen wie dankbar und begeistert wir für die erhaltene Liebe und Unterstützung sind.</p>\n\n<p><br>\n<img alt="Image" title="Image - twitter_header_thankyou_confetti.png" src="/media/filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__1627x550_q85_crop_subsampling-2_upscale.png" id="plugin_obj_699"></p>\n\n<p>Falls du es noch nicht gesehen hast, wir haben eine schöne Timeline-Slider auf unserer zweisprachige <img alt="Link" title="Link - Webseite" src="/static/cms/images/plugins/link.png" id="plugin_obj_702"> aufgeschalten. Der Slider ist eine schöne simple Darstellung des Wachstums unserer simplen Idee bis hin zum Crowdfunding Erfolg.</p>\n\n<p> </p>\n\n<p>Für die, welche die Chance an der Crowdfunding-Kampagne teilzunehmen, verpasst haben, unser Spendekanal ist immer noch offen. Bei einer Spende kannst du dein Name auf die Liste der virtuellen Unterstützer vom Projekt Digital Glarus auf unserer Webseite verewigen. Für mehr Informationen kannst du uns via <img alt="Link" title="Link - info@digitalglarus.ch " src="/static/cms/images/plugins/link.png" id="plugin_obj_701">kontaktieren. Es könnte sein, dass wir ein wenig voreingenommen sind, aber ehrlich gesagt ist es einfach super spannend und für uns eine riesen Freude einen Teil von diesem coolen Projekt zu sein.</p>\n\n<p> </p>\n\n<p>Zu guter letzt: Ein frohes neues Jahr euch allen! Bleibt auch im 2016 weiterhin an unserer Seite: Wir hörten, dass es das richtige Jahr sei um das Coworken nach Digital Glarus zu bringen!</p>\n
1	<p>Copyright © ungleich GmbH 2016</p>\n
114	<p></p>
115	<h2>Get cdist and installation</h2>\n\n<p>You can easily get the code for cdist from github:</p>\n\n<div style="background: #eee; border: 1px solid #ccc; padding: 5px 10px;">git clone https://github.com/telmich/cdist.git<br>\ncd cdist<br>\nexport PATH=$PATH:$(pwd -P)/bin</div>\n\n<p>If you want the man pages run:</p>\n\n<div style="background: #eee; border: 1px solid #ccc; padding: 5px 10px;">make</div>\n\n<p>The man pages are now generated in the docs/ directory.</p>\n\n<p>Or get the latest man pages <img src="/static/cms/images/plugins/link.png" id="plugin_obj_117" title="Link - here" alt="Link">.</p>\n\n<p>To run cdist on the source host (the one who configures the target host) the following software is required:</p>\n\n<ul>\n\t<li>Python &gt;= 3.2</li>\n\t<li>SSH client</li>\n\t<li>Asciidoc and xsltproc (for building the manpages)</li>\n</ul>\n\n<p>On the target host only ssh is required<br>\nAlso it is recommended to use ssh over ssh-key authentication.<br>\nOther hints you can find in the <img src="/static/cms/images/plugins/link.png" id="plugin_obj_118" title="Link - man7/cdist-best-practice" alt="Link"></p>\n\n<p>For shortly testing cdist, run:</p>\n\n<div style="background: #eee; border: 1px solid #ccc; padding: 5px 10px;">cdist banner</div>\n\n<p>And for seeing the usage, run:</p>\n\n<div style="background: #eee; border: 1px solid #ccc; padding: 5px 10px;">cdist -h</div>\n\n<p> </p>\n\n<p> </p>\n\n<h2>Files and directories</h2>\n\n<p>Important directories are the installation directory and the $HOME/.cdist/ directory.</p>\n\n<p>In the installation directory you can find the cdist binary, standard provided cdist types and other important files for cdist.</p>\n\n<p>The $HOME/.cdist/ directory is for your locally needed configuration and has the following directory tree:</p>\n\n<ul>\n\t<li>$HOME/.cdist/\n\t<ul>\n\t\t<li>manifest/\n\t\t<ul>\n\t\t\t<li>Your manifests (standard: init)</li>\n\t\t</ul>\n\t\t</li>\n\t\t<li>type/\n\t\t<ul>\n\t\t\t<li>Your own made types (always: __your_type)</li>\n\t\t</ul>\n\t\t</li>\n\t</ul>\n\t</li>\n</ul>\n\n<p> </p>\n\n<h2>Creating a sample manifest</h2>\n\n<p>Create a new manifest with the following command:</p>\n\n<div style="background: #eee; border: 1px solid #ccc; padding: 5px 10px;">echo "__file /tmp/hello_world" &gt; $HOME/.cdist/manifest/init</div>\n\n<p>This manifest will use the _file for creating the file /tmp/hello_world.<br>\nFor more information about the __file type see installation_dir/cdist/conf/type/_file/man.text</p>\n\n<p> </p>\n\n<h2>First run of cdist</h2>\n\n<p>For running your first own made cdist manifest on localhost use the following command:</p>\n\n<div style="background: #eee; border: 1px solid #ccc; padding: 5px 10px;">cdist config -v localhost</div>\n\n<p> </p>\n\n<h2>More information</h2>\n\n<p>If you have trouble or want more information visit the <img src="/static/cms/images/plugins/link.png" id="plugin_obj_119" title="Link - github page" alt="Link"> or write us!</p>\n\n<p> </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__800x159_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_124" title="Image - cdist.png" alt="Image"></p>\n
175	<h2 class="intro-text text-center">why <strong>Us?</strong></h2>\n
149	<p><img src="/static/cms/images/plugins/link.png" id="plugin_obj_152" title="Link - testiaeiaei" alt="Link"></p>\n\n<p> </p>\n\n<p> </p>\n
171	<p>Das momentane de-facto Technik-Zentrum der Schweiz, Zürich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, überbevölkert.<br>\nUm es genau zu nehmen überfüllt, teuer und laut… Obwohl die hohe Dichte der Personen für Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\nWieso nicht in schönen Gebäuden in Glarus neu beginnen?<br>\nWir wissen, dass Zeit, Geld und Leidenschaft benötigt wird um reizend für Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegenüber dem Verbleib in einer überfüllten Stadt.</p>\n
206	<p>WIESO GLARUS?</p>\n
564	<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits exactly what the tech society of Switzerland requires: Great and affordable place for computer scientists.</p>\n\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\n\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in Switzerland are more orientated on living healthy, which is exactly what Glarnerland can provide.</p>\n
196	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
565	<h2 class="intro-text text-center">Why would anyone be <strong>interested</strong> in it?</h2>\n
13	<h2 class="section-heading">ungleich goes to Barcelona!</h2>\n\n<p> </p>\n\n<p>We're on the road again! After Berlin<a href="http://www.linuxtag.org/2014/en/program/talk-details/?eventid=1238">(LinuxTag)</a>, Philadelphia<a href="https://www.usenix.org/conference/ucms14/summit-program/presentation/schottelius">(UCMS)</a>, Hamburg, and Dublin<a href="https://websummit.net/">(Websummit)</a>, ungleich visits another fabulous city to meet great people out there in the OpenSource community. This time, it's sunny Barcelona!</p>\n\n<p>Team ungleich is proud to announce that we are sponsoring <img title="Link - OpenNebulaConf 2015." alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_14"></p>\n\n<p>ungleich, a passionate supporter of <a href="http://en.wikipedia.org/wiki/Free_and_open-source_software">FOSS</a>, has been using <a href="http://opennebula.org/">OpenNebula</a> for a while, and now became a gold sponsor of the upcoming annual OpenNebula conference.</p>\n\n<p>We will be on site at the conference to meet and exchange ideas of users and supporters of OpenNebula. It is an exciting opportunity for ungleich to contribute to the FOSS community!</p>\n\n<p><img title="Image - opennebulaplusungleich.png" alt="Image" src="/media/filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__800x159_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_17"></p>\n\n<h2 class="section-heading">Why are we loving OpenNebula?</h2>\n\n<p>Compared to bigger-named peers like Openstack or cloudstack, OpenNebula is (yet) less known in the field. There are reasons why ungleich is enthusiastic about OpenNebula, and one is its beautiful simplicity! OpenNebula is lean and is made for real world problems, very well fitted to experts at team ungleich, and maybe you.(=Linux user, FOSS supporter, distressed sysadmin!) OpenNebula is easily configurable with our configuration management <a href="http://www.nico.schottelius.org/software/cdist/">cdist</a>.</p>\n\n<p><img title="Image - cdist.png" alt="Image" src="/media/filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__800x159_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_18"></p>\n\n<p>Meet us at OpenNebulaConf 2015 and learn how small to large scale hosting infrastructures are configured with the configuration management system cdist.</p>\n\n<p>We are excited to connect with many of OpenSource supporters out there, hopefully to inspire others and to be inspired! And, October in Barcelona, doesn't it just sound very tempting?!</p>\n\n<p>See you soon in Barcelona!</p>\n\n<p><img title="Image - barcelona_1.jpg" alt="Image" src="/media/filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__935x514_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_19"></p>\n
20	<p></p>
176	<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\n
172	WO SIND WIR\n
125	<h1>Tagsüber Arzt und in der Nacht Hacker</h1>\n\n<h2>Mit einem «Weltverbesserli», zu dem jeder beitragen könne, wollen zwei Tüftler das Glarnerland stärken</h2>\n\n<h3>Mike Zweifel und Nico Schottelius errichten einen Â«Makerspace» für Elektronik­ begeisterte im Glarnerland. Das Web in der Werkstatt oder die Werkstatt im Web bietet Hilfsmittel gegen Kurzschlüsse.</h3>\n\n<p>VON BRIGITTE TIEFENAUER (TEXT UND BILD)</p>\n\n<p>Sie wecken den Eindruck zweier Lausbuben: in jeder Hand einen Pet­Rohling, im Gesicht ein breites Grinsen und in der Luft liegt ein Hauch von Spannung: Mike Zweifel, junger Familienvater aus Näfels, in Jeans und Freizeithemd; Nico Schottelius, Geschäftsmann deutscher Abstammung, blauer Anzug und Brille, das blonde Haar zum Rossschwanz ge­ bunden. Gleich gesinnt und trotzdem ein ungleiches Paar, verkabelt mit die­sen Pet­Rohlingen. Wenn der eigene Rohling blinkt, wird gedrückt. Wer schnell reagiert, gewinnt. Wer zögert, erntet ein akusti­sches «Mäh» und fliegt raus. Acht Leute könnten theoretisch mitspielen. «Das Spiel ist lustig und so einfach», sagt Zweifel. Er hat es erfunden. Simple Platine, eingebaut in ein gut streichholz­ grosses Kästchen, einige Widerstände und etwas Kabel aus dem Fachmarkt lassen die Pet­Buzzer leuchten. «Sieht aus wie vom Profi, nicht?»</p>\n\n<p> </p>\n\n<p>MIKE ZWEIFEL, der etwas Jüngere, ist Assistenzarzt in einer Kinderarztpraxis in Rüti (ZH); Nico Schottelius Informa­tiker, Hacker, Geschäftsführer der Ungleich GmbH mit Sitz in Luchsingen und Initiator von digitalglarus.ch. Tagsüber sei er berufstätig und nachts Hacker, so Zweifel. «Nein, nicht gemäss dem negativen Touch, der dem Begriff leider anhaftet», winkt er ab. Â«Der Hacker schaut, wie etwas funk­tioniert, nimmt Dinge auseinander und analysiert sie, um sie zu verstehen und zu verbessern.» Die schwarzen Schafe, die versuchten, illegal Systeme zu mani­pulieren, hätten den Tüftlern den<br>\nschlechten Ruf eingebracht.</p>\n\n<p>«Symbolisch für den Spass, der ja auch nie vergessen werden soll, demonstriert Zweifel die «Heimkehrerlampe». Er hat sie aus einem Funkempfänger, einer Lichterkette und einem Stromregler für seine Frau gebastelt. «Wenn mein Dienst sich hinzieht, schalte ich die Lampe per Handy auf rot, wenn der Feierabend sich nähert auf gelb und wenn ich mich auf den Heimweg mache, auf grün.» Zweifel lacht. Was piept, blinkt und sich bewegt fasziniert mich und macht mir Spass.»<br>\nMIKE ZWEIFEL</p>\n\n<p>Im Gegensatz zu Zweifel ist Schottelius hauptberuflich «Hacker». Was aber nicht heisse, dass er rund um die Uhr arbeite. «Das wäre ungesund», räumt er ein. Vor zehn Jahren ist er über eine Open­Source Firma in die Schweiz gekommen und schliesslich, auf der Suche nach einem erschwinglichen Büro für seine eigene Firma, die Un­gleich.ch, in Luchsingen fündig gewor­den. Seine virtuelle Arbeitswelt sei glücklicherweise nicht ortsgebunden, meint er, das Glarnerland zum Wohnen preiswert und bilderbuchschön.</p>\n\n<p>SCHOTTELIUS’ HAUPTBUSINESS ist der Aufbau von Linux­Infrastrukturen für andere IT­Firmen. Linux ist ein Betriebs­system wie Windows oder Mac und wird hauptsächlich von Internetfirmen verwendet. Seine Kunden sind Web­design­ und ­entwickler­Firmen, für welche die Firma die Ungleich.ch Server auf Linux­Basis betreibt. In der Open­Source Entwicklung<br>\nkann laut Schottelius jeder mitmachen: Programmcode herunterladen, studie­ren und anpassen. «Wir Hacker haben<br>\nhäufig den kleinen Weltverbesserer im Hinterkopf, wenn wir Bestehendes opti­mieren oder Neues entwickeln.» Zweifel, der Hobby­Hacker, hat sich das Metier von der Pike auf mit Â«learning by doing» beigebracht. «Was piept, blinkt und sich bewegt fasziniert mich und macht mir Spass», sagt er.</p>\n\n<p>Den Spass wolle er nun in einem Makerspace nach dem Vorbild bestehen­ der Makerspaces, Hackerspaces oder Fab<br>\nLabs teilen: «Das sind diese Orte, an denen du Ausrüstung findest und Gleichgesinnte triffst. Das funktioniert doch auch im Glarnerland.»</p>\n\n<p> </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__859x1320_q85_crop_subsampling-2_upscale.png" alt="Image" title="Image - newspaper.png" id="plugin_obj_126"></p>\n\n<p>AUFRUF UND NACHFRAGE sozusagen ha­ben Schottelius und Zweifel zusammen­ geführt. «Makers im Zigerschlitz» heisst ihr Produkt. Das Hosting, das virtuelle Zuhause, bietet Schottelius über Un­gleich.ch. Unter den klugen Köpfen, die sich auf dieser Plattform voraussicht­lich bald tummeln, erhofft er sich auch Ressourcen für seine Firma. Neben dem virtuellen bietet er den Makers im Zigerschlitz künftig auch ein reales Zuhause. Der Co­Working­Space, den Schottelius in einem Haus in Schwanden plant, umfasst ein Café, Büros, einen Raum für Meetings, aber auch einige günstige Mietzimmer etwa für Studenten, welche die Synergien des Co­Working­Spaces nutzen wollen. Â«Statt Wände zwischen Konkurren­ten hochzuziehen, profitieren wir vom kollegialen Zusammenspiel.» Hier kön­nen Informatiker, Programmierer, De­signer oder Elektronikfreaks ihre Lust am Werkeln und Experimentieren aus­leben und an ihren eigenen Projekten<br>\nund Unternehmungen arbeiten.</p>\n\n<p>NEBEN DER ELEKTRONIKECKE bieten die beiden auch ein Fotolabor. Später sollen 3­D­Drucker, Lasercutter oder CNC­Frä­sen hinzukommen. «Es sind nicht nur jede Art Elektroniker willkommen», sagt Schottelius, «wir freuen uns auch<br>\nüber Maker anderer Berufsgattungen, die als Spezialisten ihrer Fachgebiete an gemeinsamen Projekten arbeiten möch­ten oder anderen ihre Metiers nahebrin­gen wollen.»</p>\n\n<p>«Was in den Makerspaces abläuft, wird von der Industrie aufgegriffen.» NICO SCHOTTELIUS</p>\n\n<p>Symbolisch für den Spass, der ja auch nie vergessen werden soll, demonstriert Zweifel die «Heimkehrerlampe». Er hat sie aus einem Funkempfänger, einer Lichterkette und einem Stromregler für seine Frau gebastelt. «Wenn mein Dienst sich hinzieht, schalte ich die Lampe per Handy auf rot, wenn der Feierabend sich nähert auf gelb und wenn ich mich auf den Heimweg mache, auf grün.» Zweifel lacht.</p>\n\n<p>EIN ETWAS ERNSTERES WERK ist der Strommesser, den er für seinen Vater, Inhaber einer Solarfirma, entwickeln möchte. Das Gerät zeichnet, etwa im Haus eines Kunden, den Stromver­brauch im Verlauf des Tages detailliert auf. «Kein kommerzielles Produkt, aber es könnte eines daraus werden», so Zweifel. Und Schottelius: «Was in den Makerspaces im kleinen Stil abläuft, wird in 10 bis 15Jahren von der Indus­trie aufgegriffen und entwickelt.» Wer sich heute in Versuch und Irrtum übe, rüste sich für die Zukunft. Denn mittelfristig zählten kaum mehr Assessments und Erfahrung, ist Schotte­lius überzeugt. Vielmehr gilt: «Du bist, was du kannst.» «Klugen Köpfen» gibt er deshalb die Chance, sich mit einem Test­projekt zu beweisen. «Das ist die bessere Referenz als jedes Ausweispapier.» Auch für das Glarnerland sieht der Jungunternehmer grosses Potenzial. Â«Wo altehrwürdige Industriegebäude verstummen, gibt es Raum für digitale Projekte und damit Arbeitsplätze. Und dies in schönster, gesunder Umgebung», schwärmt er. «Beautiful, affordable and direct» oder «schön, erschwinglich und direkt», heisst es dazu zusammenfas­send auf der Webseite digitalglarus.ch, auf der Glarus als «Techvalley in the Heart of Switzerland» beschrieben wird.</p>\n\n<p>ï‚¢ MOOD LAMP<br>\nDer erste Glarner «Maker-space» öffnet seine Türen am Samstag, 17. Oktober. Am Vormittag ab 9 Uhr und am Nachmittag von 14 bis 17 Uhr lernen Neugierige ab zwölf Jahren bei den Makers im Zigerschlitz, wie man mit der Entwickler-Plattform Arduino winzige Chips dazu bringt, LEDs zum Leuchten zu bringen. Oder wie man Mikrokontroller mit Reglern oder Sensoren verbindet und damit einen Motor ansteuert. «Mit dem Wissen bauen und programmieren wir eine Dekolampe – unsere Mood Lamp», steht in der Einladung. Treffpunkt: Digital Chalet Schwanden, in der Au 7. Anmeldung: www.zigerschlitzmakers.ch.</p>\n\n<p> </p>\n\n<p>«Der Hacker schaut, wie etwas funktioniert, und nimmt Dinge auseinander.» MIKE ZWEIFEL</p>\n\n<p>ï‚¢ FINANZIERUNG</p>\n\n<p>Crowdfunding ist eine moderne Art, zusammen ein Projekt zu finanzieren. Um möglichst viele Interessenten zu erreichen,<br>\nwerden solche Projekte auf Crowdfunding-Plattformen im Internet veröffentlicht. Das Projekt Digital Glarus beispielsweise startet ab Oktober ein Crowdfunding, um die Renovation des Co-Working-Spaces in Schwanden zu finanzieren. Wie Crowdfunding funktioniert, erklärt Nico Schottelius am Mittwoch, 23. September, ab 18.30 Uhr im Digital Chalet, in der Au 7, in Schwanden. Mehr Infos dazu im Internet unter www.meetup.com oder www.digitalglarus.ch.</p>\n\n<p>«Wir Hacker haben häufig den kleinen Weltverbesserer im Hinterkopf.» NICO SCHOTTELIUS</p>\n\n<p><font><font>-</font></font><span style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;">DIE SÃœDOSTSCHWEIZ-2015/09/13</span></p>\n
197	<h2 class="intro-text text-center"><span class="short_text" id="result_box" lang="de">Kontakt </span> <strong>DIGITAL GLARUS</strong></h2>\n
21	<p>Recently we announced our first application hosting: <img title="Link - rails-hosting.ch" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_24">. As you can see on the site, we are still in an early Beta for subscriptions, however the technology stack that we use behind it, has been in use for some years already.</p>\n\n<p>As we are an Open Source company, we are also  very open about our work. Actually, a lot of the work we do for our customers can be open sourced, because many of our customers are living the Open Source Spirit, but that is a different blog post...</p>\n\n<p>While our first incarnation of hosting was completely managed by <img title="Link - cdist" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_28">, we moved on to use <img title="Link - OpenNebula" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_25">, so we can let people manage their virtual machines on their own and via a WebUI.</p>\n\n<p>In our second incarnation we gave <img title="Link - Ceph" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_26"> a try, however the performance was not as good as we hoped. In our current hosting we are using <img title="Link - GlusterFS" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_27"> for storing the High Availability VMs.</p>\n\n<p>For the frontend to our hosting we have chosen a combination of <img title="Link - Nginx" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_29">, <img title="Link - uwsgi" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_33">, <img title="Link - Django" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_34">, <img title="Link - DjangoCMS" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_32">, <img title="Link - DjangoCMS Blog" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_31"> and <img title="Link - PostgreSQL" alt="Link" src="/static/cms/images/plugins/link.png" id="plugin_obj_30">. The complete stack is configured by cdist.</p>\n\n<p> </p>\n\n<p>That's a sneak preview on what we used for our new hosting - we will write more about how we glued together all components in a future entry.</p>\n\n<p> </p>\n
504	<p></p>
153	<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\n\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge variety of great food offers forms what we call "Digital Glarus".</p>\n\n<p>The valley also known as "Glarnerland" has many gorgeous, eye-catching buildings from former industrial area.</p>\n\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\n\n<p> </p>\n\n
207	<span>WUNDERSCHÖNE <small> LANDSCHAFT </small></span>\n
566	<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\n
177	<h2 class="intro-text text-center">why <strong>glarus?</strong></h2>\n
198	<iframe width="100%" height="400" src="//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed" scrolling="no" frameborder="0"></iframe>
208	<h3>PREISWERT</h3>\n
127	<p>We're excited to share that our project Digital Glarus was broadcasted on Swiss radio by <img src="/static/cms/images/plugins/link.png" title="Link -  Radiocentral" alt="Link" id="plugin_obj_128">! For the ones who missed it yesterday, we prepared a transcript. </p>\n\n<p style=""><img src="/media/filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__2204x1482_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_interview_nicoschottelius_radio.png" alt="Image" id="plugin_obj_129"></p>\n\n<p style=""><span style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;">Ruhe, viel Platz, eine wunderbare Umgebung und günstiger Raum - diese Argumente sollen in Zukunft Informatikfirmen ins Glarnerland locken. Davon überzeugt ist ein IT-Jungunternehmer, der vor gut 2 Jahren seine Firma von Zürich auf Glarus Süd gezügelt hat. Gestern Abend hat er zum ersten Mal die Bevölkerung von Glarus Süd informiert. Christian Zweifel war dabei:</span></p>\n\n<p><small>Moderator : Christian Zweifel, Wirtschaftsförderer : Urs Keiser, Projektleiter : Nico Schottelius</small></p>\n\n<p style=""> </p>\n\n<hr>\n<p style=""> </p>\n\n<p><strong>Christian Zweifel (CZ)  </strong>Gestern Abend um 6 Uhr hat Herr Nico Schottelius im dunkelblauen Anzug den interessierten Anwohnern sein neues Projekt: "Digital Glarus" vorgestellt. Er ist Informatik-Jungunternehmer und Initiant vom Projekt "Digital Glarus". Ursprünglich aus Deutschland, lebt er nun seit einigen Jahren in der Schweiz und seit bald zwei Jahren in Glarus Süd. </p>\n\n<p style="">Er hat folgendes Ziel:</p>\n\n<p style=""> </p>\n\n<p><strong>Nico Schottelius (NS)</strong>  Ich würde gerne das Glarnerland modernisieren. Das Glarnerland hat sehr viele schöne alte Fabrikhallen. In Zürich jedoch sind alle Informatiker auf engem Raum und suchen eigentlich einen guten neuen, günstigen und schönen Arbeitsplatz. Ich denke, das wäre das Glarnerland.</p>\n\n<p style=""> </p>\n\n<p style=""><img src="/media/filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__1327x603_q85_crop_subsampling-2_upscale.png" title="Image - digitalglarus_whynotzurich.png" alt="Image" id="plugin_obj_135"></p>\n\n<p style=""> </p>\n\n<p style=""><strong>CZ</strong> Arbeitsraum in und um die Agglomeration Zürich ist teuer, trotzdem ist das Glarnerland recht nahe und bietet alles, was ein Informatiker zum Arbeiten benötigt. </p>\n\n<p style=""> </p>\n\n<p style=""><strong>NS</strong> Ganz genau, ich denke der Informatiker benötigt nur sein Notebook und Internet. Wenn wir das hier aufgebaut haben, kann er im Prinzip auf einer Bank, auf der Alp oder in einem Restaurant sitzen und arbeiten. Das ganze funktioniert natürlich auch in einem Co-Working-Space, wie wir ihn gerade in Schwanden aufbauen.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>CZ  </strong>Co-Working-Space ist das Schlagwort. Nicht mehr jeder Unternehmer alleine, sondern zusammen arbeiten, sich gegenseitig inspirieren und Lösungen entwickeln. Die Zeiten, als Informatiker nur für sich alleine arbeiteten und der Konkurrenz möglichst nichts verrieten, sind laut Nico Schottelius nun definitiv vorbei.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>NS</strong>  Früher haben ja IT-Firmen immer sehr voneinander abgekapselt gearbeitet. Man hat versucht, das Wissen zu behalten und ja nicht dem nebenan zu verraten, was man macht. </p>\n\n<p style="">Heutzutage mieten sich IT-Firmen zusammen eine grosse Halle, wie z.B. eine Fabrikhalle, platzieren darin alle ihre Büros und sitzen dann gemeinsam an einem Tisch, um zu diskutieren wie man voran kommt.  Das alte "Jeder macht eins" macht man heute nicht mehr, sondern jetzt sitzen alle zusammen in einer Halle. Das ist eigentlich ein Co-Working-Space.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>CZ</strong>  Solche Co-Working-Spaces bestünden bereits in der ganzen Schweiz. Vor allem in Zürich aber auch in anderen Städten, sogar die SBB biete mindestens zwei solche Arbeitsplätze an. Warum sollten sich diese nicht in Glarus-Süd befinden? </p>\n\n<p style="">Solche Initiativen von jungen Leuten spielen natürlich dem Standortförderer von Glarus Süd, Urs Keiser in die Hände.</p>\n\n<p style=""> </p>\n\n<p style=""><img src="/media/filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__1600x844_q85_crop_subsampling-2_upscale.jpg" title="Image - digitalglarus_glarus.jpg" alt="Image" id="plugin_obj_136"></p>\n\n<p style=""> </p>\n\n<p style=""><strong>Urs Keiser(UK)</strong>  Absolut spielt das uns in die Hände und wir haben mit Herr Schottelius auch bereits Gespräche geführt. </p>\n\n<p style="">Dies ist eine Initiative, die sehr gute ist. Und es ist toll, dass sie von unten kommt. Wir haben im Moment diverse solche Anfragen, auch von grösseren Firmen, mit ähnlichem Vorhaben.</p>\n\n<p style="">Unsere Rolle ist zu vernetzten und zu schauen, dass keine Doppelspurigkeiten entstehen, auch dass sich die Initiativen von Unten entwickeln können. Wir begrüssen jede Initiative, die hier im Glarnerland stattfindet.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>CZ</strong>  Der Weg sei also von unten, von initiativen Leuten. Das funktioniere besser, als wenn von oben her versucht wird, solche Projekte wie "Digital Glarus" umzusetzen. Das Glarnerland habe Potential und es laufe auch viel in diese Richtung.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>UK</strong>  Ich denke, das weiss die Bevölkerung von Glarus-Süd auch. Glarus-Süd ist auch besser, als die Leuten denken, das es ist..</p>\n\n<p style="">Es läuft momentan sehr viel und das vernetzen wir. Ich denke, man sollte nicht warten, man sollte einfach machen. Wir müssen lediglich schauen, dass alles in einer korrekten Richtung zusammengeführt wird. </p>\n\n<p style="">Visionen sind viele da, aber Visionen helfen uns nicht weiter. Also machen: "Ärmel zrügg chremple" und "schaffe". Wenn sich die Leute engagieren wird es meistens gut.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>CZ  </strong>Hier könne der Initiant von Digital Glarus, Nico Schottelius, auf die Tipps und Mithilfe der Behörden zählen. Herr Schottelius verstehe auch, dass der Kanton Glarus solche Projekte nicht so grosszügig unterstützen könne wie z.B. Zürich.</p>\n\n<p style="">Darum hofft auf Unterstützung von allen: Von der Bevölkerung aber auch von anderen Jungunternehmer, Studenten oder Interessierten, welche einen "Zustupf" Ã¼ber ein so genanntes Crowd-Funding, also z.B. sammeln via Internet, geben können. </p>\n\n<p style="">Da kann man sich bereits jetzt aktiv beteiligen...</p>\n\n<p style=""> </p>\n\n<p style=""><strong>NS  </strong>Wir haben gerade eine Crowd-Funding-Kampagne gestartet. Diese findet man auf <a href="http://www.digitalglarus.ch/">www.digitalglarus.ch</a>. Dort kann jeder, der interessiert ist, einen Beitrag für unser Projekt leisten. So können wir den ersten Co-Working-Space in Schwanden auch wirklich bald eröffnen.</p>\n\n<p style=""> </p>\n\n<p style=""><strong>CZ  </strong>Weitere Infos zu diesem Projekt findet man auf der Seite www.digitalglarus.ch.</p>\n\n<p style=""> </p>\n\n<p style=""> </p>\n\n<p style=""><img src="/media/filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__1062x274_q85_crop_subsampling-2_upscale.png" title="Image - banner_100days_resized.png" alt="Image" id="plugin_obj_130"></p>\n\n<hr>\n<p style=""> </p>\n\n<p style="">....That was the interview!</p>\n\n<p style="">We send many thanks to Mr. Christian Zweifel who covered our open talk event on Tuesday night.</p>\n\n<p style="">As said in the interview, our crowdfunding campaign is up and running. Join us and let's cowork! </p>\n\n<p style=""> </p>\n\n<p style="text-align: center;"><img src="/static/cms/images/plugins/link.png" title="Link - Visit Digital Glarus crowdfunding" alt="Link" id="plugin_obj_133"></p>\n\n<p style="text-align: center;"> </p>\n\n<p style="text-align: center;"> </p>\n
154	<h2 class="intro-text text-center">Build a tech valley <strong>in the heart of switzerland</strong></h2>\n
173	<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten älteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\nWir sind an der Eröffnung der Örtlichkeit für Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen Ämter und Unterstützer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und frühe Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, für das grossartige Abenteuer im schönen Tal von Glarus.</p>\n\n<p>Bist du interessiert?</p>\n\n<p>Kontaktiere uns:</p>\n\n<p><a class="email" href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\n
567	<h2 class="intro-text text-center"><strong>Where</strong>we are</h2>\n
640	<p>As we announced in our <img alt="Link" title="Link - previous post" src="/static/cms/images/plugins/link.png" id="plugin_obj_641">, Digital Glarus hosted its first jazz concert at our first coworking space, Digital Chalet Schwanden. For those who couldn't be at our great music night, or for us who wants to revisit the great moments we had, here are some of the highlights of Saturday! Of course, pictures don't do the justice for our handsome jazzmen and their great performance. </p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_flyers.jpg" src="/media/filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__528x434_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_642"></p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_coupons.jpg" src="/media/filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__679x411_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_644"></p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_program.jpg" src="/media/filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__600x411_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_645"></p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_band_rehearsal.jpg" src="/media/filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__736x491_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_647"></p>\n\n<p>Here is the super talented FivePastEight getting ready before the concert. We have to confess that overhearing them (and also stalk them a bit through the whole afternoon for the excuse of photos) over their rehearsing was as cool as their real concert later. In this picture we can see our drummer Dominique, Nicolas on piano, Joel with the guitar, Philipp with Saxophone, Pascal trumpet. Yves (who has his back on this photo) will be later seen in photos with his Trombone, and Sven (hidden next to Dominique in this photo) with the bass.</p>\n\n<p>And here are the concert moments!</p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_audiene_schwanden.jpg" src="/media/filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__730x411_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_648"> <img alt="Image" title="Image - digitalglarus_jazz_concert_band_brass.jpg" src="/media/filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__730x366_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_650"></p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_audience_room.jpg" src="/media/filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__730x411_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_652"></p>\n\n<p>It was too full for everybody to be seated, but it didn't stop some of us dancing with the music at the stairs and the corridor!</p>\n\n<p><iframe height="315" frameborder="0" src="https://www.youtube.com/embed/Zez460XcpRA" width="720" allowfullscreen=""></iframe></p>\n\n<p><iframe height="315" frameborder="0" src="https://www.youtube.com/embed/n_iFeWVUBEI" width="720" allowfullscreen=""></iframe></p>\n\n<p><iframe height="315" frameborder="0" src="https://www.youtube.com/embed/Lh6mJ7Ph6Qk" width="720" allowfullscreen=""></iframe></p>\n\n<p>Aren't they great? :D You can follow them on their <img alt="Link" title="Link - facebook" src="/static/cms/images/plugins/link.png" id="plugin_obj_664">, or visit their <img alt="Link" title="Link - website" src="/static/cms/images/plugins/link.png" id="plugin_obj_665">.</p>\n\n<p>We thank everybody who came to our concert and kindly donated their money for our <img alt="Link" title="Link - crowdfunding project" src="/static/cms/images/plugins/link.png" id="plugin_obj_663">! And, a huge thanks to the band FivePastEight! </p>\n\n<p><img alt="Image" title="Image - digitalglarus_jazz_concert_donation.jpg" src="/media/filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__736x491_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_662"></p>\n\n<p><img alt="Link" title="Link - Our crowdfunding campaign" src="/static/cms/images/plugins/link.png" id="plugin_obj_667"> has 28 days left until its end! The campaign works on All or Nothing basis, means if we don't reach the designated amount of 20,000CHF all the donations will be annuled.</p>\n\n<p>Be our Santa and help us today!  </p>\n\n<p><img alt="Image" title="Image - banner_100days_resized.png" src="/media/filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__1062x274_q85_crop_subsampling-2_upscale.png" id="plugin_obj_666"></p>\n
677	<p>Dear our blog followers and readers, we are very pleased to announce that our 100 days of crowdfunding campaign ended with a big success. From generous donations of our supporters we reached our goal amount of 20,000 Swiss Francs, and not only we reached the goal, our campaign ended up by <span style="line-height: 20.8px;">111.1% funded! Yay! Thank you for all the support and attention you have given us during the campaign. </span></p>\n\n<p><span style="line-height: 20.8px;"><img alt="Image" title="Image - 20000.jpg" src="/media/filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__590x300_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_687"></span></p>\n\n<p>This post is long overdue as it has been already a week since our crowdfunding campaign finished, but our team has been too much occupied responding to phone calls and emails with congratulations and good wishes, from opensource software community, coworking space community, local and national businesses, and our friends.</p>\n\n<p><img alt="Image" title="Image - too-many-emails.png" src="/media/filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__493x335_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_690"></p>\n\n<p>And we shouldn't forget to mention that in the meantime we made it to the cover of the newspaper. </p>\n\n<p><img alt="Image" title="Image - nico_schottelius_frontpage_newspaper_2016_01_06_.jpg" src="/media/filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__632x346_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_683"></p>\n\n<p>Have we already said how cool it was to see our project leader on the front page of the newspaper, talking about our success? In case we haven't, it was really, really cool. As our team member Dominique would put it, it was "mega cool." </p>\n\n<p><img alt="Image" title="Image - nico_schottelius_tv_2016-01-06_.png" src="/media/filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__768x406_q85_crop_subsampling-2_upscale.png" id="plugin_obj_684"></p>\n\n<p><img alt="Image" title="Image - nico_schottelius_tv_interview_2016-01-06_.png" src="/media/filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__768x421_q85_crop_subsampling-2_upscale.png" id="plugin_obj_685"></p>\n\n<p>..And it was also super cool to see our coworking space renovation project being covered by the evening news at 6pm. If this is how success feels like, we can get used to it very fast!  </p>\n\n<p>Even though the campaign has ended we have a lot of work in front of us, or, the real work only begins now. The crowdfunding campaign was only the beginning of a marathon, and we're in for a long run now. According to the campaign platform 100-days.net, we'll receive the fund in 2 months : we will try to be as transparent as possible regarding the use of the fund in the course of coworking space transformation. Our goodies for supporters such as postcards and T-shirts are under production, and renovation of the space will start in the spring. Not because we want to wait any longer for renovating the coworking space, but only because...</p>\n\n<p><img alt="Image" title="Image - snow_luchsingen_small.jpg" src="/media/filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__730x411_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_686"></p>\n\n<p>...because we are in Switzerland and the weather is like this here now. The whole town will stay under the snow for some more months, not ideal weather for opening the roof let alone the windows. We will plan in the meantime, and will start the work under the better weather when the spring comes.</p>\n\n<p>We can not thank enough our supporters for this success, we know that nothing could have been possible without our supporters who listened to our ideas and encouraged our vision. We would like to express once more how grateful and excited we are for the love and support we have received. </p>\n\n<p><img alt="Image" title="Image - twitter_header_thankyou_confetti.png" src="/media/filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__1627x550_q85_crop_subsampling-2_upscale.png" id="plugin_obj_689"></p>\n\n<p>If you haven't seen it yet, we have put a nice timeline slider on our project Digital Glarus on our bilingual <img alt="Link" title="Link - website" src="/static/cms/images/plugins/link.png" id="plugin_obj_688">. The slider is a nice simple visual aid for watching our growth so far from a simple inspiration to a crowdfunding success.</p>\n\n<p>For those who didn't get to donate on our crowdfunding campaign in time, our donation channel is still open and by contribution you can have your name as a virtual supporter of project Digital Glarus on our website. You can contact us at info@digitalglarus.ch for more information. We might be a little bit biased, but we must confess that this is a really fun and cool project to be a part of.</p>\n\n<p>Last but not least, happy new year everyone. Keep watching us grow in 2016 : We heard it is the right year to start coworking in Digital Glarus! </p>\n
155	<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits exactly what the tech society of Switzerland requires: Great and affordable place for computer scientists.</p>\n\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\n\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in Switzerland are more orientated on living healthy, which is exactly what Glarnerland can provide.</p>\n
178	<h3>BEAUTIFUL <small> landscape</small></h3>\n
199	<p><span tabindex="-1" class="short_text" lang="de" id="result_box"><span class="hps">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\n\n<p>Email: <strong><a href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch</a></strong></p>\n\n<p><span tabindex="-1" class="short_text" lang="de" id="result_box"><span class="hps">Anschrift</span></span>: <strong><span style="">In Der Au 7,  8762 Schwanden Switzerland</span></strong></p>\n
568	<p>At the moment we at <a href="http://www.ungleich.ch"> ungleich</a> are talking to authorities and  sponsors. It is crucial to build up some basic infrastructure and  attract early adopters. Building a community (<a href="http://www.meetup.ch">meetup</a> alike)  can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\n\n<p>The great first step we (<a href="http://www.ungleich.ch">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\n\n<p>Have you become interested in the project?</p>\n\n<p>Contact us at<br>\n<br>\n<a href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch </a> // <a value="+41445346622">+41 (0) 44 534 66 22</a></p>\n\n<p> </p>\n
209	<h3>DIREKTE <small>VERBINDUNGEN NACH ZÃœRICH</small></h3>\n
569	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
22	<p><img title="Image - opencloudday.png" alt="Image" src="/media/filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__800x252_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_38" style="line-height: 20.7999992370605px;"></p>\n\n<p>This gigant workshop, featuring OpenNebula, Openstack and Cloudstack technologies is happening this Tuesday, 16th of June 2015 in Bern at the Open Cloud Day.</p>\n\n<p>The first time in Switzerland (and maybe world wide) for a friendly meeting of cloud provider experts.</p>\n\n<p><img title="Image - bernbanner.jpg" alt="Image" src="/media/filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__690x389_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_40"></p>\n\n<p>Participants will learn what are the possibilities and advantages of every system and have the opportunity to discuss with the experts in the evening.</p>\n\n<p> </p>\n\n<p><img title="Image - opennebulareferene.png" alt="Image" src="/media/filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__800x288_q85_crop_subsampling-2_upscale.png" id="plugin_obj_39"></p>\n\n<p>Nico Schottelius, CEO of <a href="http://www.ungleich.ch/">ungleich GmbH</a> (Linux infrastructure &amp; application hosting company based in Switzerland) will give an advanced workshop on cloud management with OpenNebula for DevOps.</p>\n\n<p>Schottelius, the author of the innovative configuration management system "cdist", is a judge of the Open Source Awards in Switzerland.</p>\n\n<p>Schottelius also teaches computer science at the university of applied sciences ZHAW.</p>\n
156	<h2 class="intro-text text-center">a new <strong>area</strong></h2>\n
179	<h3>AFFORDABLE <small>price</small></h3>\n
200	why <strong>glarus?</strong>\n
508	<p>The thing about team ungleich is that we all have serious passion not only in our work. Some of us juggle, some of us Jiu-Jitsu, some of us paint, some of us...</p>\n\n<p>Jazz!</p>\n\n<p>Ever since we found out about the secret double life of our ungleich team member Dominique, one as we know as a super smart system engineer, and the other, as a cool jazzman, we did NOT stop bothering him until he said yes for coming to Digital Glarus to play jazz. And after some mojitos in Barcelona, he said yes. Yes! he is coming! And he is bringing all his <img alt="Link" title="Link - band" id="plugin_obj_512" src="/static/cms/images/plugins/link.png">! All the way from Fribourg!  </p>\n\n<p><img alt="Image" title="Image - a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png" id="plugin_obj_509" src="/media/filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__1701x2404_q85_crop_subsampling-2_upscale.png"></p>\n\n<p><span style="line-height: 20.8px;">Dominique's Jazz band FivePastEight is having a concert at our coworking space, Digital Chalet! Just between us, rumors are that this band is really good. Really, really good. If you are a jazz fan especially the old classic numbers from Armstrong, Fitzerland, etc, you don't want to miss it! </span></p>\n\n<p><span style="line-height: 20.8px;">The concert is happening on the first Saturday of December ; December 5. Door opens at 7pm. It is an open-house, free-entry event, so feel free to bring your music-loving(or, coworking-loving) friends along! </span></p>\n\n<p>We are inviting all our crowdfunding supporters to join our party to enjoy great jazz, to meet each other, to find out how great all of us are, and, to have a great time! </p>\n\n<p>The concert venue, Digital Chalet needs your help for its successful renovation into a modern coworking space. We have 41 days left, until the campaign ends. Help us reach the goal!</p>\n\n<p>Visit our crowdfunding campaign on </p>\n\n<p><img alt="Image" title="Image - banner_100days_resized.png" id="plugin_obj_513" src="/media/filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__1062x274_q85_crop_subsampling-2_upscale.png"></p>\n\n<p>http://www.100-days.net/en/projekt/start-digital-glarus</p>\n\n<p> </p>\n\n<p><span style="line-height: 20.8px;">Oh, and here's a small tip : </span><span style="line-height: 20.8px;">you get a free drink at the concert venue if you RSVP on our </span><img alt="Link" title="Link - meetup" id="plugin_obj_510" src="/static/cms/images/plugins/link.png"><span style="line-height: 20.8px;"> page.</span></p>\n\n<p style="line-height: 20.8px;"> </p>\n\n<p style="line-height: 20.8px;">We can't wait St.Nicholas bringing great jazz and Gluehwein to Digital Chalet!  </p>\n\n<p style="line-height: 20.8px;">See you soon in Schwanden, Glarus!</p>\n\n<p> </p>\n
392	<p>Some of you might remember one of our first blog posts, "<img alt="Link" title="Link - ungleich goes to Barcelona!" src="/static/cms/images/plugins/link.png" id="plugin_obj_426">" from last May. Wow, time goes fast when you're busy making things happen. </p>\n\n<p>The 3rd OpenNebulaConference 2015 was held in sunny Barcelona, on 20-22 October. This time team ungleich was there to support OpenNebula as a gold sponsor : <span style="line-height: 20.8px;">It was fantastic, we didn't even have time to blog about it while we were there. </span><span style="line-height: 20.8px;"> </span>For those who couldn't make it to beautiful Barcelona, here are some highlights of the OpenNebulaConf 2015. </p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - OpenNebulaConf2015_barcelonsants.jpg" src="/media/filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_394"><img alt="Image" title="Image - opennebulaconf_ungleich_barcelosants.jpg" src="/media/filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_393"></p>\n\n<p>Barcelo Sants hotel, where the OpenNebulaConf 2015 was held, had a modern atmosphere with a futuristic touch. </p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebulaconf_ungleich.jpg" src="/media/filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__1724x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_395"><img alt="Image" title="Image - opennebulaconf_ungleich_entrance.jpg" src="/media/filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_396">And there we are - at the entrance of the OpenNebulaConf 2015, just next to the ungleich booth, ready to welcome conference attendees.</p>\n\n<p><img alt="Image" title="Image - opennebulaconf_ungleich_team_booth.jpg" src="/media/filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__1878x1056_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_397"></p>\n\n<p>Team ungleich who flew all the way to Barcelona from Switzerland for OpenNebulaConf, although with a very little sleep but with full of excitement for supporting OpenNebula. :)  </p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebulaconf_ungleich_booth.jpg" src="/media/filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_399"></p>\n\n<p>A close-up to ungleich booth at OpenNebulaConf with our <img alt="Link" title="Link - Digital Glarus stickers " src="/static/cms/images/plugins/link.png" id="plugin_obj_423">for 2 kinds of laptops : for Macbooks and Thinkpads. </p>\n\n<p><img alt="Image" title="Image - build_opennebula_cdist_banner.jpg" src="/media/filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_400"></p>\n\n<p>Build OpenNebula with cdist! How to build OpenNebula clusters with the configuration management system cdist was presented at an OpenNebulaConf talk by Nico Schottelius.</p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebulaconf_talk_nicoschottelius.jpg" src="/media/filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__1806x992_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_411"></p>\n\n<p><img alt="Image" title="Image - opennebula_cdist_ungleich_nicoschottelius.jpg" src="/media/filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_413">Many great talks and discussions took place at OpenNebulaConf - from technical to business, from beginners to very advanced, a wide range was covered in intensive talks. We must say, it was a great chance for attendees to really dive into the world of OpenNebula. </p>\n\n<p> </p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebulaconf_2015_ungleich_.jpg" src="/media/filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_414"></p>\n\n<p>OpenNebulaConf attendees from every corner of the world, during the coffee break. </p>\n\n<p> </p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebulaconf_tapas_night_ungleich.jpg" src="/media/filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__1680x934_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_415"></p>\n\n<p>And each night, tapas dinner was organized by the OpenNebulaConf, at interesting parts of Barcelona. attendees had chance to resume passionate talks that continued during the day at the conference, with delicious food and drinks. Great food with great company, everybody couldn't be in better mood. </p>\n\n<p> </p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebula_conf_2015_ungleich.jpg" src="/media/filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__962x1650_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_416"></p>\n\n<p> </p>\n\n<p>Time flew fast in OpenNebulaConf. It was great time to meet and exchange ideas with like-minded and bright people who all support OpenNebula, especially with team OpenNebula who organized a very successful conference on their own. Great job, OpenNebula! We truly appreciated your hospitality.</p>\n\n<p>It was more than just a flight to Barcelona for ungleich. <span style="line-height: 20.8px;">We were inspired by many talks and discussions, which also gave us ideas on our upcoming <img alt="Link" title="Link - OpenNebula workshop" src="/static/cms/images/plugins/link.png" id="plugin_obj_417">, happening soon in <img alt="Link" title="Link - Digital Chalet Schwanden" src="/static/cms/images/plugins/link.png" id="plugin_obj_418">.  </span></p>\n\n<p>We must say that we were very proud and happy to support OpenNebula by being their gold sponsor, and, Swiss ambassador : we even met other Swiss attendees who came all the way to Barcelona because of our previous introduction to OpenNebula at other conferences! How exciting it is to influence others for the better (IT) future? </p>\n\n<p> </p>\n\n<p>And..</p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebula_barcelona_beach.jpg" src="/media/filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__2579x1648_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_419"></p>\n\n<p> </p>\n\n<p>...did we already mention that the conference was held at Barcelona? In case we didn't, yeah, it did happen in Barcelona. The conference place, Hotel Barcelo Sants, was a bit away from the beach, but that didn't stop team ungleich from finding the sandy beach of Barceloneta, where everything was (still) just like the summer.</p>\n\n<p>Like we probably (and repeatedly) talked before, we founded our company to have a good work and life balance. That means, our team had a great time in Barcelona. From working at the beach bar with a mojito on one hand to listening to local artists at late night jazz club to exploring small streets of <img alt="Link" title="Link - Barrio Gotico" src="/static/cms/images/plugins/link.png" id="plugin_obj_421">, we had an awesome time in Barcelona. </p>\n\n<p>Long live OpenNebula, and, long live ungleich! :)</p>\n\n<p> </p>\n\n<p><img alt="Image" title="Image - opennebula_collage_ungleich_barcelona.jpg" src="/media/filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__1806x1496_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_422"></p>\n\n<p> </p>\n
570	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
571	<h2 class="intro-text text-center">why <strong>Us?</strong></h2>\n
572	<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\n
157	<h2 class="intro-text text-center">Why would anyone be <strong>interested</strong> in it?</h2>\n
180	<h3>direct <small> connection to zurich</small></h3>\n
201	BEAUTIFUL <small> landscape</small>\n
427	<p></p>
573	<h2 class="intro-text text-center">why <strong>glarus?</strong></h2>\n
574	<h3>BEAUTIFUL <small> landscape</small></h3>\n
575	<h3>AFFORDABLE <small>price</small></h3>\n
576	<h3>direct <small> connection to zurich</small></h3>\n
41	<p>Wow! That was as an amazing <img alt="Link" id="plugin_obj_42" title="Link - OpenCloudDay 2015 in Bern" src="/static/cms/images/plugins/link.png">! Not only happened the friendly meeting of <span style="line-height: 16.6399993896484px;">OpenNebula, </span>Openstack and Cloudstack, but also many great discussions about architectures and technologies. We have met people using good old Sendmail to cloud providers who reported about their experiences with Ceph  (thanks a lot <img alt="Link" id="plugin_obj_43" title="Link - @Jens" src="/static/cms/images/plugins/link.png">!). The OpenNebula workshop was not only great success with a lot of good questions, but also very much fun with an interested audience.</p>\n\n<p><img alt="Image" id="plugin_obj_49" title="Image - DSC_4958 copy.jpg-small.jpg" src="/media/filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__1333x944_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>For that reason we plan to make an <strong>OpenNebula-Hackday</strong> in <img alt="Link" id="plugin_obj_44" title="Link - Digital Glarus" src="/static/cms/images/plugins/link.png"> soon (<img alt="Link" id="plugin_obj_45" title="Link - follow us on Twitter" src="/static/cms/images/plugins/link.png"> to get to know the exact date).</p>\n\n<p><img alt="Image" id="plugin_obj_50" title="Image - DSC_4986.png-small.jpg" src="/media/filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__1323x963_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>Also much appreciated was the discussion after the workshops with the speakers of the OpenNebula, Openstack and Cloudstack workshops - and again a lot of fun (not much blaming each other, but pointing out what the current status is). Thnaks also goes to the <img alt="Link" id="plugin_obj_47" title="Link - @ICCLab" src="/static/cms/images/plugins/link.png"> for presenting a lot of interesting ideas as well as helping in the preparation of the joint cloud workshop.</p>\n\n<p><img alt="Image" id="plugin_obj_51" title="Image - DSC_5055.png-small.jpg" src="/media/filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__1419x741_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>Also very good feedback came towards the new feature of cdist, the installation support. Installation support? Yes! cdist is now officially the first (and only!) configuration management system that officially can configure your computer <strong>before</strong> the operating system is even installed by using its own PreOS!</p>\n\n<p>Apart from these technical discussions the Apero in the evening was showing many great Swiss based computer scientist who are all together working in the same spirit of Open Source. Thanks a lot to Matthias Günter and <img alt="Link" id="plugin_obj_46" title="Link - /ch/open" src="/static/cms/images/plugins/link.png"> for organising this great day!</p>\n\n<p><img alt="Image" id="plugin_obj_52" title="Image - DSC_5064.jpg-small.jpg" src="/media/filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__1074x805_q85_crop_subsampling-2_upscale.jpg"></p>\n
158	<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\n
202	<h3>AFFORDABLE <small>price</small></h3>\n
181	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
580	<p><span lang="de" class="short_text" tabindex="-1" id="result_box"><span class="hps">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\n\n<p>Email: <strong><a href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch</a></strong></p>\n\n<p><span lang="de" class="short_text" tabindex="-1" id="result_box"><span class="hps">Anschrift</span></span>: <strong><span style="">In Der Au 7,  8762 Schwanden Switzerland</span></strong></p>\n
428	<p>Juchu! Es ist kalt genug draussen! Wir feiern das mit einem Fondue im neuen Co-Working Space in Schwanden!</p>\n\n<p>Am 12. Dezember treffen wir uns um 18 Uhr zum Fondueplausch! Wer Lust hat das Glarnerland noch etwas kennenzulernen, der darf auch gerne über Nacht bleiben und am nächsten Tag mit uns die Gegend erkundigen (je nach Wetter sogar Skifahren gehen!)</p>\n\n<p>Du hast Interesse dazuzustossen? Bitte <img alt="Link" title="Link - melde Dich via Meetup an" src="/static/cms/images/plugins/link.png" id="plugin_obj_429">. Bis dahin: Happy Hacking!</p>\n
577	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
578	<h2 class="intro-text text-center"><span lang="de" class="short_text" id="result_box">Kontakt </span> <strong>DIGITAL GLARUS</strong></h2>\n
579	<iframe width="100%" frameborder="0" src="//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed" scrolling="no" height="400"></iframe>
159	<h2 class="intro-text text-center"><strong>Where</strong>we are</h2>\n
203	<h3>direct <small> connection to zurich</small></h3>\n
182	WIESO WIR?\n
584	<p>Die alten Fabriken, welche häufig Webmühlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte für IT-Begeisterte</p>\n\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Gebäude in attraktive Co-Working Spaces verwandeln.</p>\n\n<p>Aber was ist eigentlich reizvoll für einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\n
668	<div class="row">\n<p class="col-md-12"><img class="img-responsive" src="/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png"></p>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<p> </p>\n\n<p> </p>\n\n<div class="col-lg-12 text-center">\n<hr class="tagline-divider">\n<h2>JAZZ IN DIGITAL CHALET</h2>\n\n<hr class="tagline-divider">\n<p> </p>\n</div>\n\n<p>Welcome to Digital Chalet Schwanden. </p>\n\n<p><span style="line-height: 1.6;">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\n\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\n\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\n\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\n\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\n\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div class="row">\n<h3 style="color: rgb(170, 170, 170); font-style: italic; text-align: center;" class="col-md-12"><img class="img-responsive" src="/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg"><small><img alt="Link - Jazzband FivePastEight" title="Link - Jazzband FivePastEight" src="/static/cms/images/plugins/link.png" id="plugin_obj_670"></small></h3>\n</div>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div style="float: left; margin: 10px;"><iframe src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2" height="330" width="220" frameborder="0" scrolling="no" class="center-block"></iframe></div>\n\n<p> </p>\n\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\n\n<p>You can find it on <img alt="Link - 100-days.net/start-digital-glarus" title="Link - 100-days.net/start-digital-glarus" src="/static/cms/images/plugins/link.png" id="plugin_obj_669"><a style="line-height: 1.6;" href="#">s.net/start-digital-glarus</a><span style="line-height: 1.6;"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\n\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\n\n<p>We <span style="line-height: 1.6;">are p</span><span style="line-height: 1.6;">leased to inv</span><span style="line-height: 1.6;">ite you on December 5 at the jazz conc</span><span style="line-height: 1.6;">ert!</span></p>\n\n<p>And one tip from us: RSVP on our <img alt="Link - meetup" title="Link - meetup" src="/static/cms/images/plugins/link.png" id="plugin_obj_671">, you get a free drink at the venue.</p>\n\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\n\n<p> </p>\n</div>\n</div>\n\n<div class="row">\n<p class="col-md-12"><img class="img-responsive" src="/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png"></p>\n</div>\n
581	DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\n
582	<p>Digital Glarus, so nennen wir das neue Zuhause für High-Tech Firmen. Im Süden von Zürich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\n\n<p>Die Kombination von wunderschöner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir „Digital Glarus“ nennen.</p>\n\n<p>Die Landschaft, das „Glarnerland“ hat viele ehemalige Gebäude des Industriegebietes, welche direkt ins Auge fallen.</p>\n\n<p>Genaugenommen besitzt das Glarnerland über die besterhaltenste Sammlung von antiken Häuser mit Möbeln bester Qualität. (Genau von denen, welche du immer in teuren Läden anschaust, aber nie kaufst – so leben die Leute hier).</p>\n
583	EINE NEUE REGION.\n
585	WIESO SOLLTE SICH JEMAND FÃœR DAS INTERESSIEREN?\n
430	<h2>Zu lang zum Lesen (TL;DR)?</h2>\n\n<p>Ich, Nico Schottelius, habe innert 2 Jahren das Glarnerland liebgewonnen und möchte nun zusammen mit euch hier einen Co-Working Space aufbauen - und die Renovationen, die nötig sind, mit einer <a href="http://www.100-days.net/de/projekt/start-digital-glarus">Crowdfunding-Kampagne</a> finanzieren.</p>\n\n<h2>Januar 2014</h2>\n\n<p>Ich befinde mich in einem kleinen Haus im Kanton Glarus, genau genommen in Luchsingen. Der Holzofen brennt, es ist warm, die Sonne scheint, ich schaue auf den Schnee draussen: Ein schöner Ausblick.</p>\n\n<h2>Februar 2014</h2>\n\n<p>Freunde sind zu Besuch. Zum Jassen. Was sonst macht man im Glarnerland?, fragen zwei Freunde. Arbeiten, sage ich, als Informatiker spielt es keine Rolle von wo aus man arbeitet. Sie schütteln den Kopf und verlieren die Runde.</p>\n\n<h2>März 2014</h2>\n\n<p>Geschäftspartner zu Besuch. Kommt am Bahnhof Luchsingen an, schwärmt von der tollen Zugfahrt. Wunderschöne Aussicht, ein Ort schöner als der andere, eine Landschaft die man auf Postkarten drucken muss, sagt er. Weiss ich, sage ich, und schmunzele.</p>\n\n<h2>April 2014</h2>\n\n<p>Erste Wanderung. Auf zum Oberblegisee. Freunde sind am Keuchen, es ist zu steil. Wir sind keine Bergziegen. Ich auch nicht, ich komme aus dem flachen Hannover. Aber Du bist sportlich. Na gut. Dann trage ich euch halt hoch, denke ich. Nach 3 Stunden, viel schimpfen erreichen wir den Oberblegisee. Ruhe. Beeindruckend, sagen sie. Während ich am Notebook sitze und schaue, was in der Firma gelaufen ist. Sie fragen: Du arbeitest hier? Ich: habe ich doch gesagt. Sie schütteln wieder den Kopf.</p>\n\n<h2>Juli 2014</h2>\n\n<p>Videokonferenz mit Kunden. Kunde ist hässig auf mich. Wie man sich erdreisten kann, bei einer Videokonferenz draussen vor einem Berg zu sitzen und so ein Panorama zu zeigen. Es gibt auch Leute, die im Büro arbeiten müssen. Er hat Recht (der Kunde hat immer Recht!) und ich beginne zu grübeln.</p>\n\n<h2>August 2014</h2>\n\n<p>Grosse Feier im Garten, Freunde und Nachbarn. Wir machen Photos zusamen. Ein schöner Abend. Freunde fragen, wie schnell eigentlich die Internetverbindun hier ist. Fast immer 4G, sage ich stolz, vielleicht sogar bald Glasfaser bei uns im Haus, witzele ich.</p>\n\n<h2>August 2014, nächster Tag</h2>\n\n<p>Diejenigen, die geblieben sind wollen mehr sehen. Wandern! Ich schlage vor die Bahn nach Braunwald zu nehmen, als ich an die letzte Wanderung denken muss. Herrliche Aussicht in Braunwald. Gemütlich im Restaurant sitzend frage ich die Wirtin, ob ich Ihr Internet benutzen könne. Freundlich lächelnd reicht sie mir einen Zettel mit dem Passwort für das WLAN und fragt, ob ich hier arbeiten würde. Ich schaue zu meinen Freunden, schaue zu ihr und sage: Ja, das Notebook ist mein mobiles Büro. Aha, sagt sie und richtet den Blick zu meinen Freunden: Wollen Sie hier ebenfalls arbeiten? Ich bin gerade dabei Nein zu sagen, da packt eine Freundin ein Notebook aus. Gerne, sagt sie, grinst zu mir rüber und beginnt die neuesten Designtrends zu recherchieren. Soso, sage ich und lächele, während ich meinen Süssmost trinke. Die Wirtin fragt, ob es für uns normal ist, das wir mit dem Notebook in den Bergen arbeiten. Nicht für alle von uns, möchte ich sagen, doch bevor ich dazu komme sagt meine Freundin: Klar! Und grinst zurück zu mir.</p>\n\n<h2>Februar 2015</h2>\n\n<p>Auf der Skipiste. Mit Geschäftspartnern. Das Notebook im Rucksack. Heikel, denke ich mir, hätte es an der Station lassen sollen. Bloss nicht das Snowboard verkanten. 3 Stunden später. Im Restaurant. Das Notebook heile. Kein Internet, die Wände vom Haus sind zu dick. Schade. Wir diskutieren, dass es ein guter Ort zum Arbeiten wäre: Skifahren am Morgen, arbeiten am Nachmittag. Statt klassischem Wochenende, das Wochenende auf die Woche verteilen. Gibt es einen Co-Working Space in Glarus, in dem wir nachher arbeiten können, fragen sie. Nicht das ich wüsste, sage ich und denke "aber es wäre schön, wenn es einen hätte". Ich nehme mir vor etwas Nachzuforschen.</p>\n\n<h2>Februar - April 2015</h2>\n\n<p>Viele Gespräche mit den Bewohnern von Glarus. Beim Wandern, beim Einkaufen, im Restaurant. Was halten Sie von der Idee, in Glarus Arbeitsplätze (wortwörtlich, zum Hinsetzen) mit Internet aufzaubauen? So dass Leute kommen können und an fast jedem Ort im Kanton ihr Notebook aufklappen und arbeiten können? Es braucht Internet, Strom und einen gemütlichen Platz. Die Idee findet grossen Anklang. Ich frage mich, ob wir die Koordination für ein solches Mammut-Projekt übernehmen sollen.</p>\n\n<h2>Mai 2015</h2>\n\n<p>Meine Neugier ist zu gross. Ich will wissen, ob der Kanton und die Gemeinden die Idee unterstützen möchten und vereinbare Treffen mit allen 3 Gemeindepräsidenten. Sehr beeindruckende Gespräche. Genauso wie die Erfahrung aus der Bevölkerung, sehr offen für die Idee. Finanzen hat man jedoch keine für ein solches Projekt, wird mir gesagt. Schade, denke ich. Ähnlich sieht es beim Kanton aus. Nagut, wer hat traditionell immer angefangen etwas voranzutreiben? Die Wirtschaft! Ein Marketing-Fond für das Kantonsmarketing wäre ein Ansatz, denke ich mir.</p>\n\n<h2>Juni 2015</h2>\n\n<p>Also in Glarus kommt das Projekt gut an, aber wie sieht es ausserhalb vom Glarnerland aus? Ich wiederhole mein Experiement von Anfang Jahr und befrage Freunde, Bekannte, Geschäftspartner. "Wo liegt Glarus?" Wirklich?, denke ich. "Verrückte Idee mit Potential." und "Wann kann ich anfangen zu arbeiten und fährt ein Zug nach Glarus?." Sind sehr motivierende Aussagen. Ich stelle fest: Das Glarnerland hat sehr viel Potential, aber die Bekanntheit ausserhalb vom Kanton ist noch nicht sehr gross.</p>\n\n<h2>Juli 2015</h2>\n\n<p>Wir diskutieren bei der ungleich GmbH, wie man am besten das Glarnerland ausserhalb vom Kanton bekanntmachen kann. Unsere Kunden sind hauptsächlich Firmen aus der IT. Die sollten ja im Prinzip am ehesten von jedem Ort aus arbeiten können. Die Entscheidung fällt, dass wir den ersten Glarner Co-Working Space aufbauen wollen, als Prototyp, damit Leute ausserhalb vom Kanton spontan nach Glarus kommen können zum Arbeiten. 1 Tag, 2 Tage, 1 Woche - alles ist möglich im Co-Working Space.</p>\n\n<h2>August 2015</h2>\n\n<p>Wir haben ein Haus gefunden für den Co-Working Space! In Schwanden. Das ist super, genau zwischen den beiden Skigebieten und gut erschlossen mit dem Zug. Es ist alt, aber hat Charme. Wow. Wir entscheiden uns, das Haus zu kaufen.</p>\n\n<h2>September 2015</h2>\n\n<p>Wir haben den Schlüssel zum Haus bekommen und stellen fest, dass doch noch mehr zu renovieren ist, als wir ursprünglich gedacht haben. Netzwerkverbindungen, Elektrik, Fenster. Wow. Wir brauchen auch noch eine Bank für den Garten. Können wir nicht die Renovationen gemeinsam finanzieren? So wie auch das Marketing vom Kanton? Die Idee mit dem Fond kommt wieder auf. Aber Moment mal, die moderne Form des Zusammenlegens für eine Sache nennt sich Crowdfunding. Das funktioniert via Internet. Ist im Prinzip dasselbe, wie wenn jeder einen 5er (oder mehr) in einen Sack wirft. Allerdings muss man sich vorher ein Ziel stecken und wenn man das Ziel nicht erreicht, dann bekommen alle ihr Geld wieder. Hochgerechnet benötigen wir etwa 20'000 CHF für die Renovation. Das klingt nach viel. Was wenn jeder 50 CHF geben würde? Dann müssten 400 Leute zusammenlegen. 400 Leute. Wow.</p>\n\n<h2>November 2015</h2>\n\n<p>Ich sitze im Zug. In der S25. Bin auf dem Weg nach Zürich, zur ETH. Ich schreibe meine Erinnerungen aus den letzten beinahe 2 Jahren nieder. Das Crowdfunding Projekt ist am Laufen, es sind bereits mehr als 2'000 CHF gespendet worden. Digital Glarus ist ein tolles Projekt. Es macht mir jeden Tag Spass, dafür zu arbeiten, zu schreiben, zu reden. Ich sehe einen langen Weg vor mir, den ich gerne gehen möchte. Um meinen Freunden und denjenigen, die ich nicht kenne, zu zeigen, was für ein toller Ort Glarus ist.</p>\n\n<h2>Meine Bitte an Dich</h2>\n\n<p>Hilf' mir das Projekt zum Erfolg zu führen. Rede über das Projekt. <a href="http://www.100-days.net/de/projekt/start-digital-glarus">Spende einen Beitrag beim Crowdfunding</a>. Lass uns Glarus zu einer Bekanntheit verhelfen, die seiner Schönheit würdig ist.</p>\n
460	<div class="row">\n<div class="col-md-7">\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\n\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\n\n<p>It is a pretty... old house and needs some love and renovation.</p>\n\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\n\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\n\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\n\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\n</div>\n\n<div class="col-md-5"><iframe scrolling="no" width="220" class="center-block" frameborder="0" height="330" src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2"></iframe></div>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<p> </p>\n\n<hr>\n<p> </p>\n</div>\n\n<div class="col-md-12">\n<iframe frameborder="0" height="650" width="100%" src="//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650"></iframe>\n</div>\n</div>
162	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
53	<p><img alt="Image" id="plugin_obj_55" title="Image - born_1.jpg" src="/media/filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__1200x900_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>So far most of the mergers I have watched were happening in companies I am not related to, so this one is more interesting and I am giving you some details of what I have experienced so far.</p>\n\n<p><span style="line-height: 1.6;">When travelling to the barbeque last Thursday afternoon together with some colleagues, I did not expect such a well organised event to happen in such a short time. And with well organised, I am not only referring to the food and drinks, but much more to what the three speakers, </span><span style="line-height: 16.6399993896484px;">André Born (ex CEO of Born Informatik), Hansjörg Süess (the new CEO) and </span>Peter Walti (Verwaltungsrat) shared with everybody. </p>\n\n<p><img alt="Image" id="plugin_obj_56" title="Image - born_2.jpg" src="/media/filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__1200x900_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p><span style="line-height: 1.6;">When big things like a merger happens, people are usually afraid of changes, especially of loosing their job. However it was very clear that </span>André Born is caring for his employees and it looks like everyone will keep his or her wor place, just working for a different company.</p>\n\n<p>It is also interesting to hear that adesso Schweiz AG, who bought Born Informatik, used to employ about 75 people, wheras Born Informatik used to consist of roughly 125 people - so there is a big chance that the spirit of Born will survive within adesso.</p>\n\n<p>As a company doing business with Born and now adesso, we look forward to the upcoming changes and wish everyone good new experiences!</p>\n\n<p><img alt="Image" id="plugin_obj_57" title="Image - born_3.jpg" src="/media/filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__1200x914_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>By the way - the pictures of the barbecue were taken in <strong>Olten</strong> - a very fitting place for two companies from <strong>Bern</strong> (Born) and <strong>Zürich</strong> (adesso) to celebrate their merger. We wonder, when will we see adesso in <img alt="Link" id="plugin_obj_58" title="Link - Digital Glarus" src="/static/cms/images/plugins/link.png">?</p>\n\n<p> </p>\n
61	<p>If you have followed the story of <img alt="Link" id="plugin_obj_62" title="Link - Digital Glarus" src="/static/cms/images/plugins/link.png">, you know that we at ungleich are modernising the Canton of Glarus and making it ready for the digital age, because we believe it is a place with a great view and potential.</p>\n\n<p>Today happened the first meetup of <img alt="Link" id="plugin_obj_63" title="Link - Makers im Zigerschlitz" src="/static/cms/images/plugins/link.png"> at which many possible topics to work on were discussed.</p>\n\n<p>We discussed various ideas for long time exposure projects (including one for using a boomerang with LEDs on it!), to help each other in home automation (switching lights on when you enter your home at night) to gaming projects.</p>\n\n<p>We also discussed various projects that are more suitable for children to get in touch with technology (using for instance the Raspberry Pi).</p>\n\n<p>If you do not yet know what the advantages of Digital Glarus <span style="line-height: 16.6399993896484px;">are</span> and why we at ungleich are investing here, <img alt="Link" id="plugin_obj_64" title="Link - follow us on Twitter" src="/static/cms/images/plugins/link.png"> for updates - we will post more articles about Digital Glarus soon.</p>\n
59	<p></p>
160	<p>At the moment we at <a href="http://www.ungleich.ch"> ungleich</a> are talking to authorities and  sponsors. It is crucial to build up some basic infrastructure and  attract early adopters. Building a community (<a href="http://www.meetup.ch">meetup</a> alike)  can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\n\n<p>The great first step we (<a href="http://www.ungleich.ch">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\n\n<p>Have you become interested in the project?</p>\n\n<p>Contact us at<br>\n<br>\n<a href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch </a> // <a value="+41445346622">+41 (0) 44 534 66 22</a></p>\n\n<p> </p>\n
183	<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegründet – obwohl, unsere erste Verkörperung lag in Deutschland im Jahre 2000 zurück. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-Köpfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie möglich arbeiten lassen wollen. Wir kennen und teilen die Bedürfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene Lösung, in dem wir einen attraktiven Arbeitsplatz für Technologie-Unternehmen in der Schweiz fanden und zu Verfügung stellen wollen.</p>\n
586	<p>Das momentane de-facto Technik-Zentrum der Schweiz, Zürich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, überbevölkert.<br>\nUm es genau zu nehmen überfüllt, teuer und laut… Obwohl die hohe Dichte der Personen für Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\nWieso nicht in schönen Gebäuden in Glarus neu beginnen?<br>\nWir wissen, dass Zeit, Geld und Leidenschaft benötigt wird um reizend für Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegenüber dem Verbleib in einer überfüllten Stadt.</p>\n
204	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
184	<p style="text-align: center;">WIESO GLARUS?</p>\n
587	WO SIND WIR\n
161	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
588	<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten älteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\nWir sind an der Eröffnung der Örtlichkeit für Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen Ämter und Unterstützer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und frühe Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, für das grossartige Abenteuer im schönen Tal von Glarus.</p>\n\n<p>Bist du interessiert?</p>\n\n<p>Kontaktiere uns:</p>\n\n<p><a class="email" href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\n
589	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
537	<div class="row">\n<p class="col-md-12"><img src="/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png" class="img-responsive"></p>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<h4> </h4>\n\n<p> </p>\n\n<div class="col-lg-12 text-center">\n<hr class="tagline-divider">\n<h2>JAZZ IN DIGITAL CHALET</h2>\n\n<hr class="tagline-divider">\n<p> </p>\n</div>\n\n<p>Willkommen im Digital Chalet Schwanden.</p>\n\n<p> </p>\n\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken können) von Digital Glarus!</p>\n\n<p>Wir möchten einen inspirierenden Co-Working Space aufbauen - für Glarner und für die Glarner Wirtschaft.</p>\n\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\n\n<p>Wir möchten uns bei all unseren Unterstützern (auch zukünftigen) mit einem Jazz-Konzert bedanken, für alle Beiträge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\n\n<p>Der Eintritt ist frei und ihr dürft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gemütlicher Musik kennenlernen!</p>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div class="row">\n<h3 style="color: rgb(170, 170, 170); font-style: italic; text-align: center;" class="col-md-12"><img src="/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg" class="img-responsive"><small><img alt="Link" title="Link - Jazzband FivePastEight" id="plugin_obj_542" src="/static/cms/images/plugins/link.png"></small></h3>\n</div>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div style="float: left; margin: 10px;"><iframe scrolling="no" width="220" class="center-block" frameborder="0" height="330" src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2"></iframe></div>\n\n<p> </p>\n\n<p>Um die nötigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf <img alt="Link" title="Link - 100-days.net/start-digital-glarus" id="plugin_obj_533" src="/static/cms/images/plugins/link.png"> findest.</p>\n\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den schönen alten Charm beibehalten.</p>\n\n<p>Wenn Du Freude hast an charmanten Häusern oder das Projekt gut findest, unterstütze uns heute - die Crowdfunding-Kampagne läuft nicht mehr lange!</p>\n\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erwähnt, dass jeder, der sich via <img alt="Link" title="Link - meetup.com" id="plugin_obj_551" src="/static/cms/images/plugins/link.png"> anmeldet, ein Gratisgetränk bekommt?</p>\n\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\n</div>\n</div>\n\n<div class="row">\n<p class="col-md-12"><img src="/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png" class="img-responsive"></p>\n</div>\n
185	<h3>WUNDERSCHÖNE <small>LANDSCHAFT</small></h3>\n
590	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
591	Contact <strong>DIGITAL GLARUS</strong>\n
592	\n<iframe width="100%" frameborder="0" src="//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed" scrolling="no" height="400"></iframe>
593	<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\n\n<p>Email: <strong><a href="mailto:digitalglarus@ungleich.ch">digitalglarus@ungleich.ch</a></strong></p>\n\n<p>Address:  <strong><span style="">In Der Au 7,  8762 Schwanden Switzerland</span></strong></p>\n\n<div class="clearfix"> </div>\n
163	DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\n
435	<p>Wow, it was one sunny Sunday in Glarus. One might say it was almost like summer, except the mountains were painted in deep red. </p>\n\n<p><img title="Image - glarus_autumn copy.jpg" alt="Image" id="plugin_obj_437" src="/media/filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__600x449_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>How was your Sunday? Ours at Digital Glarus (and ungleich) was full of sun (through the windows), and of collective intellectual curiosity of OpenNebula users. </p>\n\n<p>At 10a.m., a surprisingly international crowd gathered at our co-working space, Digital Chalet Schwanden. Attendees came all the way from Germany, Italy, Switzerland, and Finland, all from our Digital Glarus <img title="Link - meetup" alt="Link" id="plugin_obj_439" src="/static/cms/images/plugins/link.png"> group.</p>\n\n<p><span style="line-height: 20.8px;">The OpenNebula workshop today was given by Nico Schottelius, the founder of ungleich and Digital Glarus, and also a proud ambassador of OpenNebula.</span></p>\n\n<p><img title="Image - digitalglarus_opennebula_workshop_nico_schwanden_.jpg" alt="Image" id="plugin_obj_445" src="/media/filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__1804x888_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p>Here are some moments of today's workshop..</p>\n\n<p><img title="Image - digitalglarus_opennebula_workshop_bw_.jpg" alt="Image" id="plugin_obj_448" src="/media/filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__998x514_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p><img title="Image - digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png" alt="Image" id="plugin_obj_440" src="/media/filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__1824x1028_q85_crop_subsampling-2_upscale.png"></p>\n\n<p><img title="Image - digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png" alt="Image" id="plugin_obj_441" src="/media/filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__1824x896_q85_crop_subsampling-2_upscale.png"></p>\n\n<p><img title="Image - digitalglarus_opennebula_workshop_nico_.jpg" alt="Image" id="plugin_obj_442" src="/media/filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__1216x740_q85_crop_subsampling-2_upscale.jpg"></p>\n\n<p> </p>\n\n<p>Another great day with great people at Digital Glarus!</p>\n
594	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
595	<p>WIESO GLARUS?</p>\n
596	<span>WUNDERSCHÖNE <small> LANDSCHAFT </small></span>\n
597	<h3>PREISWERT</h3>\n
598	<h3>DIREKTE <small>VERBINDUNGEN NACH ZÃœRICH</small></h3>\n
65	<p><strong>House hacking?</strong></p>\n\n<p>Hacking a house? You may <span style="line-height: 16.6399993896484px;">already </span>have heard of this or you may have done it already - without knowing it. A webcam at the door coupled with face recognition to open the door? House hacking! Lights that go on automatically, when you enter the door or when it is dark enough? House hacking! Using your mobile phone to open the doors? Definitely house hacking! Screens that change their content depending on your mood? Well, you get the picture...</p>\n\n<p><strong>Which house to hack?</strong></p>\n\n<p>We from ungleich are currently looking for a suitable house to buy, renovate and to turn it into the first <img src="/static/cms/images/plugins/link.png" title="Link - Co-Working Space" alt="Link" id="plugin_obj_66"> in <img src="/static/cms/images/plugins/link.png" title="Link - Digital Glarus" alt="Link" id="plugin_obj_67">. We are talking to investors, banks and potential users to select the right house to start building Digital Glarus.</p>\n\n<p style="line-height: 16.64px;"><strong>Where is this house?</strong></p>\n\n<p style="line-height: 16.6399993896484px;">It will be located between Ziegelbrücke and Linthat - the exact location will be revealed soon!</p>\n\n<p><strong>Why hack this house?</strong></p>\n\n<p>As you may know, the Digital Glarus project is still very young and that also means innovative and dynamic. We want to create a modern Co-Working Space made by Hackers, for Hackers. We believe in the spirit of Open Source Software,</p>\n\n<p>of Crowdfunding and creating a home for digital nomads. Thus we offer this house to anyone, who would like to hack a house.</p>\n\n<p><strong>What am I allowed to do?</strong></p>\n\n<p>We practically allow you to do anything that is improves the house and conforms to the law. In case of doubt, just ask us!</p>\n\n<p><strong>I want to participate, but don't have any money!</strong></p>\n\n<p>We all have been in this situation that we wanted to do something, but did not have the money to realise it. As we believe in building a great Co-Working Space together, <strong>we offer financial </strong><strong>support for up to 5 projects for up to 500 CHF each.</strong></p>\n\n<p>If you want to use this money, just <img src="/static/cms/images/plugins/link.png" title="Link - fill out the form" alt="Link" id="plugin_obj_69"> with your project description. We will review all projects and if suitable, take the next step with you. You will hear back from us in any case...</p>\n\n<p><strong>How to hack this house?</strong></p>\n\n<p>If you are interested in hacking the house, drop us a message via Twitter (<img src="/static/cms/images/plugins/link.png" title="Link - @ungleich" alt="Link" id="plugin_obj_68">)  or <img src="/static/cms/images/plugins/link.png" title="Link - fill out the project form" alt="Link" id="plugin_obj_70">.</p>\n
164	<p>Digital Glarus, so nennen wir das neue Zuhause für High-Tech Firmen. Im Süden von Zürich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\n\n<p>Die Kombination von wunderschöner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir „Digital Glarus“ nennen.</p>\n\n<p>Die Landschaft, das „Glarnerland“ hat viele ehemalige Gebäude des Industriegebietes, welche direkt ins Auge fallen.</p>\n\n<p>Genaugenommen besitzt das Glarnerland über die besterhaltenste Sammlung von antiken Häuser mit Möbeln bester Qualität. (Genau von denen, welche du immer in teuren Läden anschaust, aber nie kaufst – so leben die Leute hier).</p>\n
599	<div class="row">\n<div class="col-md-7">\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\n\n<p>Wir haben ein schönes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu eröffnen!</p>\n\n<p>Es ist un-glaub-lich schön.. aber auch schön alt und braucht etwas Liebe und Renovationen. Wir möchten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch "richtiges" Internet hast (Kosten: etwa 15'000 CHF).</p>\n\n<p>Wir würden auch gerne ein paar Möbel kaufen, wie Sofas, Stühle und Tische, damit Du gemütlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\n\n<p>Falls noch etwas Geld übrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die Tür mit dem Handy öffnen kannst (2'000 - 20'000 CHF).</p>\n\n<p> </p>\n\n<p> </p>\n</div>\n\n<div class="col-md-5">\n<p> </p>\n\n<p><iframe src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2" height="330" width="220" frameborder="0" scrolling="no" class="center-block"></iframe></p>\n</div>\n\n<p> </p>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<hr></div>\n\n<div class="col-md-12"><iframe width="100%" frameborder="0" src="//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650" height="650"></iframe></div>\n</div>\n
71	<h2>Introduction</h2>\n\n<p>Are you a geek, a maker, a technician or a developer? Are you sometimes very proud of what you have created? Your own "baby" that does something great in its own way? </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__500x333_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_84" title="Image - Computer-Geek.jpg"></p>\n\n<p><span style="line-height: 1.6;">Well, we at </span><img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_73" title="Link - ungleich"><span style="line-height: 1.6;"> are a team of DevOps, sysadmin and developers and today we want to share the gems of our current nginx configuration with you.</span></p>\n\n<h2>The Setup</h2>\n\n<p>The configuration we show you here is used for our <strong>Django</strong> based pages, on which we are running for instance <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_79" title="Link - rails-hosting.ch">.  Our Django application consists of various apps like blog, hosting or <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_76" title="Link - digitalglarus">, which are all accessible on every domain. However, depending on which domain you access, you are given a different entrance page or redirect.</p>\n\n<p>Let's see what we gems are in our configuration...</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__690x389_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_82" title="Image - gems.png"></p>\n\n<h2>Gem #1: Handling / vs everything else</h2>\n\n<p>If you ever wondered what is the easiest way to do something for the entry page and something else for the rest of the page, here is an easy answer: Use location = / and location /: The = / block matches only, if the request is /, whereas the second location / matches everything else starting with a /.</p>\n\n<p>    location = / { Do something for / only }<br>\n    location / {  Do something for the rest  }</p>\n\n<p>For more information about how this works, have a look at the <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_74" title="Link - nginx location documentation">. </p>\n\n<p> </p>\n\n<h2>Gem #2: Proxying / without a redirect to a Django app</h2>\n\n<p>We want our user to stay on the root of a specific domain (like <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_75" title="Link - django-hosting.ch"> in our case), when she requests /, but redirect her to <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_77" title="Link - django-hosting.ungleich.ch"> for every other request. We have multiple motivations to treat our users like this:</p>\n\n<ol>\n\t<li>If you go to example.com and do not click, it looks nice to have only example.com in the address bar</li>\n\t<li>Google adwords does not function with a cross domain redirect</li>\n\t<li>We want to support SSL, where possible. We have a wildcard SSL certificate for *.ungleich.ch that we want to use and not to manage SSL certificates for every vanity domain that we use</li>\n</ol>\n\n<p>Given the previous distinction of treating / and non / differently, we can easily implement this behaviour by using the following code:</p>\n\n<p>    location = / {<br>\n            rewrite ^/$ /$landingpagerewrite/ break;<br>\n            uwsgi_pass uwsgiapp;<br>\n    }<br>\n    location / {<br>\n        rewrite ^/(.*) https://$ungleich_servername/$1 permanent;<br>\n    }</p>\n\n<p> </p>\n\n<h2>Gem #3: Only stay on / for some domains</h2>\n\n<p>Our original motivation to stay on the domain was because of reason #2 (the adwords problematic), but we want this only to happen for a few vanity domains that we use and not for every domain (indeed, most of our domains are redirecting to a sub url).</p>\n\n<p>Even though the <strong>if</strong> directive of nginx <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_78" title="Link - should usually be avoided">, it has a good use case: For testing the definition of variables. We setup the variable $landingpagerewrite, only in the case we want to stay on /. And this is how it looks like:</p>\n\n<p>    location = / {<br>\n        if ($landingpagerewrite) {<br>\n            rewrite ^/$ /$landingpagerewrite/ break;<br>\n        }<br>\n    }</p>\n\n<h2>More gems</h2>\n\n<p>There are many more gems that we would like to show you soon - stay tuned! If you have questions, do not hesitate to ask on <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_80" title="Link - Twitter">!</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__950x680_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_83" title="Image - shooting-star.jpg"></p>\n
187	<h3>DIREKTE VERBINDUNGEN <small>NACH ZÃœRICH</small></h3>\n
165	EINE NEUE REGION.\n
449	<p><span id="docs-internal-guid-36544c63-ff52-6970-7227-e5b3a9c451b5"><span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Wissen gegen Wissen tauschen - das ist das Motto der Plattform <img title="Link - wissenstausch.ch" alt="Link" id="plugin_obj_453" src="/static/cms/images/plugins/link.png">,</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">hinter der die Firma <img title="Link - wedoino" alt="Link" id="plugin_obj_452" src="/static/cms/images/plugins/link.png"> aus Pfäffikon ZH steht.</span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Das Projekt Digital Glarus (<img title="Link - www.digitalglarus.ch" alt="Link" id="plugin_obj_454" src="/static/cms/images/plugins/link.png">) auf der anderen Seite strebt die</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Digitalisierung des Kantons Glarus an: mit dem Ziel, den bezaubernden und günstigen</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Raum des Glarnerlandes für IT Firmen attraktiv zu gestalten. Hinter Digital Glarus</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">steht die Linux-Infrastrukturfirma <img title="Link - ungleich" alt="Link" id="plugin_obj_455" src="/static/cms/images/plugins/link.png"> mit Sitz in Glarus Süd.</span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Die Mitglieder von wissenstausch.ch bieten ihr Wissen im Tausch gegen Wissen an, und wie jeder weiss ist die Informatik ein Beruf, in welchem Wissen eine grosse Rolle spielt. Auf wissenstausch.ch selber finden sich aber auch diverse Kurse aus anderen Themengebieten wie beispielsweise Klettern, Backen, Mathematik und vieles mehr..</span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Aus dem Grund haben sich die beiden Projekte zusammen geschlossen, um gemeinsam</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">den Austausch von Wissen anzubieten: Ab dem 1.Dezember sind Kurse von Digital</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Glarus auch auf wissenstausch.ch verfügbar und wissenstausch.ch kann nun auch in</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">der Region Glarus spannende Kurse anbieten.</span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Die Kurse von Digital Glarus finden im ersten Glarner Co-Working Space, dem</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Digital Chalet Schwanden statt. Für die Renovation vom Digital Chalet,</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">einem alten Haus in Schwanden, läuft zur Zeit eine Crowdfunding-Kampagne, die</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">auf www.100-days.net/start-digital-glarus zu finden ist.</span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Und nun: Auf zum Wissenstausch ins Digital Glarus und auf wissenstausch.ch !</span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Wissenstausch</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Ansprechpartner: Michael Raths</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Telefon: 076 4401 222</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">E-Mail: info@wissenstausch.ch</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Web: www.wissenstausch.ch</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Twitter: <img title="Link - @wedoino" alt="Link" id="plugin_obj_456" src="/static/cms/images/plugins/link.png"></span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Facebook: <img title="Link - https://www.facebook.com/wissenstausch/" alt="Link" id="plugin_obj_457" src="/static/cms/images/plugins/link.png"></span><br class="kix-line-break">\n<br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Digital Glarus</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Ansprechpartner: Nico Schottelius</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Telefon: 044 534 66 22</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">E-Mail: wissen@digitalglarus.ch</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Web: www.digitalglarus.ch</span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Twitter: <img title="Link - @DigitalGlarus" alt="Link" id="plugin_obj_458" src="/static/cms/images/plugins/link.png"></span><br class="kix-line-break">\n<span style="font-size: 14.6667px; font-family: Arial; color: rgb(0, 0, 0); vertical-align: baseline; white-space: pre-wrap; background-color: transparent;">Facebook: <img title="Link - https://www.facebook.com/digitalglarus/" alt="Link" id="plugin_obj_459" src="/static/cms/images/plugins/link.png"></span></span></p>\n
188	<h3>PREISWERT</h3>\n
672	<div class="row">\n<p class="col-md-12"><img class="img-responsive" src="/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png"></p>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<h4> </h4>\n\n<p> </p>\n\n<div class="col-lg-12 text-center">\n<hr class="tagline-divider">\n<h2>JAZZ IN DIGITAL CHALET</h2>\n\n<hr class="tagline-divider">\n<p> </p>\n</div>\n\n<p>Willkommen im Digital Chalet Schwanden.</p>\n\n<p> </p>\n\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken können) von Digital Glarus!</p>\n\n<p>Wir möchten einen inspirierenden Co-Working Space aufbauen - für Glarner und für die Glarner Wirtschaft.</p>\n\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\n\n<p>Wir möchten uns bei all unseren Unterstützern (auch zukünftigen) mit einem Jazz-Konzert bedanken, für alle Beiträge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\n\n<p>Der Eintritt ist frei und ihr dürft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gemütlicher Musik kennenlernen!</p>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div class="row">\n<h3 style="color: rgb(170, 170, 170); font-style: italic; text-align: center;" class="col-md-12"><img class="img-responsive" src="/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg"><small></small></h3>\n</div>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div style="float: left; margin: 10px;"><iframe src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2" height="330" width="220" frameborder="0" scrolling="no" class="center-block"></iframe></div>\n\n<p> </p>\n\n<p>Um die nötigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf  findest.</p>\n\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den schönen alten Charm beibehalten.</p>\n\n<p>Wenn Du Freude hast an charmanten Häusern oder das Projekt gut findest, unterstütze uns heute - die Crowdfunding-Kampagne läuft nicht mehr lange!</p>\n\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erwähnt, dass jeder, der sich via <img alt="Link - meetup.com" title="Link - meetup.com" src="/static/cms/images/plugins/link.png" id="plugin_obj_673"> anmeldet, ein Gratisgetränk bekommt?</p>\n\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\n</div>\n</div>\n\n<div class="row">\n<p class="col-md-12"><img class="img-responsive" src="/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png"></p>\n</div>\n
166	<p>Die alten Fabriken, welche häufig Webmühlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte für IT-Begeisterte</p>\n\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Gebäude in attraktive Co-Working Spaces verwandeln.</p>\n\n<p>Aber was ist eigentlich reizvoll für einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\n
189	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
555	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
556	why <strong>glarus?</strong>\n
557	BEAUTIFUL <small> landscape</small>\n
558	<h3>AFFORDABLE <small>price</small></h3>\n
559	<h3>direct <small> connection to zurich</small></h3>\n
168	Copyright...
190	Contact <strong>DIGITAL GLARUS</strong>\n
560	<div class="row">\n<div class="col-md-7">\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\n\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\n\n<p>It is a pretty... old house and needs some love and renovation.</p>\n\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\n\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\n\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\n\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\n</div>\n\n<div class="col-md-5"><iframe src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2" height="330" width="220" frameborder="0" scrolling="no" class="center-block"></iframe></div>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<p> </p>\n\n<hr>\n<p> </p>\n</div>\n\n<div class="col-md-12">\n<iframe height="650" frameborder="0" src="//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650" width="100%"></iframe>\n</div>\n</div>
461	<div class="row">\n<div class="col-md-7">\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\n\n<p>Wir haben ein schönes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu eröffnen!</p>\n\n<p>Es ist un-glaub-lich schön.. aber auch schön alt und braucht etwas Liebe und Renovationen. Wir möchten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch "richtiges" Internet hast (Kosten: etwa 15'000 CHF).</p>\n\n<p>Wir würden auch gerne ein paar Möbel kaufen, wie Sofas, Stühle und Tische, damit Du gemütlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\n\n<p>Falls noch etwas Geld übrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die Tür mit dem Handy öffnen kannst (2'000 - 20'000 CHF).</p>\n\n<p> </p>\n\n<p> </p>\n</div>\n\n<div class="col-md-5">\n<p> </p>\n\n<p><iframe scrolling="no" width="220" class="center-block" frameborder="0" height="330" src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2"></iframe></p>\n</div>\n\n<p> </p>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<hr></div>\n\n<div class="col-md-12"><iframe width="100%" frameborder="0" src="//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650" height="650"></iframe></div>\n</div>\n
605	<div class="address-bar">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\n
606	WIESO WIR?\n
607	<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegründet – obwohl, unsere erste Verkörperung lag in Deutschland im Jahre 2000 zurück. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-Köpfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie möglich arbeiten lassen wollen. Wir kennen und teilen die Bedürfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene Lösung, in dem wir einen attraktiven Arbeitsplatz für Technologie-Unternehmen in der Schweiz fanden und zu Verfügung stellen wollen.</p>\n
608	<p style="text-align: center;">WIESO GLARUS?</p>\n
609	<h3>WUNDERSCHÖNE <small>LANDSCHAFT</small></h3>\n
169	Copyright © ungleich GmbH 2015\n
85	<h1>Gem #4: To forward or not to forward the hostname</h1>\n\n<h2><img src="/media/filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__1200x740_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_99" title="Image - dice.png"></h2>\n\n<p>We <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_87" title="Link - recently published some details of our nginx configuration"> and we would like to give you an overview of some more gems that it contains.</p>\n\n<p>If you remember gem #2 <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_88" title="Link - from the previous article">, we are using landing pages with http (not https) for some domains like <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_89" title="Link - digitalglarus.ch">, but use https for every subpage below ungleich.ch (because we like to provide as many sites with ssl as possible).</p>\n\n<h2> </h2>\n\n<h2>Django: Allowed hosts</h2>\n\n<p>We are using various domain names, however our django app uses only the following allowed hosts:</p>\n\n<p>ALLOWED_HOSTS = [<br>\n    ".ungleich.ch",<br>\n]</p>\n\n<p>If a request is received with a different host header, django will refuse to serve the request. As we have to handle the landing pages in nginx, we prefer not to duplicate every domain we add in nginx into our django configuration.</p>\n\n<h2> </h2>\n\n<h2>Nginx and uwsgi_pass</h2>\n\n<p>Nowadays nginx ships with a pre-configured set of uwsgi_param directives that you can include using</p>\n\n<p>include uwsgi_params;</p>\n\n<p>However this default setup also forwards the hostname. We had a look at the file and saw that SERVER_NAME is being sent and tried to replace it by using</p>\n\n<p>uwsgi_param  SERVER_NAME        $ungleich_servername;</p>\n\n<p>(and we setup $ungleich_servername at a different position - more about this in our next blog post).</p>\n\n<p>When testing this setup using</p>\n\n<p>curl -H "Host: digitalglarus.ch" dynamicweb.ungleich.ch</p>\n\n<p>we still saw the hostname <strong>digitalglarus.ch</strong> in the uwsgi app. What happened? Well, reading the python code revealed that before SERVER_NAME the header HTTP_HOST is being checked. But we did not pass this header!</p>\n\n<p><a href="http://digitalglarus.ch"><img src="/media/filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__1280x711_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_93" title="Image - digital_glurs.png"></a></p>\n\n<h2> </h2>\n\n<h2>Nginx and uwsgi_pass_request_headers</h2>\n\n<p>It turns out that by default nginx is forwarding all headers to the uwsgi app - including HTTP_POST. We turned that behaviour off using the following directive:</p>\n\n<p>uwsgi_pass_request_headers off;</p>\n\n<p>And voila: it works!</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__690x389_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_98" title="Image - puzzle.png"></p>\n\n<p>For production however, we do not turn off the request headers, but overwrite the HTTP_HOST header as following:</p>\n\n<p>include uwsgi_params;<br>\nuwsgi_param  SERVER_NAME   $ungleich_servername;<br>\nuwsgi_param  HTTP_HOST          $ungleich_servername;</p>\n\n<p>This way we can setup the variable $ungleich_servername to a subdomain of <img src="/static/cms/images/plugins/link.png" alt="Link" id="plugin_obj_90" title="Link - ungleich.ch"> and do not need to modify the settings.py for any URL that we add.</p>\n\n<p><a href="http://www.ungleich.ch"><img src="/media/filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__1280x602_q85_crop_subsampling-2_upscale.jpg" alt="Image" id="plugin_obj_97" title="Image - ungleich.png"></a></p>\n
100	<h2>Is this the wrong blog post?</h2>\n\n<p>Yes it is. We planned to release the <img src="/static/cms/images/plugins/link.png" id="plugin_obj_102" title="Link - Digital Glarus" alt="Link"> Manifesto today, however, so many things have happened in the meantime, we want to give you an overview of where we are.</p>\n\n<h2>What happened so far ...</h2>\n\n<p>The project Digital Glarus (we were writing it as "Digital.Glarus" in the beginning, you might still find misspellings at some places) started in May 2015 as a crazy idea...</p>\n\n<h2>...what Idea?</h2>\n\n<p>To transform the quiet, beautiful and very green valley of Glarus into a place where computer scientist will love to go to.</p>\n\n<h2>Why would we want them to like Glarus?</h2>\n\n<p>We, ungleich, moved our headquarter to Luchsingen (a small village in Glarus, which is also in the Alps! Yes, the Alps.) about 2 years ago and guess what changed for our workflow and for our customers?<br>\nRight! Nothing!</p>\n\n<h2>Nothing?</h2>\n\n<p>Yes, we are working remotely most of the time (&gt;90%),  and as long as we are visiting our customers regulary, they do not really care where we are.</p>\n\n<p>However, we care and with Glarus we found a place with an breathtaking scenery, great Internet connection and good train connection to Zürich.</p>\n\n<h2><br>\nWhy are we interested in attracting IT companies?</h2>\n\n<p>The valley of Glarus (aka "Glarnerland") is a rather small district with good connections. Glarus offers affordable home and office space, with its great scenery as a backdrop. As the valley is small enough in its size, it is perfect for nesting dots of co-working space in which IT companies can benefit from each other.</p>\n\n<h2>What happened until today</h2>\n\n<p>We had over 50+ (100+?) meetings with various people - from the presidents of the three townships (Glarus Süd, Glarus, Glarus Nord), to banks (various), to IT companies and entrepreneurs in Zürich, to local restaurants and cafes, to people on the street and guess what? All of them are intrigued by the idea of using the resources of Glarus to build Digital Glarus.</p>\n\n<h2><br>\nIs that all?</h2>\n\n<p>No, to be honest, we spared the biggest news until here: we searched and found a house in Glarus, or more exact in Schwanden, that will serve as the FIRST CO-WORKING SPACE in Glarus!</p>\n\n<p>Can you believe this? In only 3 months, we met so many interested parties ; coaches, teachers and IT companies! We have established contacts with them, as many of them share our enthusiasm for this project. Now we are taking this important step of starting the Co-Working Space!</p>\n\n<h2>What is next to come?</h2>\n\n<p>First we have to actually open the co-working space, at the moment we are still going through paperworks. After we clear that stage, we have to clean the actual house up, as there are tons of old stuffs left in the building - from a funky 60s fridge to (genuine) vintage furniture - it's all for our use.</p>\n\n<p>After we tidy things up, we hope to open the doors in November this year.We also plan to rent out some of the rooms to students.</p>\n\n<p>Of course, we probably need to invest some time and money into renovating the house, as it is well over 100 years old.</p>\n\n<p>We plan to start a Kickstarter project for this purpose soon.</p>\n\n<p>If you are interested in the Co-Working space or want to help us funding some part of the renovation via kickstarter, <img src="/static/cms/images/plugins/link.png" id="plugin_obj_101" title="Link - follow us on Twitter" alt="Link"> - we will keep you updated!</p>\n
191	<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\n\n<p>Email: <strong><a href="mailto:digitalglarus@ungleich.ch">info@digitalglarus.ch</a></strong></p>\n\n<p>Address:  <strong><span style="">In Der Au 7,  8762 Schwanden Switzerland</span></strong></p>\n\n<div class="clearfix"> </div>\n
532	<div class="row">\n<p class="col-md-12"><img class="img-responsive" src="/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png"></p>\n</div>\n\n<div class="row">\n<div class="col-md-12">\n<p> </p>\n\n<p> </p>\n\n<div class="col-lg-12 text-center">\n<hr class="tagline-divider">\n<h2>JAZZ IN DIGITAL CHALET</h2>\n\n<hr class="tagline-divider">\n<p> </p>\n</div>\n\n<p>Welcome to Digital Chalet Schwanden. </p>\n\n<p><span style="line-height: 1.6;">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\n\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\n\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\n\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\n\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\n\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div class="row">\n<h3 style="color: rgb(170, 170, 170); font-style: italic; text-align: center;" class="col-md-12"><img class="img-responsive" src="/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg"><small><img alt="Link" title="Link - Jazzband FivePastEight" src="/static/cms/images/plugins/link.png" id="plugin_obj_542"></small></h3>\n</div>\n\n<p> </p>\n\n<p> </p>\n\n<p> </p>\n\n<div style="float: left; margin: 10px;"><iframe src="//www.100-days.net/de/projekt/start-digital-glarus/widget/v2" class="center-block" height="330" width="220" frameborder="0" scrolling="no"></iframe></div>\n\n<p> </p>\n\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\n\n<p>You can find it on <img alt="Link" title="Link - 100-days.net/start-digital-glarus" src="/static/cms/images/plugins/link.png" id="plugin_obj_533"><a style="line-height: 1.6;" href="#">s.net/start-digital-glarus</a><span style="line-height: 1.6;"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\n\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\n\n<p>We <span style="line-height: 1.6;">are p</span><span style="line-height: 1.6;">leased to inv</span><span style="line-height: 1.6;">ite you on December 5 at the jazz conc</span><span style="line-height: 1.6;">ert!</span></p>\n\n<p>And one tip from us: RSVP on our <img alt="Link" title="Link - meetup" src="/static/cms/images/plugins/link.png" id="plugin_obj_544">, you get a free drink at the venue.</p>\n\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\n\n<p> </p>\n</div>\n</div>\n\n<div class="row">\n<p class="col-md-12"><img class="img-responsive" src="/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png"></p>\n</div>\n
610	<h3>PREISWERT</h3>\n
611	<h3>DIREKTE VERBINDUNGEN <small>NACH ZÃœRICH</small></h3>\n
103	<h2>Digital What?</h2>\n\n<p>Glarus. Glarus is a canton in Switzerland. Compared to most other cantons, it is rather small (685.4 km²). Switzerland, as you may know already, is a country in the middle of Europe : It is also pretty (and) small (41285 km², the 133rd largest country in the world) and it does not belong to the European Union.</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__1791x886_q85_crop_subsampling-2_upscale.png" id="plugin_obj_106" title="Image - glarus map.png" alt="Image"></p>\n\n<p>Even though the canton is small, Glarus has great train connections and very open-minded people. At the end of the valley you find two ski resorts "Braunwald" and "Elm" - your possibility to go skiing during an extended lunch break.</p>\n\n<h2>What is digital about Glarus?</h2>\n\n<p>Not much. To be honest, it is a valley in the middle of the Alps with beautiful scenery and only one main street.<br>\nThere are a lot of old (and abondoned!) factory halls and houses in Glarus, which can be great use for computer scientists who are in need of working space. To put it digital: Many people here either moved away or have never been here. In fact, the whole canton has less than 40 thousand people who are registered(39'800 by the end of 2014).</p>\n\n<h2><img src="/media/filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__800x531_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_107" title="Image - diesbach_01.jpg" alt="Image"></h2>\n\n<p style="text-align: right;"><small><img src="/static/cms/images/plugins/link.png" id="plugin_obj_110" title="Link - © r.wiedenmeier" alt="Link"></small></p>\n\n<h2><br>\nHow is ungleich related to Glarus?</h2>\n\n<p>We moved our headquarter from Zürich to the canton of Glarus (to be more exact: Luchsingen) in 2014. Our staffs didn't particularly prepare much for this big move, nor was it communicated to our customers in the first few months. What happened?</p>\n\n<p>Nothing.</p>\n\n<p>Nobody recognised that we moved. We work in a distributed team, we work (asynchronously) for our customers, and we coordinate 90% of our work through the Internet (splendid innovation the Internet, but <img src="/static/cms/images/plugins/link.png" id="plugin_obj_104" title="Link - be careful with it!" alt="Link">).</p>\n\n<h2><br>\nWhat are we trying to do?</h2>\n\n<p>Given that we, as a cutting edge IT company, moved away from Zürich without any noticable change to a valley of abandoned houses and a great Internet connection, we think other IT companies could benefit from moving as well.<br>\nSo we are building the base to allow other IT companies to move without much hassle. Our vision is to attract many IT companies to join us here - creating a large concentration of IT companies, like in Silicon Valley.</p>\n\n<h2><br>\nSo what exactly are we building?</h2>\n\n<p>Right now we started to build the first Co-Working Space in Glarus : meaning, while you are reading this manifesto, we are about<br>\nto sign the contract for the house that should serve as the first Co-Working Space. We do have some IT networking events already planned, it is just a question of time until we can open doors.</p>\n\n<p>Mid term, if the concept is successful, we plan to open more Co-Working Spaces, and to collaborate with local restaurants and Cafés. We plan to provide more accessible space to IT nomads and to enhance the (already great) Internet connection (HSPA/LTE is available, however there are not many fiber connections available at the moment).</p>\n\n<p>Long term, if the project survives, we plan to connect the co-working spaces with self driving electric cars, create locations that are suitable for work, life and entertainment.</p>\n\n<p>We do have many other ideas for the far future, therefore we want to gain some more experience with our first prototype.</p>\n\n<h2><br>\nIs this only for IT companies?</h2>\n\n<p>Yes and no. We are in IT business and have learnt over the years how IT companies work. Our experience is that it is not important to be in the biggest city, it is much more important to have a quiet office. And beautiful scenery. And fast Internet.</p>\n\n<p>Oh, the question was about non-IT companies. In theory, we would support them, however we do not have a lot of experience on how for instance a bakery could profit from moving to Digital Glarus (besides having a lot of hungry IT crowds as customers).</p>\n\n<h2><br>\nWhat comes next?</h2>\n\n<p>You! Join us! There are many opportunities, especially at this stage of the project, you can still form the idea and have influence on how the project develops.</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__600x429_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_109" title="Image - weneedyou.jpg" alt="Image"></p>\n\n<p>We are especially looking for early adopters and helping hands in marketing and communication - if you are interested in joining us, contact us via e-mail at join@digitalglarus.ch or <img src="/static/cms/images/plugins/link.png" id="plugin_obj_105" title="Link - via Twitter" alt="Link">.</p>\n\n<p>Thanks for reading!</p>\n\n<p> </p>\n
710	<p><img src="/media/filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__800x252_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_711" title="Image - opencloudday.png" alt="Image - opencloudday.png"></p>\n\n<p>This gigant workshop, featuring OpenNebula, Openstack and Cloudstack technologies is happening this Tuesday, 16th of June 2015 in Bern at the Open Cloud Day.</p>\n\n<p>The first time in Switzerland (and maybe world wide) for a friendly meeting of cloud provider experts.</p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__690x389_q85_crop_subsampling-2_upscale.jpg" id="plugin_obj_713" title="Image - bernbanner.jpg" alt="Image - bernbanner.jpg"></p>\n\n<p>Participants will learn what are the possibilities and advantages of every system and have the opportunity to discuss with the experts in the evening.</p>\n\n<p> </p>\n\n<p><img src="/media/filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__800x288_q85_crop_subsampling-2_upscale.png" id="plugin_obj_712" title="Image - opennebulareferene.png" alt="Image - opennebulareferene.png"></p>\n\n<p>Nico Schottelius, CEO of <a href="http://www.ungleich.ch/">ungleich GmbH</a> (Linux infrastructure &amp; application hosting company based in Switzerland) will give an advanced workshop on cloud management with OpenNebula for DevOps.</p>\n\n<p>Schottelius, the author of the innovative configuration management system "cdist", is a judge of the Open Source Awards in Switzerland.</p>\n\n<p>Schottelius also teaches computer science at the university of applied sciences ZHAW.</p>\n
\.


--
-- Data for Name: easy_thumbnails_source; Type: TABLE DATA; Schema: public; Owner: app
--

COPY easy_thumbnails_source (id, storage_hash, name, modified) FROM stdin;
10	f9bde26a1556cd667f742bd34ec7c55e	filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg	2015-06-16 21:08:33.057565+00
8	f9bde26a1556cd667f742bd34ec7c55e	filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg	2015-06-16 21:08:33.676714+00
7	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png	2015-06-16 21:08:34.082247+00
9	f9bde26a1556cd667f742bd34ec7c55e	filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png	2015-06-16 21:08:34.345178+00
15	f9bde26a1556cd667f742bd34ec7c55e	filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg	2015-06-14 03:17:43.181808+00
16	f9bde26a1556cd667f742bd34ec7c55e	filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png	2015-06-14 04:43:08.873186+00
13	f9bde26a1556cd667f742bd34ec7c55e	filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png	2015-06-14 04:44:02.157155+00
11	f9bde26a1556cd667f742bd34ec7c55e	filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png	2015-06-14 04:44:16.219661+00
12	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg	2015-06-14 04:44:29.787597+00
17	f9bde26a1556cd667f742bd34ec7c55e	filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg	2015-06-14 04:48:14.739396+00
24	f9bde26a1556cd667f742bd34ec7c55e	filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg	2015-06-16 21:16:30.897336+00
25	f9bde26a1556cd667f742bd34ec7c55e	filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg	2015-06-16 21:17:32.788986+00
20	f9bde26a1556cd667f742bd34ec7c55e	filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg	2015-06-15 20:12:08.451327+00
19	f9bde26a1556cd667f742bd34ec7c55e	filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png	2015-06-15 20:12:50.7233+00
21	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png	2015-06-15 20:13:15.88796+00
26	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg	2015-06-16 21:18:24.302032+00
22	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg	2015-06-15 20:24:12.559653+00
18	f9bde26a1556cd667f742bd34ec7c55e	filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg	2015-06-16 21:06:55.484897+00
33	f9bde26a1556cd667f742bd34ec7c55e	filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg	2015-09-26 23:10:14.933751+00
27	f9bde26a1556cd667f742bd34ec7c55e	filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg	2015-06-16 21:19:41.524273+00
28	f9bde26a1556cd667f742bd34ec7c55e	filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg	2015-06-16 21:21:05.259349+00
35	f9bde26a1556cd667f742bd34ec7c55e	filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png	2015-08-09 20:38:45.75561+00
36	f9bde26a1556cd667f742bd34ec7c55e	filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png	2015-08-09 20:39:14.549353+00
29	f9bde26a1556cd667f742bd34ec7c55e	filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg	2015-06-22 19:51:39.830479+00
30	f9bde26a1556cd667f742bd34ec7c55e	filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg	2015-06-22 21:20:52.87245+00
31	f9bde26a1556cd667f742bd34ec7c55e	filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg	2015-06-22 21:28:28.785194+00
47	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg	2015-12-28 22:23:49.572485+00
32	f9bde26a1556cd667f742bd34ec7c55e	filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg	2015-09-26 23:11:08.408344+00
34	f9bde26a1556cd667f742bd34ec7c55e	filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png	2015-08-09 20:30:14.228755+00
37	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg	2015-08-09 20:43:04.092286+00
38	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg	2015-08-09 20:45:56.194022+00
42	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png	2015-08-14 23:25:08.199217+00
39	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png	2015-08-14 23:12:24.268967+00
43	f9bde26a1556cd667f742bd34ec7c55e	filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png	2015-08-14 23:28:26.642901+00
51	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg	2015-08-28 22:26:47.798423+00
44	f9bde26a1556cd667f742bd34ec7c55e	filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png	2015-08-14 23:28:58.043253+00
48	f9bde26a1556cd667f742bd34ec7c55e	filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png	2015-08-28 16:09:57.087338+00
45	f9bde26a1556cd667f742bd34ec7c55e	filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png	2015-08-14 23:31:55.850588+00
46	f9bde26a1556cd667f742bd34ec7c55e	filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg	2015-08-28 15:49:55.069814+00
49	f9bde26a1556cd667f742bd34ec7c55e	filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg	2015-08-28 16:58:13.769907+00
52	f9bde26a1556cd667f742bd34ec7c55e	filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg	2015-08-28 23:40:37.471404+00
55	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png	2015-09-02 10:14:03.371631+00
54	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png	2015-08-29 13:39:38.596869+00
56	f9bde26a1556cd667f742bd34ec7c55e	filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png	2015-09-02 10:15:15.202264+00
57	f9bde26a1556cd667f742bd34ec7c55e	filer_public/19/28/192891d9-6161-483c-9b52-c53c3c63cbbb/glarnerwoche-2015-09-02.pdf	2015-09-02 12:26:57.406809+00
58	f9bde26a1556cd667f742bd34ec7c55e	filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png	2015-09-02 12:54:01.00061+00
53	f9bde26a1556cd667f742bd34ec7c55e	filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png	2015-09-26 23:10:14.348214+00
61	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg	2015-09-02 13:56:01.333676+00
62	f9bde26a1556cd667f742bd34ec7c55e	filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png	2015-09-02 13:57:45.743437+00
63	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png	2015-09-17 19:30:11.128938+00
59	f9bde26a1556cd667f742bd34ec7c55e	filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png	2015-09-26 23:10:14.133953+00
81	f9bde26a1556cd667f742bd34ec7c55e	filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png	2015-11-03 18:27:10.833783+00
68	f9bde26a1556cd667f742bd34ec7c55e	filer_public/45/89/4589a5e7-6df8-4dde-885c-0033ef7e80ba/breakfast_coffee	2015-09-17 19:46:16.478856+00
69	f9bde26a1556cd667f742bd34ec7c55e	filer_public/86/d1/86d18426-6967-4877-bf73-683fbb4273b7/breakfast_coffee	2015-09-17 19:47:05.895529+00
92	f9bde26a1556cd667f742bd34ec7c55e	filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg	2015-10-27 13:41:18.328183+00
71	f9bde26a1556cd667f742bd34ec7c55e	filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg	2015-09-26 23:10:13.110549+00
79	f9bde26a1556cd667f742bd34ec7c55e	filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg	2015-11-09 15:32:37.98374+00
82	f9bde26a1556cd667f742bd34ec7c55e	filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png	2015-11-03 18:26:02.794081+00
75	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg	2015-09-30 04:16:32.821374+00
74	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png	2015-09-24 15:10:22.968976+00
76	f9bde26a1556cd667f742bd34ec7c55e	filer_public/29/cf/29cf9568-7260-42be-b44f-208a0bc12d72/radio-central-digitalglarus-crowdfunding-2015-09-23.mp3	2015-09-24 15:31:39.064217+00
86	f9bde26a1556cd667f742bd34ec7c55e	filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg	2015-11-03 19:06:25.345705+00
84	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg	2015-10-27 12:44:06.310184+00
118	f9bde26a1556cd667f742bd34ec7c55e	filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg	2015-11-21 17:36:57.330878+00
85	f9bde26a1556cd667f742bd34ec7c55e	filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg	2015-10-27 13:15:37.883698+00
80	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png	2015-11-03 18:27:12.79754+00
83	f9bde26a1556cd667f742bd34ec7c55e	filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png	2015-11-03 18:27:07.512669+00
99	f9bde26a1556cd667f742bd34ec7c55e	filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg	2015-10-27 14:41:24.144946+00
117	f9bde26a1556cd667f742bd34ec7c55e	filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png	2015-11-03 19:06:43.184011+00
72	f9bde26a1556cd667f742bd34ec7c55e	filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png	2015-09-25 14:57:01.644794+00
87	f9bde26a1556cd667f742bd34ec7c55e	filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg	2015-10-27 13:20:21.212035+00
96	f9bde26a1556cd667f742bd34ec7c55e	filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg	2015-10-27 14:12:13.147484+00
89	f9bde26a1556cd667f742bd34ec7c55e	filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg	2015-10-27 13:24:59.795802+00
88	f9bde26a1556cd667f742bd34ec7c55e	filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg	2015-10-27 13:25:37.070174+00
93	f9bde26a1556cd667f742bd34ec7c55e	filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg	2015-10-27 14:12:30.000056+00
94	f9bde26a1556cd667f742bd34ec7c55e	filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg	2015-10-27 14:15:02.167901+00
90	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg	2015-10-27 13:35:30.907284+00
91	f9bde26a1556cd667f742bd34ec7c55e	filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg	2015-10-27 13:37:43.364847+00
95	f9bde26a1556cd667f742bd34ec7c55e	filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg	2015-10-27 14:16:54.352248+00
104	f9bde26a1556cd667f742bd34ec7c55e	filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png	2015-11-03 10:17:25.088826+00
97	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg	2015-10-27 14:20:28.979649+00
100	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg	2015-10-27 16:26:05.884752+00
98	f9bde26a1556cd667f742bd34ec7c55e	filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg	2015-10-27 14:26:40.664593+00
101	f9bde26a1556cd667f742bd34ec7c55e	filer_public/6a/90/6a90c3c6-2553-449c-bb2b-ae29e9e1c233/ungleich_logo.svg	2015-11-03 10:12:48.270532+00
102	f9bde26a1556cd667f742bd34ec7c55e	filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png	2015-11-03 10:15:27.539052+00
107	f9bde26a1556cd667f742bd34ec7c55e	filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg	2015-11-03 10:58:35.748062+00
103	f9bde26a1556cd667f742bd34ec7c55e	filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png	2015-11-03 10:16:24.623519+00
105	f9bde26a1556cd667f742bd34ec7c55e	filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png	2015-11-03 10:31:30.96769+00
106	f9bde26a1556cd667f742bd34ec7c55e	filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png	2015-11-03 10:32:04.199738+00
108	f9bde26a1556cd667f742bd34ec7c55e	filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg	2015-11-03 11:06:13.970554+00
78	f9bde26a1556cd667f742bd34ec7c55e	filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg	2015-11-03 19:05:25.693259+00
115	f9bde26a1556cd667f742bd34ec7c55e	filer_public/40/0d/400d5643-2d94-4fb2-a991-8b08c96b8a0a/digitalglarus_scenery_jpg	2015-11-03 13:45:08.562246+00
110	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg	2015-11-04 21:25:07.410152+00
73	f9bde26a1556cd667f742bd34ec7c55e	filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png	2015-11-03 18:25:51.959692+00
119	f9bde26a1556cd667f742bd34ec7c55e	filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png	2015-11-08 20:41:55.882847+00
120	f9bde26a1556cd667f742bd34ec7c55e	filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg	2015-11-08 21:09:07.192925+00
70	f9bde26a1556cd667f742bd34ec7c55e	filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png	2015-11-09 15:29:29.380602+00
121	f9bde26a1556cd667f742bd34ec7c55e	filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png	2015-11-08 21:45:12.975064+00
122	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png	2015-11-08 21:46:03.57678+00
137	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg	2015-11-09 16:26:10.242834+00
123	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg	2015-11-08 21:46:56.160145+00
124	f9bde26a1556cd667f742bd34ec7c55e	filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg	2015-11-08 21:47:50.535527+00
148	f9bde26a1556cd667f742bd34ec7c55e	filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg	2015-11-09 18:18:32.226276+00
138	f9bde26a1556cd667f742bd34ec7c55e	filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg	2015-11-09 16:29:34.282318+00
125	f9bde26a1556cd667f742bd34ec7c55e	filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg	2015-11-09 15:30:29.57166+00
126	f9bde26a1556cd667f742bd34ec7c55e	filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg	2015-11-09 15:30:32.903764+00
127	f9bde26a1556cd667f742bd34ec7c55e	filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png	2015-11-09 15:58:02.031368+00
139	f9bde26a1556cd667f742bd34ec7c55e	filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg	2015-11-09 17:54:53.612616+00
129	f9bde26a1556cd667f742bd34ec7c55e	filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg	2015-11-09 15:59:36.205544+00
130	f9bde26a1556cd667f742bd34ec7c55e	filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg	2015-11-09 16:01:23.814557+00
131	f9bde26a1556cd667f742bd34ec7c55e	filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg	2015-11-09 16:05:03.636224+00
140	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg	2015-11-09 17:57:43.459503+00
133	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png	2015-11-09 16:11:09.591333+00
136	f9bde26a1556cd667f742bd34ec7c55e	filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg	2015-11-09 16:17:58.747413+00
149	f9bde26a1556cd667f742bd34ec7c55e	filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png	2015-11-09 18:20:16.1057+00
141	f9bde26a1556cd667f742bd34ec7c55e	filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg	2015-11-09 17:58:39.134986+00
142	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg	2015-11-09 18:03:26.500151+00
143	f9bde26a1556cd667f742bd34ec7c55e	filer_public/62/91/6291774f-e59c-44cf-8880-704ea08c7a28/ungleich_logo.svg	2015-11-09 18:06:14.504976+00
144	f9bde26a1556cd667f742bd34ec7c55e	filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png	2015-11-09 18:07:01.691161+00
156	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png	2015-11-15 14:56:43.657547+00
150	f9bde26a1556cd667f742bd34ec7c55e	filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg	2015-11-09 18:57:30.816417+00
151	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg	2015-11-13 23:30:53.925425+00
147	f9bde26a1556cd667f742bd34ec7c55e	filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png	2015-11-09 18:16:57.29848+00
166	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg	2015-12-07 14:02:37.036058+00
163	f9bde26a1556cd667f742bd34ec7c55e	filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg	2015-12-07 14:00:49.578945+00
159	f9bde26a1556cd667f742bd34ec7c55e	filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg	2015-11-25 19:36:08.887833+00
154	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg	2015-11-15 14:51:54.840018+00
155	f9bde26a1556cd667f742bd34ec7c55e	filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg	2015-11-15 14:54:30.293224+00
157	f9bde26a1556cd667f742bd34ec7c55e	filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png	2015-11-21 17:32:38.814091+00
152	f9bde26a1556cd667f742bd34ec7c55e	filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg	2015-11-21 17:34:58.202726+00
160	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png	2015-11-25 19:48:31.490861+00
158	f9bde26a1556cd667f742bd34ec7c55e	filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png	2015-11-25 07:03:39.993201+00
161	f9bde26a1556cd667f742bd34ec7c55e	filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg	2015-12-07 13:32:11.509172+00
128	f9bde26a1556cd667f742bd34ec7c55e	filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png	2016-01-06 13:48:37.462543+00
165	f9bde26a1556cd667f742bd34ec7c55e	filer_public/28/00/28007b1f-af48-4a29-9684-79c2dcd4b041/digitalglarus_jazz_concert_coupons	2015-12-07 14:01:57.698239+00
167	f9bde26a1556cd667f742bd34ec7c55e	filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg	2015-12-07 14:03:39.27182+00
168	f9bde26a1556cd667f742bd34ec7c55e	filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg	2015-12-07 14:04:34.536865+00
169	f9bde26a1556cd667f742bd34ec7c55e	filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg	2015-12-07 14:14:42.492825+00
170	f9bde26a1556cd667f742bd34ec7c55e	filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg	2015-12-07 14:22:10.013294+00
171	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg	2015-12-07 14:30:41.945018+00
172	f9bde26a1556cd667f742bd34ec7c55e	filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg	2015-12-07 14:31:12.640635+00
162	f9bde26a1556cd667f742bd34ec7c55e	filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg	2015-12-07 16:29:46.596592+00
173	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg	2015-12-07 15:44:05.9612+00
183	f9bde26a1556cd667f742bd34ec7c55e	filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png	2016-01-13 21:46:40.567522+00
174	f9bde26a1556cd667f742bd34ec7c55e	filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg	2015-12-07 15:54:35.152493+00
184	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png	2016-01-13 21:47:00.838274+00
176	f9bde26a1556cd667f742bd34ec7c55e	filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg	2015-12-07 16:07:55.964201+00
178	f9bde26a1556cd667f742bd34ec7c55e	filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg	2016-01-06 14:01:44.132743+00
181	f9bde26a1556cd667f742bd34ec7c55e	filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg	2016-01-14 16:05:52.551052+00
190	f9bde26a1556cd667f742bd34ec7c55e	filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg	2016-01-15 15:32:11.72767+00
191	f9bde26a1556cd667f742bd34ec7c55e	filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png	2016-01-15 15:33:02.702542+00
188	f9bde26a1556cd667f742bd34ec7c55e	filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png	2016-01-15 15:38:29.246794+00
185	f9bde26a1556cd667f742bd34ec7c55e	filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg	2016-01-06 18:06:31.242877+00
189	f9bde26a1556cd667f742bd34ec7c55e	filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png	2016-01-28 17:05:52.912692+00
187	f9bde26a1556cd667f742bd34ec7c55e	filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg	2016-01-08 10:32:25.929231+00
186	f9bde26a1556cd667f742bd34ec7c55e	filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png	2016-01-13 21:40:42.939214+00
179	f9bde26a1556cd667f742bd34ec7c55e	filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg	2016-01-13 21:43:10.838663+00
\.


--
-- Name: easy_thumbnails_source_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('easy_thumbnails_source_id_seq', 191, true);


--
-- Data for Name: easy_thumbnails_thumbnail; Type: TABLE DATA; Schema: public; Owner: app
--

COPY easy_thumbnails_thumbnail (id, storage_hash, name, modified, source_id) FROM stdin;
1	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:43.961325+00	11
2	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:44.023362+00	11
3	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:44.079781+00	11
4	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:44.139663+00	11
5	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.152985+00	12
6	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.220742+00	12
7	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.288801+00	12
8	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.353659+00	12
9	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.561718+00	13
10	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.612733+00	13
11	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.670574+00	13
12	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:10:46.719497+00	13
17	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:17:43.27573+00	15
18	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:17:43.393008+00	15
19	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:17:43.508375+00	15
20	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 03:17:43.623966+00	15
21	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:43:01.171023+00	16
22	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:43:01.31511+00	16
23	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:43:01.49873+00	16
24	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:43:01.6384+00	16
25	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png__736x423_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:43:09.044936+00	16
26	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png__800x159_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:44:02.317213+00	13
27	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png__800x159_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:44:16.300511+00	11
28	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg__935x514_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:44:29.86618+00	12
29	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:48:14.835315+00	17
30	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:48:15.066752+00	17
31	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:48:15.303436+00	17
32	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:48:15.49941+00	17
33	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:55:52.356094+00	18
34	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:55:52.425013+00	18
35	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:55:52.488416+00	18
36	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 04:55:52.556872+00	18
37	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:25:46.25435+00	19
38	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:25:46.309709+00	19
39	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:25:46.358701+00	19
40	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:25:46.408904+00	19
41	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:27:15.654185+00	20
42	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:27:15.720538+00	20
43	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:27:15.782946+00	20
44	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-14 21:27:15.850812+00	20
45	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__64x64_q85_crop_subsampling-2_upscale.png	2015-06-14 21:27:31.292214+00	21
46	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__48x48_q85_crop_subsampling-2_upscale.png	2015-06-14 21:27:31.354218+00	21
47	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__16x16_q85_crop_subsampling-2_upscale.png	2015-06-14 21:27:31.411128+00	21
48	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__32x32_q85_crop_subsampling-2_upscale.png	2015-06-14 21:27:31.470584+00	21
49	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__210x10000_q85_subsampling-2.jpg	2015-06-14 21:28:13.298951+00	19
50	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__210x10000_q85_subsampling-2.jpg	2015-06-15 20:11:09.388276+00	20
51	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg__960x641_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:12:08.590677+00	20
52	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png__800x252_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:12:50.767564+00	19
53	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__210x10000_q85_subsampling-2.png	2015-06-15 20:13:05.526767+00	21
54	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png__800x288_q85_crop_subsampling-2_upscale.png	2015-06-15 20:13:15.930445+00	21
55	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:24:05.357088+00	22
56	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:24:05.415309+00	22
57	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:24:05.472846+00	22
58	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:24:05.531672+00	22
59	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg__690x389_q85_crop_subsampling-2_upscale.jpg	2015-06-15 20:24:12.607442+00	22
64	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg__210x10000_q85_subsampling-2.jpg	2015-06-16 21:06:55.601461+00	18
65	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.111065+00	10
66	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.2118+00	10
67	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.319165+00	10
68	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.573659+00	10
69	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.728271+00	8
70	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.789503+00	8
71	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.848783+00	8
72	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:33.990015+00	8
73	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.125277+00	7
74	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.17716+00	7
75	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.228274+00	7
76	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.283648+00	7
77	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.389678+00	9
78	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.438894+00	9
79	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.493014+00	9
80	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:08:34.606158+00	9
81	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:16:23.042746+00	24
82	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:16:23.150794+00	24
83	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:16:23.296046+00	24
84	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:16:23.390157+00	24
85	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg__1333x944_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:16:30.989038+00	24
86	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:17:26.757978+00	25
87	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:17:26.83992+00	25
88	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:17:26.96659+00	25
89	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:17:27.082646+00	25
90	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg__1323x963_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:17:32.833987+00	25
91	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:18:17.443333+00	26
92	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:18:17.52545+00	26
93	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:18:17.610127+00	26
94	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:18:17.69473+00	26
95	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg__1419x741_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:18:24.347333+00	26
96	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:19:06.540844+00	27
97	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:19:06.627898+00	27
98	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:19:06.715347+00	27
99	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:19:06.809056+00	27
100	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg__1074x805_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:19:41.605519+00	27
101	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:21:05.30086+00	28
102	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:21:05.402203+00	28
103	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:21:05.504426+00	28
104	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-16 21:21:05.609315+00	28
105	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:34.873265+00	29
106	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:35.035657+00	29
107	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:35.183649+00	29
108	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:35.291145+00	29
109	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:55.716104+00	30
110	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:55.830007+00	30
111	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:55.95397+00	30
112	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:54:56.065427+00	30
113	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:55:53.935068+00	31
114	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:55:54.067736+00	31
115	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:55:54.190421+00	31
116	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-06-22 13:55:54.311992+00	31
117	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg__1200x900_q85_crop_subsampling-2_upscale.jpg	2015-06-22 19:51:39.946491+00	29
118	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg__1200x900_q85_crop_subsampling-2_upscale.jpg	2015-06-22 21:20:52.922031+00	30
119	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg__1200x914_q85_crop_subsampling-2_upscale.jpg	2015-06-22 21:28:28.832968+00	31
120	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-07-20 19:15:00.018825+00	32
121	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-07-20 19:15:00.152683+00	32
122	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-07-20 19:15:00.251685+00	32
123	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-07-20 19:15:00.333203+00	32
124	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-07-26 22:38:02.818644+00	33
125	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-07-26 22:38:03.03443+00	33
126	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-07-26 22:38:03.355143+00	33
127	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-07-26 22:38:03.580138+00	33
128	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:29:58.99141+00	34
129	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:29:59.111519+00	34
130	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:29:59.195456+00	34
131	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:29:59.27732+00	34
132	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png__1800x900_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:30:14.275581+00	34
133	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:28.544015+00	35
134	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:28.635614+00	35
135	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:28.68936+00	35
136	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:28.746514+00	35
137	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:30.621575+00	36
138	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:30.681813+00	36
139	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:30.740621+00	36
140	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:30.797929+00	36
141	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png__690x389_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:38:45.804991+00	35
142	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png__690x356_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:39:14.588384+00	36
143	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:42:58.313358+00	37
144	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:42:58.447639+00	37
145	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:42:58.498768+00	37
146	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:42:58.61445+00	37
147	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg__500x333_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:43:04.130622+00	37
148	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:45:49.476405+00	38
149	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:45:49.637722+00	38
150	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:45:49.761531+00	38
151	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:45:49.878456+00	38
152	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg__950x680_q85_crop_subsampling-2_upscale.jpg	2015-08-09 20:45:56.236667+00	38
153	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:07:38.90187+00	39
154	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:07:39.004754+00	39
155	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:07:39.073056+00	39
156	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:07:39.145761+00	39
157	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__1280x711_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:07:45.946582+00	39
158	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png__210x10000_q85_subsampling-2.jpg	2015-08-14 23:12:24.334673+00	39
172	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:25:01.885315+00	42
173	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:25:01.951902+00	42
174	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:25:02.019219+00	42
175	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:25:02.084743+00	42
176	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png__1280x602_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:25:08.236745+00	42
177	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:26.683673+00	43
178	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:26.741965+00	43
179	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:26.863597+00	43
180	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:26.937438+00	43
181	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:51.80082+00	44
182	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:51.898035+00	44
183	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:51.948474+00	44
184	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:51.997196+00	44
185	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png__690x389_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:28:58.081347+00	44
186	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:31:51.147835+00	45
187	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:31:51.215487+00	45
188	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:31:51.283038+00	45
189	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:31:51.348765+00	45
190	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png__1200x740_q85_crop_subsampling-2_upscale.jpg	2015-08-14 23:31:55.889759+00	45
191	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-24 22:12:52.073211+00	46
192	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-24 22:12:52.431389+00	46
193	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-24 22:12:52.633863+00	46
194	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-24 22:12:52.807555+00	46
195	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/82/42/8242b203-5dc5-4b26-9c8f-1c6b191b7c73/steam-train-small.jpg__210x10000_q85_subsampling-2.jpg	2015-08-28 15:49:55.286005+00	46
196	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-28 15:50:20.532217+00	47
197	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-28 15:50:20.696569+00	47
198	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-28 15:50:20.882138+00	47
199	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-28 15:50:21.027999+00	47
200	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__16x16_q85_crop_subsampling-2_upscale.png	2015-08-28 16:09:51.352997+00	48
201	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__32x32_q85_crop_subsampling-2_upscale.png	2015-08-28 16:09:51.455651+00	48
202	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__64x64_q85_crop_subsampling-2_upscale.png	2015-08-28 16:09:51.535494+00	48
203	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__48x48_q85_crop_subsampling-2_upscale.png	2015-08-28 16:09:51.658886+00	48
204	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png__896x443_q85_crop_subsampling-2_upscale.png	2015-08-28 16:09:57.128726+00	48
205	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-28 16:57:26.989368+00	49
206	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-28 16:57:27.053022+00	49
207	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-28 16:57:27.119355+00	49
208	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-28 16:57:27.186796+00	49
209	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg__800x531_q85_crop_subsampling-2_upscale.jpg	2015-08-28 16:58:13.814734+00	49
214	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-28 22:26:38.988543+00	51
215	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-28 22:26:39.057853+00	51
216	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-28 22:26:39.116755+00	51
217	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-28 22:26:39.17481+00	51
218	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg__600x429_q85_crop_subsampling-2_upscale.jpg	2015-08-28 22:26:47.838828+00	51
219	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:40:37.590895+00	52
220	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:40:38.618842+00	52
221	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:40:39.567302+00	52
222	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:40:40.535663+00	52
223	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:43:26.325488+00	53
224	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:43:26.43663+00	53
225	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:43:26.580183+00	53
226	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-08-28 23:43:26.685397+00	53
227	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__16x16_q85_crop_subsampling-2_upscale.png	2015-08-29 13:39:32.131821+00	54
228	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__32x32_q85_crop_subsampling-2_upscale.png	2015-08-29 13:39:32.340129+00	54
229	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__64x64_q85_crop_subsampling-2_upscale.png	2015-08-29 13:39:32.484097+00	54
230	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__48x48_q85_crop_subsampling-2_upscale.png	2015-08-29 13:39:32.665533+00	54
231	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png__1791x886_q85_crop_subsampling-2_upscale.png	2015-08-29 13:39:38.674184+00	54
232	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:14:03.419068+00	55
233	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:14:03.564818+00	55
234	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:14:03.708255+00	55
235	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:14:03.856854+00	55
236	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:15:09.144915+00	56
237	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:15:09.242024+00	56
238	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:15:09.320546+00	56
239	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:15:09.387131+00	56
240	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png__1011x792_q85_crop_subsampling-2_upscale.jpg	2015-09-02 10:15:15.245245+00	56
241	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-02 12:54:01.053331+00	58
242	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-02 12:54:01.20104+00	58
243	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-02 12:54:01.278334+00	58
244	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-02 12:54:01.35247+00	58
245	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:46:01.159959+00	59
246	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:46:01.245219+00	59
247	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:46:01.356407+00	59
248	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:46:01.422652+00	59
253	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:56:01.391372+00	61
254	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:56:01.46926+00	61
255	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:56:01.553898+00	61
256	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:56:01.636733+00	61
257	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:57:36.667386+00	62
258	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:57:36.724361+00	62
259	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:57:36.775194+00	62
260	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:57:36.824808+00	62
261	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png__800x159_q85_crop_subsampling-2_upscale.jpg	2015-09-02 13:57:45.817646+00	62
262	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__48x48_q85_crop_subsampling-2_upscale.png	2015-09-17 19:17:54.172893+00	63
263	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__32x32_q85_crop_subsampling-2_upscale.png	2015-09-17 19:17:54.364746+00	63
264	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__64x64_q85_crop_subsampling-2_upscale.png	2015-09-17 19:17:54.498265+00	63
265	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__16x16_q85_crop_subsampling-2_upscale.png	2015-09-17 19:17:54.624763+00	63
266	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__859x1320_q85_crop_subsampling-2_upscale.png	2015-09-17 19:18:13.99836+00	63
267	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png__210x10000_q85_subsampling-2.png	2015-09-17 19:30:11.190303+00	63
276	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-17 19:47:55.534943+00	70
277	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-17 19:47:55.699711+00	70
278	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-17 19:47:55.806207+00	70
279	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-17 19:47:55.959314+00	70
280	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:00:49.273932+00	71
281	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:00:49.37246+00	71
282	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:00:49.430623+00	71
283	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:00:49.488404+00	71
284	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:10:45.538413+00	72
285	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:10:45.71737+00	72
286	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:10:45.848778+00	72
287	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:10:45.97033+00	72
288	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__2204x1482_q85_crop_subsampling-2_upscale.jpg	2015-09-24 14:11:19.448821+00	72
289	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__16x16_q85_crop_subsampling-2_upscale.png	2015-09-24 14:15:34.926662+00	73
290	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__48x48_q85_crop_subsampling-2_upscale.png	2015-09-24 14:15:34.990617+00	73
291	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__64x64_q85_crop_subsampling-2_upscale.png	2015-09-24 14:15:35.074888+00	73
292	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__32x32_q85_crop_subsampling-2_upscale.png	2015-09-24 14:15:35.130971+00	73
293	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__1062x274_q85_crop_subsampling-2_upscale.png	2015-09-24 14:15:40.377748+00	73
294	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__16x16_q85_crop_subsampling-2_upscale.png	2015-09-24 15:09:48.505906+00	74
295	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__48x48_q85_crop_subsampling-2_upscale.png	2015-09-24 15:09:48.658255+00	74
296	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__64x64_q85_crop_subsampling-2_upscale.png	2015-09-24 15:09:48.742427+00	74
297	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__32x32_q85_crop_subsampling-2_upscale.png	2015-09-24 15:09:48.823275+00	74
298	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-24 15:10:00.914278+00	75
299	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-24 15:10:01.039688+00	75
300	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-24 15:10:01.153399+00	75
301	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-24 15:10:01.255094+00	75
302	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png__1327x603_q85_crop_subsampling-2_upscale.png	2015-09-24 15:10:23.055323+00	74
303	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__1600x844_q85_crop_subsampling-2_upscale.jpg	2015-09-24 15:11:10.784443+00	75
308	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:08:32.8826+00	78
309	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:08:33.006211+00	78
310	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:08:33.114802+00	78
311	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:08:33.184872+00	78
312	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:11:37.937715+00	79
313	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:11:38.291259+00	79
314	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:11:38.699557+00	79
315	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:11:38.987386+00	79
316	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__3456x2056_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:11:46.648075+00	79
317	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:25:44.552787+00	80
318	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:25:44.824066+00	80
319	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:25:45.093988+00	80
320	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:25:45.356858+00	80
321	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__3648x2056_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:25:51.337892+00	80
322	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:29:31.898674+00	81
323	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:29:32.151463+00	81
324	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:29:32.397025+00	81
325	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:29:32.696828+00	81
326	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__3648x2056_q85_crop_subsampling-2_upscale.jpg	2015-09-25 13:29:57.057641+00	81
327	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:06:34.404912+00	82
328	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:06:34.699186+00	82
329	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:06:35.010195+00	82
330	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:06:35.362333+00	82
331	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__3256x3059_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:06:51.094017+00	82
332	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:25:34.60776+00	83
333	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:25:34.886806+00	83
334	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:25:35.11886+00	83
335	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:25:35.344187+00	83
336	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__800x537_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:56:45.076049+00	72
337	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__700x470_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:56:53.867379+00	72
338	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png__600x403_q85_crop_subsampling-2_upscale.jpg	2015-09-25 14:57:01.73719+00	72
339	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:08:06.744451+00	83
340	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:10:13.524533+00	71
341	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:10:14.047875+00	70
342	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:10:14.192669+00	59
343	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:10:14.455241+00	53
344	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:10:14.722836+00	47
345	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:10:15.018314+00	33
346	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg__640x120_q85_crop_subsampling-2.jpg	2015-09-26 23:11:08.600535+00	32
347	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__200x250_q85_crop_subsampling-2_upscale.jpg	2015-09-30 04:12:09.228309+00	75
348	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__250x250_q85_crop_subsampling-2_upscale.jpg	2015-09-30 04:12:19.75141+00	75
349	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg__100x100_q85_crop_subsampling-2_upscale.jpg	2015-09-30 04:16:32.867651+00	75
350	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 12:44:06.385705+00	84
351	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 12:44:06.663819+00	84
352	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 12:44:06.800154+00	84
353	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 12:44:06.941304+00	84
354	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:15:37.922593+00	85
355	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:15:38.239154+00	85
356	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:15:38.533864+00	85
357	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:15:38.880282+00	85
358	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:16:16.998027+00	86
359	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:16:17.171333+00	86
360	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:16:17.278357+00	86
361	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:16:17.390674+00	86
362	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:16:23.649421+00	86
363	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:20:16.196452+00	87
364	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:20:16.344832+00	87
365	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:20:16.506645+00	87
366	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:20:16.623715+00	87
367	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:20:21.256753+00	87
368	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:49.809013+00	88
369	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:49.932696+00	88
370	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:50.04485+00	88
371	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:50.154626+00	88
372	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:50.959037+00	89
373	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:51.128391+00	89
374	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:51.237024+00	89
375	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:51.343137+00	89
376	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg__1724x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:24:59.83465+00	89
377	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:25:37.109244+00	88
378	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:34:51.246895+00	90
379	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:34:51.391756+00	90
380	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:34:51.504324+00	90
381	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:34:51.620163+00	90
382	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:35:11.171822+00	91
383	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:35:11.304094+00	91
384	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:35:11.415943+00	91
385	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:35:11.582664+00	91
386	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg__1878x1056_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:35:30.949584+00	90
387	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:37:43.431371+00	91
388	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:41:12.451273+00	92
389	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:41:12.615083+00	92
390	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:41:12.742784+00	92
391	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:41:12.906063+00	92
392	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 13:41:18.36835+00	92
393	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:13.107519+00	93
394	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:13.234795+00	93
395	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:13.363189+00	93
396	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:13.470714+00	93
397	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:26.865434+00	94
398	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:26.981352+00	94
399	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:27.088324+00	94
400	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:27.198075+00	94
401	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:43.447161+00	95
402	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:43.560339+00	95
403	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:43.670586+00	95
404	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:11:43.782991+00	95
405	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:12:13.188625+00	96
406	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:12:13.310192+00	96
407	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:12:13.413112+00	96
408	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:12:13.515989+00	96
409	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg__1806x992_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:12:30.04245+00	93
410	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:15:02.211753+00	94
411	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg__1824x1028_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:16:54.395488+00	95
412	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:20:23.817955+00	97
413	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:20:23.933518+00	97
414	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:20:24.037316+00	97
415	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:20:24.148402+00	97
416	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg__1680x934_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:20:29.026522+00	97
417	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:26:35.334572+00	98
418	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:26:35.438778+00	98
419	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:26:35.543448+00	98
420	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:26:35.712918+00	98
421	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg__962x1650_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:26:40.792542+00	98
422	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:41:18.533022+00	99
423	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:41:18.724468+00	99
424	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:41:18.913212+00	99
425	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:41:19.126794+00	99
426	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg__2579x1648_q85_crop_subsampling-2_upscale.jpg	2015-10-27 14:41:24.199998+00	99
427	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-10-27 16:25:59.324678+00	100
428	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-10-27 16:25:59.482009+00	100
429	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-10-27 16:25:59.682124+00	100
430	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-10-27 16:25:59.914865+00	100
431	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg__1806x1496_q85_crop_subsampling-2_upscale.jpg	2015-10-27 16:26:05.92925+00	100
432	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-03 10:15:22.087712+00	102
433	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-03 10:15:22.297938+00	102
434	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-03 10:15:22.362966+00	102
435	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-03 10:15:22.432447+00	102
436	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/be/f7/bef7ba49-2261-4933-9ea8-33cf978d2dd3/ungleich_logo_black.png__210x10000_q85_subsampling-2.png	2015-11-03 10:15:27.617507+00	102
437	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-03 10:16:12.478121+00	103
438	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-03 10:16:12.664909+00	103
439	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-03 10:16:12.709574+00	103
440	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-03 10:16:12.752741+00	103
441	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png__210x10000_q85_subsampling-2.png	2015-11-03 10:16:24.703947+00	103
442	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-03 10:17:18.023267+00	104
443	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-03 10:17:18.139645+00	104
444	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-03 10:17:18.187124+00	104
445	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-03 10:17:18.235636+00	104
446	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png__210x10000_q85_subsampling-2.png	2015-11-03 10:17:25.181624+00	104
447	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-03 10:26:09.806968+00	105
448	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-03 10:26:09.923414+00	105
449	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-03 10:26:10.005201+00	105
450	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-03 10:26:10.092741+00	105
451	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-03 10:28:52.945025+00	106
452	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-03 10:28:53.004342+00	106
453	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-03 10:28:53.055042+00	106
454	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-03 10:28:53.117392+00	106
455	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png__210x10000_q85_subsampling-2.png	2015-11-03 10:31:31.039961+00	105
456	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png__210x10000_q85_subsampling-2.png	2015-11-03 10:32:04.290844+00	106
457	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-03 10:58:20.692819+00	107
458	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-03 10:58:21.351317+00	107
459	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-03 10:58:21.998096+00	107
460	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-03 10:58:22.6933+00	107
461	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg__210x10000_q85_subsampling-2.jpg	2015-11-03 10:58:35.802096+00	107
462	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:05:47.815857+00	108
463	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:05:47.941074+00	108
464	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:05:48.035305+00	108
465	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:05:48.16388+00	108
466	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg__210x10000_q85_subsampling-2.jpg	2015-11-03 11:06:14.026176+00	108
471	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:14:03.88573+00	110
472	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:14:03.994411+00	110
473	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:14:04.078887+00	110
474	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-03 11:14:04.226192+00	110
484	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-03 18:15:42.122421+00	117
485	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-03 18:15:42.210876+00	117
486	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-03 18:15:42.319047+00	117
487	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-03 18:15:42.406552+00	117
488	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png__210x10000_q85_subsampling-2.png	2015-11-03 18:25:52.003869+00	73
489	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png__210x10000_q85_subsampling-2.jpg	2015-11-03 18:26:02.853894+00	82
490	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png__210x10000_q85_subsampling-2.jpg	2015-11-03 18:27:07.650571+00	83
491	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png__210x10000_q85_subsampling-2.jpg	2015-11-03 18:27:10.883747+00	81
492	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png__210x10000_q85_subsampling-2.jpg	2015-11-03 18:27:12.858677+00	80
493	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__210x10000_q85_subsampling-2.jpg	2015-11-03 18:27:15.475463+00	110
494	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg__210x10000_q85_subsampling-2.jpg	2015-11-03 19:05:25.762433+00	78
495	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg__210x10000_q85_subsampling-2.jpg	2015-11-03 19:06:25.413901+00	86
496	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png__210x10000_q85_subsampling-2.jpg	2015-11-03 19:06:43.30665+00	117
497	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg__640x120_q85_crop_subsampling-2.jpg	2015-11-04 21:25:07.528995+00	110
498	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-08 20:38:27.863292+00	118
499	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-08 20:38:28.017382+00	118
500	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-08 20:38:28.109678+00	118
501	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-08 20:38:28.203044+00	118
502	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-08 20:41:47.934766+00	119
503	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-08 20:41:48.132444+00	119
504	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-08 20:41:48.359335+00	119
505	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-08 20:41:48.554628+00	119
506	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__1824x1028_q85_crop_subsampling-2_upscale.png	2015-11-08 20:41:55.959281+00	119
507	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:09:00.12113+00	120
508	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:09:00.187417+00	120
509	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:09:00.243655+00	120
510	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:09:00.31144+00	120
511	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg__600x449_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:09:07.346487+00	120
512	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:05.799947+00	121
513	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:06.049107+00	121
514	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:06.245399+00	121
515	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:06.512964+00	121
516	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png__1824x1028_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:13.020387+00	121
517	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:54.460281+00	122
518	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:54.649947+00	122
519	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:54.826673+00	122
520	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-08 21:45:55.10704+00	122
521	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png__1824x896_q85_crop_subsampling-2_upscale.png	2015-11-08 21:46:03.671722+00	122
522	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:46:50.328718+00	123
523	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:46:50.422721+00	123
524	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:46:50.511864+00	123
525	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:46:50.597407+00	123
526	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg__1216x740_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:46:56.204135+00	123
811	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-08 10:32:22.391038+00	187
527	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:47:50.582839+00	124
528	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:47:50.671904+00	124
529	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:47:50.753245+00	124
530	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:47:50.843762+00	124
531	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:49:57.741574+00	125
532	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:49:57.886944+00	125
533	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:49:57.990229+00	125
534	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:49:58.11553+00	125
535	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__1804x888_q85_crop_subsampling-2_upscale.jpg	2015-11-08 21:50:05.918897+00	125
536	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-08 22:30:09.619464+00	126
537	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-08 22:30:09.855872+00	126
538	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-08 22:30:09.967275+00	126
539	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-08 22:30:10.086389+00	126
540	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__1804x888_q85_crop_subsampling-2_upscale.jpg	2015-11-08 22:30:15.719797+00	126
541	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png__210x10000_q85_subsampling-2.jpg	2015-11-09 15:29:29.50021+00	70
542	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 15:30:29.635707+00	125
543	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 15:30:33.000607+00	126
544	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 15:32:38.081001+00	79
545	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:04.099204+00	127
546	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:04.192062+00	127
612	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-09 18:07:01.906214+00	144
547	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:04.300952+00	127
548	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:04.406157+00	127
549	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:56.455228+00	128
550	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:56.651916+00	128
551	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:56.820432+00	128
552	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-09 15:57:57.011646+00	128
553	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png__210x10000_q85_subsampling-2.png	2015-11-09 15:58:02.133392+00	127
554	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 15:59:31.056909+00	129
555	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 15:59:31.421903+00	129
556	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 15:59:31.740561+00	129
557	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 15:59:32.116632+00	129
558	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 15:59:36.261173+00	129
559	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:01:18.171444+00	130
560	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:01:18.391589+00	130
561	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:01:18.591709+00	130
562	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:01:18.792651+00	130
563	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 16:01:23.955264+00	130
564	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:04:59.952079+00	131
565	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:05:00.029105+00	131
566	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:05:00.111898+00	131
567	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:05:00.211727+00	131
568	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 16:05:03.685719+00	131
569	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-09 16:08:02.01978+00	133
570	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-09 16:08:02.172724+00	133
571	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-09 16:08:02.326658+00	133
572	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-09 16:08:02.466676+00	133
573	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png__210x10000_q85_subsampling-2.png	2015-11-09 16:11:09.652821+00	133
574	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:17:49.640756+00	136
575	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:17:49.852253+00	136
576	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:17:50.03751+00	136
577	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:17:50.225091+00	136
578	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 16:17:58.824352+00	136
579	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:19:51.673162+00	137
580	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:19:52.605748+00	137
581	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:19:53.546624+00	137
582	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:19:54.514238+00	137
583	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 16:26:10.360718+00	137
584	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:29:30.136033+00	138
585	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:29:30.326426+00	138
586	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:29:30.478178+00	138
587	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 16:29:30.650987+00	138
588	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 16:29:34.365605+00	138
589	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:54:48.197596+00	139
590	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:54:48.266648+00	139
591	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:54:48.332021+00	139
592	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:54:48.397101+00	139
593	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 17:54:53.681098+00	139
594	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:57:37.097532+00	140
595	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:57:37.189751+00	140
596	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:57:37.279442+00	140
597	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:57:37.36245+00	140
598	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 17:57:43.514654+00	140
599	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:58:35.550631+00	141
600	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:58:35.674898+00	141
601	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:58:35.788723+00	141
602	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 17:58:35.907245+00	141
603	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 17:58:39.209149+00	141
604	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:03:19.294296+00	142
605	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:03:19.526207+00	142
606	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:03:19.74903+00	142
607	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:03:19.978781+00	142
608	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 18:03:26.569617+00	142
609	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-09 18:07:01.733814+00	144
610	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-09 18:07:01.792518+00	144
611	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-09 18:07:01.847569+00	144
623	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-09 18:16:52.325419+00	147
624	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-09 18:16:52.391874+00	147
625	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-09 18:16:52.439619+00	147
626	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-09 18:16:52.490219+00	147
627	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png__210x10000_q85_subsampling-2.png	2015-11-09 18:16:57.367452+00	147
628	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:18:28.356184+00	148
629	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:18:28.466224+00	148
630	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:18:28.617415+00	148
631	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:18:28.719307+00	148
632	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg__210x10000_q85_subsampling-2.jpg	2015-11-09 18:18:32.369853+00	148
633	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-09 18:20:13.013157+00	149
634	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-09 18:20:13.071259+00	149
635	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-09 18:20:13.118964+00	149
636	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-09 18:20:13.169884+00	149
637	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png__210x10000_q85_subsampling-2.png	2015-11-09 18:20:16.171496+00	149
638	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:57:26.023393+00	150
639	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:57:26.089092+00	150
640	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:57:26.157181+00	150
641	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:57:26.247072+00	150
642	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg__998x514_q85_crop_subsampling-2_upscale.jpg	2015-11-09 18:57:30.85673+00	150
643	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:28:49.746151+00	151
644	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:28:49.841168+00	151
645	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:28:49.904005+00	151
646	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:28:49.970716+00	151
647	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d2/3c/d23c04a4-2208-4153-b302-24158e9c51a8/wissen.jpg__210x10000_q85_subsampling-2.jpg	2015-11-13 23:30:53.986162+00	151
648	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:31:18.319159+00	152
649	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:31:18.4574+00	152
650	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:31:18.533125+00	152
651	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-13 23:31:18.614126+00	152
656	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:51:50.446523+00	154
657	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:51:50.559473+00	154
658	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:51:50.654195+00	154
659	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:51:50.751465+00	154
660	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg__210x10000_q85_subsampling-2.jpg	2015-11-15 14:51:54.886343+00	154
661	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:54:26.567802+00	155
662	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:54:26.664818+00	155
663	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:54:26.75839+00	155
664	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-15 14:54:26.858769+00	155
665	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg__210x10000_q85_subsampling-2.jpg	2015-11-15 14:54:30.385984+00	155
666	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-15 14:56:38.976009+00	156
667	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-15 14:56:39.139243+00	156
668	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-15 14:56:39.293582+00	156
669	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-15 14:56:39.438673+00	156
670	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png__210x10000_q85_subsampling-2.png	2015-11-15 14:56:43.700954+00	156
671	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-19 20:53:02.257119+00	157
672	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-19 20:53:02.471504+00	157
673	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-19 20:53:02.588582+00	157
674	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-19 20:53:02.674963+00	157
675	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__1701x2404_q85_crop_subsampling-2_upscale.png	2015-11-19 21:10:30.08639+00	128
676	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png__640x120_q85_crop_subsampling-2.png	2015-11-21 17:32:38.967086+00	157
677	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg__640x120_q85_crop_subsampling-2.jpg	2015-11-21 17:34:58.270434+00	152
678	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg__640x120_q85_crop_subsampling-2.jpg	2015-11-21 17:36:57.487426+00	118
679	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__48x48_q85_crop_subsampling-2_upscale.png	2015-11-25 06:54:11.203608+00	158
680	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__16x16_q85_crop_subsampling-2_upscale.png	2015-11-25 06:54:11.321053+00	158
681	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__32x32_q85_crop_subsampling-2_upscale.png	2015-11-25 06:54:11.41392+00	158
682	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__64x64_q85_crop_subsampling-2_upscale.png	2015-11-25 06:54:11.507739+00	158
683	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__1502x505_q85_crop_subsampling-2_upscale.png	2015-11-25 06:54:45.395271+00	158
684	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__200x67_q85_crop_subsampling-2_upscale.png	2015-11-25 06:56:19.981209+00	158
685	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__200x67_q85_subsampling-2.png	2015-11-25 06:59:50.632527+00	158
686	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png__210x10000_q85_subsampling-2.png	2015-11-25 07:03:40.116188+00	158
687	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:26:30.712028+00	159
688	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:26:30.810659+00	159
689	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:26:30.873837+00	159
690	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:26:30.941268+00	159
691	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__1153x351_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:26:36.055402+00	159
692	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__200x60_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:28:30.556491+00	159
693	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg__210x10000_q85_subsampling-2.jpg	2015-11-25 19:36:08.989245+00	159
694	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__48x48_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:48:23.58872+00	160
695	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__16x16_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:48:23.682303+00	160
696	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__32x32_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:48:23.732539+00	160
697	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__64x64_q85_crop_subsampling-2_upscale.jpg	2015-11-25 19:48:23.793337+00	160
698	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png__210x10000_q85_subsampling-2.jpg	2015-11-25 19:48:31.548475+00	160
699	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:32:11.583774+00	161
700	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:32:11.706894+00	161
701	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:32:11.765691+00	161
702	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:32:11.823483+00	161
703	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:34:53.36862+00	162
704	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:34:53.499443+00	162
705	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:34:53.579675+00	162
706	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 13:34:53.640152+00	162
707	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:00:41.969662+00	163
708	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:00:42.053545+00	163
709	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:00:42.148765+00	163
710	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:00:42.205877+00	163
711	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg__434x528_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:00:49.62432+00	163
712	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:02:31.22891+00	166
713	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:02:31.405986+00	166
714	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:02:31.48871+00	166
715	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:02:31.628006+00	166
716	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg__679x411_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:02:37.088172+00	166
717	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:03:39.329931+00	167
718	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:03:39.642659+00	167
719	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:03:39.958905+00	167
720	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:03:40.374194+00	167
721	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:04:25.991927+00	168
722	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:04:26.100596+00	168
723	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:04:26.163309+00	168
724	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:04:26.21618+00	168
725	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg__600x411_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:04:34.583775+00	168
726	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:14:36.839413+00	169
727	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:14:36.90907+00	169
728	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:14:36.975924+00	169
729	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:14:37.044731+00	169
730	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg__736x491_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:14:42.535465+00	169
731	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:22:02.953555+00	170
732	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:22:03.031859+00	170
733	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:22:03.085572+00	170
734	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:22:03.151505+00	170
735	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg__730x411_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:22:10.062415+00	170
736	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:30:36.849066+00	171
737	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:30:36.923825+00	171
738	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:30:36.981523+00	171
739	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:30:37.134069+00	171
740	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg__730x411_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:30:41.990446+00	171
741	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:07.517729+00	172
742	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:07.607404+00	172
743	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:07.834612+00	172
744	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:07.905555+00	172
745	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg__730x366_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:12.685231+00	172
813	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-08 10:32:22.553058+00	187
746	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:43.974268+00	173
747	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:44.027706+00	173
748	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:44.085796+00	173
749	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:44.135146+00	173
750	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__342x614_q85_crop_subsampling-2_upscale.jpg	2015-12-07 14:31:49.15792+00	173
751	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg__342x614_q85_subsampling-2.jpg	2015-12-07 15:44:06.031582+00	173
752	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 15:54:30.290285+00	174
753	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 15:54:30.368766+00	174
754	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 15:54:30.433708+00	174
755	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 15:54:30.516485+00	174
756	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg__736x491_q85_crop_subsampling-2_upscale.jpg	2015-12-07 15:54:35.203077+00	174
757	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2015-12-07 16:07:50.930949+00	176
758	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2015-12-07 16:07:51.027964+00	176
759	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2015-12-07 16:07:51.159967+00	176
760	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2015-12-07 16:07:51.246764+00	176
761	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg__528x434_q85_crop_subsampling-2_upscale.jpg	2015-12-07 16:07:56.006764+00	176
762	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg__640x120_q85_crop_subsampling-2.jpg	2015-12-07 16:29:46.644624+00	162
763	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg__210x10000_q85_subsampling-2.jpg	2015-12-28 22:23:49.639605+00	47
764	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png__210x10000_q85_subsampling-2.png	2016-01-06 13:48:37.583426+00	128
770	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-06 14:01:40.430782+00	178
771	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-06 14:01:40.502537+00	178
772	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-06 14:01:40.594577+00	178
773	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-06 14:01:40.688769+00	178
774	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg__210x10000_q85_subsampling-2.jpg	2016-01-06 14:01:44.173116+00	178
775	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:32:43.745275+00	179
776	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:32:43.838887+00	179
777	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:32:43.896463+00	179
778	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:32:43.956915+00	179
779	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__210x10000_q85_subsampling-2.jpg	2016-01-06 16:32:47.81631+00	179
780	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:57:56.378899+00	181
781	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:57:56.44699+00	181
782	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:57:56.495966+00	181
783	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-06 16:57:56.546127+00	181
784	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__210x10000_q85_subsampling-2.jpg	2016-01-06 16:57:59.742329+00	181
790	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__48x48_q85_crop_subsampling-2_upscale.png	2016-01-06 17:33:27.239377+00	183
791	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__64x64_q85_crop_subsampling-2_upscale.png	2016-01-06 17:33:27.341967+00	183
792	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__32x32_q85_crop_subsampling-2_upscale.png	2016-01-06 17:33:27.409568+00	183
793	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__16x16_q85_crop_subsampling-2_upscale.png	2016-01-06 17:33:27.524761+00	183
794	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__210x10000_q85_subsampling-2.png	2016-01-06 17:33:32.723212+00	183
795	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__48x48_q85_crop_subsampling-2_upscale.png	2016-01-06 18:02:49.352679+00	184
796	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__64x64_q85_crop_subsampling-2_upscale.png	2016-01-06 18:02:49.441224+00	184
797	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__32x32_q85_crop_subsampling-2_upscale.png	2016-01-06 18:02:49.522567+00	184
798	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__16x16_q85_crop_subsampling-2_upscale.png	2016-01-06 18:02:49.603772+00	184
799	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__210x10000_q85_subsampling-2.png	2016-01-06 18:02:54.619466+00	184
800	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-06 18:06:27.757191+00	185
801	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-06 18:06:27.863519+00	185
802	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-06 18:06:27.946431+00	185
803	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-06 18:06:28.029194+00	185
804	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg__210x10000_q85_subsampling-2.jpg	2016-01-06 18:06:31.315854+00	185
805	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__48x48_q85_crop_subsampling-2_upscale.png	2016-01-08 10:29:42.061088+00	186
806	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__64x64_q85_crop_subsampling-2_upscale.png	2016-01-08 10:29:42.258912+00	186
807	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__32x32_q85_crop_subsampling-2_upscale.png	2016-01-08 10:29:42.364043+00	186
808	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__16x16_q85_crop_subsampling-2_upscale.png	2016-01-08 10:29:42.464819+00	186
809	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__210x10000_q85_subsampling-2.png	2016-01-08 10:29:47.942943+00	186
810	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-08 10:32:22.314095+00	187
812	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-08 10:32:22.497508+00	187
814	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg__210x10000_q85_subsampling-2.jpg	2016-01-08 10:32:26.000095+00	187
815	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__48x48_q85_crop_subsampling-2_upscale.png	2016-01-13 21:21:27.613617+00	188
816	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__64x64_q85_crop_subsampling-2_upscale.png	2016-01-13 21:21:27.733311+00	188
817	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__32x32_q85_crop_subsampling-2_upscale.png	2016-01-13 21:21:27.838071+00	188
818	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__16x16_q85_crop_subsampling-2_upscale.png	2016-01-13 21:21:27.944427+00	188
819	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__48x48_q85_crop_subsampling-2_upscale.png	2016-01-13 21:23:52.686477+00	189
820	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__64x64_q85_crop_subsampling-2_upscale.png	2016-01-13 21:23:52.800576+00	189
821	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__32x32_q85_crop_subsampling-2_upscale.png	2016-01-13 21:23:52.986475+00	189
822	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__16x16_q85_crop_subsampling-2_upscale.png	2016-01-13 21:23:53.092776+00	189
823	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png__1627x550_q85_crop_subsampling-2_upscale.png	2016-01-13 21:40:43.027088+00	186
824	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg__632x346_q85_crop_subsampling-2_upscale.jpg	2016-01-13 21:43:10.885611+00	179
825	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png__768x406_q85_crop_subsampling-2_upscale.png	2016-01-13 21:46:40.632187+00	183
826	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png__768x421_q85_crop_subsampling-2_upscale.png	2016-01-13 21:47:00.877001+00	184
827	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-14 15:56:21.65715+00	190
828	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-14 15:56:21.833253+00	190
829	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-14 15:56:21.898566+00	190
830	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-14 15:56:21.956652+00	190
831	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__730x411_q85_crop_subsampling-2_upscale.jpg	2016-01-14 15:56:29.088858+00	190
832	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg__590x300_q85_crop_subsampling-2_upscale.jpg	2016-01-14 16:05:52.602371+00	181
833	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__48x48_q85_crop_subsampling-2_upscale.jpg	2016-01-14 16:38:35.134041+00	191
834	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__64x64_q85_crop_subsampling-2_upscale.jpg	2016-01-14 16:38:35.187221+00	191
835	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__32x32_q85_crop_subsampling-2_upscale.jpg	2016-01-14 16:38:35.236621+00	191
836	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__16x16_q85_crop_subsampling-2_upscale.jpg	2016-01-14 16:38:35.311265+00	191
837	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__493x335_q85_crop_subsampling-2_upscale.jpg	2016-01-14 16:38:40.157595+00	191
838	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg__210x10000_q85_subsampling-2.jpg	2016-01-15 15:32:11.989185+00	190
839	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png__210x10000_q85_subsampling-2.jpg	2016-01-15 15:33:02.773744+00	191
840	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png__1627x550_q85_crop_subsampling-2_upscale.png	2016-01-15 15:38:29.360856+00	188
841	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__210x10000_q85_subsampling-2.png	2016-01-15 15:46:48.263936+00	189
842	f9bde26a1556cd667f742bd34ec7c55e	filer_public_thumbnails/filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png__640x120_q85_crop_subsampling-2.png	2016-01-28 17:05:54.262143+00	189
\.


--
-- Name: easy_thumbnails_thumbnail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('easy_thumbnails_thumbnail_id_seq', 842, true);


--
-- Data for Name: easy_thumbnails_thumbnaildimensions; Type: TABLE DATA; Schema: public; Owner: app
--

COPY easy_thumbnails_thumbnaildimensions (id, thumbnail_id, width, height) FROM stdin;
\.


--
-- Name: easy_thumbnails_thumbnaildimensions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('easy_thumbnails_thumbnaildimensions_id_seq', 1, false);


--
-- Data for Name: filer_clipboard; Type: TABLE DATA; Schema: public; Owner: app
--

COPY filer_clipboard (id, user_id) FROM stdin;
1	1
\.


--
-- Name: filer_clipboard_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('filer_clipboard_id_seq', 1, true);


--
-- Data for Name: filer_clipboarditem; Type: TABLE DATA; Schema: public; Owner: app
--

COPY filer_clipboarditem (id, clipboard_id, file_id) FROM stdin;
\.


--
-- Name: filer_clipboarditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('filer_clipboarditem_id_seq', 192, true);


--
-- Data for Name: filer_file; Type: TABLE DATA; Schema: public; Owner: app
--

COPY filer_file (id, file, _file_size, sha1, has_all_mandatory_data, original_filename, name, description, uploaded_at, modified_at, is_public, folder_id, owner_id, polymorphic_ctype_id) FROM stdin;
7	filer_public/b5/d8/b5d83050-247f-4f87-9a4a-21551237c450/cdist.png	13607	1421132c5c81f413fee6f0b4a1052ede907d36d0	f	cdist.png		\N	2015-06-14 02:53:59.732313+00	2015-06-14 02:53:59.732344+00	t	\N	1	41
8	filer_public/17/45/1745f7a8-1347-47e4-b0f0-faf938fbee47/barcelona_1.jpg	116194	8de95580b0443f51498f6752186baf1fd035e19a	f	barcelona_1.jpg		\N	2015-06-14 02:54:01.900735+00	2015-06-14 02:54:01.900768+00	t	\N	1	41
9	filer_public/af/1e/af1e9725-cee8-4a7e-834f-7d0f1d580c91/opennebulaplusungleich.png	41002	d9309921e2948a4cb1a883cf6b3221a8050f2397	f	opennebulaplusungleich.png		\N	2015-06-14 02:54:02.095606+00	2015-06-14 02:54:02.095636+00	t	\N	1	41
10	filer_public/13/06/13062924-6b6a-4de5-bf32-a33a26980cfb/14473379828_84376f1229_h.jpg	451277	d279f4d8ded8e53aba697f9fa1b24c960a3c4593	f	14473379828_84376f1229_h.jpg		\N	2015-06-14 02:54:07.40675+00	2015-06-14 02:54:07.406781+00	t	\N	1	41
84	filer_public/6d/1a/6d1ac67c-194e-4b55-a9ca-e6d6eb53efc8/opennebulaconf_ungleich_barcelosants.jpg	1279216	5959a767d393085f39db2e6ebc8974ee4a15cfe0	f	opennebulaconf_ungleich_barcelosants.jpg		\N	2015-10-27 13:15:37.566586+00	2015-10-27 13:15:37.566617+00	t	\N	1	41
11	filer_public/5f/4b/5f4b7477-6a1d-4df5-a986-4eb342993b40/cdist.png	13607	1421132c5c81f413fee6f0b4a1052ede907d36d0	f	cdist.png		\N	2015-06-14 03:10:43.757178+00	2015-06-14 03:10:54.32416+00	t	4	1	41
12	filer_public/a2/43/a2431f05-8480-4721-9a9f-8d9216c1a1b1/barcelona_1.jpg	116194	8de95580b0443f51498f6752186baf1fd035e19a	f	barcelona_1.jpg		\N	2015-06-14 03:10:45.825564+00	2015-06-14 03:10:54.397181+00	t	4	1	41
13	filer_public/e1/76/e1761ff4-371b-4e72-a9bf-05e34029603e/opennebulaplusungleich.png	41002	d9309921e2948a4cb1a883cf6b3221a8050f2397	f	opennebulaplusungleich.png		\N	2015-06-14 03:10:46.426921+00	2015-06-14 03:10:54.438285+00	t	4	1	41
15	filer_public/fb/0e/fb0e2764-f19f-44f8-9ff7-1e4e9b84d440/14473379828_84376f1229_h.jpg	150546	ae848e2019c0f2a0a9484ecb23d6a849a6c4aa3d	f	14473379828_84376f1229_h.jpg		\N	2015-06-14 03:17:42.6697+00	2015-06-14 03:17:45.053143+00	t	4	1	41
16	filer_public/5e/36/5e36972a-9405-4b4a-9656-07b7a5b1216b/2015-06-13-220853_736x423_scrot.png	448065	26845e9dd5c4b23f4fafe408ffff0f65acb0615a	f	2015-06-13-220853_736x423_scrot.png		\N	2015-06-14 04:43:00.30159+00	2015-06-14 04:43:03.513933+00	t	4	1	41
17	filer_public/14/94/14949dd7-6372-4c1f-b788-26592d278893/header-bg.jpg	194160	5fcc2aed3e17bbfc207f8ff3ccd68182fe77525d	f	header-bg.jpg		\N	2015-06-14 04:48:14.423315+00	2015-06-14 04:48:17.067798+00	t	6	1	41
18	filer_public/aa/9b/aa9b54c0-30c7-4efe-9fb0-a38ee2581796/16494988669_f4c6d00da4_b.jpg	164669	93c59e2645fdcbdd199c1da54b45cedc941f5cb0	f	16494988669_f4c6d00da4_b.jpg		\N	2015-06-14 04:55:52.099926+00	2015-06-14 04:55:53.927318+00	t	7	1	41
21	filer_public/a7/08/a708a1ff-b7dc-49d0-8ba9-72a9a32809dd/opennebulareferene.png	65786	483033ff28f1627a269b91abbce6c7a920c25e38	f	opennebulareferene.png		\N	2015-06-14 21:27:31.078751+00	2015-06-14 21:27:32.672429+00	t	3	1	41
19	filer_public/08/81/08814b25-d36c-457d-bfc5-66c0c521eec8/opencloudday.png	15947	d4580f70c49a22dce6534bb0051cfecb18e58b1f	f	opencloudday.png			2015-06-14 21:25:45.923609+00	2015-06-14 21:28:20.835789+00	t	3	1	41
20	filer_public/bb/99/bb99bd4a-b925-492f-8b5b-3ae2984f0ab8/magical-bern-switzerland.jpg	170541	1d4797ae9f8f8d485d149ac2539a062e1d7e2e37	f	magical-bern-switzerland.jpg			2015-06-14 21:27:15.461432+00	2015-06-15 20:11:52.857108+00	t	3	1	41
22	filer_public/c7/62/c7623533-dbc4-4140-9544-f9f842dd4561/bernbanner.jpg	403313	98b2361cd39c4b67df007f7185a410ca7783f6ff	f	bernbanner.jpg		\N	2015-06-15 20:24:05.161659+00	2015-06-15 20:24:07.530492+00	t	3	1	41
24	filer_public/ae/67/ae67ea00-d3f4-4f7e-8642-72419c40e818/dsc_4958_copyjpg-small.jpg	841973	733325ad687125847304a8478c62c2f13e43c11e	f	DSC_4958 copy.jpg-small.jpg		\N	2015-06-16 21:16:22.841897+00	2015-06-16 21:16:25.541953+00	t	2	1	41
25	filer_public/e3/fc/e3fccbb8-6cc4-4995-9e41-2a7dbc285806/dsc_4986png-small.jpg	168401	210ec718736ce86b5e93882c12c2e63544a7de2a	f	DSC_4986.png-small.jpg		\N	2015-06-16 21:17:26.357118+00	2015-06-16 21:17:28.473102+00	t	2	1	41
26	filer_public/a7/13/a713efd4-2d1a-4a53-84e2-8c82c781158c/dsc_5055png-small.jpg	152539	f0fe53ee8adc145d902c2437673c677eefeb99e5	f	DSC_5055.png-small.jpg		\N	2015-06-16 21:18:17.264158+00	2015-06-16 21:18:19.560696+00	t	2	1	41
27	filer_public/ab/a3/aba3ae90-e8c5-4388-8e5b-93bdfa760863/dsc_5064jpg-small.jpg	647922	9bfe441317db5db1d45a24734c9ebc641f4165d0	f	DSC_5064.jpg-small.jpg		\N	2015-06-16 21:19:06.235821+00	2015-06-16 21:19:08.193688+00	t	2	1	41
28	filer_public/db/e7/dbe708ff-86b5-448f-aab1-c84fb6c6730a/dsc_4967-small2.jpg	401587	1095bcff34d2c3ae89ca2d0b1d6b8e8a82ac526b	f	DSC_4967-small2.jpg		\N	2015-06-16 21:21:05.074717+00	2015-06-16 21:21:06.960703+00	t	2	1	41
29	filer_public/8b/9e/8b9e200c-b883-4ee9-b08d-84d09a2019ea/born_1.jpg	681091	916b30de4e4c5d375679d7e3a2b67cf59bbf2723	f	born_1.jpg		\N	2015-06-22 13:54:34.545928+00	2015-06-22 13:54:37.645561+00	t	9	1	41
30	filer_public/78/af/78afb734-2025-458d-b634-b8d049d1c5bd/born_2.jpg	632959	7ab7249eeeb6f4fdb15e9f322e1d18dca311aefb	f	born_2.jpg		\N	2015-06-22 13:54:55.525878+00	2015-06-22 13:55:30.786995+00	t	9	1	41
31	filer_public/05/2e/052e1ffe-6805-403b-825a-2e8e69a4f506/born_3.jpg	932382	73d323d3e6bed64f970eaa18146497d6df6ef385	f	born_3.jpg		\N	2015-06-22 13:55:53.724322+00	2015-06-22 13:57:15.785345+00	t	9	1	41
32	filer_public/0e/5a/0e5a91f6-7a7f-4bd3-914b-6fe45cb1c0f7/glarus-meetup.jpg	291801	ee012845d35032c91f09b606386cf53bb2bdf9e3	f	glarus-meetup.jpg		\N	2015-07-20 19:14:58.755465+00	2015-07-20 19:15:02.937024+00	t	2	1	41
33	filer_public/64/9a/649a64f6-353c-46b0-a086-8b8c12a59a76/rackfromtop.jpg	643106	b3c14eac4a44257a213f80faf9aab5901c9228d0	f	rackfromtop.jpg		\N	2015-07-26 22:38:02.08007+00	2015-07-26 22:38:04.487834+00	t	2	1	41
34	filer_public/01/9b/019b14bf-6d7f-4672-991c-18fe61726645/gems.png	389263	3fa3ac239c75d7d1367ca1ffe81a12ec0ff7db31	f	gems.png		\N	2015-08-09 20:29:58.687711+00	2015-08-09 20:30:00.85177+00	t	2	1	41
35	filer_public/9f/42/9f428283-87c1-4d57-bae0-d3f49b315f6a/gems.png	213995	fd163d28b20771a4939c70a3f1446f1af4a9a05d	f	gems.png		\N	2015-08-09 20:38:28.318442+00	2015-08-09 20:38:34.874025+00	t	2	1	41
36	filer_public/92/68/92682c7c-cc1e-456a-bf74-b53d0e241ae6/morejems.png	446449	15fd04f8eba7cb3ef3e44cedb44d8b39a7c1fb78	f	morejems.png		\N	2015-08-09 20:38:30.432698+00	2015-08-09 20:38:35.378663+00	t	2	1	41
37	filer_public/a4/6d/a46d40ab-2e1d-4bd1-8267-4ce3cb491333/computer-geek.jpg	187939	f2988f988fcccef6f4cd5eee45e1d924929b039d	f	Computer-Geek.jpg		\N	2015-08-09 20:42:58.136334+00	2015-08-09 20:43:00.201202+00	t	2	1	41
38	filer_public/b0/9d/b09df0cd-5716-4740-8537-351dc97a4974/shooting-star.jpg	54665	ef02d1e1a6a64af94043a9fa4d4fb40f4eb38bfa	f	shooting-star.jpg		\N	2015-08-09 20:45:49.275874+00	2015-08-09 20:45:51.769524+00	t	2	1	41
39	filer_public/c4/7c/c47ca220-5beb-43db-a451-9fe2304252c7/digital_glurs.png	390442	447c5e7167afb85d712c59796e08b59c98b2c88d	f	digital_glurs.png		\N	2015-08-14 23:07:38.463518+00	2015-08-14 23:07:40.7446+00	t	2	1	41
42	filer_public/f4/4b/f44b8949-4b2d-4916-8799-9bb3142d8305/ungleich.png	335985	1289609d93a7d663527955ece04b0fe49054006b	f	ungleich.png		\N	2015-08-14 23:25:01.710782+00	2015-08-14 23:25:03.228474+00	t	2	1	41
43	filer_public/13/ae/13aec83a-396f-436f-a199-941b26847893/puzzle.png	56782	e3a7cc1889c7429b099e3dd8100f300568ef2c5f	f	puzzle.png		\N	2015-08-14 23:28:26.513937+00	2015-08-14 23:28:27.793664+00	t	2	1	41
44	filer_public/75/67/756798c2-7d03-44d9-9c43-b35807ba5672/puzzle.png	56782	e3a7cc1889c7429b099e3dd8100f300568ef2c5f	f	puzzle.png		\N	2015-08-14 23:28:51.632102+00	2015-08-14 23:28:53.348065+00	t	2	1	41
45	filer_public/68/a5/68a5588b-716f-495f-b9c8-a87e1451cc7f/dice.png	193506	d88907a14af88ad1fced63bc75adbb8ae4fdf26c	f	dice.png		\N	2015-08-14 23:31:50.970782+00	2015-08-14 23:31:52.361778+00	t	2	1	41
46	filer_public/d9/9c/d99cafaa-c344-4b1f-adf0-187e0cddd80e/steam-train-small.jpg	500277	c523ef80cac98cb979a3cee97597508f36e790f1	f	steam-train-small.jpg			2015-08-24 22:12:51.482633+00	2015-08-28 15:50:19.962735+00	t	2	1	41
70	filer_public/0f/67/0f67c096-d415-41b5-91f4-eaf6cdd88025/radio-mic-mike.jpg	107988	fb70c7ed6f53997ad69a9b7c922565598be9efe6	f	radio-mic-mike.jpg		\N	2015-09-24 14:00:48.046031+00	2015-09-24 14:00:50.294663+00	t	1	1	41
47	filer_public/fc/22/fc22cd92-9da1-4407-96f4-acfaf5c96c14/glarus_map.png	458808	ed4fd013ad0629f639adba832f9906628b283e94	f	glarus map.png		\N	2015-08-28 16:09:51.142145+00	2015-08-28 16:09:52.522766+00	t	2	1	41
71	filer_public/6d/aa/6daa78ab-182d-473f-b95f-c2c8807ae23e/digitalglarus_interview_nicoschottelius_radio.png	900204	6b2ebb0b443afd6106232411ad22b44b67d3ad5c	f	digitalglarus_interview_nicoschottelius_radio.png		\N	2015-09-24 14:10:45.298573+00	2015-09-24 14:10:47.106791+00	t	1	1	41
48	filer_public/be/6b/be6b6e8b-7e90-4d11-90fd-740cf4bf5ebf/diesbach_01.jpg	176261	3670d3d6103b1ca89afc0014fe66187757de8993	f	diesbach_01.jpg		\N	2015-08-28 16:57:26.749286+00	2015-08-28 16:57:28.272252+00	t	2	1	41
72	filer_public/0d/39/0d39e6c6-af05-4505-abdc-c6a585208601/banner_100days_resized.png	18368	d3d322518f4a627e616815c97085156c75979bd8	f	banner_100days_resized.png		\N	2015-09-24 14:15:34.728449+00	2015-09-24 14:15:36.292759+00	t	1	1	41
73	filer_public/a9/94/a994bc7b-82db-453b-ba09-bc40a571dfd9/digitalglarus_whynotzurich.png	1905641	e640d5ff58d03551bfe883734ebaab7957c94d30	f	digitalglarus_whynotzurich.png		\N	2015-09-24 15:09:48.330143+00	2015-09-24 15:09:51.745055+00	t	10	1	41
74	filer_public/f3/f9/f3f9c45c-7f93-4fde-a0fc-32369831237c/digitalglarus_glarus.jpg	1413195	26fb4986bed213632ae0a221fba193ce82855458	f	digitalglarus_glarus.jpg		\N	2015-09-24 15:10:00.687515+00	2015-09-24 15:10:14.91902+00	t	10	1	41
50	filer_public/a5/77/a57749e3-8c07-4ed7-9904-5db36b4a18ff/weneedyou.jpg	185298	458b518bcc2e7b018aa9de6b7f4fd803b2157a13	f	weneedyou.jpg		\N	2015-08-28 22:26:38.708391+00	2015-08-28 22:26:40.2977+00	t	2	1	41
51	filer_public/e8/e3/e8e3b0bc-d8aa-419c-a99b-5acf8226e433/dsc_5397.jpg	4080552	2059af73ef90aa6b5c25bf983589b265736aca58	f	DSC_5397.jpg		\N	2015-08-28 23:40:36.476107+00	2015-08-28 23:40:36.476135+00	t	\N	1	41
52	filer_public/8a/63/8a63c4e5-0dc8-48e3-b809-96ab5b52ea50/manifesto.png	727471	0725821f0cda1fd83de3fb2e15156e8793f84e44	f	manifesto.png		\N	2015-08-28 23:43:26.034004+00	2015-08-28 23:43:28.764691+00	t	2	1	41
75	filer_public/29/cf/29cf9568-7260-42be-b44f-208a0bc12d72/radio-central-digitalglarus-crowdfunding-2015-09-23.mp3	4258560	399f1f5f00597bd0512b5e9e62917911268f9276	f	radio-central-digitalglarus-crowdfunding-2015-09-23.mp3	Radio Central - Digital Glarus - Crowdfunding 20150923		2015-09-24 15:31:39.06772+00	2015-09-24 15:34:03.419251+00	t	10	1	38
53	filer_public/b5/9a/b59aa327-e06b-44c6-9cbe-1172513db3c3/glarus_map.png	727765	ad0eb5b1b93d571401896bb0e490821381b15700	f	glarus map.png		\N	2015-08-29 13:39:31.72359+00	2015-08-29 13:39:33.913782+00	t	2	1	41
54	filer_public/a3/d3/a3d332bf-22f4-4475-a34f-9bb87bfda4aa/glarnerwoche2015_09_02_crop_small.png	1667714	872eafc2659416b414c069200d4a5d5bf8e38e1c	f	Glarnerwoche2015_09_02_crop_small.png		\N	2015-09-02 10:14:03.100997+00	2015-09-02 10:14:03.101033+00	t	\N	1	41
55	filer_public/10/f7/10f7b232-5a2e-4ed0-b70f-e431b7d4fd99/glarnerwoche2015_09_02_crop_small.png	493600	b1f080106245fe620446fbb28d189af62cb35c47	f	Glarnerwoche2015_09_02_crop_small.png		\N	2015-09-02 10:15:08.817177+00	2015-09-02 10:15:10.483781+00	t	2	1	41
77	filer_public/da/71/da7134e4-1c70-4efd-a771-f88ed4e3f5f5/thumb_dsc00605_1024.jpg	294010	f372837bcbc5b457d33e58ef55a48e318de58276	f	thumb_DSC00605_1024.jpg		\N	2015-09-25 13:08:32.47249+00	2015-09-25 13:08:34.306842+00	t	1	1	41
56	filer_public/19/28/192891d9-6161-483c-9b52-c53c3c63cbbb/glarnerwoche-2015-09-02.pdf	403719	6d5f4dd167ad743240775a4c6531168c1c31caf7	f	glarnerwoche-2015-09-02.pdf		\N	2015-09-02 12:26:57.410665+00	2015-09-02 12:26:59.07031+00	t	2	1	38
78	filer_public/1b/75/1b75cb45-33ab-44c4-80f6-d6e7adb53ae8/digitalglarus_meeting_luchsingen.jpg	3634629	38ff0728783b4d1382cf7b01bfe5ad10e1a858bf	f	digitalglarus_meeting_luchsingen.jpg		\N	2015-09-25 13:11:37.501155+00	2015-09-25 13:11:40.734378+00	t	1	1	41
57	filer_public/63/e1/63e18b95-6ff2-4549-bf4a-9a0ac80947b2/glarussudfrontpage.png	533207	9c363e708efcaabd427385744dfd48e76aad8c33	f	glarussudfrontpage.png		\N	2015-09-02 12:54:00.827796+00	2015-09-02 12:54:02.338717+00	t	2	1	41
79	filer_public/b4/1c/b41c21b5-3f2f-4379-8d65-ac2bd46e558d/digitalglarus_meeting_prep.png	2370805	cf5a696f34453a58f8a61fae8d3a70efd579dd13	f	digitalglarus_meeting_prep.png		\N	2015-09-25 13:25:44.173391+00	2015-09-25 13:25:46.302845+00	t	1	1	41
58	filer_public/86/c5/86c57854-980e-49e4-ad41-4aad76193642/newspaperboy.png	368213	565b0f5d8612d734ede4b84c46f7d34842f63e8d	f	newspaperboy.png		\N	2015-09-02 13:46:00.949498+00	2015-09-02 13:46:02.547511+00	t	2	1	41
80	filer_public/ad/0c/ad0c0e0d-8eee-4e1f-82df-d2494df68e36/digitalglarus_meeting_luchsingen_nicoshottelius.png	2334152	626920dcff1864cb038eabf42c5d9b0dce4f9e01	f	digitalglarus_meeting_luchsingen_nicoshottelius.png		\N	2015-09-25 13:29:31.504695+00	2015-09-25 13:29:33.954213+00	t	1	1	41
81	filer_public/30/a7/30a7508c-3057-494f-950e-edfaaffdc8bb/digitalglarus_meeting.png	2981386	86913987caeb903832020d2fe90ae84609f0395a	f	digitalglarus_meeting.png		\N	2015-09-25 14:06:33.96413+00	2015-09-25 14:06:46.631567+00	t	1	1	41
82	filer_public/12/69/12691306-fb1e-4f9d-b4ae-d5c5d7230491/digitalglarus_meeting_luchsingen_nicoshottelius_.png	2391540	c193629ca8402139753fb8d4fb54ebf50b8d5b53	f	digitalglarus_meeting_luchsingen_nicoshottelius_.png		\N	2015-09-25 14:25:34.145557+00	2015-09-25 14:25:36.251826+00	t	1	1	41
60	filer_public/f2/78/f2785449-e7b9-4260-b5d7-b30b16502b88/connectivity.jpg	516806	4c6936b5173cd61edfb3424d6dd6ad821664af48	f	connectivity.jpg		\N	2015-09-02 13:56:01.172606+00	2015-09-02 13:56:02.362662+00	t	2	1	41
83	filer_public/a6/27/a6277491-6326-4888-8359-5c8e5aa71038/opennebulaconf_nicoschottelius_speech_cdist.jpg	1058168	44f59598a11a0d71b8545ced79da5e2938876fb9	f	opennebulaconf_nicoschottelius_speech_cdist.jpg		\N	2015-10-27 12:44:05.615644+00	2015-10-27 12:44:22.932406+00	t	1	1	41
61	filer_public/58/bd/58bd81e3-9cd7-4661-a52a-d938c54e88f5/cdist.png	13607	1421132c5c81f413fee6f0b4a1052ede907d36d0	f	cdist.png		\N	2015-09-02 13:57:36.512705+00	2015-09-02 13:57:38.476075+00	t	2	1	41
62	filer_public/c5/0b/c50bced0-f132-4cb0-9e22-e0656a4854e8/newspaper.png	283035	9fc78a85524f3243a371d751cc8988075b2d1c03	f	newspaper.png			2015-09-17 19:17:53.545241+00	2015-09-17 19:30:18.483346+00	t	1	1	41
85	filer_public/38/96/3896569e-d2e3-45c6-ada2-3c28abb08ce1/opennebulaconf_ungleich_barcelosants.jpg	1003229	166c54396d0c0755a0a428e12c73256ae77425ee	f	opennebulaconf_ungleich_barcelosants.jpg		\N	2015-10-27 13:16:16.707021+00	2015-10-27 13:16:18.135843+00	t	1	1	41
100	filer_public/6a/90/6a90c3c6-2553-449c-bb2b-ae29e9e1c233/ungleich_logo.svg	6784	c8caca44549684e2b9cc4ff93e819c89e906599b	f	ungleich_logo.svg	logo-black	ungleich logo in black.\r\nvector file.	2015-11-03 10:12:48.336129+00	2015-11-03 10:13:55.780952+00	t	13	1	38
147	filer_public/68/1b/681b8513-604a-4eac-882d-fdd3335c31a2/logo_white_copy.png	9038	246dae8d02f90c3edb42597bb6afac754c7ccdf1	f	logo_white copy.png		\N	2015-11-09 18:20:12.770214+00	2015-11-09 18:20:14.265402+00	t	1	1	41
67	filer_public/45/89/4589a5e7-6df8-4dde-885c-0033ef7e80ba/breakfast_coffee	853032	48c08940a0b5eb23d21eca80f57bd4e0c9694c95	f	breakfast_coffee		\N	2015-09-17 19:46:16.481097+00	2015-09-17 19:46:16.481125+00	t	\N	1	38
68	filer_public/86/d1/86d18426-6967-4877-bf73-683fbb4273b7/breakfast_coffee	853032	48c08940a0b5eb23d21eca80f57bd4e0c9694c95	f	breakfast_coffee		\N	2015-09-17 19:47:05.946457+00	2015-09-17 19:47:05.946486+00	t	\N	1	38
69	filer_public/cc/a8/cca85891-c5f9-4053-815b-003579f2a042/breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png	853100	ceabbccfdcef44a75756ddf8458ec76f28125e53	f	breakfast_coffee_long_loaf_newspaper_5461_1920x1080.png		\N	2015-09-17 19:47:55.243148+00	2015-09-17 19:47:57.244413+00	t	1	1	41
86	filer_public/1b/a2/1ba22212-899a-44cd-ba61-f255a3cf737b/opennebulaconf2015_barcelonsants.jpg	1340766	322a142537de2f8cfbbc41420baf6ffd9f974743	f	OpenNebulaConf2015_barcelonsants.jpg		\N	2015-10-27 13:20:15.955123+00	2015-10-27 13:20:17.544293+00	t	1	1	41
134	filer_public/bc/e2/bce2eddd-f867-464b-a01b-ad1b5ace6853/newspaper_background.jpg	3261916	a396c77b1fd47d3319d5ec5d3acd1b4cfc278959	f	newspaper_background.jpg		\N	2015-11-09 16:17:49.332527+00	2015-11-09 16:17:55.902332+00	t	1	1	41
87	filer_public/22/70/2270481f-b2ca-4981-b72a-e7937d2dc70a/opennebulaconf_ungleich_entrance.jpg	1235047	d29fd16e3bf0188b174bcaff35c102952307c495	f	opennebulaconf_ungleich_entrance.jpg		\N	2015-10-27 13:24:49.436563+00	2015-10-27 13:24:52.145771+00	t	1	1	41
88	filer_public/70/e4/70e4f84f-a18d-43fc-bd4f-2e4466bc43d8/opennebulaconf_ungleich.jpg	1195925	ab7f5b00e0984c00c787f5328e3b8e522a5fd5ef	f	opennebulaconf_ungleich.jpg		\N	2015-10-27 13:24:50.66817+00	2015-10-27 13:24:52.236215+00	t	1	1	41
136	filer_public/a5/ed/a5edcfd5-ad62-4b39-8004-4314c7ab5bbf/digitalglarus_coworkers_nico_chalet.jpg	2088477	8708da5185328b9251c25f8999d350231da16311	f	digitalglarus_coworkers_nico_chalet.jpg		\N	2015-11-09 16:29:29.797665+00	2015-11-09 16:29:31.469174+00	t	1	1	41
89	filer_public/f3/fb/f3fbef02-ae58-4175-a224-87eb8e036d6f/opennebulaconf_ungleich_team_booth.jpg	1449261	b8b92fd424821db18d5cbe75963a428de457e4d4	f	opennebulaconf_ungleich_team_booth.jpg		\N	2015-10-27 13:34:51.013816+00	2015-10-27 13:34:56.353334+00	t	1	1	41
90	filer_public/98/db/98dbec94-a5a6-44f9-862f-4601c442065e/opennebulaconf_ungleich_booth.jpg	1233615	caa6e3240456b7ae598397a594df55cc9b265b26	f	opennebulaconf_ungleich_booth.jpg		\N	2015-10-27 13:35:10.932371+00	2015-10-27 13:35:12.394748+00	t	1	1	41
138	filer_public/b6/fc/b6fc3fe9-cfa9-4eb0-95a1-49a1c6a1558e/digitalglarus_vision_background_nico.jpg	803640	ef3d53eaa98040511cc7dcb16d7724bec606dc1a	f	digitalglarus_vision_background_nico.jpg		\N	2015-11-09 17:57:36.903065+00	2015-11-09 17:57:38.744337+00	t	1	1	41
91	filer_public/e2/91/e2912fd9-d517-4f02-86c9-d9489967ac16/build_opennebula_cdist_banner.jpg	1118583	471dcfe227c1706851b8e203fb8c3e22a6dcfef7	f	build_opennebula_cdist_banner.jpg		\N	2015-10-27 13:41:12.180387+00	2015-10-27 13:41:13.88315+00	t	1	1	41
140	filer_public/b9/34/b9349333-9ca6-47d8-bc38-61041752dbc3/mountain.jpg	1627574	c0c192609880c616454b0bdfae87e09ef03eb8df	f	mountain.JPG		\N	2015-11-09 18:03:18.920942+00	2015-11-09 18:03:24.132121+00	t	1	1	41
92	filer_public/bf/ed/bfedea35-d334-42de-9002-bc9164dfde08/opennebulaconf_talk_nicoschottelius.jpg	1294215	ede0b179c51059652294c19e7c30340cdd308e84	f	opennebulaconf_talk_nicoschottelius.jpg		\N	2015-10-27 14:11:12.63688+00	2015-10-27 14:11:14.352606+00	t	1	1	41
142	filer_public/46/01/46014e89-5c93-42c0-990c-8581c28b416b/ungleich_logo.png	11822	96dde3104d4369a0e6fbf93858082777072de8d6	f	ungleich logo.png		\N	2015-11-09 18:07:01.555641+00	2015-11-09 18:07:03.982535+00	t	1	1	41
93	filer_public/3e/0e/3e0e96c1-c373-4889-b918-91ce74abf05d/opennebula_cdist_ungleich_nicoschottelius.jpg	964075	221d8d3da22b8b1dd5d68e946027d111088ea860	f	opennebula_cdist_ungleich_nicoschottelius.jpg		\N	2015-10-27 14:11:26.528054+00	2015-10-27 14:11:28.186496+00	t	1	1	41
94	filer_public/83/c4/83c49f97-bd66-4538-b8e5-fa9535ff4200/opennebulaconf_2015_ungleich_.jpg	1339396	697d1f39704900bd5062fad941225bc7d92aa981	f	opennebulaconf_2015_ungleich_.jpg		\N	2015-10-27 14:11:43.116666+00	2015-10-27 14:11:44.96303+00	t	1	1	41
95	filer_public/cf/a5/cfa51e77-6140-4c12-8bbe-d18d235e3f9b/opennebulaconf_ungleich_2015_nico.jpg	1040545	b2f836ac135ec03b1e44455af385aedfb0444a19	f	opennebulaconf_ungleich_2015_nico.jpg		\N	2015-10-27 14:12:12.763745+00	2015-10-27 14:12:14.570505+00	t	1	1	41
146	filer_public/12/eb/12eba5f0-fb7a-46a9-9371-708e4fb19758/pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg	554311	b23cb180d649a0cb9f4a518be17f17dc2f910587	f	pier-on-a-beautiful-swiss-lake-hd-wallpaper-338658.jpg		\N	2015-11-09 18:18:27.950826+00	2015-11-09 18:18:29.293367+00	t	1	1	41
96	filer_public/f4/78/f47898ab-c29b-42ce-89a5-f258aad72425/opennebulaconf_tapas_night_ungleich.jpg	1321994	abf5549e912a8118d7696d00c968898bfcebe780	f	opennebulaconf_tapas_night_ungleich.jpg		\N	2015-10-27 14:20:23.563786+00	2015-10-27 14:20:24.925744+00	t	1	1	41
97	filer_public/bb/bf/bbbf66f4-d0a7-446d-8012-275204713550/opennebula_conf_2015_ungleich.jpg	1096247	3f810b819dd7b8a7b076b70ba7f3b857158e7502	f	opennebula_conf_2015_ungleich.jpg		\N	2015-10-27 14:26:35.115125+00	2015-10-27 14:26:36.61502+00	t	1	1	41
148	filer_public/0e/00/0e00736c-d561-4ea7-8cec-316d064c08e8/digitalglarus_opennebula_workshop_bw_.jpg	366659	4d03d0382191b81e873f6ca762a10b4b4ab4f7fa	f	digitalglarus_opennebula_workshop_bw_.jpg		\N	2015-11-09 18:57:25.835212+00	2015-11-09 18:57:26.96204+00	t	1	1	41
98	filer_public/62/4a/624ae944-d353-4609-8a04-1d59ec8ec863/opennebula_barcelona_beach.jpg	2566065	f129e17091ea53abce4024b966911ac8d0be6b0c	f	opennebula_barcelona_beach.jpg		\N	2015-10-27 14:41:18.084793+00	2015-10-27 14:41:19.925988+00	t	1	1	41
99	filer_public/d2/20/d220a200-deb4-475c-aa47-ad1621a30179/opennebula_collage_ungleich_barcelona.jpg	2624469	398f6c5f689746deb24fea2b4881965ea91ac3d2	f	opennebula_collage_ungleich_barcelona.jpg		\N	2015-10-27 16:25:59.069866+00	2015-10-27 16:26:01.170181+00	t	1	1	41
149	filer_public/7f/f5/7ff594a0-2bc0-4ebb-a378-14c12bb54845/wissen-dark.jpg	121621	7d5127c0abfceb1b62ca5fe6a27f31cf9fe2393f	f	wissen.jpg			2015-11-13 23:28:49.038909+00	2015-11-13 23:31:05.877317+00	t	1	1	41
151	filer_public/f5/21/f5217344-b8b9-4718-9c4c-c3a552c6335f/newspaper.jpg	827849	09db2e4b63e8395a709fc347df4ad2188b497861	f	newspaper.jpg		\N	2015-11-15 14:51:50.237625+00	2015-11-15 14:51:51.598211+00	t	1	1	41
152	filer_public/d3/35/d335b751-d3c3-4eb9-ba95-f9c405dbdcee/newspaper.jpg	1150960	448f2da207f9f976fc43a34bd70fcd499daad3fc	f	newspaper.jpg		\N	2015-11-15 14:54:26.371783+00	2015-11-15 14:54:27.827966+00	t	1	1	41
153	filer_public/c4/92/c492166a-daa9-4c1b-9fec-5ff56c4a3841/newspaper.png	1627521	acb0bffb1bf812e6c9abecd1c172e3dea208fedd	f	newspaper.png		\N	2015-11-15 14:56:38.730397+00	2015-11-15 14:56:40.176414+00	t	1	1	41
154	filer_public/1b/26/1b267709-4e35-47a0-91fc-2cd09e9b04b3/jazz_background.png	105925	c1dcc0763aa5060d50eb6c7b38cbf08bb690b92a	f	jazz_background.png		\N	2015-11-19 20:53:01.81851+00	2015-11-19 20:53:06.025715+00	t	1	1	41
155	filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png	107132	68a09d401dc56ebcd21da7d19ac55a06fde31450	f	blog_digitalglarus_concert_jazz.png		\N	2015-11-25 06:54:10.958837+00	2015-11-25 06:54:22.368731+00	t	15	1	41
156	filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg	257594	413af09fea9eb926cd8854e72339aa2a53ad503f	f	fivepasteight_band.jpg		\N	2015-11-25 19:26:30.459343+00	2015-11-25 19:26:32.070551+00	t	1	1	41
157	filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png	17455	06cbb2c6fda69bd8c3c5892ea194c96722741d6e	f	banner_100days_1062x274.png		\N	2015-11-25 19:48:23.376895+00	2015-11-25 19:48:25.354758+00	t	1	1	41
158	filer_public/11/c3/11c3d319-5a63-4793-ac13-5b424c5c6986/digitalglarus_jazz_concert_band_audience.jpg	200672	4a950ea06ecc22f265bf7a58332cd043f19bdea7	f	digitalglarus_jazz_concert_band_audience.jpg		\N	2015-12-07 13:32:10.751425+00	2015-12-07 13:32:13.987152+00	t	1	1	41
159	filer_public/f1/2f/f12f5f1e-4ac4-40c9-b4cd-35a825725d86/digitalglarus_jazz_concert_theband.jpg	341873	852c244c999db356d93b36255277397a3d5490c1	f	digitalglarus_jazz_concert_theband.jpg		\N	2015-12-07 13:34:53.167444+00	2015-12-07 13:34:54.919582+00	t	1	1	41
160	filer_public/7b/c2/7bc2447a-5b27-4714-8c7d-142d4aed6e22/digitalglarus_jazz_concert_flyers.jpg	268019	633d2585d5d970e6dd73b1ac3cdb87d60daec742	f	digitalglarus_jazz_concert_flyers.jpg		\N	2015-12-07 14:00:41.629306+00	2015-12-07 14:00:43.481295+00	t	1	1	41
101	filer_public/8d/40/8d4036a0-2dd5-4d9d-b96b-c38d818b82a4/g3485.png	3190	8ae98e1566b35740889fa86c6a5f165040c4443f	t	ungleich_logo_black.png	ungleich-logo-black-png	ungleich black logo.\r\npng file.	2015-11-03 10:15:21.772584+00	2015-11-03 10:16:11.955146+00	t	13	1	41
102	filer_public/30/ef/30ef62de-ab67-4182-9741-021a47d0e9ee/g3477.png	447	5bf78212fb5080843658b5ec8f8cce0924596372	t	g3477.png	ungleich-symbol-black-small	ungleich small symbol on black	2015-11-03 10:17:17.655208+00	2015-11-03 10:18:00.622742+00	t	13	1	41
135	filer_public/d7/70/d7700b74-a4f5-4cb5-a0ea-a4f4f56267b2/digitalglarus_digitalchalet_coworkers_nico.jpg	11131129	9003b435947c7cd46612aeada2128cf6fc548427	f	digitalglarus_digitalchalet_coworkers_nico.jpg		\N	2015-11-09 16:19:50.078495+00	2015-11-09 16:26:06.842777+00	t	1	1	41
103	filer_public/29/d9/29d9fe59-69da-421f-9794-adadd8b39ffe/jazz_party.png	200071	105a4c72a3867d8cadf1886e76dabbc23d3e6ce8	t	jazz_party.png	digitalglarus-banner-jazz-concert		2015-11-03 10:26:09.592195+00	2015-11-03 10:32:00.131349+00	t	15	1	41
104	filer_public/80/0c/800c114c-f117-42b5-b609-1e503a706a77/grand_opening.png	26754	17e1c634a4b77591a45b4dd6e9dc8e6a186560ee	t	grand_opening.png	digitalglarus-banner-opening		2015-11-03 10:28:52.751158+00	2015-11-03 10:46:50.56515+00	t	15	1	41
137	filer_public/cc/4a/cc4ac84e-b3f9-41e9-8f5d-2fac2a447969/digitalglarus_digitalchalet_schwanden_interior_small.jpg	506575	c619d107fc9163be59d9163de479ba123be413c3	f	digitalglarus_digitalchalet_schwanden_interior_small.jpg		\N	2015-11-09 17:54:47.939458+00	2015-11-09 17:54:50.208981+00	t	1	1	41
105	filer_public/e4/ca/e4caf196-18fc-4cc6-bafc-7c9f65884857/digitalglarus_digitalchalet_schwanden_ungleich.jpg	794075	c4be1704163e12f9182cd9c5aca15db40cff758c	t	digitalglarus_digitalchalet_schwanden_ungleich.jpg	digital-glarus-first-chalet-exterior		2015-11-03 10:58:18.370077+00	2015-11-03 10:58:55.678595+00	t	16	1	41
106	filer_public/39/b3/39b30395-5699-4bfa-920c-e5f4f52949a4/newspaper-digitalglarus-diesudo.jpg	515192	e87e6c6de172273a444f42bd3c1d7f2e540dddae	t	newspaper-digitalglarus-diesudo.jpg	newspaper-13092015-dontknowthename		2015-11-03 11:05:47.579175+00	2015-11-03 11:06:49.462199+00	t	17	1	41
139	filer_public/de/59/de5992a6-5000-4bf2-8c76-856cd3f9d032/digitalglarus_scenery.jpg	1780521	f18215301c230006f125013fcdd7bcc1fccf47f9	f	digitalglarus_scenery.jpg		\N	2015-11-09 17:58:35.339915+00	2015-11-09 17:58:36.784249+00	t	1	1	41
141	filer_public/62/91/6291774f-e59c-44cf-8880-704ea08c7a28/ungleich_logo.svg	6784	c8caca44549684e2b9cc4ff93e819c89e906599b	f	ungleich_logo.svg		\N	2015-11-09 18:06:14.508235+00	2015-11-09 18:06:15.783909+00	t	1	1	38
108	filer_public/f4/40/f440bcee-aced-4842-84ac-c78d6ac703b4/digitalglarus_vision_background_nico.jpg	803640	ef3d53eaa98040511cc7dcb16d7724bec606dc1a	f	digitalglarus_vision_background_nico.jpg		\N	2015-11-03 11:14:03.662848+00	2015-11-03 11:14:19.967043+00	t	1	1	41
145	filer_public/2b/d5/2bd58cd3-2d7b-46e2-93d0-2e5e6d428695/logo_white.png	5659	cc78344cbb0ac932410f4e51435c0d16b69f6cec	f	logo_white.png		\N	2015-11-09 18:16:52.082666+00	2015-11-09 18:16:55.088552+00	t	1	1	41
113	filer_public/40/0d/400d5643-2d94-4fb2-a991-8b08c96b8a0a/digitalglarus_scenery_jpg	1340055	9a93b869236da8094161e949da2d280f11c0da0e	f	digitalglarus_scenery_jpg		\N	2015-11-03 13:45:08.56538+00	2015-11-03 13:45:09.694233+00	t	1	1	38
115	filer_public/60/a4/60a49d16-edc5-4a89-b1b0-1c24645c492e/fondue.png	843808	d035b8d446eb41819da50ec5ff97b317a5f607ca	f	fondue.png		\N	2015-11-03 18:15:41.888683+00	2015-11-03 18:15:43.654339+00	t	1	1	41
116	filer_public/7e/c8/7ec8b6bd-33e2-49f1-9714-c67a3e7b317f/digitalglarus_opennebula_workshop_nico_back.jpg	518461	139ed375c211a05b8840505eb9886b6639491735	f	digitalglarus_opennebula_workshop_nico_back.jpg		\N	2015-11-08 20:38:27.148687+00	2015-11-08 20:39:13.128533+00	t	1	1	41
117	filer_public/70/81/7081d7e6-2a6a-4284-90a1-ab834dc42b03/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png	2879204	010a0d132ff93b075c0d2d39e32eb51f90c39512	f	digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png		\N	2015-11-08 20:41:47.563059+00	2015-11-08 20:41:49.922385+00	t	1	1	41
118	filer_public/5d/7b/5d7bf980-a365-4471-b34f-a9f1fe872922/glarus_autumn_copy.jpg	424523	ea9ce8df090ea42d27157db78b658f540ffddd4b	f	glarus_autumn copy.jpg		\N	2015-11-08 21:08:59.962374+00	2015-11-08 21:09:01.232524+00	t	1	1	41
119	filer_public/4a/c5/4ac5fef8-c3f7-4a8f-a3cf-eac1498f24e9/digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png	2879204	010a0d132ff93b075c0d2d39e32eb51f90c39512	f	digitalglarus_digitalchalet_opennebula_workshop_cdist_nico_.png		\N	2015-11-08 21:45:05.376201+00	2015-11-08 21:45:07.554976+00	t	1	1	41
120	filer_public/d0/fc/d0fc9d0e-648c-4491-a92d-4e318c83b719/digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png	2525246	8fbacbdc3b0b799b5589cdc24d7ebb3f616a7a72	f	digitalglarus_opennebula_workshop_digitalchalet_nico_ungleich_.png		\N	2015-11-08 21:45:54.187266+00	2015-11-08 21:45:58.671515+00	t	1	1	41
121	filer_public/f1/46/f1468bbe-30c1-4c0e-8470-ebf2d0a62644/digitalglarus_opennebula_workshop_nico_.jpg	625533	5cd19273614380568be51458c0642d83adbb4aa6	f	digitalglarus_opennebula_workshop_nico_.jpg		\N	2015-11-08 21:46:50.130335+00	2015-11-08 21:46:51.570154+00	t	1	1	41
162	filer_public/28/00/28007b1f-af48-4a29-9684-79c2dcd4b041/digitalglarus_jazz_concert_coupons	310699	fd9df2a7c96d7c128eba64f381c4fd4b582e0d2a	f	digitalglarus_jazz_concert_coupons		\N	2015-12-07 14:01:57.700865+00	2015-12-07 14:01:57.700898+00	t	\N	1	38
122	filer_public/fd/be/fdbece7c-3159-4ea9-85b1-9c84990ae32b/digitalglarus_opennebula_workshop_nico_.jpg	625533	5cd19273614380568be51458c0642d83adbb4aa6	f	digitalglarus_opennebula_workshop_nico_.jpg		\N	2015-11-08 21:47:50.386976+00	2015-11-08 21:48:04.032112+00	t	1	1	41
123	filer_public/fc/ee/fceee684-6cda-4cce-8633-8831c92c32d9/digitalglarus_opennebula_workshop_nico_schwanden_.jpg	914306	53104d29059809ac8407c7cc3526a6474b107cae	f	digitalglarus_opennebula_workshop_nico_schwanden_.jpg		\N	2015-11-08 21:49:57.410576+00	2015-11-08 21:50:00.913553+00	t	1	1	41
124	filer_public/47/cc/47ccb6ef-b524-4387-a023-52323573a3c0/digitalglarus_opennebula_workshop_nico_schwanden_.jpg	914306	53104d29059809ac8407c7cc3526a6474b107cae	f	digitalglarus_opennebula_workshop_nico_schwanden_.jpg		\N	2015-11-08 22:30:09.372896+00	2015-11-08 22:30:11.540818+00	t	1	1	41
125	filer_public/dd/67/dd67c26d-551c-42ed-91ba-69bdfa6e0996/a1_poster_jazz_digitalglarus_half.png	37731	bfcc4054b5c5aa0346602afbfd942de68ff1c1a2	f	a1_poster_jazz_digitalglarus_half.png		\N	2015-11-09 15:57:03.810017+00	2015-11-09 15:57:06.05442+00	t	1	1	41
126	filer_public/9d/b6/9db6ebc0-2e3b-498c-9fbb-aa269eccb667/a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png	93675	c20a39f1db04cb9f00e21f29cbfd2db38c711b06	f	a1_poster_jazz_digitalglarus_594x841_nomargin_ai.png		\N	2015-11-09 15:57:56.109691+00	2015-11-09 15:57:58.420471+00	t	1	1	41
127	filer_public/43/41/43419dd2-56cc-45f3-a73a-afcf780cfd0b/digitalglarus_openingparty_digitalchalet_schwanden.jpg	3306459	55bc506f8f955b7f473addd61f98a10653a89c1a	f	digitalglarus_openingparty_digitalchalet_schwanden.jpg		\N	2015-11-09 15:59:30.577157+00	2015-11-09 15:59:33.249147+00	t	1	1	41
128	filer_public/5f/43/5f43e3ae-c494-4519-9bb6-ad6a9141203d/crowdfunding_background.jpg	2191896	00c7b064e2c3f0be07de71a76e97d1e5d499f7d2	f	crowdfunding_background.jpg		\N	2015-11-09 16:01:17.752451+00	2015-11-09 16:01:20.57875+00	t	1	1	41
129	filer_public/da/60/da600e90-35fd-4458-a24f-5c040f05f208/crowdfunding_20reached_background.jpg	132031	5522a35baee2177dfa9671daf07293a801a0eadd	f	crowdfunding_20reached_background.jpg		\N	2015-11-09 16:04:59.557024+00	2015-11-09 16:05:01.04099+00	t	1	1	41
131	filer_public/d5/9e/d59eb896-c29b-470a-bffe-d866ea1bd185/digitalglarus_tv_nico_suedostschweiz_copy.png	1674327	9ff5986a80daa2c291b44f9b854bdc1a82ebacbe	f	digitalglarus_tv_nico_suedostschweiz copy.png		\N	2015-11-09 16:08:01.763558+00	2015-11-09 16:10:07.953274+00	t	1	1	41
163	filer_public/d8/b4/d8b4ed89-af2b-43f3-aa38-969352fd98d0/digitalglarus_jazz_concert_coupons.jpg	318233	fa79ff786fdb198462b9da0659d9261b952c32bf	f	digitalglarus_jazz_concert_coupons.jpg		\N	2015-12-07 14:02:30.82595+00	2015-12-07 14:02:32.401207+00	t	1	1	41
164	filer_public/50/7b/507b5b2f-4796-4a59-8389-8bdd656a76d8/digitalglarus_jazz_concert_program.jpg	3558293	2fc3a1d9954464d570825d0c161f7a61b6abe463	f	digitalglarus_jazz_concert_program.jpg		\N	2015-12-07 14:03:38.75209+00	2015-12-07 14:03:38.752133+00	t	\N	1	41
165	filer_public/50/04/500490f1-fafa-4041-adc9-e69444082797/digitalglarus_jazz_concert_program.jpg	271742	e2c5a237e49a2ba9b995ff192007ba3d7cef4017	f	digitalglarus_jazz_concert_program.jpg		\N	2015-12-07 14:04:25.723805+00	2015-12-07 14:04:27.0177+00	t	1	1	41
166	filer_public/1d/e4/1de4aea6-cad7-467e-8e39-54ea257e00a0/digitalglarus_jazz_concert_band_rehearsal.jpg	393603	f785bba7d671537ed4dd6bab6527a9a3e6e20bcc	f	digitalglarus_jazz_concert_band_rehearsal.jpg		\N	2015-12-07 14:14:36.62346+00	2015-12-07 14:14:38.381338+00	t	1	1	41
167	filer_public/1a/01/1a010cef-9537-4e8e-92f3-96dbdc299c08/digitalglarus_jazz_concert_audiene_schwanden.jpg	289667	147fd86606131f5d130791873e3dd3d7cc29bdcd	f	digitalglarus_jazz_concert_audiene_schwanden.jpg		\N	2015-12-07 14:22:02.709456+00	2015-12-07 14:22:04.925859+00	t	1	1	41
168	filer_public/b1/87/b187f339-d879-4ab9-b978-25754a2a3182/digitalglarus_jazz_concert_audience_room.jpg	304420	56bb7b7ff52a0ddf34170d10d17d4dfa9a7174b7	f	digitalglarus_jazz_concert_audience_room.jpg		\N	2015-12-07 14:30:36.695874+00	2015-12-07 14:30:38.12575+00	t	1	1	41
169	filer_public/bb/76/bb76b659-b2d5-4c0f-83f9-d84608d6c76a/digitalglarus_jazz_concert_band_brass.jpg	210284	ba11579470eb6f866b802e932055a5cba35454d6	f	digitalglarus_jazz_concert_band_brass.jpg		\N	2015-12-07 14:31:07.152124+00	2015-12-07 14:31:09.434282+00	t	1	1	41
170	filer_public/c7/b6/c7b69e70-30f5-4134-8bde-2cd5f4e99ee1/digitalglarus_jazz_concert_fullhouse.jpg	141961	528d4b7373f83e02cacd2daced8f6d569381fd2c	f	digitalglarus_jazz_concert_fullhouse.jpg		\N	2015-12-07 14:31:43.784768+00	2015-12-07 14:31:45.295355+00	t	1	1	41
171	filer_public/36/d0/36d0117f-8e0c-4978-ae0a-374c5591e14f/digitalglarus_jazz_concert_donation.jpg	335565	2348ab89727bbe0dcc52608b63b317f58146bd74	f	digitalglarus_jazz_concert_donation.jpg		\N	2015-12-07 15:54:30.094564+00	2015-12-07 15:54:31.413176+00	t	1	1	41
173	filer_public/9d/e4/9de4da73-5ce7-4cf7-96ca-cd45d3f7fc49/digitalglarus_jazz_concert_flyers.jpg	275327	a3a54388140eedec8b1cb74c8000486775c9a0f4	f	digitalglarus_jazz_concert_flyers.jpg		\N	2015-12-07 16:07:50.78093+00	2015-12-07 16:07:52.236825+00	t	1	1	41
175	filer_public/36/c6/36c6dafb-2ca5-4955-b5cf-4ba45c2021ba/gold_pack_preview_image.jpg	59783	3509455e28f7c35f6f3624be4d9fd12a1d082cb3	f	gold_pack_preview_image.jpg		\N	2016-01-06 14:01:40.218995+00	2016-01-06 14:01:41.548974+00	t	1	1	41
182	filer_public/aa/d2/aad28b4d-6205-4156-9427-bc57ca17a580/top-50-2012.jpg	115307	97519ff54570705a16ba7188e2c24a054a5d7ba6	f	top-50-2012.jpg		\N	2016-01-06 18:06:27.340842+00	2016-01-06 18:06:28.854939+00	t	1	1	41
184	filer_public/b8/17/b8176430-b31f-48ee-9eba-48f644eb63d5/confetti.jpg	275033	33be22d9bc88f757922a907a9e756069e566d4da	f	Confetti.jpg		\N	2016-01-08 10:32:22.118568+00	2016-01-08 10:32:23.299081+00	t	1	1	41
185	filer_public/c1/37/c13784e4-196d-44fa-b341-9a3948eab1ec/twitter_header_thankyou_confetti.png	570764	32ae64f6f08041a87b3032ae11b4fc61a9afc14b	f	twitter_header_thankyou_confetti.png		\N	2016-01-13 21:21:26.825489+00	2016-01-13 21:21:29.61522+00	t	1	1	41
176	filer_public/4a/a0/4aa0f05c-1607-4eb4-9c0d-e14bba66876d/nico_schottelius_frontpage_newspaper_2016_01_06_.jpg	287081	69c740349cb86fff88953e30ae7ed6df9498ad45	f	nico_schottelius_frontpage_newspaper_2016_01_06_.jpg			2016-01-06 16:32:43.505079+00	2016-01-15 15:31:32.265617+00	t	1	1	41
180	filer_public/6a/6e/6a6e8484-c426-492b-a2ce-22c336e5edc1/nico_schottelius_tv_2016-01-06_.png	328878	8dd654c2ad95c08f6f37734ae7a870c6585d5386	f	nico_schottelius_tv_2016-01-06_.png			2016-01-06 17:33:27.030164+00	2016-01-15 15:31:54.199636+00	t	1	1	41
181	filer_public/c6/05/c6059d7a-452e-4557-aa61-37e30214569b/nico_schottelius_tv_interview_2016-01-06_.png	356749	536e01c0c3df05072a23887b7cf90a657be2b0fb	f	nico_schottelius_tv_interview_2016-01-06_.png			2016-01-06 18:02:49.031364+00	2016-01-15 15:32:02.297211+00	t	1	1	41
183	filer_public/41/c7/41c7f79b-3289-411f-845d-d7118ab000b0/twitter_header_thankyou_confetti.png	570764	32ae64f6f08041a87b3032ae11b4fc61a9afc14b	f	twitter_header_thankyou_confetti.png			2016-01-08 10:29:41.810532+00	2016-01-15 15:32:52.742688+00	t	1	1	41
188	filer_public/96/07/96077c88-8222-40c0-8a69-37ffcc5877bb/too-many-emails.png	242962	29807ac376019394eafc0ab0ce20448f84c2975d	f	too-many-emails.png			2016-01-14 16:38:34.959758+00	2016-01-15 15:33:04.485442+00	t	1	1	41
178	filer_public/87/10/8710bdfb-72d1-45a1-9fde-6d566c4911d0/20000.jpg	146471	be4b324bc7d1866584d3fc8fd4932a1d7176b0a0	f	20000.jpg			2016-01-06 16:57:55.893398+00	2016-01-15 15:35:17.030217+00	t	1	1	41
187	filer_public/11/b0/11b07caf-01e0-4035-af07-24e5c4fb8637/snow_luchsingen_small.jpg	297709	731e5a030ead2041637f28efce2d2dae3bb7a893	f	snow_luchsingen_small.jpg			2016-01-14 15:56:21.23522+00	2016-01-15 15:37:55.260209+00	t	1	1	41
186	filer_public/00/3a/003ac171-09bc-4032-b743-31747a66725d/twitter_header_thankyou_confetti_dark.png	518808	441c4f74b112b289c6e0e592823f994f261d760d	f	twitter_header_thankyou_confetti_dark.png			2016-01-13 21:23:52.452915+00	2016-01-15 15:46:51.460603+00	t	1	1	41
\.


--
-- Name: filer_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('filer_file_id_seq', 188, true);


--
-- Data for Name: filer_folder; Type: TABLE DATA; Schema: public; Owner: app
--

COPY filer_folder (id, name, uploaded_at, created_at, modified_at, lft, rght, tree_id, level, owner_id, parent_id) FROM stdin;
4	13062015_Conf2015	2015-06-13 17:44:50.116189+00	2015-06-13 17:44:50.116239+00	2015-06-13 17:44:50.116262+00	4	5	1	3	1	3
5	ungleich_pages	2015-06-14 04:47:41.720159+00	2015-06-14 04:47:41.720207+00	2015-06-14 04:47:41.720231+00	1	4	2	0	1	\N
6	blog_page	2015-06-14 04:47:55.541517+00	2015-06-14 04:47:55.541567+00	2015-06-14 04:47:55.54159+00	2	3	2	1	1	5
7	ungleich_blog_launched	2015-06-14 04:55:41.136704+00	2015-06-14 04:55:41.136754+00	2015-06-14 04:55:41.136778+00	6	7	1	3	1	3
8	openclouddaybern2015	2015-06-16 21:21:25.670405+00	2015-06-16 21:21:25.670455+00	2015-06-16 21:21:25.670477+00	11	12	1	2	1	2
3	img	2015-06-13 17:44:24.018499+00	2015-06-13 17:44:24.018549+00	2015-06-14 03:10:32.32511+00	3	10	1	2	1	2
9	born_bbq_2015_06_18	2015-06-22 13:39:41.706736+00	2015-06-22 13:39:41.706787+00	2015-06-22 13:39:41.70681+00	8	9	1	3	1	3
1	ungleich_blog	2015-06-12 21:10:27.076932+00	2015-06-12 21:10:27.076969+00	2015-06-12 21:10:27.07699+00	1	16	1	0	1	\N
2	articles	2015-06-13 17:44:13.866219+00	2015-06-13 17:44:13.866266+00	2015-06-14 02:53:32.802057+00	2	15	1	1	1	1
10	digitalglarus	2015-09-24 15:09:29.161924+00	2015-09-24 15:09:29.16197+00	2015-09-24 15:09:29.161991+00	13	14	1	2	1	2
12	ungleich	2015-11-03 10:12:19.54929+00	2015-11-03 10:12:19.549334+00	2015-11-03 10:12:19.549355+00	2	5	3	1	1	11
13	logo	2015-11-03 10:12:29.099472+00	2015-11-03 10:12:29.099519+00	2015-11-03 10:12:29.099541+00	3	4	3	2	1	12
15	banners	2015-11-03 10:25:53.247917+00	2015-11-03 10:25:53.247962+00	2015-11-03 10:25:53.247984+00	7	8	3	2	1	14
16	first_chalet	2015-11-03 10:56:20.372221+00	2015-11-03 10:56:20.372296+00	2015-11-03 10:56:20.372322+00	9	10	3	2	1	14
14	digitalglarus	2015-11-03 10:25:38.736617+00	2015-11-03 10:25:38.736665+00	2015-11-03 10:25:38.736686+00	6	13	3	1	1	11
11	image_repo	2015-11-03 10:00:13.785617+00	2015-11-03 10:00:13.785664+00	2015-11-03 10:00:13.785686+00	1	14	3	0	1	\N
17	press	2015-11-03 11:05:29.249246+00	2015-11-03 11:05:29.249294+00	2015-11-03 11:05:29.249316+00	11	12	3	2	1	14
\.


--
-- Name: filer_folder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('filer_folder_id_seq', 17, true);


--
-- Data for Name: filer_folderpermission; Type: TABLE DATA; Schema: public; Owner: app
--

COPY filer_folderpermission (id, type, everybody, can_edit, can_read, can_add_children, folder_id, group_id, user_id) FROM stdin;
\.


--
-- Name: filer_folderpermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('filer_folderpermission_id_seq', 1, false);


--
-- Data for Name: filer_image; Type: TABLE DATA; Schema: public; Owner: app
--

COPY filer_image (file_ptr_id, _height, _width, date_taken, default_alt_text, default_caption, author, must_always_publish_author_credit, must_always_publish_copyright, subject_location) FROM stdin;
53	886	1791	2015-08-29 13:39:31.707846+00	\N	\N	\N	f	f	\N
54	1584	2022	2015-09-02 10:14:03.066772+00	\N	\N	\N	f	f	\N
55	792	1011	2015-09-02 10:15:08.809174+00	\N	\N	\N	f	f	\N
57	857	1272	2015-09-02 12:54:00.819294+00	\N	\N	\N	f	f	\N
7	159	800	2015-06-14 02:53:59.722929+00	\N	\N	\N	f	f	\N
8	514	935	2015-06-14 02:54:01.896409+00	\N	\N	\N	f	f	\N
9	159	800	2015-06-14 02:54:02.09203+00	\N	\N	\N	f	f	\N
10	1067	1600	2015-06-14 02:54:07.401576+00	\N	\N	\N	f	f	\N
11	159	800	2015-06-14 03:10:43.712913+00	\N	\N	\N	f	f	\N
12	514	935	2015-06-14 03:10:45.821758+00	\N	\N	\N	f	f	\N
13	159	800	2015-06-14 03:10:46.423519+00	\N	\N	\N	f	f	\N
15	1067	1600	2015-06-14 03:17:42.660506+00	\N	\N	\N	f	f	\N
16	423	736	2015-06-14 04:43:00.088274+00	\N	\N	\N	f	f	\N
17	1250	1900	2015-06-14 04:48:14.418306+00	\N	\N	\N	f	f	\N
18	683	1024	2015-06-14 04:55:52.095523+00	\N	\N	\N	f	f	\N
58	704	1058	2015-09-02 13:46:00.943723+00	\N	\N	\N	f	f	\N
60	768	1280	2015-09-02 13:56:01.166783+00	\N	\N	\N	f	f	\N
21	288	800	2015-06-14 21:27:31.074765+00	\N	\N	\N	f	f	\N
19	252	800	2015-06-14 21:25:45.91285+00				f	f	
61	159	800	2015-09-02 13:57:36.509738+00	\N	\N	\N	f	f	\N
20	641	960	2015-06-14 21:27:15.456539+00				f	f	
22	389	690	2015-06-15 20:24:05.15334+00	\N	\N	\N	f	f	\N
92	992	1806	2015-10-27 14:11:12.628143+00	\N	\N	\N	f	f	\N
24	944	1333	2015-06-16 21:16:22.831995+00	\N	\N	\N	f	f	\N
25	963	1323	2015-06-16 21:17:26.352781+00	\N	\N	\N	f	f	\N
26	741	1419	2015-06-16 21:18:17.259021+00	\N	\N	\N	f	f	\N
27	805	1074	2015-06-16 21:19:06.228144+00	\N	\N	\N	f	f	\N
28	868	1300	2015-06-16 21:21:05.068513+00	\N	\N	\N	f	f	\N
29	900	1200	2015-06-22 13:54:34.466453+00	\N	\N	\N	f	f	\N
30	900	1200	2015-06-22 13:54:55.519425+00	\N	\N	\N	f	f	\N
31	914	1200	2015-06-22 13:55:53.715811+00	\N	\N	\N	f	f	\N
32	801	1200	2015-07-20 19:14:58.380045+00	\N	\N	\N	f	f	\N
33	1667	2500	2015-07-26 22:38:01.84918+00	\N	\N	\N	f	f	\N
34	900	1800	2015-08-09 20:29:58.534639+00	\N	\N	\N	f	f	\N
35	389	690	2015-08-09 20:38:28.182383+00	\N	\N	\N	f	f	\N
36	356	690	2015-08-09 20:38:30.426884+00	\N	\N	\N	f	f	\N
37	333	500	2015-08-09 20:42:58.033279+00	\N	\N	\N	f	f	\N
38	680	950	2015-08-09 20:45:48.988876+00	\N	\N	\N	f	f	\N
39	711	1280	2015-08-14 23:07:37.837454+00	\N	\N	\N	f	f	\N
62	1320	859	2015-09-17 19:17:53.332834+00				f	f	
42	602	1280	2015-08-14 23:25:01.705929+00	\N	\N	\N	f	f	\N
43	389	690	2015-08-14 23:28:26.464093+00	\N	\N	\N	f	f	\N
44	389	690	2015-08-14 23:28:51.628373+00	\N	\N	\N	f	f	\N
45	740	1200	2015-08-14 23:31:50.913374+00	\N	\N	\N	f	f	\N
46	1276	1920	2015-08-24 22:12:51.387795+00				f	f	
47	443	896	2015-08-28 16:09:51.13417+00	\N	\N	\N	f	f	\N
48	531	800	2015-08-28 16:57:26.744572+00	\N	\N	\N	f	f	\N
50	429	600	2015-08-28 22:26:38.702198+00	\N	\N	\N	f	f	\N
51	4912	7360	2015-08-28 23:40:36.456292+00	\N	\N	\N	f	f	\N
52	1131	2000	2015-08-28 23:43:26.025348+00	\N	\N	\N	f	f	\N
93	1028	1824	2015-10-27 14:11:26.520313+00	\N	\N	\N	f	f	\N
69	1080	1920	2015-09-17 19:47:55.236613+00	\N	\N	\N	f	f	\N
70	389	663	2015-09-24 14:00:47.579698+00	\N	\N	\N	f	f	\N
71	1482	2204	2015-09-24 14:10:45.289206+00	\N	\N	\N	f	f	\N
72	274	1062	2015-09-24 14:15:34.653944+00	\N	\N	\N	f	f	\N
73	603	1327	2015-09-24 15:09:48.31731+00	\N	\N	\N	f	f	\N
74	844	1600	2015-09-24 15:10:00.678959+00	\N	\N	\N	f	f	\N
77	665	1180	2015-09-25 13:08:32.466259+00	\N	\N	\N	f	f	\N
78	2056	3456	2015-09-25 13:11:37.480992+00	\N	\N	\N	f	f	\N
79	2056	3648	2015-09-25 13:25:44.150577+00	\N	\N	\N	f	f	\N
80	2056	3648	2015-09-25 13:29:31.488823+00	\N	\N	\N	f	f	\N
81	3059	3256	2015-09-25 14:06:33.936216+00	\N	\N	\N	f	f	\N
82	2056	3648	2015-09-25 14:25:34.112527+00	\N	\N	\N	f	f	\N
83	992	1806	2015-10-27 12:44:05.164732+00	\N	\N	\N	f	f	\N
84	2056	3648	2015-10-27 13:15:37.482664+00	\N	\N	\N	f	f	\N
85	1028	1824	2015-10-27 13:16:16.624074+00	\N	\N	\N	f	f	\N
86	1028	1824	2015-10-27 13:20:15.946619+00	\N	\N	\N	f	f	\N
87	1028	1824	2015-10-27 13:24:49.427371+00	\N	\N	\N	f	f	\N
88	1028	1724	2015-10-27 13:24:50.660404+00	\N	\N	\N	f	f	\N
89	1056	1878	2015-10-27 13:34:51.0037+00	\N	\N	\N	f	f	\N
90	1028	1824	2015-10-27 13:35:10.923875+00	\N	\N	\N	f	f	\N
91	1028	1824	2015-10-27 13:41:12.043732+00	\N	\N	\N	f	f	\N
94	1028	1824	2015-10-27 14:11:43.108386+00	\N	\N	\N	f	f	\N
95	879	1803	2015-10-27 14:12:12.755732+00	\N	\N	\N	f	f	\N
96	934	1680	2015-10-27 14:20:23.55419+00	\N	\N	\N	f	f	\N
97	1650	962	2015-10-27 14:26:35.050008+00	\N	\N	\N	f	f	\N
98	1648	2579	2015-10-27 14:41:18.070768+00	\N	\N	\N	f	f	\N
99	1496	1806	2015-10-27 16:25:59.052991+00	\N	\N	\N	f	f	\N
119	1028	1824	2015-11-08 21:45:05.351842+00	\N	\N	\N	f	f	\N
101	49	187	2015-11-03 10:15:21.698509+00				f	f	
102	16	19	2015-11-03 10:17:17.635558+00				f	f	
108	832	1373	2015-11-03 11:14:03.656359+00	\N	\N	\N	f	f	\N
103	1024	725	2015-11-03 10:26:09.573795+00				f	f	
104	596	421	2015-11-03 10:28:52.655543+00				f	f	
105	3080	5472	2015-11-03 10:58:18.33552+00				f	f	
106	1320	859	2015-11-03 11:05:47.5709+00				f	f	
120	896	1824	2015-11-08 21:45:54.172437+00	\N	\N	\N	f	f	\N
121	740	1216	2015-11-08 21:46:50.09766+00	\N	\N	\N	f	f	\N
115	722	969	2015-11-03 18:15:41.878625+00	\N	\N	\N	f	f	\N
116	832	1440	2015-11-08 20:38:26.906171+00	\N	\N	\N	f	f	\N
117	1028	1824	2015-11-08 20:41:47.541342+00	\N	\N	\N	f	f	\N
118	449	600	2015-11-08 21:08:59.953894+00	\N	\N	\N	f	f	\N
122	740	1216	2015-11-08 21:47:50.38111+00	\N	\N	\N	f	f	\N
123	888	1804	2015-11-08 21:49:57.401945+00	\N	\N	\N	f	f	\N
124	888	1804	2015-11-08 22:30:09.364118+00	\N	\N	\N	f	f	\N
125	812	1701	2015-11-09 15:57:03.766928+00	\N	\N	\N	f	f	\N
126	2404	1701	2015-11-09 15:57:56.092655+00	\N	\N	\N	f	f	\N
127	2056	3648	2015-11-09 15:59:30.539491+00	\N	\N	\N	f	f	\N
128	1810	2716	2015-11-09 16:01:17.660564+00	\N	\N	\N	f	f	\N
129	349	580	2015-11-09 16:04:59.550425+00	\N	\N	\N	f	f	\N
131	911	1264	2015-11-09 16:08:01.753341+00	\N	\N	\N	f	f	\N
134	1704	2272	2015-11-09 16:17:49.25798+00	\N	\N	\N	f	f	\N
135	4322	6839	2015-11-09 16:19:49.985533+00	\N	\N	\N	f	f	\N
136	1474	2208	2015-11-09 16:29:29.785155+00	\N	\N	\N	f	f	\N
137	491	736	2015-11-09 17:54:47.924222+00	\N	\N	\N	f	f	\N
138	832	1373	2015-11-09 17:57:36.895966+00	\N	\N	\N	f	f	\N
139	1200	1600	2015-11-09 17:58:35.329687+00	\N	\N	\N	f	f	\N
140	2176	3264	2015-11-09 18:03:18.911176+00	\N	\N	\N	f	f	\N
142	256	985	2015-11-09 18:07:01.524867+00	\N	\N	\N	f	f	\N
145	139	535	2015-11-09 18:16:52.078916+00	\N	\N	\N	f	f	\N
146	1080	1920	2015-11-09 18:18:27.944005+00	\N	\N	\N	f	f	\N
147	139	535	2015-11-09 18:20:12.744891+00	\N	\N	\N	f	f	\N
148	514	998	2015-11-09 18:57:25.793391+00	\N	\N	\N	f	f	\N
149	732	1134	2015-11-13 23:28:48.838922+00				f	f	
151	816	1074	2015-11-15 14:51:50.206383+00	\N	\N	\N	f	f	\N
152	1030	1432	2015-11-15 14:54:26.363341+00	\N	\N	\N	f	f	\N
153	1030	1432	2015-11-15 14:56:38.720616+00	\N	\N	\N	f	f	\N
154	476	1388	2015-11-19 20:53:01.64521+00	\N	\N	\N	f	f	\N
155	505	1502	2015-11-25 06:54:10.794353+00	\N	\N	\N	f	f	\N
156	351	1153	2015-11-25 19:26:30.436498+00	\N	\N	\N	f	f	\N
157	274	1062	2015-11-25 19:48:23.355422+00	\N	\N	\N	f	f	\N
158	411	730	2015-12-07 13:32:10.12742+00	\N	\N	\N	f	f	\N
159	516	960	2015-12-07 13:34:53.139238+00	\N	\N	\N	f	f	\N
160	528	434	2015-12-07 14:00:41.554263+00	\N	\N	\N	f	f	\N
163	411	679	2015-12-07 14:02:30.819912+00	\N	\N	\N	f	f	\N
164	2056	3000	2015-12-07 14:03:38.695144+00	\N	\N	\N	f	f	\N
165	411	600	2015-12-07 14:04:25.717992+00	\N	\N	\N	f	f	\N
166	491	736	2015-12-07 14:14:36.594232+00	\N	\N	\N	f	f	\N
167	411	730	2015-12-07 14:22:02.702397+00	\N	\N	\N	f	f	\N
168	411	730	2015-12-07 14:30:36.664529+00	\N	\N	\N	f	f	\N
169	366	730	2015-12-07 14:31:07.145437+00	\N	\N	\N	f	f	\N
170	614	342	2015-12-07 14:31:43.779266+00	\N	\N	\N	f	f	\N
171	491	736	2015-12-07 15:54:30.072715+00	\N	\N	\N	f	f	\N
173	434	528	2015-12-07 16:07:50.770571+00	\N	\N	\N	f	f	\N
175	300	590	2016-01-06 14:01:40.099233+00	\N	\N	\N	f	f	\N
182	877	1500	2016-01-06 18:06:27.319942+00	\N	\N	\N	f	f	\N
184	282	425	2016-01-08 10:32:21.999025+00	\N	\N	\N	f	f	\N
185	550	1627	2016-01-13 21:21:26.570016+00	\N	\N	\N	f	f	\N
176	346	632	2016-01-06 16:32:43.495447+00				f	f	
180	406	768	2016-01-06 17:33:27.013519+00				f	f	
181	421	768	2016-01-06 18:02:49.017239+00				f	f	
183	550	1627	2016-01-08 10:29:41.714794+00				f	f	
188	335	493	2016-01-14 16:38:34.950801+00				f	f	
178	300	590	2016-01-06 16:57:55.887243+00				f	f	
187	411	730	2016-01-14 15:56:21.200397+00				f	f	
186	550	1627	2016-01-13 21:23:52.425701+00				f	f	
\.


--
-- Data for Name: hosting_railsbetauser; Type: TABLE DATA; Schema: public; Owner: app
--

COPY hosting_railsbetauser (id, email, received_date) FROM stdin;
\.


--
-- Name: hosting_railsbetauser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('hosting_railsbetauser_id_seq', 1, false);


--
-- Data for Name: menus_cachekey; Type: TABLE DATA; Schema: public; Owner: app
--

COPY menus_cachekey (id, language, site, key) FROM stdin;
647	en-us	1	menu_cache_menu_nodes_en-us_1_5_user
648	en-us	1	menu_cache_menu_nodes_en-us_1
649	de	1	menu_cache_menu_nodes_de_1
650	en-us	1	menu_cache_menu_nodes_en-us_1_1_user
\.


--
-- Name: menus_cachekey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('menus_cachekey_id_seq', 650, true);


--
-- Data for Name: railshosting_railsbetauser; Type: TABLE DATA; Schema: public; Owner: app
--

COPY railshosting_railsbetauser (id, email, received_date) FROM stdin;
1	info@renuo.ch	2015-06-24 22:34:03.436018+00
2	babedream312@gmx.de	2015-07-23 10:46:59+00
\.


--
-- Name: railshosting_railsbetauser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('railshosting_railsbetauser_id_seq', 2, true);


--
-- Data for Name: reversion_revision; Type: TABLE DATA; Schema: public; Owner: app
--

COPY reversion_revision (id, manager_slug, date_created, comment, user_id) FROM stdin;
1	default	2015-06-12 16:53:01.637515+00	Initial version.	1
2	default	2015-06-12 17:05:57.126279+00	Initial version.	1
4	default	2015-06-12 17:14:13.048438+00	Changed template and xframe_options.	1
119	default	2015-10-04 17:59:12.292473+00	Text plugin edited at position 0 in digitalglarus_why_glarus_affordable_price	1
6	default	2015-06-12 20:03:12.514876+00	Changed page_title.	1
120	default	2015-10-04 17:59:41.370007+00	Text plugin edited at position 0 in digitalglarus_why_glarus_direct_connection_zurich	1
8	default	2015-06-12 20:06:13.563737+00	Changed menu_title and page_title.	1
9	default	2015-06-12 20:06:55.930234+00	Changed page_title.	1
121	default	2015-10-04 18:00:02.492971+00	Text plugin edited at position 0 in digitalglarus_why_glarus	1
11	default	2015-06-12 20:17:24.401903+00	Changed page_title.	1
122	default	2015-10-04 18:01:41.398138+00	Changed xframe_options.	1
13	default	2015-06-13 13:08:13.293802+00	Template changed to Blog	1
123	default	2015-10-04 18:05:38.229734+00	Initial version.	1
17	default	2015-06-14 03:14:35.039665+00	Changed meta_description.	1
262	default	2015-11-15 00:56:41.442053+00	Text plugin edited at position 0 in digitalglarus_why_us	1
19	default	2015-06-14 03:43:15.812565+00	Changed xframe_options.	1
20	default	2015-06-14 03:43:22.048074+00	No fields changed.	1
264	default	2015-11-15 01:04:49.983036+00	Text plugin edited at position 0 in digitalglarus_why_us	1
266	default	2015-11-15 01:21:47.099657+00	Text plugin edited at position 0 in digitalglarus_why_us	1
23	default	2015-06-15 13:54:36.304988+00	Publish	1
24	default	2015-06-15 14:05:44.501874+00	Publish	1
25	default	2015-06-16 08:02:34.802098+00	Publish	1
26	default	2015-06-16 08:09:30.848891+00	Publish	1
27	default	2015-06-16 08:21:40.899986+00	Publish	1
28	default	2015-09-30 03:28:35.597671+00	Publish	1
29	default	2015-10-04 16:53:42.54729+00	Initial version.	1
268	default	2015-11-15 01:22:15.361325+00	Publish	1
270	default	2015-11-15 01:23:21.0296+00	Publish	1
272	default	2015-11-15 01:24:40.921427+00	Text plugin edited at position 0 in digitalglarus_why_us	1
274	default	2015-11-21 16:33:52.214317+00	Text plugin edited at position 0 in digitalglarus_why_us	1
276	default	2015-11-21 16:34:43.41704+00	Text plugin edited at position 0 in digitalglarus_why_us	1
278	default	2015-11-21 16:36:27.387661+00	Text plugin edited at position 0 in digitalglarus_why_us	1
280	default	2015-11-25 06:19:53.782368+00	Initial version.	1
372	default	2015-11-25 20:15:59.738817+00	Text plugin edited at position 0 in digitalglarus_why_us	1
374	default	2015-11-25 20:17:13.392532+00	Text plugin edited at position 0 in digitalglarus_why_us	1
376	default	2015-11-25 20:18:11.430701+00	Text plugin edited at position 0 in digitalglarus_why_us	1
378	default	2015-11-25 20:19:39.206631+00	Link plugin added to digitalglarus_why_us	1
380	default	2015-11-29 14:55:24.830429+00	Text plugin edited at position 0 in digital_glarus_legend	1
146	default	2015-10-04 18:15:40.604136+00	Text plugin edited at position 0 in digital_glarus_contact	1
147	default	2015-10-04 18:16:04.985583+00	Text plugin added to digital_glarus_contact_content	1
148	default	2015-10-04 18:16:13.636627+00	Text plugin edited at position 0 in digital_glarus_contact_content	1
149	default	2015-10-04 18:16:23.137603+00	Text plugin added to digital_glarus_contact_information	1
150	default	2015-10-04 18:17:05.846299+00	Text plugin edited at position 0 in digital_glarus_contact_information	1
151	default	2015-10-04 18:17:33.905948+00	Text plugin edited at position 0 in digital_glarus_contact_content	1
152	default	2015-10-04 18:54:49.273959+00	Initial version.	1
382	default	2015-11-29 14:55:56.993361+00	Text plugin edited at position 0 in digital_glarus_legend	1
384	default	2015-11-29 14:56:35.774616+00	Text plugin edited at position 0 in digital_glarus_legend	1
386	default	2015-11-29 14:57:26.570865+00	Publish	1
388	default	2015-11-29 18:45:41.47572+00	Text plugin edited at position 0 in digital_glarus_legend	1
390	default	2015-11-29 18:47:44.99648+00	Text plugin edited at position 0 in digital_glarus_legend	1
392	default	2015-11-29 18:48:18.037565+00	Publish	1
394	default	2015-11-29 18:48:45.266076+00	Publish	1
64	default	2015-10-04 17:26:43.236708+00	template und xframe_options geändert.	1
65	default	2015-10-04 17:27:18.644442+00	Template changed to Blog	1
66	default	2015-10-04 17:27:41.637288+00	Publish	1
396	default	2015-11-29 18:49:11.080574+00	Publish	1
398	default	2015-12-01 23:40:41.87119+00	Publish	1
400	default	2015-12-01 23:41:08.361578+00	Publish	1
402	default	2015-12-01 23:41:49.754746+00	Publish	1
404	default	2015-12-01 23:43:34.320764+00	Changed slug.	1
406	default	2015-12-01 23:43:53.264396+00	Publish	1
408	default	2015-12-02 04:09:11.01606+00	Text plugin edited at position 0 in digitalglarus_why_us	1
410	default	2015-12-15 15:18:12.878405+00	Publish	1
412	default	2016-01-29 19:50:41.146912+00	Text plugin edited at position 0 in digital_glarus_contact_information	1
80	default	2015-10-04 17:45:05.490228+00	Initial version.	1
113	default	2015-10-04 17:56:45.585573+00	Text plugin at position 0 in digitalglarus_why_glarus_affordable_price was deleted.	1
114	default	2015-10-04 17:57:08.359461+00	Text plugin edited at position 0 in digitalglarus_why_us	1
115	default	2015-10-04 17:57:24.923974+00	Text plugin edited at position 0 in digitalglarus_why_glarus_beautiful_landscape	1
116	default	2015-10-04 17:57:41.619984+00	Text plugin edited at position 0 in digitalglarus_why_glarus_affordable_price	1
117	default	2015-10-04 17:58:09.158189+00	Text plugin edited at position 0 in digitalglarus_why_glarus_beautiful_landscape	1
118	default	2015-10-04 17:58:54.913184+00	Text plugin edited at position 0 in digitalglarus_why_glarus_beautiful_landscape	1
261	default	2015-11-15 00:55:56.851277+00	Text plugin edited at position 0 in digitalglarus_why_us	1
263	default	2015-11-15 00:57:39.220029+00	Publish	1
265	default	2015-11-15 01:21:17.541396+00	Text plugin edited at position 0 in digitalglarus_why_us	1
267	default	2015-11-15 01:22:00.939147+00	Text plugin edited at position 0 in digitalglarus_why_us	1
269	default	2015-11-15 01:23:07.39537+00	Text plugin edited at position 0 in digitalglarus_why_us	1
271	default	2015-11-15 01:24:09.458824+00	Text plugin edited at position 0 in digitalglarus_why_us	1
273	default	2015-11-15 01:24:50.028463+00	Publish	1
275	default	2015-11-21 16:34:09.930657+00	Publish	1
277	default	2015-11-21 16:34:48.928339+00	Publish	1
279	default	2015-11-21 16:36:50.919289+00	Publish	1
371	default	2015-11-25 20:15:47.066741+00	Link plugin edited at position 0 in digitalglarus_why_us	1
373	default	2015-11-25 20:16:53.359283+00	Text plugin edited at position 0 in digitalglarus_why_us	1
375	default	2015-11-25 20:17:31.677838+00	Text plugin edited at position 0 in digitalglarus_why_us	1
377	default	2015-11-25 20:18:38.284986+00	Text plugin edited at position 0 in digitalglarus_why_us	1
381	default	2015-11-29 14:55:34.787686+00	Publish	1
383	default	2015-11-29 14:56:18.33418+00	Text plugin edited at position 0 in digital_glarus_legend	1
385	default	2015-11-29 14:57:13.664845+00	Publish	1
387	default	2015-11-29 18:45:25.450976+00	Text plugin edited at position 0 in digital_glarus_legend	1
389	default	2015-11-29 18:47:28.751752+00	Text plugin edited at position 0 in digital_glarus_legend	1
187	default	2015-10-04 22:43:26.189751+00	Initial version.	1
188	default	2015-10-04 22:43:48.045386+00	Changed template and xframe_options.	1
189	default	2015-10-04 22:44:36.003855+00	Changed overwrite_url and xframe_options.	1
192	default	2015-10-04 23:27:27.203111+00	Publish	1
193	default	2015-10-04 23:27:38.638013+00	Publish	1
391	default	2015-11-29 18:47:55.297528+00	Publish	1
195	default	2015-10-04 23:28:36.652854+00	Changed menu_title.	1
196	default	2015-10-04 23:28:50.068387+00	Changed menu_title.	1
393	default	2015-11-29 18:48:33.921586+00	Publish	1
198	default	2015-10-04 23:29:24.882138+00	Changed title and menu_title.	1
199	default	2015-10-04 23:29:34.205404+00	Publish	1
200	default	2015-10-04 23:29:41.599102+00	Publish	1
201	default	2015-10-04 23:29:48.659227+00	Publish	1
395	default	2015-11-29 18:48:56.77275+00	Publish	1
203	default	2015-10-04 23:34:04.66536+00	Changed overwrite_url and xframe_options.	1
204	default	2015-10-04 23:34:15.705006+00	Publish	1
205	default	2015-10-04 23:35:54.28939+00	Changed soft_root and xframe_options.	1
206	default	2015-10-04 23:36:02.077944+00	Publish	1
207	default	2015-10-04 23:38:38.715906+00	No fields changed.	1
208	default	2015-10-04 23:38:41.592333+00	Publish	1
209	default	2015-10-04 23:39:11.977482+00	Changed menu_title.	1
210	default	2015-10-04 23:39:22.611441+00	Publish	1
211	default	2015-10-04 23:39:40.10288+00	Changed menu_title.	1
212	default	2015-10-04 23:39:51.490206+00	Publish	1
397	default	2015-12-01 23:40:23.680434+00	Changed slug.	1
399	default	2015-12-01 23:40:47.533127+00	Publish	1
215	default	2015-10-04 23:41:01.848038+00	Changed xframe_options.	1
216	default	2015-10-04 23:41:10.055288+00	Publish	1
217	default	2015-10-04 23:47:25.951277+00	Changed slug.	1
218	default	2015-10-04 23:47:36.097248+00	Changed slug.	1
219	default	2015-10-04 23:56:07.400299+00	Changed reverse_id and xframe_options.	1
220	default	2015-10-04 23:56:15.692361+00	Publish	1
221	default	2015-10-04 23:56:23.080917+00	Publish	1
222	default	2015-10-05 01:46:26.261965+00	Text plugin edited at position 0 in digital_glarus_contact_information	1
223	default	2015-10-05 01:46:46.135426+00	Text plugin edited at position 0 in digital_glarus_contact_information	1
224	default	2015-10-05 01:46:51.293912+00	Publish	1
225	default	2015-10-05 01:47:21.792916+00	Text plugin edited at position 0 in digital_glarus_contact_information	1
226	default	2015-10-05 01:47:27.459774+00	Publish	1
227	default	2015-10-05 01:48:02.427355+00	Text plugin edited at position 0 in digital_glarus_contact_information	1
228	default	2015-10-05 01:48:08.190395+00	Publish	1
229	default	2015-10-10 19:00:40.64888+00	Changed soft_root and xframe_options.	1
230	default	2015-10-13 13:34:07.730893+00	Changed overwrite_url and xframe_options.	1
231	default	2015-10-13 13:34:45.173513+00	Publish	1
232	default	2015-10-13 13:35:07.368795+00	Changed slug.	1
233	default	2015-10-13 13:35:27.472797+00	Publish	1
234	default	2015-10-13 13:35:55.892039+00	Changed xframe_options.	1
235	default	2015-10-13 13:36:40.956878+00	Changed slug.	1
236	default	2015-10-13 13:36:49.627718+00	Publish	1
401	default	2015-12-01 23:41:38.499468+00	Changed slug.	1
403	default	2015-12-01 23:43:25.209859+00	Changed slug.	1
239	default	2015-10-13 13:59:35.314182+00	Text plugin edited at position 0 in digital_glarus_build_a_tech_valley_content	1
240	default	2015-10-13 14:02:20.016954+00	Text plugin edited at position 0 in digital_glarus_build_a_tech_valley_content	1
241	default	2015-10-27 19:12:29.333974+00	Publish	1
242	default	2015-11-04 21:54:05.950142+00	Changed title, slug, menu_title and page_title.	1
243	default	2015-11-04 21:54:19.699074+00	Changed meta_description.	1
244	default	2015-11-04 21:54:23.123864+00	No fields changed.	1
405	default	2015-12-01 23:43:41.786663+00	No fields changed.	1
407	default	2015-12-01 23:44:05.581628+00	Publish	1
409	default	2015-12-02 04:09:19.498186+00	Publish	1
411	default	2015-12-15 15:18:47.585519+00	Publish	1
255	default	2015-11-15 00:43:27.297689+00	Publish	1
413	default	2016-02-28 15:08:34.439401+00	Initial version.	1
414	default	2016-02-28 15:12:18.382316+00	Initial version.	1
\.


--
-- Name: reversion_revision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('reversion_revision_id_seq', 414, true);


--
-- Data for Name: reversion_version; Type: TABLE DATA; Schema: public; Owner: app
--

COPY reversion_version (id, object_id, object_id_int, format, serialized_data, object_repr, content_type_id, revision_id) FROM stdin;
1	1	1	json	[{"model": "cms.page", "fields": {"placeholders": [], "languages": "en-us", "changed_date": "2015-06-12T16:53:01.585Z", "revision_id": 0, "depth": 1, "soft_root": false, "login_required": false, "path": "0001", "in_navigation": true, "publication_date": "2015-06-12T16:53:01.463Z", "xframe_options": 0, "creation_date": "2015-06-12T16:53:01.363Z", "navigation_extenders": null, "application_urls": null, "publication_end_date": null, "limit_visibility_in_menu": null, "is_home": true, "application_namespace": null, "reverse_id": null, "changed_by": "ungleich", "created_by": "ungleich", "parent": null, "template": "INHERIT", "numchild": 0, "site": 1}, "pk": 1}]	Home	11	1
2	1	1	json	[{"model": "cms.title", "fields": {"page": 1, "meta_description": "", "language": "en-us", "published": true, "creation_date": "2015-06-12T16:53:01.422Z", "path": "", "redirect": null, "slug": "home", "page_title": "", "menu_title": "", "title": "Home", "has_url_overwrite": false}, "pk": 1}]	Home (home, en-us)	16	1
3	3	3	json	[{"model": "cms.title", "pk": 3, "fields": {"creation_date": "2015-06-12T17:05:57.066Z", "redirect": null, "language": "en-us", "path": "blog", "menu_title": "", "page_title": "", "slug": "blog", "has_url_overwrite": false, "title": "Blog", "meta_description": "", "page": 3, "published": false}}]	Blog (blog, en-us)	16	2
4	3	3	json	[{"model": "cms.page", "pk": 3, "fields": {"depth": 1, "path": "0003", "revision_id": 0, "application_urls": null, "xframe_options": 0, "placeholders": [6], "site": 1, "soft_root": false, "languages": "en-us", "limit_visibility_in_menu": null, "changed_date": "2015-06-12T17:05:57.068Z", "publication_date": null, "reverse_id": null, "is_home": false, "changed_by": "ungleich", "publication_end_date": null, "creation_date": "2015-06-12T17:05:57.028Z", "login_required": false, "parent": null, "template": "INHERIT", "application_namespace": null, "navigation_extenders": null, "in_navigation": true, "created_by": "ungleich", "numchild": 0}}]	Blog	11	2
5	6	6	json	[{"model": "cms.placeholder", "pk": 6, "fields": {"default_width": null, "slot": "page_content"}}]	page_content	9	2
7885	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	272
7886	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	272
7887	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:24:09.566Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	272
9	3	3	json	[{"pk": 3, "model": "cms.title", "fields": {"slug": "blog", "meta_description": "", "menu_title": "", "published": false, "title": "Blog", "has_url_overwrite": false, "redirect": "", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "language": "en-us", "page_title": "", "page": 3}}]	Blog (blog, en-us)	16	4
10	3	3	json	[{"pk": 3, "model": "cms.page", "fields": {"limit_visibility_in_menu": null, "created_by": "ungleich", "soft_root": false, "parent": null, "changed_by": "ungleich", "navigation_extenders": "", "login_required": false, "changed_date": "2015-06-12T17:14:12.988Z", "path": "0003", "creation_date": "2015-06-12T17:05:57.028Z", "numchild": 0, "publication_end_date": null, "in_navigation": true, "languages": "en-us", "reverse_id": null, "placeholders": [6], "publication_date": null, "revision_id": 0, "application_namespace": "djangocms_blog", "site": 1, "depth": 1, "template": "cms/ungleich.ch/blog.html", "xframe_options": 0, "is_home": false, "application_urls": "BlogApp"}}]	Blog	11	4
11	6	6	json	[{"pk": 6, "model": "cms.placeholder", "fields": {"slot": "page_content", "default_width": null}}]	page_content	9	4
10066	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	373
10067	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	373
10068	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:15:59.798Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	373
10069	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:16:53.185Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	373
16	3	3	json	[{"pk": 3, "fields": {"has_url_overwrite": false, "meta_description": "", "page": 3, "path": "blog", "language": "en-us", "published": true, "slug": "blog", "title": "Blog", "redirect": "", "creation_date": "2015-06-12T17:05:57.066Z", "page_title": "ungleich Blog", "menu_title": ""}, "model": "cms.title"}]	Blog (blog, en-us)	16	6
17	3	3	json	[{"pk": 3, "fields": {"created_by": "ungleich", "site": 1, "path": "0003", "xframe_options": 0, "depth": 1, "navigation_extenders": "", "login_required": false, "languages": "en-us", "creation_date": "2015-06-12T17:05:57.028Z", "reverse_id": null, "revision_id": 0, "application_namespace": "djangocms_blog", "in_navigation": true, "changed_by": "ungleich", "placeholders": [6], "application_urls": "BlogApp", "publication_end_date": null, "soft_root": false, "changed_date": "2015-06-12T20:03:12.429Z", "publication_date": "2015-06-12T17:17:49.261Z", "is_home": false, "parent": null, "limit_visibility_in_menu": null, "numchild": 0, "template": "cms/ungleich.ch/blog.html"}, "model": "cms.page"}]	Blog	11	6
18	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	6
10070	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	373
10071	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	373
22	3	3	json	[{"pk": 3, "fields": {"has_url_overwrite": false, "meta_description": "", "page": 3, "path": "blog", "language": "en-us", "published": true, "slug": "blog", "title": "Blog", "redirect": "", "creation_date": "2015-06-12T17:05:57.066Z", "page_title": "Ungleich blog", "menu_title": "Blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	8
23	3	3	json	[{"pk": 3, "fields": {"created_by": "ungleich", "site": 1, "path": "0003", "xframe_options": 0, "depth": 1, "navigation_extenders": "", "login_required": false, "languages": "en-us", "creation_date": "2015-06-12T17:05:57.028Z", "reverse_id": null, "revision_id": 0, "application_namespace": "djangocms_blog", "in_navigation": true, "changed_by": "ungleich", "placeholders": [6], "application_urls": "BlogApp", "publication_end_date": null, "soft_root": false, "changed_date": "2015-06-12T20:06:13.520Z", "publication_date": "2015-06-12T17:17:49.261Z", "is_home": false, "parent": null, "limit_visibility_in_menu": null, "numchild": 0, "template": "cms/ungleich.ch/blog.html"}, "model": "cms.page"}]	Blog	11	8
24	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	8
25	3	3	json	[{"pk": 3, "fields": {"has_url_overwrite": false, "meta_description": "", "page": 3, "path": "blog", "language": "en-us", "published": true, "slug": "blog", "title": "Blog", "redirect": "", "creation_date": "2015-06-12T17:05:57.066Z", "page_title": "Ungleich Blog", "menu_title": "Blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	9
26	3	3	json	[{"pk": 3, "fields": {"created_by": "ungleich", "site": 1, "path": "0003", "xframe_options": 0, "depth": 1, "navigation_extenders": "", "login_required": false, "languages": "en-us", "creation_date": "2015-06-12T17:05:57.028Z", "reverse_id": null, "revision_id": 0, "application_namespace": "djangocms_blog", "in_navigation": true, "changed_by": "ungleich", "placeholders": [6], "application_urls": "BlogApp", "publication_end_date": null, "soft_root": false, "changed_date": "2015-06-12T20:06:55.883Z", "publication_date": "2015-06-12T17:17:49.261Z", "is_home": false, "parent": null, "limit_visibility_in_menu": null, "numchild": 0, "template": "cms/ungleich.ch/blog.html"}, "model": "cms.page"}]	Blog	11	9
27	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	9
10072	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	373
10073	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:15:59.537Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	373
10902	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	396
31	3	3	json	[{"pk": 3, "fields": {"has_url_overwrite": false, "meta_description": "", "page": 3, "path": "blog", "language": "en-us", "published": true, "slug": "blog", "title": "Blog", "redirect": "", "creation_date": "2015-06-12T17:05:57.066Z", "page_title": "ungleich Blog", "menu_title": "Blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	11
32	3	3	json	[{"pk": 3, "fields": {"created_by": "ungleich", "site": 1, "path": "0003", "xframe_options": 0, "depth": 1, "navigation_extenders": "", "login_required": false, "languages": "en-us", "creation_date": "2015-06-12T17:05:57.028Z", "reverse_id": null, "revision_id": 0, "application_namespace": "djangocms_blog", "in_navigation": true, "changed_by": "ungleich", "placeholders": [6], "application_urls": "BlogApp", "publication_end_date": null, "soft_root": false, "changed_date": "2015-06-12T20:17:24.358Z", "publication_date": "2015-06-12T17:17:49.261Z", "is_home": false, "parent": null, "limit_visibility_in_menu": null, "numchild": 0, "template": "cms/ungleich.ch/blog.html"}, "model": "cms.page"}]	Blog	11	11
33	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	11
10903	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	396
37	3	3	json	[{"pk": 3, "fields": {"has_url_overwrite": false, "meta_description": "", "page": 3, "path": "blog", "language": "en-us", "published": true, "slug": "blog", "title": "Blog", "redirect": "", "creation_date": "2015-06-12T17:05:57.066Z", "page_title": "ungleich Blog", "menu_title": "Blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	13
38	3	3	json	[{"pk": 3, "fields": {"created_by": "ungleich", "site": 1, "path": "0003", "xframe_options": 0, "depth": 1, "navigation_extenders": "", "login_required": false, "languages": "en-us", "creation_date": "2015-06-12T17:05:57.028Z", "reverse_id": null, "revision_id": 0, "application_namespace": "djangocms_blog", "in_navigation": true, "changed_by": "ungleich", "placeholders": [6], "application_urls": "BlogApp", "publication_end_date": null, "soft_root": false, "changed_date": "2015-06-13T13:08:13.077Z", "publication_date": "2015-06-12T17:17:49.261Z", "is_home": false, "parent": null, "limit_visibility_in_menu": null, "numchild": 0, "template": "cms/ungleich.ch/blog.html"}, "model": "cms.page"}]	Blog	11	13
39	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	13
10074	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	373
10075	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	373
10076	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	373
10077	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	373
10078	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	373
5379	3	3	json	[{"fields": {"language": "en-us", "menu_title": "Blog", "title": "Blog", "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "redirect": "", "slug": "blog", "published": true, "page": 3, "has_url_overwrite": true}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	203
10079	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	373
10080	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	373
10081	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	373
49	3	3	json	[{"pk": 3, "fields": {"title": "Blog", "language": "en-us", "published": true, "page_title": "ungleich Blog", "has_url_overwrite": false, "page": 3, "meta_description": "on OpenSource, technology, our passion and interests...", "creation_date": "2015-06-12T17:05:57.066Z", "menu_title": "Blog", "slug": "blog", "path": "blog", "redirect": ""}, "model": "cms.title"}]	Blog (blog, en-us)	16	17
50	3	3	json	[{"pk": 3, "fields": {"placeholders": [6], "template": "cms/ungleich.ch/blog.html", "application_namespace": "djangocms_blog", "created_by": "ungleich", "changed_by": "ungleich", "xframe_options": 0, "is_home": false, "site": 1, "limit_visibility_in_menu": null, "navigation_extenders": "", "changed_date": "2015-06-14T03:14:34.984Z", "reverse_id": null, "languages": "en-us", "login_required": false, "revision_id": 0, "soft_root": false, "creation_date": "2015-06-12T17:05:57.028Z", "parent": null, "depth": 1, "publication_date": "2015-06-12T17:17:49.261Z", "numchild": 0, "in_navigation": true, "path": "0003", "application_urls": "BlogApp", "publication_end_date": null}, "model": "cms.page"}]	Blog	11	17
51	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	17
10082	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	373
10083	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	373
10084	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	373
55	3	3	json	[{"pk": 3, "fields": {"title": "Blog", "language": "en-us", "published": true, "page_title": "ungleich Blog", "has_url_overwrite": false, "page": 3, "meta_description": "on OpenSource, technology, our passion and interests...", "creation_date": "2015-06-12T17:05:57.066Z", "menu_title": "Blog", "slug": "blog", "path": "blog", "redirect": ""}, "model": "cms.title"}]	Blog (blog, en-us)	16	19
6307	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	230
6308	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	230
6309	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	230
6310	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	230
6311	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	230
6312	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	230
1584	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	80
56	3	3	json	[{"pk": 3, "fields": {"placeholders": [6], "template": "cms/ungleich.ch/blog.html", "application_namespace": "djangocms_blog", "created_by": "ungleich", "changed_by": "ungleich", "xframe_options": 0, "is_home": false, "site": 1, "limit_visibility_in_menu": null, "navigation_extenders": "", "changed_date": "2015-06-14T03:43:15.769Z", "reverse_id": null, "languages": "en-us", "login_required": false, "revision_id": 0, "soft_root": false, "creation_date": "2015-06-12T17:05:57.028Z", "parent": null, "depth": 1, "publication_date": "2015-06-12T17:17:49.261Z", "numchild": 0, "in_navigation": true, "path": "0003", "application_urls": "BlogApp", "publication_end_date": null}, "model": "cms.page"}]	Blog	11	19
57	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	19
58	3	3	json	[{"pk": 3, "fields": {"title": "Blog", "language": "en-us", "published": true, "page_title": "ungleich Blog", "has_url_overwrite": false, "page": 3, "meta_description": "on OpenSource, technology, our passion and interests...", "creation_date": "2015-06-12T17:05:57.066Z", "menu_title": "Blog", "slug": "blog", "path": "blog", "redirect": ""}, "model": "cms.title"}]	Blog (blog, en-us)	16	20
59	3	3	json	[{"pk": 3, "fields": {"placeholders": [6], "template": "cms/ungleich.ch/blog.html", "application_namespace": "djangocms_blog", "created_by": "ungleich", "changed_by": "ungleich", "xframe_options": 0, "is_home": false, "site": 1, "limit_visibility_in_menu": null, "navigation_extenders": "", "changed_date": "2015-06-14T03:43:22.004Z", "reverse_id": null, "languages": "en-us", "login_required": false, "revision_id": 0, "soft_root": false, "creation_date": "2015-06-12T17:05:57.028Z", "parent": null, "depth": 1, "publication_date": "2015-06-12T17:17:49.261Z", "numchild": 0, "in_navigation": true, "path": "0003", "application_urls": "BlogApp", "publication_end_date": null}, "model": "cms.page"}]	Blog	11	20
60	6	6	json	[{"pk": 6, "fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder"}]	page_content	9	20
11108	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	403
11109	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	403
7888	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	272
7889	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	272
7890	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	272
67	3	3	json	[{"fields": {"page_title": "ungleich Blog", "page": 3, "has_url_overwrite": false, "redirect": "", "meta_description": "on OpenSource, technology, our passion and interests...", "title": "Blog", "menu_title": "Blog", "published": true, "slug": "blog", "path": "blog", "language": "en-us", "creation_date": "2015-06-12T17:05:57.066Z"}, "pk": 3, "model": "cms.title"}]	Blog (blog, en-us)	16	23
68	3	3	json	[{"fields": {"limit_visibility_in_menu": null, "depth": 1, "publication_end_date": null, "creation_date": "2015-06-12T17:05:57.028Z", "revision_id": 0, "template": "cms/ungleich.ch/blog.html", "soft_root": false, "reverse_id": null, "languages": "en-us", "path": "0003", "is_home": false, "changed_by": "ungleich", "application_urls": "BlogApp", "site": 1, "xframe_options": 0, "in_navigation": false, "placeholders": [6], "parent": null, "login_required": false, "application_namespace": "djangocms_blog", "created_by": "ungleich", "publication_date": "2015-06-12T17:17:49.261Z", "navigation_extenders": "", "numchild": 0, "changed_date": "2015-06-15T13:54:36.210Z"}, "pk": 3, "model": "cms.page"}]	Blog	11	23
69	6	6	json	[{"fields": {"slot": "page_content", "default_width": null}, "pk": 6, "model": "cms.placeholder"}]	page_content	9	23
70	3	3	json	[{"fields": {"page_title": "ungleich Blog", "page": 3, "has_url_overwrite": false, "redirect": "", "meta_description": "on OpenSource, technology, our passion and interests...", "title": "Blog", "menu_title": "Blog", "published": true, "slug": "blog", "path": "blog", "language": "en-us", "creation_date": "2015-06-12T17:05:57.066Z"}, "pk": 3, "model": "cms.title"}]	Blog (blog, en-us)	16	24
71	3	3	json	[{"fields": {"limit_visibility_in_menu": null, "depth": 1, "publication_end_date": null, "creation_date": "2015-06-12T17:05:57.028Z", "revision_id": 0, "template": "cms/ungleich.ch/blog.html", "soft_root": false, "reverse_id": null, "languages": "en-us", "path": "0003", "is_home": false, "changed_by": "ungleich", "application_urls": "BlogApp", "site": 1, "xframe_options": 0, "in_navigation": false, "placeholders": [6], "parent": null, "login_required": false, "application_namespace": "djangocms_blog", "created_by": "ungleich", "publication_date": "2015-06-12T17:17:49.261Z", "navigation_extenders": "", "numchild": 0, "changed_date": "2015-06-15T14:05:44.415Z"}, "pk": 3, "model": "cms.page"}]	Blog	11	24
72	6	6	json	[{"fields": {"slot": "page_content", "default_width": null}, "pk": 6, "model": "cms.placeholder"}]	page_content	9	24
94	37	37	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}]	digital_glarus_where_we_are	9	29
7891	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	272
11110	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	403
11111	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	403
73	3	3	json	[{"pk": 3, "fields": {"meta_description": "on OpenSource, technology, our passion and interests...", "creation_date": "2015-06-12T17:05:57.066Z", "slug": "blog", "page": 3, "page_title": "ungleich Blog", "language": "en-us", "published": true, "menu_title": "Blog", "title": "Blog", "has_url_overwrite": false, "redirect": "", "path": "blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	25
5407	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	207
74	3	3	json	[{"pk": 3, "fields": {"revision_id": 0, "in_navigation": false, "creation_date": "2015-06-12T17:05:57.028Z", "publication_date": "2015-06-12T17:17:49.261Z", "xframe_options": 0, "created_by": "ungleich", "publication_end_date": null, "parent": null, "reverse_id": null, "placeholders": [6], "login_required": false, "site": 1, "changed_by": "ungleich", "changed_date": "2015-06-16T08:02:34.712Z", "application_namespace": "djangocms_blog", "soft_root": false, "limit_visibility_in_menu": null, "numchild": 0, "application_urls": "BlogApp", "depth": 1, "languages": "en-us", "template": "cms/ungleich.ch/blog.html", "path": "0003", "is_home": false, "navigation_extenders": ""}, "model": "cms.page"}]	Blog	11	25
75	6	6	json	[{"pk": 6, "fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder"}]	page_content	9	25
76	3	3	json	[{"pk": 3, "fields": {"meta_description": "on OpenSource, technology, our passion and interests...", "creation_date": "2015-06-12T17:05:57.066Z", "slug": "blog", "page": 3, "page_title": "ungleich Blog", "language": "en-us", "published": true, "menu_title": "Blog", "title": "Blog", "has_url_overwrite": false, "redirect": "", "path": "blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	26
77	3	3	json	[{"pk": 3, "fields": {"revision_id": 0, "in_navigation": false, "creation_date": "2015-06-12T17:05:57.028Z", "publication_date": "2015-06-12T17:17:49.261Z", "xframe_options": 0, "created_by": "ungleich", "publication_end_date": null, "parent": null, "reverse_id": null, "placeholders": [6], "login_required": false, "site": 1, "changed_by": "ungleich", "changed_date": "2015-06-16T08:09:30.776Z", "application_namespace": "djangocms_blog", "soft_root": false, "limit_visibility_in_menu": null, "numchild": 0, "application_urls": "BlogApp", "depth": 1, "languages": "en-us", "template": "cms/ungleich.ch/blog.html", "path": "0003", "is_home": false, "navigation_extenders": ""}, "model": "cms.page"}]	Blog	11	26
78	6	6	json	[{"pk": 6, "fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder"}]	page_content	9	26
79	3	3	json	[{"pk": 3, "fields": {"meta_description": "on OpenSource, technology, our passion and interests...", "creation_date": "2015-06-12T17:05:57.066Z", "slug": "blog", "page": 3, "page_title": "ungleich Blog", "language": "en-us", "published": true, "menu_title": "Blog", "title": "Blog", "has_url_overwrite": false, "redirect": "", "path": "blog"}, "model": "cms.title"}]	Blog (blog, en-us)	16	27
80	3	3	json	[{"pk": 3, "fields": {"revision_id": 0, "in_navigation": false, "creation_date": "2015-06-12T17:05:57.028Z", "publication_date": "2015-06-12T17:17:49.261Z", "xframe_options": 0, "created_by": "ungleich", "publication_end_date": null, "parent": null, "reverse_id": null, "placeholders": [6], "login_required": false, "site": 1, "changed_by": "ungleich", "changed_date": "2015-06-16T08:21:40.825Z", "application_namespace": "djangocms_blog", "soft_root": false, "limit_visibility_in_menu": null, "numchild": 0, "application_urls": "BlogApp", "depth": 1, "languages": "en-us", "template": "cms/ungleich.ch/blog.html", "path": "0003", "is_home": false, "navigation_extenders": ""}, "model": "cms.page"}]	Blog	11	27
81	6	6	json	[{"pk": 6, "fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder"}]	page_content	9	27
82	3	3	json	[{"model": "cms.title", "fields": {"has_url_overwrite": false, "redirect": "", "page": 3, "slug": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "page_title": "ungleich Blog", "menu_title": "Blog", "language": "en-us", "published": true, "path": "blog"}, "pk": 3}]	Blog (blog, en-us)	16	28
83	3	3	json	[{"model": "cms.page", "fields": {"navigation_extenders": "", "login_required": false, "publication_date": "2015-06-12T17:17:49.261Z", "reverse_id": null, "changed_date": "2015-09-30T03:28:35.468Z", "limit_visibility_in_menu": null, "publication_end_date": null, "xframe_options": 0, "languages": "en-us", "application_namespace": "djangocms_blog", "creation_date": "2015-06-12T17:05:57.028Z", "site": 1, "template": "cms/ungleich.ch/blog.html", "in_navigation": false, "placeholders": [6], "parent": null, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "application_urls": "BlogApp", "depth": 1, "is_home": false, "path": "0003", "numchild": 0, "changed_by": "ungleich"}, "pk": 3}]	Blog	11	28
84	6	6	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "page_content"}, "pk": 6}]	page_content	9	28
85	32	32	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	29
86	33	33	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}]	digital_glarus_a_new_area	9	29
87	34	34	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 34}]	digital_glarus_a_new_area_content	9	29
88	35	35	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}]	digital_glarus_why_be_interested	9	29
89	36	36	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}]	digital_glarus_why_be_interested_content	9	29
90	5	5	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": null, "publication_date": null, "path": "0005", "changed_by": "ungleich", "template": "INHERIT", "changed_date": "2015-10-04T16:53:42.350Z", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T16:53:42.171Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": null, "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 5}]	digital.glarus	11	29
91	38	38	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 38}]	digital_glarus_where_we_are_content	9	29
92	39	39	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 39}]	digital_glarus_legend	9	29
93	31	31	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}]	digital_glarus_build_a_tech_valley	9	29
95	5	5	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-home", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T16:53:42.348Z", "page": 5, "language": "en-us", "page_title": "Digital Glarus", "menu_title": "digital.glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "published": false, "slug": "digital-glarus-home", "title": "Digital Glarus - Home"}, "pk": 5}]	Digital Glarus - Home (digital-glarus-home, en-us)	16	29
10085	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	373
10086	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	373
10087	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	373
10088	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	373
10089	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>.<iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	373
10090	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	373
10904	180	180	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "creation_date": "2015-10-04T17:48:04.828Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001I"}, "pk": 180}]	180	10	396
10905	181	181	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T18:47:28.621Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001J"}, "pk": 181}]	181	10	396
10906	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	396
7892	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	272
7893	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	272
7894	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	272
2915	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	119
7895	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	272
7896	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	272
11112	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	403
11141	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	405
11142	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	405
11143	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:43:41.743Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	405
11144	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	405
5392	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digital-glarus-home, en-us)	16	207
5428	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	207
7897	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	272
7898	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	272
7899	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	272
7900	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	272
7901	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	272
7902	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	272
7903	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	272
7904	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	272
7905	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	272
7906	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	272
7907	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	272
7908	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	272
7909	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	272
7910	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	272
7911	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	272
7912	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	272
7913	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	272
7914	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	272
7915	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	272
7916	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	272
10091	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	374
3676	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	150
10092	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	374
11145	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	405
7917	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><p></p><hr><p></p></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	272
7918	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	272
7919	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	272
7920	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	272
7921	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	272
7922	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	272
7923	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	272
7924	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:24:40.704Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	272
7925	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	272
10093	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:16:53.460Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	374
10094	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:17:13.166Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	374
10095	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	374
11146	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	405
11147	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	405
3677	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	150
5949	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	219
6677	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	239
11148	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	405
5393	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": null, "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	207
5380	3	3	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": false, "revision_id": 0, "placeholders": [6], "application_namespace": "djangocms_blog", "changed_date": "2015-10-04T23:34:04.608Z", "publication_date": "2015-06-12T17:17:49.261Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": true, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0003", "creation_date": "2015-06-12T17:05:57.028Z", "created_by": "ungleich", "application_urls": "BlogApp", "template": "cms/ungleichch/blog.html", "languages": "en-us", "depth": 1, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 3}]	Blog	11	203
5381	6	6	json	[{"fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder", "pk": 6}]	page_content	9	203
5821	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	217
5822	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:47:25.866Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	217
5823	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	217
5824	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	217
5825	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	217
7562	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	264
7563	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	264
7564	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	264
7565	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	264
7566	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	264
7567	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	264
7568	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	264
7605	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	265
7606	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	265
7607	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	265
7608	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	265
7609	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	265
7746	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	268
1582	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	80
1583	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	80
1585	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": null, "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "INHERIT", "changed_date": "2015-10-04T17:45:05.435Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": null, "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 6}]	digital.glarus.about	11	80
1586	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	80
1587	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	80
1588	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	80
1589	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	80
1590	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	80
1591	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	80
1592	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	80
5382	3	3	json	[{"fields": {"language": "en-us", "menu_title": "Blog", "title": "Blog", "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "redirect": "", "slug": "blog", "published": true, "page": 3, "has_url_overwrite": true}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	204
5383	3	3	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": false, "revision_id": 0, "placeholders": [6], "application_namespace": "djangocms_blog", "changed_date": "2015-10-04T23:34:15.627Z", "publication_date": "2015-06-12T17:17:49.261Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": true, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0003", "creation_date": "2015-06-12T17:05:57.028Z", "created_by": "ungleich", "application_urls": "BlogApp", "template": "cms/ungleichch/blog.html", "languages": "en-us", "depth": 1, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 3}]	Blog	11	204
5384	6	6	json	[{"fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder", "pk": 6}]	page_content	9	204
5826	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	217
5827	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	217
5828	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	217
5829	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	217
5830	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	217
5831	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	217
5832	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	217
7747	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	268
7804	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	270
5385	3	3	json	[{"fields": {"language": "en-us", "menu_title": "Blog", "title": "Blog", "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "redirect": "", "slug": "blog", "published": true, "page": 3, "has_url_overwrite": true}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	205
5429	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	207
5386	3	3	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": false, "revision_id": 0, "placeholders": [6], "application_namespace": "djangocms_blog", "changed_date": "2015-10-04T23:35:54.232Z", "publication_date": "2015-06-12T17:17:49.261Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": true, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0003", "creation_date": "2015-06-12T17:05:57.028Z", "created_by": "ungleich", "application_urls": "BlogApp", "template": "cms/ungleichch/blog.html", "languages": "en-us", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 3}]	Blog	11	205
5387	6	6	json	[{"fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder", "pk": 6}]	page_content	9	205
5833	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	217
5834	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	217
5835	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	217
5836	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	217
5837	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	217
5838	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	217
5839	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	217
5840	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	217
5841	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	217
5842	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	217
5843	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	217
5844	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	217
5845	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	217
5846	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	217
5847	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	217
5848	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	217
5849	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	217
5850	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	217
5851	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	217
5852	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	217
5388	3	3	json	[{"fields": {"language": "en-us", "menu_title": "Blog", "title": "Blog", "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "redirect": "", "slug": "blog", "published": true, "page": 3, "has_url_overwrite": true}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	206
2799	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	116
5389	3	3	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": false, "revision_id": 0, "placeholders": [6], "application_namespace": "djangocms_blog", "changed_date": "2015-10-04T23:36:02.001Z", "publication_date": "2015-06-12T17:17:49.261Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": true, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0003", "creation_date": "2015-06-12T17:05:57.028Z", "created_by": "ungleich", "application_urls": "BlogApp", "template": "cms/ungleichch/blog.html", "languages": "en-us", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 3}]	Blog	11	206
5390	6	6	json	[{"fields": {"slot": "page_content", "default_width": null}, "model": "cms.placeholder", "pk": 6}]	page_content	9	206
5853	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	217
5854	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	217
5855	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	217
5856	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	217
5919	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	219
5920	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	219
5921	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	219
5922	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	219
5923	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	219
5924	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	219
5925	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	219
5926	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	219
5927	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	219
5928	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	219
5929	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	219
5391	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	207
5394	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	207
5395	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	207
5396	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	207
5397	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	207
5398	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	207
5399	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	207
5400	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	207
5401	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	207
5402	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	207
5403	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	207
5404	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:38:38.634Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	207
5857	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	218
5941	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	219
5405	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	207
5406	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	207
5430	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	207
5408	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	207
5409	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	207
5410	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	207
5411	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	207
5412	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	207
5413	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	207
5414	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	207
5415	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	207
5416	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	207
5417	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	207
5418	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	207
5419	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	207
5420	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	207
5421	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	207
5422	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	207
5423	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	207
5424	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	207
5425	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	207
5426	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	207
5427	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	207
5431	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	207
5432	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	207
5433	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	207
5434	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	207
5435	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	207
5436	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	207
5437	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	207
5438	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	207
5858	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	218
5859	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digitalglarus", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digitalglarus, de)	16	218
5860	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	218
5861	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	218
5862	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	218
5863	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	218
985	3	3	json	[{"model": "cms.title", "fields": {"path": "blog", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-06-12T17:05:57.066Z", "page": 3, "language": "en-us", "page_title": "ungleich Blog", "menu_title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "slug": "blog", "title": "Blog"}, "pk": 3}]	Blog (blog, en-us)	16	64
986	3	3	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "BlogApp", "publication_date": "2015-06-12T17:17:49.261Z", "path": "0003", "changed_by": "ungleich", "template": "cms/ungleichch/blog.html", "changed_date": "2015-10-04T17:26:42.920Z", "placeholders": [6], "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": "djangocms_blog", "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 3}]	Blog	11	64
987	6	6	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "page_content"}, "pk": 6}]	page_content	9	64
5439	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	208
5440	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:38:41.495Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	Startseite	11	208
5454	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	208
5441	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": null, "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	208
5442	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	208
5443	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digital-glarus-home, en-us)	16	208
5444	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	208
5445	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	208
5446	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	208
5447	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	208
5448	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	208
5449	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	208
5450	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	208
5451	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	208
5942	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	219
5943	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	219
7598	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	265
5944	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	219
988	3	3	json	[{"model": "cms.title", "fields": {"path": "blog", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-06-12T17:05:57.066Z", "page": 3, "language": "en-us", "page_title": "ungleich Blog", "menu_title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "slug": "blog", "title": "Blog"}, "pk": 3}]	Blog (blog, en-us)	16	65
989	3	3	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "BlogApp", "publication_date": "2015-06-12T17:17:49.261Z", "path": "0003", "changed_by": "ungleich", "template": "cms/ungleichch/blog.html", "changed_date": "2015-10-04T17:27:18.505Z", "placeholders": [6], "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": "djangocms_blog", "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 3}]	Blog	11	65
990	6	6	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "page_content"}, "pk": 6}]	page_content	9	65
5452	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	208
5453	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	208
5455	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	208
5456	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	208
5457	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	208
5458	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	208
5459	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	208
5460	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	208
5461	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	208
5462	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	208
5463	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	208
5464	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	208
5465	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	208
5466	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	208
5467	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	208
5950	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	219
7926	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	273
991	3	3	json	[{"model": "cms.title", "fields": {"path": "blog", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-06-12T17:05:57.066Z", "page": 3, "language": "en-us", "page_title": "ungleich Blog", "menu_title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "slug": "blog", "title": "Blog"}, "pk": 3}]	Blog (blog, en-us)	16	66
992	3	3	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "BlogApp", "publication_date": "2015-06-12T17:17:49.261Z", "path": "0003", "changed_by": "ungleich", "template": "cms/ungleichch/blog.html", "changed_date": "2015-10-04T17:27:41.541Z", "placeholders": [6], "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": "djangocms_blog", "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 3}]	Blog	11	66
993	6	6	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "page_content"}, "pk": 6}]	page_content	9	66
5468	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	208
5469	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	208
5470	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	208
5471	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	208
5472	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	208
5473	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	208
5474	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	208
5475	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	208
5476	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	208
5477	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	208
5478	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	208
5479	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	208
5480	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	208
5481	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	208
5482	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	208
5483	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	208
5951	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	219
5484	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	208
5485	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	208
5486	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	208
5864	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	218
5865	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	218
5866	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	218
5867	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	218
5868	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	218
5869	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	218
5870	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:47:36.016Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	218
5871	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	218
5872	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	218
5873	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	218
5874	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	218
5945	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	219
6678	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:36:49.657Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	239
6679	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus-startseite", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus-startseite"}}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	239
6680	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	239
6681	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	239
6682	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	239
6683	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	239
6684	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-13T13:59:35.065Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	239
6685	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n\\n<p>\\u00a0</p>\\n<iframe scrolling=\\"no\\" frameborder=\\"0\\" width=\\"220\\" src=\\"//www.100-days.net/en/projekt/start-digital-glarus/widget/v2\\" height=\\"330\\"></iframe>"}}]	Digital Glarus, this...	35	239
6686	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	239
6687	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	239
6688	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	239
6689	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	239
6690	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	239
6691	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	239
6692	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	239
6693	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	239
6694	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	239
6695	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	239
6696	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	239
6697	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	239
6698	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	239
6699	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	239
6700	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	239
6701	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	239
6702	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	239
6703	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	239
6722	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	239
6704	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	239
6705	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	239
6706	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	239
6707	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	239
6708	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	239
6709	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	239
6710	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	239
6711	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	239
6712	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	239
6713	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	239
6714	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	239
7599	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	265
6715	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	239
6716	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	239
6717	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	239
6718	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	239
6719	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	239
6720	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	239
6721	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	239
5804	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	216
6723	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	239
6724	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	239
10096	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	374
10097	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	374
7477	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T00:55:57.032Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	262
6725	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	240
6726	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:59:35.460Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	240
6727	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus-startseite", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus-startseite"}}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	240
6728	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	240
6729	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	240
6730	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	240
6731	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	240
6732	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-13T14:02:19.803Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	240
8141	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	278
6733	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n\\n<p>\\u00a0</p>\\n\\n"}}]	Digital Glarus, this...	35	240
6734	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	240
6735	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	240
6736	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	240
6737	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	240
6738	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	240
6739	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	240
6740	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	240
6741	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	240
6742	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	240
6743	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	240
6744	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	240
6745	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	240
6746	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	240
6747	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	240
6748	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	240
6749	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	240
6750	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	240
6751	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	240
6770	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	240
6771	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	240
5282	179	179	json	[{"fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 179}]	AFFORDABLE price	35	200
6752	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	240
6753	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	240
6754	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	240
6755	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	240
6756	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	240
6757	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	240
6758	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	240
6759	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	240
6760	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	240
6761	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	240
6762	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	240
7639	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	266
6763	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	240
6764	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	240
6765	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	240
6766	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	240
6767	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	240
6768	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	240
6769	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	240
11137	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	404
6772	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	240
10098	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:15:59.537Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	374
10099	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	374
10100	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	374
10101	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	374
10102	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	374
10103	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	374
10104	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	374
10105	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	374
10106	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	374
5487	179	179	json	[{"fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 179}]	AFFORDABLE price	35	209
10107	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	374
10108	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	374
10109	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	374
10110	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	374
6773	3	3	json	[{"pk": 3, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "blog", "page": 3, "menu_title": "Blog", "has_url_overwrite": true, "title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "page_title": "ungleich Blog", "creation_date": "2015-06-12T17:05:57.066Z", "path": "blog"}}]	Blog (blog, en-us)	16	241
6774	3	3	json	[{"pk": 3, "model": "cms.page", "fields": {"languages": "en-us", "template": "cms/ungleichch/blog.html", "placeholders": [6], "application_urls": "BlogApp", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": true, "publication_date": "2015-06-12T17:17:49.261Z", "login_required": false, "creation_date": "2015-06-12T17:05:57.028Z", "path": "0003", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": false, "changed_date": "2015-10-27T19:12:29.219Z", "application_namespace": "djangocms_blog", "depth": 1, "created_by": "ungleich"}}]	Blog	11	241
6775	6	6	json	[{"pk": 6, "model": "cms.placeholder", "fields": {"slot": "page_content", "default_width": null}}]	page_content	9	241
10111	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	374
10112	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	374
10113	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	374
7478	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	262
7479	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	262
7480	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	262
7481	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	262
10114	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>.<iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	374
10115	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	374
10907	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	396
10908	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	396
10909	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	396
10910	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	396
10911	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	396
10912	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	396
10913	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	396
10914	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	396
10915	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 181}]	GLARNER CO-WORKING |...	35	396
10916	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	396
10917	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	396
10918	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	396
10919	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	396
10920	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	396
6776	3	3	json	[{"fields": {"redirect": "", "has_url_overwrite": true, "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "menu_title": "Blog", "title": "Blog", "language": "en-us", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "slug": "blog", "page": 3}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	242
6777	3	3	json	[{"fields": {"publication_date": "2015-06-12T17:17:49.261Z", "parent": null, "changed_date": "2015-11-04T21:54:05.652Z", "created_by": "ungleich", "limit_visibility_in_menu": null, "is_home": true, "path": "0003", "navigation_extenders": "", "revision_id": 0, "soft_root": false, "placeholders": [6], "languages": "en-us,de", "application_urls": "BlogApp", "login_required": false, "depth": 1, "xframe_options": 0, "reverse_id": null, "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "application_namespace": "djangocms_blog", "publication_end_date": null, "template": "cms/ungleichch/blog.html", "changed_by": "ungleich"}, "model": "cms.page", "pk": 3}]	Blog	11	242
6778	6	6	json	[{"fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder", "pk": 6}]	page_content	9	242
6779	23	23	json	[{"fields": {"redirect": null, "has_url_overwrite": false, "page_title": "ungleich blog", "meta_description": "", "published": false, "menu_title": "blog", "title": "blog", "language": "de", "path": "", "creation_date": "2015-11-04T21:54:05.650Z", "slug": "blog", "page": 3}, "model": "cms.title", "pk": 23}]	blog (blog, de)	16	242
10116	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	375
7482	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	262
7483	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	262
7484	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	262
7485	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	262
7486	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	262
7487	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	262
7488	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	262
7489	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	262
7490	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	262
7491	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	262
7492	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	262
7493	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	262
7494	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	262
7495	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	262
6780	3	3	json	[{"fields": {"redirect": "", "has_url_overwrite": true, "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "menu_title": "Blog", "title": "Blog", "language": "en-us", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "slug": "blog", "page": 3}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	243
6781	3	3	json	[{"fields": {"publication_date": "2015-06-12T17:17:49.261Z", "parent": null, "changed_date": "2015-11-04T21:54:19.638Z", "created_by": "ungleich", "limit_visibility_in_menu": null, "is_home": true, "path": "0003", "navigation_extenders": "", "revision_id": 0, "soft_root": false, "placeholders": [6], "languages": "en-us,de", "application_urls": "BlogApp", "login_required": false, "depth": 1, "xframe_options": 0, "reverse_id": null, "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "application_namespace": "djangocms_blog", "publication_end_date": null, "template": "cms/ungleichch/blog.html", "changed_by": "ungleich"}, "model": "cms.page", "pk": 3}]	Blog	11	243
6782	6	6	json	[{"fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder", "pk": 6}]	page_content	9	243
6783	23	23	json	[{"fields": {"redirect": null, "has_url_overwrite": false, "page_title": "ungleich blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": false, "menu_title": "blog", "title": "blog", "language": "de", "path": "", "creation_date": "2015-11-04T21:54:05.650Z", "slug": "blog", "page": 3}, "model": "cms.title", "pk": 23}]	blog (blog, de)	16	243
5488	6	6	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:39:11.923Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}]	about	11	209
5489	7	7	json	[{"fields": {"language": "en-us", "menu_title": "about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	209
5490	8	8	json	[{"fields": {"language": "de", "menu_title": "\\u00dcber uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": false, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	209
5491	188	188	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}]	188	10	209
5492	174	174	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 174}]	The Swiss IT...	35	209
5493	175	175	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "position": 0, "path": "001D", "numchild": 0, "creation_date": "2015-10-04T17:46:20.372Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 175}]	175	10	209
5494	176	176	json	[{"fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}]	We, the ungleich...	35	209
5495	180	180	json	[{"fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 180}]	direct connection to...	35	209
5496	70	70	json	[{"fields": {"slot": "digitalglarus_why_glarus_beautiful_landscape", "default_width": null}, "model": "cms.placeholder", "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	209
5497	177	177	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 177}]	why glarus?	35	209
5498	178	178	json	[{"fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 178}]	BEAUTIFUL landscape	35	209
5499	174	174	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}]	174	10	209
5500	175	175	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 175}]	why Us?	35	209
5501	176	176	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "position": 0, "path": "001E", "numchild": 0, "creation_date": "2015-10-04T17:46:40.251Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 176}]	176	10	209
5502	177	177	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "position": 0, "path": "001F", "numchild": 0, "creation_date": "2015-10-04T17:47:04.566Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 177}]	177	10	209
5503	178	178	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "position": 0, "path": "001G", "numchild": 0, "creation_date": "2015-10-04T17:47:33.925Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 178}]	178	10	209
5504	179	179	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}]	179	10	209
5505	180	180	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "position": 0, "path": "001I", "numchild": 0, "creation_date": "2015-10-04T17:48:04.828Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 180}]	180	10	209
5506	181	181	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 181}]	The Swiss IT...	35	209
5507	182	182	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "position": 0, "path": "001K", "numchild": 0, "creation_date": "2015-10-04T17:52:38.665Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 182}]	182	10	209
2731	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	115
2732	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:57:08.592Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	115
2733	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	115
2734	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	115
2735	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:56:45.319Z", "position": 0}, "pk": 188}]	188	10	115
2736	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	115
2737	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	115
2738	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	115
2739	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	115
2740	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	115
2741	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	115
2742	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	115
2743	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	115
2744	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	115
2745	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	115
2746	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	115
6784	3	3	json	[{"fields": {"redirect": "", "has_url_overwrite": true, "page_title": "ungleich Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": true, "menu_title": "Blog", "title": "Blog", "language": "en-us", "path": "blog", "creation_date": "2015-06-12T17:05:57.066Z", "slug": "blog", "page": 3}, "model": "cms.title", "pk": 3}]	Blog (blog, en-us)	16	244
6785	3	3	json	[{"fields": {"publication_date": "2015-06-12T17:17:49.261Z", "parent": null, "changed_date": "2015-11-04T21:54:23.072Z", "created_by": "ungleich", "limit_visibility_in_menu": null, "is_home": true, "path": "0003", "navigation_extenders": "", "revision_id": 0, "soft_root": false, "placeholders": [6], "languages": "en-us,de", "application_urls": "BlogApp", "login_required": false, "depth": 1, "xframe_options": 0, "reverse_id": null, "in_navigation": false, "numchild": 0, "site": 1, "creation_date": "2015-06-12T17:05:57.028Z", "application_namespace": "djangocms_blog", "publication_end_date": null, "template": "cms/ungleichch/blog.html", "changed_by": "ungleich"}, "model": "cms.page", "pk": 3}]	Blog	11	244
6786	6	6	json	[{"fields": {"default_width": null, "slot": "page_content"}, "model": "cms.placeholder", "pk": 6}]	page_content	9	244
6787	23	23	json	[{"fields": {"redirect": null, "has_url_overwrite": false, "page_title": "ungleich blog", "meta_description": "on OpenSource, technology, our passion and interests...", "published": false, "menu_title": "blog", "title": "blog", "language": "de", "path": "", "creation_date": "2015-11-04T21:54:05.650Z", "slug": "blog", "page": 3}, "model": "cms.title", "pk": 23}]	blog (blog, de)	16	244
7927	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	273
3678	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	150
7928	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:24:49.959Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	273
2773	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	115
7929	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	273
7930	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	273
7931	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	273
7932	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	273
7933	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	273
7934	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	273
7935	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	273
7936	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	273
7937	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	273
7938	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	273
7939	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	273
7940	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	273
7941	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	273
7942	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	273
7943	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	273
7944	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	273
7945	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	273
7946	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	273
7947	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	273
7948	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	273
7949	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	273
2747	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	115
2748	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	115
3679	198	198	json	[{"model": "cms.cmsplugin", "fields": {"path": "001X", "depth": 1, "placeholder": 83, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "changed_date": "2015-10-04T18:16:13.357Z", "position": 0}, "pk": 198}]	198	10	150
7950	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	273
5508	183	183	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "position": 0, "path": "001L", "numchild": 0, "creation_date": "2015-10-04T17:52:54.182Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 183}]	183	10	209
2749	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	115
2750	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	115
2781	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:57:41.428Z", "position": 0}, "pk": 188}]	188	10	116
2782	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	116
2639	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	113
2640	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:56:45.392Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	113
2641	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	113
2642	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	113
2643	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:56:45.319Z", "position": 0}, "pk": 188}]	188	10	113
2644	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	113
2645	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	113
2646	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	113
2647	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	113
2648	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	113
2649	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	113
2650	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	113
2651	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	113
2652	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	113
2653	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	113
2654	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	113
2655	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	113
2774	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>PREISWERT</p>\\n"}, "pk": 188}]	PREISWERT	35	115
2656	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	113
2916	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:58:54.984Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	119
7951	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	273
2657	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	113
2658	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO WIR?</p>\\n"}, "pk": 182}]	WIESO WIR?	35	113
2659	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	113
2660	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	113
2661	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WUNDERSCH\\u00d6NE LANDSCHAFT</p>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	113
2662	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	113
2663	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	113
2664	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	113
2665	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	113
2666	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	113
2667	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	113
2668	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	113
2669	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	113
2670	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	113
2671	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	113
2672	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	113
2673	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	113
2674	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	113
5509	184	184	json	[{"fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}]	WIESO GLARUS?	35	209
2675	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	113
2676	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	113
2677	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	113
2678	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	113
2679	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:55:29.967Z", "position": 0}, "pk": 185}]	185	10	113
10924	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	396
2680	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:52:43.940Z", "position": 0}, "pk": 182}]	182	10	113
2681	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	113
2682	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>PREISWERT</p>\\n"}, "pk": 188}]	PREISWERT	35	113
5510	185	185	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}]	185	10	209
5511	58	58	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}]	digital_glarus_build_a_tech_valley	9	209
7496	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	262
2683	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	113
2684	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	113
2751	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	115
2752	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	115
2753	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	115
2754	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	115
2755	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	115
2756	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	115
2757	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	115
2758	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	115
2759	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	115
2760	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	115
2761	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	115
2762	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	115
2763	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	115
2764	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	115
2765	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	115
2766	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	115
2767	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	115
2768	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	115
2769	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	115
2770	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	115
2771	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:57:24.745Z", "position": 0}, "pk": 185}]	185	10	115
2772	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	115
2775	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	115
2776	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	115
2783	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	116
2784	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	116
5512	59	59	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	209
5513	60	60	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 60}]	digital_glarus_a_new_area	9	209
5514	61	61	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 61}]	digital_glarus_a_new_area_content	9	209
5515	62	62	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 62}]	digital_glarus_why_be_interested	9	209
5516	63	63	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 63}]	digital_glarus_why_be_interested_content	9	209
5517	64	64	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 64}]	digital_glarus_where_we_are	9	209
5518	65	65	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 65}]	digital_glarus_where_we_are_content	9	209
5519	66	66	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 66}]	digital_glarus_legend	9	209
5520	67	67	json	[{"fields": {"slot": "digitalglarus_why_us", "default_width": null}, "model": "cms.placeholder", "pk": 67}]	digitalglarus_why_us	9	209
5521	68	68	json	[{"fields": {"slot": "digitalglarus_why_us_content", "default_width": null}, "model": "cms.placeholder", "pk": 68}]	digitalglarus_why_us_content	9	209
5522	69	69	json	[{"fields": {"slot": "digitalglarus_why_glarus", "default_width": null}, "model": "cms.placeholder", "pk": 69}]	digitalglarus_why_glarus	9	209
5523	181	181	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "position": 0, "path": "001J", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 181}]	181	10	209
5524	71	71	json	[{"fields": {"slot": "digitalglarus_why_glarus_affordable_price", "default_width": null}, "model": "cms.placeholder", "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	209
5525	72	72	json	[{"fields": {"slot": "digitalglarus_why_glarus_direct_connection_zurich", "default_width": null}, "model": "cms.placeholder", "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	209
5526	183	183	json	[{"fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}]	Wir, die ungleich...	35	209
5527	184	184	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}]	184	10	209
5528	185	185	json	[{"fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	209
5529	182	182	json	[{"fields": {"body": "WIESO WIR?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 182}]	WIESO WIR?	35	209
5530	187	187	json	[{"fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	209
5531	188	188	json	[{"fields": {"body": "<h3>PREISWERT</h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 188}]	PREISWERT	35	209
5532	187	187	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "position": 0, "path": "001P", "numchild": 0, "creation_date": "2015-10-04T17:56:10.917Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 187}]	187	10	209
5875	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	218
5876	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	218
5877	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	218
5878	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	218
7497	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	262
5533	179	179	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}]	179	10	210
5534	6	6	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:39:22.543Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}]	Ãœber uns	11	210
5535	7	7	json	[{"fields": {"language": "en-us", "menu_title": "about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	210
5536	8	8	json	[{"fields": {"language": "de", "menu_title": "\\u00dcber uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	210
5537	188	188	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}]	188	10	210
5538	174	174	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}]	174	10	210
5539	175	175	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 175}]	why Us?	35	210
5540	176	176	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "position": 0, "path": "001E", "numchild": 0, "creation_date": "2015-10-04T17:46:40.251Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 176}]	176	10	210
5541	180	180	json	[{"fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 180}]	direct connection to...	35	210
7952	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	273
7953	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	273
7954	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	273
7955	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	273
7956	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	273
7957	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	273
10117	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	375
10921	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	396
10922	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	396
10923	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	396
10925	183	183	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "creation_date": "2015-10-04T17:52:54.182Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001L"}, "pk": 183}]	183	10	396
10926	184	184	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "creation_date": "2015-10-04T17:55:08.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001M"}, "pk": 184}]	184	10	396
10927	185	185	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "creation_date": "2015-10-04T17:55:24.521Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001N"}, "pk": 185}]	185	10	396
7958	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><p></p><hr><p></p></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	273
7959	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	273
7960	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	273
7961	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	273
7962	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	273
7963	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	273
7964	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	273
7965	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:24:40.704Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	273
7966	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	273
10118	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:17:13.512Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	375
10119	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:17:13.166Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	375
10120	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	375
10121	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	375
10122	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	375
10123	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:17:31.417Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	375
7987	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	274
10124	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	375
11212	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	407
7967	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	274
7968	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	274
7969	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:24:50.049Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	274
7970	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	274
7971	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	274
7972	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	274
7973	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	274
7974	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	274
7640	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	266
7975	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	274
7976	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	274
7977	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	274
7978	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	274
7979	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	274
7980	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	274
7981	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	274
7982	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	274
7983	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	274
7984	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	274
7985	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	274
7986	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	274
11138	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	404
7988	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	274
7989	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	274
7990	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	274
7991	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	274
7992	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	274
7993	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	274
7994	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	274
7995	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	274
7996	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	274
7997	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	274
7998	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	274
7498	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	262
7999	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\"><iframe frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	274
8000	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	274
8001	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	274
8002	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	274
8003	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	274
8004	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	274
7499	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	262
7500	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	262
7501	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	262
7502	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	262
2800	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	116
7503	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	262
7504	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	262
7505	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	262
7506	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	262
7644	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	266
7762	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	269
8005	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	274
8006	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:33:52.072Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	274
8007	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	274
10125	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	375
10126	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	375
10127	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	375
10128	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	375
10129	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	375
10130	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	375
10131	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	375
10132	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	375
10133	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	375
10134	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	375
10135	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	375
10136	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	375
10137	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	375
10138	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	375
2687	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	114
2785	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	116
8018	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	275
8019	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	275
2927	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	119
10139	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>.<iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	375
10140	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	375
10928	182	182	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "creation_date": "2015-10-04T17:52:38.665Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001K"}, "pk": 182}]	182	10	396
10929	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	396
10930	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	396
10931	187	187	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "creation_date": "2015-10-04T17:56:10.917Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001P"}, "pk": 187}]	187	10	396
10932	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	396
8008	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	275
8009	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	275
8010	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-21T16:34:09.838Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	275
8011	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	275
8012	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	275
8013	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	275
8014	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	275
8015	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	275
8016	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	275
8017	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	275
2685	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	114
2686	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:56:45.692Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	114
2997	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	120
8020	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	275
8021	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	275
8022	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	275
8023	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	275
8024	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	275
8025	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	275
8026	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	275
8027	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	275
8028	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	275
8029	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	275
8030	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	275
8031	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	275
8032	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	275
8033	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	275
8034	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	275
8035	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	275
8036	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	275
8037	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	275
8038	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	275
8039	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	275
10141	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	376
10142	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	376
10933	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	397
7645	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	266
8040	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\"><iframe frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	275
8041	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	275
8042	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	275
8043	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	275
8044	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	275
8045	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	275
8046	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	275
8047	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:33:52.072Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	275
10934	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	397
10935	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:40:23.627Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	397
10936	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	397
10937	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	397
10938	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	397
10939	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (jazz, en-us)	16	397
10940	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	397
10941	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	397
10942	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	397
10943	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	397
2998	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	120
2688	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	114
2689	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:56:45.319Z", "position": 0}, "pk": 188}]	188	10	114
2690	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	114
2691	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	114
2692	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	114
2693	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	114
2694	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	114
2695	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	114
2696	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	114
2697	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	114
2698	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	114
2699	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	114
2700	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	114
2701	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	114
2702	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	114
2703	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	114
2704	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	114
2777	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	116
2786	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	116
5879	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	218
5880	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	218
7518	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T00:57:39.157Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	Crowdfunding	11	263
7680	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	267
8087	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	276
2705	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	114
2706	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	114
2707	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WUNDERSCH\\u00d6NE LANDSCHAFT</p>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	114
2708	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	114
2709	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	114
2710	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	114
2711	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	114
2712	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	114
2713	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	114
2714	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	114
2715	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	114
2716	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	114
2717	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	114
2718	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	114
2719	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	114
2720	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	114
7519	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	263
2917	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	119
2918	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	119
2919	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:59:12.135Z", "position": 0}, "pk": 188}]	188	10	119
2920	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	119
2921	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	119
2922	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	119
2923	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	119
2924	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	119
2925	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	119
2926	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	119
2928	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	119
2929	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	119
2930	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	119
2931	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	119
2932	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	119
2933	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	119
2934	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	119
2935	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	119
2936	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	119
2937	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	119
2938	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	119
2939	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	119
2940	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	119
2941	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	119
2942	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	119
2943	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	119
2944	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	119
2945	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	119
2946	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	119
2947	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	119
2948	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	119
2949	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	119
2950	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	119
2951	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	119
2952	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	119
2953	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	119
2954	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	119
2955	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:54.653Z", "position": 0}, "pk": 185}]	185	10	119
2956	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	119
2957	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	119
2958	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	119
2959	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	119
2960	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	119
3680	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": "", "publication_date": null, "path": "00050002", "changed_by": "ungleich", "template": "cms/digitalglarus/contact.html", "changed_date": "2015-10-04T18:16:23.200Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 7}]	digital.glarus.contact	11	150
3681	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	150
3682	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	150
3683	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	150
3684	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	150
3685	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	150
3686	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	150
3687	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	150
3688	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	150
3689	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	150
2961	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	120
2962	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:59:12.409Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	120
2963	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	120
2964	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	120
2965	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:59:12.135Z", "position": 0}, "pk": 188}]	188	10	120
2966	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	120
2967	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	120
2968	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	120
2969	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	120
2970	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	120
2971	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	120
2972	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	120
2973	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	120
2974	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	120
2975	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	120
2976	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	120
2977	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	120
2978	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	120
2979	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	120
2980	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	120
3690	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	150
3691	195	195	json	[{"model": "cms.cmsplugin", "fields": {"path": "001U", "depth": 1, "placeholder": 83, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0}, "pk": 195}]	195	10	150
2981	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	120
2982	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	120
2983	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	120
2984	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	120
2985	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	120
2986	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	120
2987	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	120
2988	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	120
2989	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	120
2990	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	120
2991	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	120
2992	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	120
2993	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	120
2994	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	120
2995	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	120
2996	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	120
2999	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	120
3000	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	120
3001	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:54.653Z", "position": 0}, "pk": 185}]	185	10	120
3002	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	120
3003	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	120
3004	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	120
3005	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:59:41.183Z", "position": 0}, "pk": 187}]	187	10	120
3006	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	120
3692	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	150
3693	196	196	json	[{"model": "cms.cmsplugin", "fields": {"path": "001V", "depth": 1, "placeholder": 81, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0}, "pk": 196}]	196	10	150
8048	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	275
3007	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	121
3008	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:59:41.471Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	121
3009	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	121
3010	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	121
3011	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:59:12.135Z", "position": 0}, "pk": 188}]	188	10	121
3012	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	121
3013	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	121
3014	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	121
3015	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	121
3016	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	121
3017	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	121
3018	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	121
3019	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	121
3020	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	121
3021	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	121
3022	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	121
3023	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	121
3024	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	121
3025	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	121
3026	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	121
3694	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	150
3027	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	121
3028	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	121
3029	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	121
3030	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	121
3031	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	121
3032	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	121
3033	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	121
3034	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	121
3035	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	121
3036	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	121
3037	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	121
3038	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	121
3039	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	121
3040	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	121
3041	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	121
3042	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	121
3043	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	121
3044	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	121
3045	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	121
3046	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T18:00:01.920Z", "position": 0}, "pk": 184}]	184	10	121
3047	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:54.653Z", "position": 0}, "pk": 185}]	185	10	121
3048	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	121
3049	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	121
3050	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	121
3051	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:59:41.183Z", "position": 0}, "pk": 187}]	187	10	121
3052	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	121
3695	197	197	json	[{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}]	197	10	150
3696	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>&lt;iframe scrolling=\\"no\\" marginheight=\\"0\\" marginwidth=\\"0\\" src=\\"//maps.google.com/maps?hl=en&amp;amp;ie=UTF8&amp;amp;ll=46.969959,9.039001&amp;amp;spn=56.506174,79.013672&amp;amp;t=m&amp;amp;z=12&amp;amp;output=embed\\" frameborder=\\"0\\" height=\\"400\\" width=\\"100%\\"&gt;&lt;/iframe&gt;</p>\\n"}, "pk": 198}]	&lt;iframe scrolling="no" marginheight="0"...	35	150
3053	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	122
3054	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T18:01:41.323Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	122
3055	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	122
3056	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	122
3057	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:59:12.135Z", "position": 0}, "pk": 188}]	188	10	122
3058	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	122
3059	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	122
3060	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	122
3061	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	122
3062	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	122
3063	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	122
3064	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	122
3065	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	122
3066	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	122
3067	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	122
3068	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	122
3069	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	122
3070	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	122
3071	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	122
3072	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	122
3073	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	122
8049	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	276
3074	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	122
3075	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	122
3076	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:54.653Z", "position": 0}, "pk": 185}]	185	10	122
3077	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	122
3078	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	122
3079	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	122
3080	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	122
3081	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	122
3082	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	122
3083	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	122
3084	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	122
3085	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	122
3086	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	122
3087	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	122
3088	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	122
3089	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	122
3090	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	122
3091	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	122
3703	191	191	json	[{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}]	191	10	150
3704	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 189}]	The Swiss IT...	35	150
3705	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	150
3092	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	122
3093	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T18:00:01.920Z", "position": 0}, "pk": 184}]	184	10	122
3094	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	122
3095	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	122
3096	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	122
3097	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	122
3098	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:59:41.183Z", "position": 0}, "pk": 187}]	187	10	122
3697	199	199	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Y", "depth": 1, "placeholder": 84, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0}, "pk": 199}]	199	10	150
3698	189	189	json	[{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}]	189	10	150
3699	10	10	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	150
3099	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	123
3100	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	123
3101	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	123
3102	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": null, "publication_date": null, "path": "00050001", "changed_by": "ungleich", "template": "INHERIT", "changed_date": "2015-10-04T18:05:38.186Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": null, "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": null, "login_required": false}, "pk": 7}]	digital.glarus.contact	11	123
3103	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	123
3104	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	123
3105	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	123
3106	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	123
3107	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	123
3108	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	123
3109	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	123
3700	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	150
3701	190	190	json	[{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}]	190	10	150
3702	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	150
3706	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	150
5542	177	177	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "position": 0, "path": "001F", "numchild": 0, "creation_date": "2015-10-04T17:47:04.566Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 177}]	177	10	210
5543	178	178	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "position": 0, "path": "001G", "numchild": 0, "creation_date": "2015-10-04T17:47:33.925Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 178}]	178	10	210
5544	174	174	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 174}]	The Swiss IT...	35	210
5545	175	175	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "position": 0, "path": "001D", "numchild": 0, "creation_date": "2015-10-04T17:46:20.372Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 175}]	175	10	210
5881	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	218
8050	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	276
10944	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	397
5946	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	219
3707	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	151
3708	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	151
3709	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	151
3710	198	198	json	[{"model": "cms.cmsplugin", "fields": {"path": "001X", "depth": 1, "placeholder": 83, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0}, "pk": 198}]	198	10	151
3711	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": "", "publication_date": null, "path": "00050002", "changed_by": "ungleich", "template": "cms/digitalglarus/contact.html", "changed_date": "2015-10-04T18:17:05.907Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 7}]	digital.glarus.contact	11	151
3712	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	151
3713	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	151
3714	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	151
3715	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	151
3716	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	151
3717	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	151
3718	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	151
3719	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	151
3720	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	151
3721	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	151
3722	195	195	json	[{"model": "cms.cmsplugin", "fields": {"path": "001U", "depth": 1, "placeholder": 83, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0}, "pk": 195}]	195	10	151
3723	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	151
3724	196	196	json	[{"model": "cms.cmsplugin", "fields": {"path": "001V", "depth": 1, "placeholder": 81, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0}, "pk": 196}]	196	10	151
3725	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	151
3726	197	197	json	[{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}]	197	10	151
3727	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 198}]		35	151
3728	199	199	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Y", "depth": 1, "placeholder": 84, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0}, "pk": 199}]	199	10	151
3729	189	189	json	[{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}]	189	10	151
3730	10	10	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	151
3731	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	151
3732	190	190	json	[{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}]	190	10	151
3733	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	151
3734	191	191	json	[{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}]	191	10	151
3735	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 189}]	The Swiss IT...	35	151
3736	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	151
3737	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	151
5546	176	176	json	[{"fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}]	We, the ungleich...	35	210
5547	177	177	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 177}]	why glarus?	35	210
5548	178	178	json	[{"fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 178}]	BEAUTIFUL landscape	35	210
5549	179	179	json	[{"fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 179}]	AFFORDABLE price	35	210
5550	180	180	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "position": 0, "path": "001I", "numchild": 0, "creation_date": "2015-10-04T17:48:04.828Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 180}]	180	10	210
5551	181	181	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "position": 0, "path": "001J", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 181}]	181	10	210
5552	182	182	json	[{"fields": {"body": "WIESO WIR?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 182}]	WIESO WIR?	35	210
5571	183	183	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "position": 0, "path": "001L", "numchild": 0, "creation_date": "2015-10-04T17:52:54.182Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 183}]	183	10	210
5572	184	184	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}]	184	10	210
5553	183	183	json	[{"fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}]	Wir, die ungleich...	35	210
5554	184	184	json	[{"fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}]	WIESO GLARUS?	35	210
5555	185	185	json	[{"fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	210
5556	58	58	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}]	digital_glarus_build_a_tech_valley	9	210
5557	59	59	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	210
5558	60	60	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 60}]	digital_glarus_a_new_area	9	210
5559	61	61	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 61}]	digital_glarus_a_new_area_content	9	210
7520	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	263
3738	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	152
3739	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	152
3740	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	152
3741	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	152
3742	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	152
3743	8	8	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": null, "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "INHERIT", "changed_date": "2015-10-04T18:54:49.224Z", "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:54:49.173Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": null, "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 8}]	digital.glarus.crowdfunding	11	152
3744	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	152
3745	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	152
3746	11	11	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-crowdfunding", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:54:49.222Z", "page": 8, "language": "en-us", "page_title": "Digital Glarus - Crowdfunding", "menu_title": "digital.glarus.crowdfunding", "meta_description": "Digital Glarus - Crowdfunding", "published": false, "slug": "digital-glarus-crowdfunding", "title": "Digital Glarus - Crowdfunding"}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	152
3747	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	152
3748	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	152
5560	62	62	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 62}]	digital_glarus_why_be_interested	9	210
5561	181	181	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 181}]	The Swiss IT...	35	210
5562	64	64	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 64}]	digital_glarus_where_we_are	9	210
5563	65	65	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 65}]	digital_glarus_where_we_are_content	9	210
5564	66	66	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 66}]	digital_glarus_legend	9	210
5565	67	67	json	[{"fields": {"slot": "digitalglarus_why_us", "default_width": null}, "model": "cms.placeholder", "pk": 67}]	digitalglarus_why_us	9	210
5566	68	68	json	[{"fields": {"slot": "digitalglarus_why_us_content", "default_width": null}, "model": "cms.placeholder", "pk": 68}]	digitalglarus_why_us_content	9	210
5567	69	69	json	[{"fields": {"slot": "digitalglarus_why_glarus", "default_width": null}, "model": "cms.placeholder", "pk": 69}]	digitalglarus_why_glarus	9	210
5568	70	70	json	[{"fields": {"slot": "digitalglarus_why_glarus_beautiful_landscape", "default_width": null}, "model": "cms.placeholder", "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	210
5569	71	71	json	[{"fields": {"slot": "digitalglarus_why_glarus_affordable_price", "default_width": null}, "model": "cms.placeholder", "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	210
5570	72	72	json	[{"fields": {"slot": "digitalglarus_why_glarus_direct_connection_zurich", "default_width": null}, "model": "cms.placeholder", "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	210
5573	185	185	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}]	185	10	210
5574	182	182	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "position": 0, "path": "001K", "numchild": 0, "creation_date": "2015-10-04T17:52:38.665Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 182}]	182	10	210
5575	187	187	json	[{"fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	210
5576	188	188	json	[{"fields": {"body": "<h3>PREISWERT</h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 188}]	PREISWERT	35	210
5577	187	187	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "position": 0, "path": "001P", "numchild": 0, "creation_date": "2015-10-04T17:56:10.917Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 187}]	187	10	210
5578	63	63	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 63}]	digital_glarus_why_be_interested_content	9	210
5579	195	195	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "path": "001U", "numchild": 0, "creation_date": "2015-10-04T18:10:28.015Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 195}]	195	10	211
5580	196	196	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "path": "001V", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 196}]	196	10	211
5581	197	197	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 197}]	Kontakt DIGITAL GLARUS	35	211
5582	198	198	json	[{"fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 198}]		35	211
5583	7	7	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_namespace": null, "changed_date": "2015-10-04T23:39:40.062Z", "publication_date": "2015-10-04T23:27:38.405Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050002", "creation_date": "2015-10-04T18:05:38.150Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/contact.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 7}]	contact	11	211
8051	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-21T16:34:09.954Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	276
8052	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	276
8053	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	276
8054	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	276
8055	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	276
8056	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	276
8057	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	276
8058	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	276
8059	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	276
8060	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	276
10143	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:17:31.787Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	376
5611	196	196	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 196}]	The Swiss IT...	35	212
5584	9	9	json	[{"fields": {"language": "en-us", "menu_title": "contact", "title": "Digital Glarus - Contact", "page_title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "path": "digitalglarus/digital-glarus-contact", "creation_date": "2015-10-04T18:05:38.201Z", "redirect": "", "slug": "digital-glarus-contact", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	211
5585	10	10	json	[{"fields": {"language": "de", "menu_title": "Kontakt", "title": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "path": "digital-glarus-startseite/digital-glarus-kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "redirect": null, "slug": "digital-glarus-kontakt", "published": false, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	211
5586	75	75	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 75}]	digital_glarus_a_new_area	9	211
5587	76	76	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 76}]	digital_glarus_a_new_area_content	9	211
5588	77	77	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 77}]	digital_glarus_why_be_interested	9	211
5589	78	78	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 78}]	digital_glarus_why_be_interested_content	9	211
5590	79	79	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 79}]	digital_glarus_where_we_are	9	211
5591	80	80	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 80}]	digital_glarus_where_we_are_content	9	211
5592	81	81	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 81}]	digital_glarus_legend	9	211
5593	82	82	json	[{"fields": {"slot": "digital_glarus_contact", "default_width": null}, "model": "cms.placeholder", "pk": 82}]	digital_glarus_contact	9	211
5594	195	195	json	[{"fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 195}]		35	211
5595	84	84	json	[{"fields": {"slot": "digital_glarus_contact_information", "default_width": null}, "model": "cms.placeholder", "pk": 84}]	digital_glarus_contact_information	9	211
5596	196	196	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 196}]	The Swiss IT...	35	211
5597	199	199	json	[{"fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}]	Telefon: +41 (0)...	35	211
5598	197	197	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}]	197	10	211
5599	198	198	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}]	198	10	211
5600	199	199	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}]	199	10	211
5601	189	189	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}]	The Swiss IT...	35	211
5602	83	83	json	[{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}]	digital_glarus_contact_content	9	211
5603	74	74	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	211
5604	190	190	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}]	190	10	211
5605	73	73	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}]	digital_glarus_build_a_tech_valley	9	211
5606	191	191	json	[{"fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 191}]	Phone: +41 (0)...	35	211
5607	189	189	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}]	189	10	211
5608	190	190	json	[{"fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}]	Contact DIGITAL GLARUS	35	211
5609	191	191	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}]	191	10	211
5610	195	195	json	[{"fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 195}]		35	212
5612	197	197	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 197}]	Kontakt DIGITAL GLARUS	35	212
5613	198	198	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}]	198	10	212
5614	7	7	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_namespace": null, "changed_date": "2015-10-04T23:39:51.435Z", "publication_date": "2015-10-04T23:27:38.405Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050002", "creation_date": "2015-10-04T18:05:38.150Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/contact.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 7}]	Kontakt	11	212
5615	73	73	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}]	digital_glarus_build_a_tech_valley	9	212
5616	74	74	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	212
5617	75	75	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 75}]	digital_glarus_a_new_area	9	212
5618	76	76	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 76}]	digital_glarus_a_new_area_content	9	212
5619	77	77	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 77}]	digital_glarus_why_be_interested	9	212
5620	78	78	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 78}]	digital_glarus_why_be_interested_content	9	212
5621	79	79	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 79}]	digital_glarus_where_we_are	9	212
5622	80	80	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 80}]	digital_glarus_where_we_are_content	9	212
5623	81	81	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 81}]	digital_glarus_legend	9	212
5624	82	82	json	[{"fields": {"slot": "digital_glarus_contact", "default_width": null}, "model": "cms.placeholder", "pk": 82}]	digital_glarus_contact	9	212
5625	195	195	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "path": "001U", "numchild": 0, "creation_date": "2015-10-04T18:10:28.015Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 195}]	195	10	212
5626	84	84	json	[{"fields": {"slot": "digital_glarus_contact_information", "default_width": null}, "model": "cms.placeholder", "pk": 84}]	digital_glarus_contact_information	9	212
5627	196	196	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "path": "001V", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 196}]	196	10	212
5628	199	199	json	[{"fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}]	Telefon: +41 (0)...	35	212
5629	197	197	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}]	197	10	212
5630	198	198	json	[{"fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 198}]		35	212
5631	199	199	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}]	199	10	212
5632	189	189	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}]	189	10	212
10144	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:17:13.166Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	376
10145	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	376
10146	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	376
5633	10	10	json	[{"fields": {"language": "de", "menu_title": "Kontakt", "title": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "path": "digital-glarus-startseite/digital-glarus-kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "redirect": null, "slug": "digital-glarus-kontakt", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	212
5634	83	83	json	[{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}]	digital_glarus_contact_content	9	212
5635	190	190	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}]	190	10	212
5636	9	9	json	[{"fields": {"language": "en-us", "menu_title": "contact", "title": "Digital Glarus - Contact", "page_title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "path": "digitalglarus/digital-glarus-contact", "creation_date": "2015-10-04T18:05:38.201Z", "redirect": "", "slug": "digital-glarus-contact", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	212
5637	191	191	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}]	191	10	212
5638	189	189	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}]	The Swiss IT...	35	212
5639	190	190	json	[{"fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}]	Contact DIGITAL GLARUS	35	212
5640	191	191	json	[{"fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 191}]	Phone: +41 (0)...	35	212
5882	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	218
5883	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	218
5884	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	218
5885	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	218
5886	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	218
5887	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	218
5888	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	218
5889	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	218
5890	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	218
5891	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	218
5892	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	218
5893	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	218
5894	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	218
5895	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	218
5896	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	218
10156	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	376
10157	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	376
10158	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	376
10159	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	376
8061	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	276
8062	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	276
8063	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	276
8064	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	276
8065	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	276
8066	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	276
8067	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	276
8068	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	276
8069	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	276
8070	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	276
8071	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	276
8072	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	276
8073	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	276
8074	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	276
8075	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	276
8076	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	276
8077	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	276
8078	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	276
8079	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	276
8080	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	276
10147	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	376
10148	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	376
10945	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	397
5947	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	219
8081	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	276
8082	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	276
8083	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	276
5897	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	218
5898	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	218
5899	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	218
5900	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	218
5901	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	218
5902	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	218
5903	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	218
5904	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	218
5930	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	219
5931	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	219
10149	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	376
10150	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	376
10151	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	376
10152	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	376
10153	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	376
10154	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	376
10155	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	376
10160	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	376
10161	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	376
10162	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	376
10163	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	376
10164	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>.<iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	376
10165	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	376
10946	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	397
10947	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	397
10948	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	397
10949	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	397
10950	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	397
10951	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	397
10952	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	397
10166	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	377
10167	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	377
10168	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:18:11.538Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	377
5905	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	219
5906	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	219
5907	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digitalglarus", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digitalglarus, de)	16	219
5908	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	219
5909	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	219
5910	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	219
5911	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	219
5912	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	219
5913	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	219
5914	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	219
5915	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	219
5916	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	219
5713	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	215
5714	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digital-glarus-home, en-us)	16	215
5715	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	215
5716	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	215
5717	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	215
5718	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	215
5719	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	215
2723	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	114
2724	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	114
5720	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	215
5721	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	215
5722	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	215
5723	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	215
5724	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	215
5725	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	215
5726	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:41:01.763Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	215
7521	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	263
5727	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	215
5728	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	215
5729	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	215
5730	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	215
5731	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	215
2721	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	114
2722	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	114
2798	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	116
2725	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:55:29.967Z", "position": 0}, "pk": 185}]	185	10	114
2726	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	114
2727	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	114
2728	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>PREISWERT</p>\\n"}, "pk": 188}]	PREISWERT	35	114
2729	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	114
2730	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	114
2778	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:57:25.000Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	116
2779	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	116
2780	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	116
2787	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	116
2788	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	116
2789	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	116
2790	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	116
2791	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	116
2792	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	116
2793	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	116
2794	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	116
2795	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	116
2796	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	116
2797	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	116
2801	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	116
2802	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	116
2803	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	116
2804	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	116
2805	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	116
2806	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	116
2807	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	116
2808	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	116
2809	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	116
2810	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	116
2811	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	116
2812	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	116
2813	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	116
2814	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	116
2815	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	116
2816	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	116
2817	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:57:24.745Z", "position": 0}, "pk": 185}]	185	10	116
2818	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	116
2819	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	116
2820	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT\\n"}, "pk": 188}]	PREISWERT	35	116
2821	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	116
2822	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	116
2823	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	117
2824	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:57:41.687Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	117
2825	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	117
2826	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	117
2827	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:57:41.428Z", "position": 0}, "pk": 188}]	188	10	117
2828	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	117
2829	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	117
2830	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	117
2831	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	117
2832	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	117
2833	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	117
2834	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	117
2835	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	117
2864	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	117
2865	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	117
2866	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT\\n"}, "pk": 188}]	PREISWERT	35	117
2836	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	117
2837	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	117
2838	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	117
2839	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	117
2840	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	117
2841	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	117
2842	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	117
2843	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	117
2844	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	117
2845	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WUNDERSCH\\u00d6NE LANDSCHAFT\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	117
2846	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	117
2847	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	117
2848	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	117
2849	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	117
2850	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	117
2851	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	117
2852	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	117
2853	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	117
2854	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	117
2855	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	117
2856	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	117
2857	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	117
2858	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	117
2859	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	117
2860	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	117
2861	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	117
2862	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	117
2863	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:08.833Z", "position": 0}, "pk": 185}]	185	10	117
2867	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	117
2868	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	117
2869	179	179	json	[{"model": "cms.cmsplugin", "fields": {"path": "001H", "depth": 1, "placeholder": 71, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:50.728Z", "changed_date": "2015-10-04T17:47:57.022Z", "position": 0}, "pk": 179}]	179	10	118
2870	6	6	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": null, "path": "0006", "changed_by": "ungleich", "template": "cms/digitalglarus/about.html", "changed_date": "2015-10-04T17:58:09.233Z", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T17:45:05.381Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 6}]	digital.glarus.about	11	118
2871	7	7	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-about", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T17:45:05.433Z", "page": 6, "language": "en-us", "page_title": "Digital Glarus - About", "menu_title": "digital.glarus.about", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": false, "slug": "digital-glarus-about", "title": "Digital Glarus - About"}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	118
2872	8	8	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-uber-uns", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T17:54:39.076Z", "page": 6, "language": "de", "page_title": "Digital Glarus - \\u00dcber uns", "menu_title": "digital.glarus.\\u00fcber.uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": false, "slug": "digital-glarus-uber-uns", "title": "Digital Glarus - \\u00dcber uns"}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	118
2873	188	188	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Q", "depth": 1, "placeholder": 71, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:28.318Z", "changed_date": "2015-10-04T17:57:41.428Z", "position": 0}, "pk": 188}]	188	10	118
2874	174	174	json	[{"model": "cms.cmsplugin", "fields": {"path": "001C", "depth": 1, "placeholder": 66, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:46:04.884Z", "position": 0}, "pk": 174}]	174	10	118
2875	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	118
2876	176	176	json	[{"model": "cms.cmsplugin", "fields": {"path": "001E", "depth": 1, "placeholder": 68, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:40.251Z", "changed_date": "2015-10-04T17:46:52.849Z", "position": 0}, "pk": 176}]	176	10	118
2877	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	118
2878	177	177	json	[{"model": "cms.cmsplugin", "fields": {"path": "001F", "depth": 1, "placeholder": 69, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:04.566Z", "changed_date": "2015-10-04T17:47:14.264Z", "position": 0}, "pk": 177}]	177	10	118
8090	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	277
2879	178	178	json	[{"model": "cms.cmsplugin", "fields": {"path": "001G", "depth": 1, "placeholder": 70, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:47:33.925Z", "changed_date": "2015-10-04T17:47:41.789Z", "position": 0}, "pk": 178}]	178	10	118
2880	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 174}]	The Swiss IT...	35	118
2881	175	175	json	[{"model": "cms.cmsplugin", "fields": {"path": "001D", "depth": 1, "placeholder": 67, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:46:20.372Z", "changed_date": "2015-10-04T17:46:27.188Z", "position": 0}, "pk": 175}]	175	10	118
2882	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	118
2883	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	118
2884	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	118
2885	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	118
2886	180	180	json	[{"model": "cms.cmsplugin", "fields": {"path": "001I", "depth": 1, "placeholder": 72, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:48:04.828Z", "changed_date": "2015-10-04T17:48:12.223Z", "position": 0}, "pk": 180}]	180	10	118
2887	181	181	json	[{"model": "cms.cmsplugin", "fields": {"path": "001J", "depth": 1, "placeholder": 66, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:45:58.715Z", "changed_date": "2015-10-04T17:52:10.927Z", "position": 0}, "pk": 181}]	181	10	118
2888	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	118
2889	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	118
2890	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	118
2891	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	118
2892	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	118
2893	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	118
2894	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	118
2895	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	118
2896	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	118
2897	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	118
2898	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	118
2899	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	118
2900	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	118
2901	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	118
2902	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	118
2903	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	118
2904	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	118
2905	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	118
2906	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	118
2907	183	183	json	[{"model": "cms.cmsplugin", "fields": {"path": "001L", "depth": 1, "placeholder": 68, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:54.182Z", "changed_date": "2015-10-04T17:53:03.407Z", "position": 0}, "pk": 183}]	183	10	118
2908	184	184	json	[{"model": "cms.cmsplugin", "fields": {"path": "001M", "depth": 1, "placeholder": 69, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:08.645Z", "changed_date": "2015-10-04T17:55:14.052Z", "position": 0}, "pk": 184}]	184	10	118
2909	185	185	json	[{"model": "cms.cmsplugin", "fields": {"path": "001N", "depth": 1, "placeholder": 70, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:55:24.521Z", "changed_date": "2015-10-04T17:58:54.653Z", "position": 0}, "pk": 185}]	185	10	118
2910	182	182	json	[{"model": "cms.cmsplugin", "fields": {"path": "001K", "depth": 1, "placeholder": 67, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:52:38.665Z", "changed_date": "2015-10-04T17:57:08.089Z", "position": 0}, "pk": 182}]	182	10	118
2911	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>DIREKTE VERBINDUNGEN NACH Z\\u00dcRICH</p>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	118
2912	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "PREISWERT\\n"}, "pk": 188}]	PREISWERT	35	118
2913	187	187	json	[{"model": "cms.cmsplugin", "fields": {"path": "001P", "depth": 1, "placeholder": 72, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T17:56:10.917Z", "changed_date": "2015-10-04T17:56:16.091Z", "position": 0}, "pk": 187}]	187	10	118
2914	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	118
5732	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	215
5932	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	219
5933	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	219
5733	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	215
5734	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	215
5735	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	215
5736	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	215
5737	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	215
5738	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	215
5739	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	215
5740	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	215
5741	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	215
8084	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	276
8085	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	276
8086	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	276
8088	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:34:43.249Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	276
8089	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	276
5742	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	215
5743	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	215
5744	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	215
5745	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	215
5746	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	215
5747	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	215
5748	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	215
5749	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	215
5750	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	215
5751	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	215
5752	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	215
5753	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	215
5754	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	215
5755	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	215
5756	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	215
5757	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	215
5758	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	215
5759	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	215
5760	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	215
5917	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	219
5918	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:56:07.238Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	219
7525	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	263
5934	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	219
5948	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	219
5761	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	216
5762	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:41:09.948Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	Startseite	11	216
5763	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	216
5764	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	216
5765	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digital-glarus-home, en-us)	16	216
5766	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	216
5767	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	216
5768	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	216
5769	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	216
5770	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	216
5771	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	216
5772	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	216
5773	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	216
5774	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	216
5775	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	216
5776	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	216
5777	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	216
5778	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	216
5779	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	216
5780	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	216
5781	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	216
5782	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	216
5783	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	216
5784	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	216
5785	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	216
5786	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	216
5787	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	216
5788	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	216
5789	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	216
5790	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	216
5791	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	216
5792	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	216
5793	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	216
5794	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	216
5935	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	219
5936	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	219
7522	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	263
7523	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	263
7524	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	263
8091	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	277
8092	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-21T16:34:48.847Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	277
8093	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	277
8094	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	277
8095	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	277
8096	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	277
8097	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	277
8098	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	277
8099	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	277
8100	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	277
8101	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	277
8102	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	277
8103	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	277
8104	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	277
8105	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	277
8106	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	277
8107	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	277
8108	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	277
8109	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	277
8110	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	277
8111	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	277
8112	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	277
8113	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	277
7526	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	263
8114	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	277
8115	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	277
8116	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	277
8117	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	277
8118	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	277
8119	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	277
8120	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	277
8121	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	277
8122	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	277
8123	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	277
8124	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	277
8125	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	277
10169	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	377
10170	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	377
10171	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	377
10172	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	377
10173	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	377
10174	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	377
10175	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	377
10176	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	377
5803	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	216
10177	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	377
10178	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	377
10179	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	377
10180	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	377
10181	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	377
10182	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	377
10183	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	377
10184	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	377
10185	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	377
10186	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	377
10187	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	377
10188	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	377
10189	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	377
3587	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	146
10190	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	377
10953	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	397
10954	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	397
10955	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	397
10956	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	397
11149	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	405
11150	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	405
7527	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	263
3583	190	190	json	[{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}]	190	10	146
3611	190	190	json	[{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}]	190	10	147
7600	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:04:50.183Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	265
10016	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	371
10017	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	371
10041	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	372
3562	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	146
3563	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	146
3564	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	146
3565	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": "", "publication_date": null, "path": "00050002", "changed_by": "ungleich", "template": "cms/digitalglarus/contact.html", "changed_date": "2015-10-04T18:15:22.284Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 7}]	digital.glarus.contact	11	146
3566	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	146
3567	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	146
3568	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	146
3569	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	146
3570	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	146
3571	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	146
3572	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	146
3573	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	146
3574	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	146
3575	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	146
3576	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	146
3577	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	146
3578	196	196	json	[{"model": "cms.cmsplugin", "fields": {"path": "001V", "depth": 1, "placeholder": 81, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0}, "pk": 196}]	196	10	146
3579	197	197	json	[{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}]	197	10	146
3580	195	195	json	[{"model": "cms.cmsplugin", "fields": {"path": "001U", "depth": 1, "placeholder": 83, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0}, "pk": 195}]	195	10	146
3581	189	189	json	[{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}]	189	10	146
3582	10	10	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	146
3584	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	146
3585	191	191	json	[{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}]	191	10	146
3586	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 189}]	The Swiss IT...	35	146
3588	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	146
3589	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	147
3590	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	147
3591	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	147
3592	198	198	json	[{"model": "cms.cmsplugin", "fields": {"path": "001X", "depth": 1, "placeholder": 83, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "changed_date": "2015-10-04T18:16:04.863Z", "position": 0}, "pk": 198}]	198	10	147
3593	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": "", "publication_date": null, "path": "00050002", "changed_by": "ungleich", "template": "cms/digitalglarus/contact.html", "changed_date": "2015-10-04T18:15:40.663Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 7}]	digital.glarus.contact	11	147
3594	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	147
3595	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	147
3596	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	147
3597	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	147
3598	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	147
3599	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	147
3600	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	147
3601	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	147
3602	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	147
3603	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	147
3604	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	147
3605	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	147
3606	196	196	json	[{"model": "cms.cmsplugin", "fields": {"path": "001V", "depth": 1, "placeholder": 81, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0}, "pk": 196}]	196	10	147
3607	197	197	json	[{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}]	197	10	147
3608	195	195	json	[{"model": "cms.cmsplugin", "fields": {"path": "001U", "depth": 1, "placeholder": 83, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0}, "pk": 195}]	195	10	147
3609	189	189	json	[{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}]	189	10	147
3610	10	10	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	147
3612	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	147
3639	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	148
3613	191	191	json	[{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}]	191	10	147
3614	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 189}]	The Swiss IT...	35	147
3615	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	147
3616	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	147
3617	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	148
3618	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	148
3619	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	148
3620	198	198	json	[{"model": "cms.cmsplugin", "fields": {"path": "001X", "depth": 1, "placeholder": 83, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "changed_date": "2015-10-04T18:16:13.357Z", "position": 0}, "pk": 198}]	198	10	148
3621	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": "", "publication_date": null, "path": "00050002", "changed_by": "ungleich", "template": "cms/digitalglarus/contact.html", "changed_date": "2015-10-04T18:16:05.046Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 7}]	digital.glarus.contact	11	148
3622	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	148
3623	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	148
3624	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	148
3625	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	148
3626	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	148
3627	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	148
3628	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	148
3629	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	148
3630	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	148
3631	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	148
3632	195	195	json	[{"model": "cms.cmsplugin", "fields": {"path": "001U", "depth": 1, "placeholder": 83, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0}, "pk": 195}]	195	10	148
3633	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	148
3634	196	196	json	[{"model": "cms.cmsplugin", "fields": {"path": "001V", "depth": 1, "placeholder": 81, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0}, "pk": 196}]	196	10	148
3635	197	197	json	[{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}]	197	10	148
3636	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>&lt;iframe scrolling=\\"no\\" marginheight=\\"0\\" marginwidth=\\"0\\" src=\\"//maps.google.com/maps?hl=en&amp;amp;ie=UTF8&amp;amp;ll=46.969959,9.039001&amp;amp;spn=56.506174,79.013672&amp;amp;t=m&amp;amp;z=12&amp;amp;output=embed\\" frameborder=\\"0\\" height=\\"400\\" width=\\"100%\\"&gt;&lt;/iframe&gt;</p>\\n"}, "pk": 198}]	&lt;iframe scrolling="no" marginheight="0"...	35	148
5802	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	216
3637	189	189	json	[{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}]	189	10	148
3638	10	10	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	148
3640	190	190	json	[{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}]	190	10	148
3641	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	148
3642	191	191	json	[{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}]	191	10	148
3643	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 189}]	The Swiss IT...	35	148
3644	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	148
3645	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	148
3646	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	149
3647	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	149
3648	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	149
3649	198	198	json	[{"model": "cms.cmsplugin", "fields": {"path": "001X", "depth": 1, "placeholder": 83, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "changed_date": "2015-10-04T18:16:13.357Z", "position": 0}, "pk": 198}]	198	10	149
3650	7	7	json	[{"model": "cms.page", "fields": {"is_home": false, "xframe_options": 0, "parent": 5, "application_urls": "", "publication_date": null, "path": "00050002", "changed_by": "ungleich", "template": "cms/digitalglarus/contact.html", "changed_date": "2015-10-04T18:16:13.747Z", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "in_navigation": true, "numchild": 0, "site": 1, "creation_date": "2015-10-04T18:05:38.150Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 2, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us,de", "login_required": false}, "pk": 7}]	digital.glarus.contact	11	149
3651	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	149
3652	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	149
3653	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	149
3654	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	149
3655	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	149
3656	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	149
3657	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	149
3658	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	149
3659	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	149
3660	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	149
3661	195	195	json	[{"model": "cms.cmsplugin", "fields": {"path": "001U", "depth": 1, "placeholder": 83, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0}, "pk": 195}]	195	10	149
3662	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	149
3663	196	196	json	[{"model": "cms.cmsplugin", "fields": {"path": "001V", "depth": 1, "placeholder": 81, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0}, "pk": 196}]	196	10	149
3664	197	197	json	[{"model": "cms.cmsplugin", "fields": {"path": "001W", "depth": 1, "placeholder": 82, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0}, "pk": 197}]	197	10	149
3665	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>&lt;iframe scrolling=\\"no\\" marginheight=\\"0\\" marginwidth=\\"0\\" src=\\"//maps.google.com/maps?hl=en&amp;amp;ie=UTF8&amp;amp;ll=46.969959,9.039001&amp;amp;spn=56.506174,79.013672&amp;amp;t=m&amp;amp;z=12&amp;amp;output=embed\\" frameborder=\\"0\\" height=\\"400\\" width=\\"100%\\"&gt;&lt;/iframe&gt;</p>\\n"}, "pk": 198}]	&lt;iframe scrolling="no" marginheight="0"...	35	149
3666	199	199	json	[{"model": "cms.cmsplugin", "fields": {"path": "001Y", "depth": 1, "placeholder": 84, "language": "de", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "changed_date": "2015-10-04T18:16:23.013Z", "position": 0}, "pk": 199}]	199	10	149
3667	189	189	json	[{"model": "cms.cmsplugin", "fields": {"path": "001R", "depth": 1, "placeholder": 81, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0}, "pk": 189}]	189	10	149
3668	10	10	json	[{"model": "cms.title", "fields": {"path": "digital-glarus-startseite/digital-glarus-kontakt", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T18:14:07.928Z", "page": 7, "language": "de", "page_title": "Digital Glarus - Kontakt", "menu_title": "digital.glarus.kontakt", "meta_description": "Digital Glarus - Kontakt", "published": false, "slug": "digital-glarus-kontakt", "title": "Digital Glarus - Kontakt"}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	149
3669	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	149
3670	190	190	json	[{"model": "cms.cmsplugin", "fields": {"path": "001S", "depth": 1, "placeholder": 82, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0}, "pk": 190}]	190	10	149
3671	9	9	json	[{"model": "cms.title", "fields": {"path": "digitalglarus2/digital-glarus-contact", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T18:05:38.201Z", "page": 7, "language": "en-us", "page_title": "Digital Glarus - Contact", "menu_title": "digital.glarus.contact", "meta_description": "Contact DIGITAL GLARUS ", "published": false, "slug": "digital-glarus-contact", "title": "Digital Glarus - Contact"}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	149
3672	191	191	json	[{"model": "cms.cmsplugin", "fields": {"path": "001T", "depth": 1, "placeholder": 84, "language": "en-us", "numchild": 0, "plugin_type": "TextPlugin", "parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "changed_date": "2015-10-04T18:12:07.389Z", "position": 0}, "pk": 191}]	191	10	149
3673	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 189}]	The Swiss IT...	35	149
3674	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	149
3675	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	149
5795	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	216
5796	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	216
5797	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	216
5798	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	216
5799	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	216
5800	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	216
5801	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	216
8126	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	277
8127	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	277
8128	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	277
8129	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:34:43.249Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	277
8130	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	277
10191	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 544}]	meetup	30	378
10192	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	378
5805	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	216
5806	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	216
5807	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	216
5808	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	216
5937	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	219
5938	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	219
5939	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	219
8131	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	278
8132	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	278
8133	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-21T16:34:49.127Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	278
8134	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	278
8135	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	278
8136	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	278
8137	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	278
8138	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	278
8139	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	278
8140	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	278
8142	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	278
8143	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	278
8144	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	278
8145	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	278
8146	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	278
8147	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	278
8148	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	278
8149	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	278
8150	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	278
8151	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	278
8152	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	278
8153	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	278
8154	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	278
8155	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	278
8156	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	278
8157	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	278
8158	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	278
8159	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	278
8160	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	278
8161	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	278
8162	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	278
10042	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "100-days.net/start-digital-glarus", "url": " http://100-days.net/start-digital-glarus"}, "pk": 533}]	100-days.net/start-digital-glarus	30	372
10043	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:15:47.137Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	372
8163	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\">\\n<iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n</div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	278
8164	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	278
8165	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	278
8166	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	278
8167	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	278
8168	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	278
8169	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	278
8170	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:36:27.273Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	278
8171	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	278
8172	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	279
8173	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	279
8174	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-21T16:36:50.852Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	279
8175	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	279
8176	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	279
8177	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	279
8178	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	279
8179	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	279
8180	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	279
8181	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	279
8182	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	279
8183	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	279
8184	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	279
8185	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	279
8186	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	279
8187	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	279
8188	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	279
8189	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	279
8190	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	279
8191	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	279
8192	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	279
8193	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	279
8194	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	279
8195	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	279
8196	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	279
8197	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	279
8198	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	279
8199	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	279
8200	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	279
8201	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	279
8202	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	279
8203	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	279
10044	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:10:32.354Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	372
10193	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:18:38.389Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	378
10252	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	380
8204	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\">\\n<iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n</div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	279
8205	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	279
8206	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	279
8207	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	279
8208	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	279
8209	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	279
8210	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	279
8211	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-21T16:36:27.273Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	279
8212	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	279
8213	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	280
8214	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	280
8215	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	280
8216	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	280
8217	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	280
8218	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	280
8219	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	280
8220	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	280
8221	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": false, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	280
8222	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T06:19:53.698Z", "in_navigation": true, "template": "INHERIT", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": null, "is_home": false, "navigation_extenders": null, "depth": 2, "languages": null, "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183], "reverse_id": null}, "pk": 15}]	jazz	11	280
8223	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	280
10037	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	371
10038	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	371
10253	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	380
10194	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 4, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	378
10195	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	378
10196	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	378
10197	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	378
10198	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	378
10199	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	378
10200	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	378
10201	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	378
10202	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	378
10203	552	552	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0005", "position": 3, "numchild": 0, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "plugin_type": "LinkPlugin"}, "pk": 552}]	552	10	378
10204	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	378
10205	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	378
10206	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	378
10207	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	378
10208	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	378
10209	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	378
10210	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	378
10211	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	378
10212	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	378
10213	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	378
10214	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	378
11151	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	405
11152	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	405
4928	60	60	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 60}]	digital_glarus_a_new_area	9	192
10959	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	398
10960	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	398
10254	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	380
10215	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	378
10216	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	378
10957	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	397
10958	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	397
11113	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	403
11114	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	403
11153	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	405
11154	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	405
11155	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	405
10251	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	380
10961	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:40:41.814Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	398
10962	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	398
10963	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	398
10964	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	398
10965	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (jazz, en-us)	16	398
10966	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	398
10967	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	398
10968	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	398
10969	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	398
10970	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	398
10971	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	398
10972	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	398
10973	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	398
10974	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	398
10975	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	398
10243	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	380
10244	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	380
10245	8	8	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-21T16:36:50.942Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:52.894Z", "path": "00050003", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-10-04T18:54:49.173Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171]}, "pk": 8}]	crowdfunding	11	380
10246	201	201	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0020"}, "pk": 201}]	201	10	380
10247	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	380
10248	203	203	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0022"}, "pk": 203}]	203	10	380
10249	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 204}]	GLARNER CO-WORKING |...	35	380
10250	205	205	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0024"}, "pk": 205}]	205	10	380
10255	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	380
10256	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	380
10257	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	380
10258	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	380
10259	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	380
10260	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	380
10261	461	461	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0075"}, "pk": 461}]	461	10	380
10262	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	380
10263	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	380
10264	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	380
10265	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	380
10266	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	380
10267	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	380
10268	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	380
10269	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	380
10270	207	207	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0026"}, "pk": 207}]	207	10	380
10271	209	209	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0028"}, "pk": 209}]	209	10	380
10272	11	11	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": true, "redirect": "", "menu_title": "crowdfunding", "path": "digitalglarus", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T18:54:49.222Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	380
10273	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	380
10274	208	208	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0027"}, "pk": 208}]	208	10	380
10290	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 204}]	GLARNER CO-WORKING |...	35	381
10291	205	205	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0024"}, "pk": 205}]	205	10	381
10292	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	381
10293	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	381
10294	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	381
10295	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	381
10275	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\">\\n<iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n</div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	380
10276	12	12	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": false, "redirect": null, "menu_title": "Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T19:49:28.161Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	380
10277	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	380
10278	206	206	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0025"}, "pk": 206}]	206	10	380
10279	200	200	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001Z"}, "pk": 200}]	200	10	380
10280	204	204	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-11-29T14:55:24.411Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0023"}, "pk": 204}]	204	10	380
10281	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	380
10282	460	460	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-21T16:36:27.273Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0074"}, "pk": 460}]	460	10	380
10283	202	202	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0021"}, "pk": 202}]	202	10	380
10976	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	398
10977	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	398
10978	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	398
10979	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	398
10980	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	398
10981	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	398
10284	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	381
10285	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	381
10286	8	8	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:55:34.631Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:52.894Z", "path": "00050003", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-10-04T18:54:49.173Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171]}, "pk": 8}]	crowdfunding	11	381
10287	201	201	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0020"}, "pk": 201}]	201	10	381
10288	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	381
10289	203	203	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0022"}, "pk": 203}]	203	10	381
10296	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	381
10297	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	381
10298	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	381
10299	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	381
10300	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	381
10301	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	381
10302	461	461	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0075"}, "pk": 461}]	461	10	381
10303	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	381
10304	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	381
10305	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	381
10306	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	381
10307	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	381
10308	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	381
10309	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	381
10310	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	381
10311	207	207	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0026"}, "pk": 207}]	207	10	381
10312	209	209	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0028"}, "pk": 209}]	209	10	381
10313	11	11	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": true, "redirect": "", "menu_title": "crowdfunding", "path": "digitalglarus", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T18:54:49.222Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	381
10314	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	381
10315	208	208	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0027"}, "pk": 208}]	208	10	381
10329	5	5	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Welcome", "has_url_overwrite": false, "redirect": "", "menu_title": "home", "path": "digitalglarus-home", "page": 5, "slug": "digitalglarus-home", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "published": true}, "pk": 5}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	382
10330	173	173	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "creation_date": "2015-10-04T17:36:07.616Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001B"}, "pk": 173}]	173	10	382
10331	171	171	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "creation_date": "2015-10-04T17:31:39.702Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0019"}, "pk": 171}]	171	10	382
4806	111	111	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 111}]	digital_glarus_why_be_interested	9	188
10316	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\">\\n<iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n</div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	381
10317	12	12	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": false, "redirect": null, "menu_title": "Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T19:49:28.161Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	381
10318	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	381
5057	179	179	json	[{"fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 179}]	AFFORDABLE price	35	195
4803	113	113	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 113}]	digital_glarus_where_we_are	9	188
10319	206	206	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0025"}, "pk": 206}]	206	10	381
10320	200	200	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001Z"}, "pk": 200}]	200	10	381
10321	204	204	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-11-29T14:55:24.411Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0023"}, "pk": 204}]	204	10	381
10322	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	381
10323	460	460	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-21T16:36:27.273Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0074"}, "pk": 460}]	460	10	381
10324	202	202	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0021"}, "pk": 202}]	202	10	381
10982	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	398
11115	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	404
11116	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	404
11156	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	405
7434	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	261
11157	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	405
10325	34	34	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 34}]	digital_glarus_a_new_area_content	9	382
10326	5	5	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 1, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": null, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-10-13T14:02:20.134Z", "languages": "en-us,de", "numchild": 4, "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "publication_date": "2015-10-04T22:19:37.050Z", "path": "0005", "soft_root": true, "template": "cms/digitalglarus/index.html", "xframe_options": 0, "creation_date": "2015-10-04T16:53:42.171Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39]}, "pk": 5}]	home	11	382
10327	6	6	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Startseite", "has_url_overwrite": false, "redirect": "", "menu_title": "Startseite", "path": "digitalglarus-startseite", "page": 5, "slug": "digitalglarus-startseite", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 6}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	382
10328	172	172	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "creation_date": "2015-10-04T17:32:07.260Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001A"}, "pk": 172}]	172	10	382
10332	153	153	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-13T14:02:19.803Z", "creation_date": "2015-10-04T16:56:13.254Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000S"}, "pk": 153}]	153	10	382
10333	153	153	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n\\n<p>\\u00a0</p>\\n\\n"}, "pk": 153}]	Digital Glarus, this...	35	382
10334	154	154	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "pk": 154}]	Build a tech...	35	382
10335	155	155	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "creation_date": "2015-10-04T16:59:46.792Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000U"}, "pk": 155}]	155	10	382
10336	156	156	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "creation_date": "2015-10-04T17:00:03.379Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000V"}, "pk": 156}]	156	10	382
10337	154	154	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "creation_date": "2015-10-04T16:56:41.534Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000T"}, "pk": 154}]	154	10	382
10338	158	158	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "pk": 158}]	The current de-facto...	35	382
10339	159	159	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "pk": 159}]	Wherewe are	35	382
10340	160	160	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "creation_date": "2015-10-04T17:01:51.549Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Z"}, "pk": 160}]	160	10	382
10341	161	161	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T14:55:56.749Z", "creation_date": "2015-10-04T17:02:21.812Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0010"}, "pk": 161}]	161	10	382
5132	190	190	json	[{"fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}]	Contact DIGITAL GLARUS	35	196
7435	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	261
10342	162	162	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 162}]	The Swiss IT...	35	382
10343	163	163	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "creation_date": "2015-10-04T17:22:11.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0012"}, "pk": 163}]	163	10	382
10344	164	164	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "creation_date": "2015-10-04T17:22:41.094Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0013"}, "pk": 164}]	164	10	382
10345	165	165	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "creation_date": "2015-10-04T17:23:05.607Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0014"}, "pk": 165}]	165	10	382
10346	38	38	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 38}]	digital_glarus_where_we_are_content	9	382
10347	39	39	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 39}]	digital_glarus_legend	9	382
7436	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T00:55:26.207Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	261
7437	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	261
7438	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	261
7196	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	255
7439	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	261
7440	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	261
7441	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	261
7442	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	261
7443	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	261
7444	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	261
7445	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	261
7446	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LET'S RENOVATE THE...	35	261
7447	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	261
7448	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	261
7449	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	261
7450	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	261
7451	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	261
7557	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	264
10348	156	156	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "pk": 156}]	a new area	35	382
7188	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	255
7189	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	255
7190	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T00:43:27.215Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	255
7558	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	264
7191	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	255
7192	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	255
7193	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	255
7194	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	255
7195	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	255
7197	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	255
7198	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	255
7199	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	255
7681	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	267
7200	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n  <div class=\\"col-md-12\\">\\n    <iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n  </div>\\n</div>"}, "pk": 461}]		35	255
7201	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	255
7202	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	255
7203	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	255
7204	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	255
7205	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	255
7206	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:26:23.194Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	255
7207	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	255
7208	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	255
7209	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	255
7210	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	255
7211	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	255
7212	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	255
7213	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	255
7214	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	255
7215	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	255
7216	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	255
7217	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	255
7218	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	255
7219	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	255
7220	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	We found a...	35	255
7471	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	261
7221	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	255
7222	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	255
7223	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	255
7224	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	255
7225	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	255
7226	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	255
7227	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:43:11.610Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	255
7228	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	255
7452	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:55:56.437Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	261
7453	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	261
7454	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	261
7455	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	261
7456	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	261
7457	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	261
7458	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	261
7459	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	261
7460	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	261
7461	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	261
7462	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	261
7463	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	261
7464	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	261
7465	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	261
7466	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	We found a...	35	261
7467	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	261
7468	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	261
7469	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	261
10349	170	170	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "pk": 170}]	WIESO SOLLTE SICH...	35	382
10350	171	171	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "pk": 171}]	Das momentane de-facto...	35	382
10351	172	172	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}, "pk": 172}]	WO SIND WIR	35	382
10352	173	173	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "pk": 173}]	Der erste grosse...	35	382
10353	157	157	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "pk": 157}]	Why would anyone...	35	382
10354	155	155	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "pk": 155}]	While you can...	35	382
10355	158	158	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}]	158	10	382
10356	31	31	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}]	digital_glarus_build_a_tech_valley	9	382
10357	36	36	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}]	digital_glarus_why_be_interested_content	9	382
10358	35	35	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}]	digital_glarus_why_be_interested	9	382
10359	160	160	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "pk": 160}]	At the moment...	35	382
10360	161	161	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 161}]	GLARNER CO-WORKING |...	35	382
10361	162	162	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}]	162	10	382
10362	163	163	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	382
7472	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	261
4930	179	179	json	[{"fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 179}]	AFFORDABLE price	35	192
10363	164	164	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "pk": 164}]	Digital Glarus, so...	35	382
11158	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	405
7721	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	268
10364	159	159	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}]	159	10	382
10365	37	37	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}]	digital_glarus_where_we_are	9	382
10366	165	165	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}, "pk": 165}]	EINE NEUE REGION.	35	382
10367	32	32	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	382
10368	33	33	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}]	digital_glarus_a_new_area	9	382
10369	157	157	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "creation_date": "2015-10-04T17:00:37.507Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000W"}, "pk": 157}]	157	10	382
10370	166	166	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "creation_date": "2015-10-04T17:23:23.851Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0015"}, "pk": 166}]	166	10	382
10371	170	170	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "creation_date": "2015-10-04T17:31:20.090Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0018"}, "pk": 170}]	170	10	382
10372	166	166	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "pk": 166}]	Die alten Fabriken,...	35	382
10983	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	398
10984	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	398
11117	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:43:34.283Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	404
11118	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	404
7470	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	261
7473	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:43:11.610Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	261
7474	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	261
10373	179	179	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "creation_date": "2015-10-04T17:47:50.728Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001H"}, "pk": 179}]	179	10	383
10374	6	6	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-10-04T23:39:22.636Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:26.906Z", "path": "00050001", "soft_root": false, "template": "cms/digitalglarus/about.html", "xframe_options": 0, "creation_date": "2015-10-04T17:45:05.381Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72]}, "pk": 6}]	about	11	383
11159	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	405
11160	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	405
11161	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	405
11162	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	405
4791	112	112	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 112}]	digital_glarus_why_be_interested_content	9	187
4792	113	113	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 113}]	digital_glarus_where_we_are	9	187
4793	114	114	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 114}]	digital_glarus_where_we_are_content	9	187
4794	115	115	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 115}]	digital_glarus_legend	9	187
4795	111	111	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 111}]	digital_glarus_why_be_interested	9	187
4796	10	10	json	[{"model": "cms.page", "fields": {"is_home": true, "xframe_options": 0, "parent": null, "application_urls": null, "publication_date": "2015-10-04T22:43:25.996Z", "path": "0007", "changed_by": "ungleich", "template": "INHERIT", "changed_date": "2015-10-04T22:43:26.138Z", "placeholders": [107, 108, 109, 110, 111, 112, 113, 114, 115], "in_navigation": true, "numchild": 0, "site": 2, "creation_date": "2015-10-04T22:43:25.911Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": null, "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 10}]	Digital Glarus - Welcome	11	187
4797	107	107	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 107}]	digital_glarus_build_a_tech_valley	9	187
4798	108	108	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 108}]	digital_glarus_build_a_tech_valley_content	9	187
4799	109	109	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 109}]	digital_glarus_a_new_area	9	187
4800	110	110	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 110}]	digital_glarus_a_new_area_content	9	187
4801	15	15	json	[{"model": "cms.title", "fields": {"path": "", "redirect": null, "has_url_overwrite": false, "creation_date": "2015-10-04T22:43:25.962Z", "page": 10, "language": "en-us", "page_title": "Digital Glarus - Welcome", "menu_title": "Digital Glarus - Welcome", "meta_description": "Digital Glarus - Welcome", "published": true, "slug": "digital-glarus-welcome", "title": "Digital Glarus - Welcome"}, "pk": 15}]	Digital Glarus - Welcome (digital-glarus-welcome, en-us)	16	187
4802	112	112	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 112}]	digital_glarus_why_be_interested_content	9	188
7475	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	262
7476	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	262
7516	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	263
7517	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	263
11163	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	405
11164	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	405
4804	114	114	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 114}]	digital_glarus_where_we_are_content	9	188
4805	115	115	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 115}]	digital_glarus_legend	9	188
4807	10	10	json	[{"model": "cms.page", "fields": {"is_home": true, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": "2015-10-04T22:43:25.996Z", "path": "0007", "changed_by": "ungleich", "template": "cms/digitalglarus/index.html", "changed_date": "2015-10-04T22:43:47.972Z", "placeholders": [107, 108, 109, 110, 111, 112, 113, 114, 115], "in_navigation": true, "numchild": 0, "site": 2, "creation_date": "2015-10-04T22:43:25.911Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 10}]	Digital Glarus - Welcome	11	188
4808	107	107	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 107}]	digital_glarus_build_a_tech_valley	9	188
4809	108	108	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 108}]	digital_glarus_build_a_tech_valley_content	9	188
4810	109	109	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 109}]	digital_glarus_a_new_area	9	188
4811	110	110	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 110}]	digital_glarus_a_new_area_content	9	188
4812	15	15	json	[{"model": "cms.title", "fields": {"path": "", "redirect": "", "has_url_overwrite": false, "creation_date": "2015-10-04T22:43:25.962Z", "page": 10, "language": "en-us", "page_title": "Digital Glarus - Welcome", "menu_title": "Digital Glarus - Welcome", "meta_description": "Digital Glarus - Welcome", "published": true, "slug": "digital-glarus-welcome", "title": "Digital Glarus - Welcome"}, "pk": 15}]	Digital Glarus - Welcome (digital-glarus-welcome, en-us)	16	188
4813	112	112	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 112}]	digital_glarus_why_be_interested_content	9	189
4814	113	113	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 113}]	digital_glarus_where_we_are	9	189
4815	114	114	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 114}]	digital_glarus_where_we_are_content	9	189
4816	115	115	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 115}]	digital_glarus_legend	9	189
4817	111	111	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 111}]	digital_glarus_why_be_interested	9	189
4818	10	10	json	[{"model": "cms.page", "fields": {"is_home": true, "xframe_options": 0, "parent": null, "application_urls": "", "publication_date": "2015-10-04T22:43:25.996Z", "path": "0007", "changed_by": "ungleich", "template": "cms/digitalglarus/index.html", "changed_date": "2015-10-04T22:44:35.958Z", "placeholders": [107, 108, 109, 110, 111, 112, 113, 114, 115], "in_navigation": true, "numchild": 0, "site": 2, "creation_date": "2015-10-04T22:43:25.911Z", "soft_root": false, "publication_end_date": null, "navigation_extenders": "", "application_namespace": null, "depth": 1, "limit_visibility_in_menu": null, "created_by": "ungleich", "revision_id": 0, "reverse_id": null, "languages": "en-us", "login_required": false}, "pk": 10}]	Digital Glarus - Welcome	11	189
4819	107	107	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 107}]	digital_glarus_build_a_tech_valley	9	189
4820	108	108	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 108}]	digital_glarus_build_a_tech_valley_content	9	189
4821	109	109	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 109}]	digital_glarus_a_new_area	9	189
4822	110	110	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 110}]	digital_glarus_a_new_area_content	9	189
4823	15	15	json	[{"model": "cms.title", "fields": {"path": "digitalglarus", "redirect": "", "has_url_overwrite": true, "creation_date": "2015-10-04T22:43:25.962Z", "page": 10, "language": "en-us", "page_title": "Digital Glarus - Welcome", "menu_title": "Digital Glarus - Welcome", "meta_description": "Digital Glarus - Welcome", "published": true, "slug": "digital-glarus-welcome", "title": "Digital Glarus - Welcome"}, "pk": 15}]	Digital Glarus - Welcome (digital-glarus-welcome, en-us)	16	189
4926	138	138	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 138}]	digital_glarus_where_we_are	9	192
4927	139	139	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 139}]	digital_glarus_where_we_are_content	9	192
4920	132	132	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 132}]	digital_glarus_build_a_tech_valley	9	192
4921	133	133	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 133}]	digital_glarus_build_a_tech_valley_content	9	192
4922	6	6	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:27:27.138Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}]	digital.glarus.about	11	192
4923	135	135	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 135}]	digital_glarus_a_new_area_content	9	192
4924	136	136	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 136}]	digital_glarus_why_be_interested	9	192
4925	137	137	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 137}]	digital_glarus_why_be_interested_content	9	192
4929	174	174	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 174}]	The Swiss IT...	35	192
4931	175	175	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 175}]	why Us?	35	192
4932	176	176	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "position": 0, "path": "001E", "numchild": 0, "creation_date": "2015-10-04T17:46:40.251Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 176}]	176	10	192
4933	180	180	json	[{"fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 180}]	direct connection to...	35	192
4934	134	134	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 134}]	digital_glarus_a_new_area	9	192
4935	177	177	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 177}]	why glarus?	35	192
4936	7	7	json	[{"fields": {"language": "en-us", "menu_title": "digital.glarus.about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	192
4937	178	178	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "position": 0, "path": "001G", "numchild": 0, "creation_date": "2015-10-04T17:47:33.925Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 178}]	178	10	192
4938	174	174	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}]	174	10	192
4939	175	175	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "position": 0, "path": "001D", "numchild": 0, "creation_date": "2015-10-04T17:46:20.372Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 175}]	175	10	192
4940	176	176	json	[{"fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}]	We, the ungleich...	35	192
4941	177	177	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "position": 0, "path": "001F", "numchild": 0, "creation_date": "2015-10-04T17:47:04.566Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 177}]	177	10	192
4942	178	178	json	[{"fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 178}]	BEAUTIFUL landscape	35	192
4943	179	179	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}]	179	10	192
4944	180	180	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "position": 0, "path": "001I", "numchild": 0, "creation_date": "2015-10-04T17:48:04.828Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 180}]	180	10	192
4945	181	181	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 181}]	The Swiss IT...	35	192
4946	182	182	json	[{"fields": {"body": "WIESO WIR?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 182}]	WIESO WIR?	35	192
4947	183	183	json	[{"fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}]	Wir, die ungleich...	35	192
4948	184	184	json	[{"fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}]	WIESO GLARUS?	35	192
4949	185	185	json	[{"fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	192
4950	58	58	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}]	digital_glarus_build_a_tech_valley	9	192
4951	187	187	json	[{"fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	192
4952	188	188	json	[{"fields": {"body": "<h3>PREISWERT</h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 188}]	PREISWERT	35	192
4953	61	61	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 61}]	digital_glarus_a_new_area_content	9	192
4954	62	62	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 62}]	digital_glarus_why_be_interested	9	192
5990	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	220
4955	181	181	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "position": 0, "path": "001J", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 181}]	181	10	192
4956	64	64	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 64}]	digital_glarus_where_we_are	9	192
4957	65	65	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 65}]	digital_glarus_where_we_are_content	9	192
4958	66	66	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 66}]	digital_glarus_legend	9	192
4959	67	67	json	[{"fields": {"slot": "digitalglarus_why_us", "default_width": null}, "model": "cms.placeholder", "pk": 67}]	digitalglarus_why_us	9	192
4960	68	68	json	[{"fields": {"slot": "digitalglarus_why_us_content", "default_width": null}, "model": "cms.placeholder", "pk": 68}]	digitalglarus_why_us_content	9	192
4961	69	69	json	[{"fields": {"slot": "digitalglarus_why_glarus", "default_width": null}, "model": "cms.placeholder", "pk": 69}]	digitalglarus_why_glarus	9	192
4962	70	70	json	[{"fields": {"slot": "digitalglarus_why_glarus_beautiful_landscape", "default_width": null}, "model": "cms.placeholder", "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	192
4963	71	71	json	[{"fields": {"slot": "digitalglarus_why_glarus_affordable_price", "default_width": null}, "model": "cms.placeholder", "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	192
4964	72	72	json	[{"fields": {"slot": "digitalglarus_why_glarus_direct_connection_zurich", "default_width": null}, "model": "cms.placeholder", "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	192
4965	183	183	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "position": 0, "path": "001L", "numchild": 0, "creation_date": "2015-10-04T17:52:54.182Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 183}]	183	10	192
4966	184	184	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}]	184	10	192
4967	185	185	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}]	185	10	192
4968	182	182	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "position": 0, "path": "001K", "numchild": 0, "creation_date": "2015-10-04T17:52:38.665Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 182}]	182	10	192
4969	187	187	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "position": 0, "path": "001P", "numchild": 0, "creation_date": "2015-10-04T17:56:10.917Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 187}]	187	10	192
4970	188	188	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}]	188	10	192
4971	59	59	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	192
4972	8	8	json	[{"fields": {"language": "de", "menu_title": "digital.glarus.\\u00fcber.uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": false, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	192
4973	63	63	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 63}]	digital_glarus_why_be_interested_content	9	192
4974	195	195	json	[{"fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 195}]		35	193
4975	196	196	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 196}]	The Swiss IT...	35	193
4976	197	197	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 197}]	Kontakt DIGITAL GLARUS	35	193
4977	198	198	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}]	198	10	193
4978	7	7	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_namespace": null, "changed_date": "2015-10-04T23:27:38.581Z", "publication_date": "2015-10-04T23:27:38.405Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050002", "creation_date": "2015-10-04T18:05:38.150Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/contact.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 7}]	digital.glarus.contact	11	193
4979	9	9	json	[{"fields": {"language": "en-us", "menu_title": "digital.glarus.contact", "title": "Digital Glarus - Contact", "page_title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "path": "digitalglarus/digital-glarus-contact", "creation_date": "2015-10-04T18:05:38.201Z", "redirect": "", "slug": "digital-glarus-contact", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	193
4980	10	10	json	[{"fields": {"language": "de", "menu_title": "digital.glarus.kontakt", "title": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "path": "digital-glarus-startseite/digital-glarus-kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "redirect": null, "slug": "digital-glarus-kontakt", "published": false, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	193
4981	75	75	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 75}]	digital_glarus_a_new_area	9	193
4982	76	76	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 76}]	digital_glarus_a_new_area_content	9	193
4983	77	77	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 77}]	digital_glarus_why_be_interested	9	193
4984	78	78	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 78}]	digital_glarus_why_be_interested_content	9	193
4985	79	79	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 79}]	digital_glarus_where_we_are	9	193
4986	144	144	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 144}]	digital_glarus_build_a_tech_valley	9	193
4987	145	145	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 145}]	digital_glarus_build_a_tech_valley_content	9	193
4988	146	146	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 146}]	digital_glarus_a_new_area	9	193
4989	83	83	json	[{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}]	digital_glarus_contact_content	9	193
4990	148	148	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 148}]	digital_glarus_why_be_interested	9	193
4991	149	149	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 149}]	digital_glarus_why_be_interested_content	9	193
4992	150	150	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 150}]	digital_glarus_where_we_are	9	193
4993	151	151	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 151}]	digital_glarus_where_we_are_content	9	193
4994	196	196	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "path": "001V", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 196}]	196	10	193
4995	199	199	json	[{"fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}]	Telefon: +41 (0)...	35	193
4996	197	197	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}]	197	10	193
4997	80	80	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 80}]	digital_glarus_where_we_are_content	9	193
4998	198	198	json	[{"fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 198}]		35	193
4999	195	195	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "path": "001U", "numchild": 0, "creation_date": "2015-10-04T18:10:28.015Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 195}]	195	10	193
5000	81	81	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 81}]	digital_glarus_legend	9	193
5001	199	199	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}]	199	10	193
5002	82	82	json	[{"fields": {"slot": "digital_glarus_contact", "default_width": null}, "model": "cms.placeholder", "pk": 82}]	digital_glarus_contact	9	193
5003	189	189	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}]	189	10	193
5004	147	147	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 147}]	digital_glarus_a_new_area_content	9	193
5005	74	74	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	193
5006	190	190	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}]	190	10	193
5007	73	73	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}]	digital_glarus_build_a_tech_valley	9	193
5008	84	84	json	[{"fields": {"slot": "digital_glarus_contact_information", "default_width": null}, "model": "cms.placeholder", "pk": 84}]	digital_glarus_contact_information	9	193
5076	181	181	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 181}]	The Swiss IT...	35	195
5009	191	191	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}]	191	10	193
5010	189	189	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}]	The Swiss IT...	35	193
5011	190	190	json	[{"fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}]	Contact DIGITAL GLARUS	35	193
5012	191	191	json	[{"fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 191}]	Phone: +41 (0)...	35	193
10375	7	7	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - About", "has_url_overwrite": false, "redirect": "", "menu_title": "about", "path": "digitalglarus-home/digital-glarus-about", "page": 6, "slug": "digital-glarus-about", "page_title": "Digital Glarus - About", "creation_date": "2015-10-04T17:45:05.433Z", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": true}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	383
10376	8	8	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - \\u00dcber uns", "has_url_overwrite": false, "redirect": null, "menu_title": "\\u00dcber uns", "path": "digitalglarus-startseite/digital-glarus-uber-uns", "page": 6, "slug": "digital-glarus-uber-uns", "page_title": "Digital Glarus - \\u00dcber uns", "creation_date": "2015-10-04T17:54:39.076Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	383
10377	188	188	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "creation_date": "2015-10-04T17:56:28.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Q"}, "pk": 188}]	188	10	383
10378	174	174	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T14:56:18.192Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001C"}, "pk": 174}]	174	10	383
10379	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	383
10380	176	176	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "creation_date": "2015-10-04T17:46:40.251Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001E"}, "pk": 176}]	176	10	383
10381	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	383
10382	177	177	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "creation_date": "2015-10-04T17:47:04.566Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001F"}, "pk": 177}]	177	10	383
10383	178	178	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "creation_date": "2015-10-04T17:47:33.925Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001G"}, "pk": 178}]	178	10	383
10384	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 174}]	GLARNER CO-WORKING |...	35	383
10385	175	175	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "creation_date": "2015-10-04T17:46:20.372Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001D"}, "pk": 175}]	175	10	383
10985	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	399
10986	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	399
10987	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:40:47.474Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	399
5809	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	217
5810	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	217
5811	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	217
5812	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	217
5813	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	217
5940	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	219
5058	6	6	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:28:36.602Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}]	digital.glarus.about	11	195
5059	7	7	json	[{"fields": {"language": "en-us", "menu_title": "about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	195
5060	8	8	json	[{"fields": {"language": "de", "menu_title": "digital.glarus.\\u00fcber.uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": false, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	195
5061	188	188	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}]	188	10	195
5062	174	174	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 174}]	The Swiss IT...	35	195
5063	175	175	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "position": 0, "path": "001D", "numchild": 0, "creation_date": "2015-10-04T17:46:20.372Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 175}]	175	10	195
5064	176	176	json	[{"fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}]	We, the ungleich...	35	195
5065	180	180	json	[{"fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 180}]	direct connection to...	35	195
5066	70	70	json	[{"fields": {"slot": "digitalglarus_why_glarus_beautiful_landscape", "default_width": null}, "model": "cms.placeholder", "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	195
5067	177	177	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 177}]	why glarus?	35	195
5068	178	178	json	[{"fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 178}]	BEAUTIFUL landscape	35	195
5069	174	174	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}]	174	10	195
5070	175	175	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 175}]	why Us?	35	195
5071	176	176	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "position": 0, "path": "001E", "numchild": 0, "creation_date": "2015-10-04T17:46:40.251Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 176}]	176	10	195
5072	177	177	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "position": 0, "path": "001F", "numchild": 0, "creation_date": "2015-10-04T17:47:04.566Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 177}]	177	10	195
5073	178	178	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "position": 0, "path": "001G", "numchild": 0, "creation_date": "2015-10-04T17:47:33.925Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 178}]	178	10	195
5074	179	179	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}]	179	10	195
5075	180	180	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "position": 0, "path": "001I", "numchild": 0, "creation_date": "2015-10-04T17:48:04.828Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 180}]	180	10	195
5077	182	182	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "position": 0, "path": "001K", "numchild": 0, "creation_date": "2015-10-04T17:52:38.665Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 182}]	182	10	195
5078	183	183	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "position": 0, "path": "001L", "numchild": 0, "creation_date": "2015-10-04T17:52:54.182Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 183}]	183	10	195
5079	184	184	json	[{"fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}]	WIESO GLARUS?	35	195
5080	185	185	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}]	185	10	195
5081	58	58	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}]	digital_glarus_build_a_tech_valley	9	195
5082	59	59	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	195
5083	60	60	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 60}]	digital_glarus_a_new_area	9	195
5084	61	61	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 61}]	digital_glarus_a_new_area_content	9	195
5085	62	62	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 62}]	digital_glarus_why_be_interested	9	195
5086	63	63	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 63}]	digital_glarus_why_be_interested_content	9	195
5087	64	64	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 64}]	digital_glarus_where_we_are	9	195
5088	65	65	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 65}]	digital_glarus_where_we_are_content	9	195
5089	66	66	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 66}]	digital_glarus_legend	9	195
5090	67	67	json	[{"fields": {"slot": "digitalglarus_why_us", "default_width": null}, "model": "cms.placeholder", "pk": 67}]	digitalglarus_why_us	9	195
5091	68	68	json	[{"fields": {"slot": "digitalglarus_why_us_content", "default_width": null}, "model": "cms.placeholder", "pk": 68}]	digitalglarus_why_us_content	9	195
5092	69	69	json	[{"fields": {"slot": "digitalglarus_why_glarus", "default_width": null}, "model": "cms.placeholder", "pk": 69}]	digitalglarus_why_glarus	9	195
5093	181	181	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "position": 0, "path": "001J", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 181}]	181	10	195
5094	71	71	json	[{"fields": {"slot": "digitalglarus_why_glarus_affordable_price", "default_width": null}, "model": "cms.placeholder", "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	195
5095	72	72	json	[{"fields": {"slot": "digitalglarus_why_glarus_direct_connection_zurich", "default_width": null}, "model": "cms.placeholder", "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	195
5096	183	183	json	[{"fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}]	Wir, die ungleich...	35	195
5097	184	184	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}]	184	10	195
5098	185	185	json	[{"fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	195
5099	182	182	json	[{"fields": {"body": "WIESO WIR?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 182}]	WIESO WIR?	35	195
5100	187	187	json	[{"fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	195
5101	188	188	json	[{"fields": {"body": "<h3>PREISWERT</h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 188}]	PREISWERT	35	195
5102	187	187	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "position": 0, "path": "001P", "numchild": 0, "creation_date": "2015-10-04T17:56:10.917Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 187}]	187	10	195
5103	195	195	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "path": "001U", "numchild": 0, "creation_date": "2015-10-04T18:10:28.015Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 195}]	195	10	196
5104	196	196	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "path": "001V", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 196}]	196	10	196
5105	197	197	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 197}]	Kontakt DIGITAL GLARUS	35	196
5106	198	198	json	[{"fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 198}]		35	196
5133	191	191	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}]	191	10	196
5107	7	7	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_namespace": null, "changed_date": "2015-10-04T23:28:49.974Z", "publication_date": "2015-10-04T23:27:38.405Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050002", "creation_date": "2015-10-04T18:05:38.150Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/contact.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 7}]	digital.glarus.contact	11	196
5108	9	9	json	[{"fields": {"language": "en-us", "menu_title": "contact", "title": "Digital Glarus - Contact", "page_title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "path": "digitalglarus/digital-glarus-contact", "creation_date": "2015-10-04T18:05:38.201Z", "redirect": "", "slug": "digital-glarus-contact", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	196
5109	10	10	json	[{"fields": {"language": "de", "menu_title": "digital.glarus.kontakt", "title": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "path": "digital-glarus-startseite/digital-glarus-kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "redirect": null, "slug": "digital-glarus-kontakt", "published": false, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	196
5110	75	75	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 75}]	digital_glarus_a_new_area	9	196
5111	76	76	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 76}]	digital_glarus_a_new_area_content	9	196
5112	77	77	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 77}]	digital_glarus_why_be_interested	9	196
5113	78	78	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 78}]	digital_glarus_why_be_interested_content	9	196
5114	79	79	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 79}]	digital_glarus_where_we_are	9	196
5115	80	80	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 80}]	digital_glarus_where_we_are_content	9	196
5116	81	81	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 81}]	digital_glarus_legend	9	196
5117	82	82	json	[{"fields": {"slot": "digital_glarus_contact", "default_width": null}, "model": "cms.placeholder", "pk": 82}]	digital_glarus_contact	9	196
5118	195	195	json	[{"fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 195}]		35	196
5119	84	84	json	[{"fields": {"slot": "digital_glarus_contact_information", "default_width": null}, "model": "cms.placeholder", "pk": 84}]	digital_glarus_contact_information	9	196
5120	196	196	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 196}]	The Swiss IT...	35	196
5121	199	199	json	[{"fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}]	Telefon: +41 (0)...	35	196
5122	197	197	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}]	197	10	196
5123	198	198	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}]	198	10	196
5124	199	199	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}]	199	10	196
5125	189	189	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}]	The Swiss IT...	35	196
5126	83	83	json	[{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}]	digital_glarus_contact_content	9	196
5127	74	74	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	196
5128	190	190	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}]	190	10	196
5129	73	73	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}]	digital_glarus_build_a_tech_valley	9	196
5130	191	191	json	[{"fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 191}]	Phone: +41 (0)...	35	196
5131	189	189	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}]	189	10	196
10386	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	383
10387	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	383
10388	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	383
10389	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	383
10390	180	180	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "creation_date": "2015-10-04T17:48:04.828Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001I"}, "pk": 180}]	180	10	383
10391	181	181	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001J"}, "pk": 181}]	181	10	383
10392	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	383
10393	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	383
10394	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	383
10395	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	383
10396	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	383
10397	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	383
10398	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	383
10399	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	383
10400	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	383
10401	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	383
10402	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	383
10403	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	383
10404	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	383
10405	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	383
10406	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	383
10407	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	383
10408	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	383
5181	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	198
10409	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	383
10410	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	383
10411	183	183	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "creation_date": "2015-10-04T17:52:54.182Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001L"}, "pk": 183}]	183	10	383
10412	184	184	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "creation_date": "2015-10-04T17:55:08.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001M"}, "pk": 184}]	184	10	383
10413	185	185	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "creation_date": "2015-10-04T17:55:24.521Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001N"}, "pk": 185}]	185	10	383
10414	182	182	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "creation_date": "2015-10-04T17:52:38.665Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001K"}, "pk": 182}]	182	10	383
10415	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	383
5170	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	198
5171	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digital-glarus-home, en-us)	16	198
5172	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": null, "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	198
5173	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	198
5174	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	198
5175	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	198
5176	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	198
5177	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	198
5178	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	198
5179	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	198
5180	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	198
10416	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	383
10417	187	187	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "creation_date": "2015-10-04T17:56:10.917Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001P"}, "pk": 187}]	187	10	383
5197	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	198
6127	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	224
5182	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	198
5183	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:29:24.799Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	digital.glarus	11	198
5184	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	198
5185	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	198
5186	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	198
5187	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	198
5188	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	198
5189	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	198
5190	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	198
5191	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	198
5192	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	198
5193	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	198
5194	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	198
5195	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	198
5196	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	198
5198	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	198
5199	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	198
5200	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	198
5201	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	198
5202	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	198
5203	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	198
5204	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	198
5205	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	198
5206	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	198
5207	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	198
5208	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	198
5209	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	198
5210	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	198
5211	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	198
5212	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	198
5213	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	198
5214	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	198
5215	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	198
5216	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	198
5217	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	198
5218	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	199
5219	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:29:34.087Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-home", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	199
5220	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": null, "slug": "digital-glarus-startseite", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digital-glarus-startseite, de)	16	199
5221	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	199
5262	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	199
5222	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digital-glarus-home", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digital-glarus-home, en-us)	16	199
5223	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	199
5224	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	199
5225	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	199
5226	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	199
5227	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	199
5228	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	199
5229	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	199
5230	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	199
5231	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	199
5232	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	199
5233	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	199
5234	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	199
5235	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	199
5236	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	199
5237	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	199
5238	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	199
5239	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	199
5240	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	199
5241	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	199
5242	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	199
5260	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	199
5261	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	199
5243	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	199
5244	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	199
5245	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	199
5246	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	199
5247	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	199
5248	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	199
5249	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	199
5250	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	199
5251	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	199
5252	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	199
5253	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	199
5254	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	199
5255	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	199
5256	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	199
5257	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	199
5258	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	199
5259	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	199
5263	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	199
5264	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	199
5265	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	199
5266	179	179	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "position": 0, "path": "001H", "numchild": 0, "creation_date": "2015-10-04T17:47:50.728Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 179}]	179	10	200
5267	6	6	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "application_namespace": null, "changed_date": "2015-10-04T23:29:41.527Z", "publication_date": "2015-10-04T23:27:26.906Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050001", "creation_date": "2015-10-04T17:45:05.381Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/about.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 6}]	about	11	200
5268	7	7	json	[{"fields": {"language": "en-us", "menu_title": "about", "title": "Digital Glarus - About", "page_title": "Digital Glarus - About", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "path": "digitalglarus/digital-glarus-about", "creation_date": "2015-10-04T17:45:05.433Z", "redirect": "", "slug": "digital-glarus-about", "published": true, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	200
5269	8	8	json	[{"fields": {"language": "de", "menu_title": "digital.glarus.\\u00fcber.uns", "title": "Digital Glarus - \\u00dcber uns", "page_title": "Digital Glarus - \\u00dcber uns", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digital-glarus-startseite/digital-glarus-uber-uns", "creation_date": "2015-10-04T17:54:39.076Z", "redirect": null, "slug": "digital-glarus-uber-uns", "published": false, "page": 6, "has_url_overwrite": false}, "model": "cms.title", "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	200
5270	188	188	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "position": 0, "path": "001Q", "numchild": 0, "creation_date": "2015-10-04T17:56:28.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 188}]	188	10	200
5271	174	174	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:46:04.884Z", "position": 0, "path": "001C", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 174}]	174	10	200
5272	175	175	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 175}]	why Us?	35	200
5273	176	176	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "position": 0, "path": "001E", "numchild": 0, "creation_date": "2015-10-04T17:46:40.251Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 176}]	176	10	200
5274	180	180	json	[{"fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 180}]	direct connection to...	35	200
5275	177	177	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "position": 0, "path": "001F", "numchild": 0, "creation_date": "2015-10-04T17:47:04.566Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 177}]	177	10	200
5276	178	178	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "position": 0, "path": "001G", "numchild": 0, "creation_date": "2015-10-04T17:47:33.925Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 178}]	178	10	200
5277	174	174	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 174}]	The Swiss IT...	35	200
5278	175	175	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "position": 0, "path": "001D", "numchild": 0, "creation_date": "2015-10-04T17:46:20.372Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 175}]	175	10	200
5279	176	176	json	[{"fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 176}]	We, the ungleich...	35	200
5280	177	177	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 177}]	why glarus?	35	200
5281	178	178	json	[{"fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 178}]	BEAUTIFUL landscape	35	200
5283	180	180	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "position": 0, "path": "001I", "numchild": 0, "creation_date": "2015-10-04T17:48:04.828Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 180}]	180	10	200
5284	181	181	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "position": 0, "path": "001J", "numchild": 0, "creation_date": "2015-10-04T17:45:58.715Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 181}]	181	10	200
5285	182	182	json	[{"fields": {"body": "WIESO WIR?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 182}]	WIESO WIR?	35	200
5286	183	183	json	[{"fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 183}]	Wir, die ungleich...	35	200
5287	184	184	json	[{"fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 184}]	WIESO GLARUS?	35	200
5288	185	185	json	[{"fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	200
5289	58	58	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 58}]	digital_glarus_build_a_tech_valley	9	200
5290	59	59	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	200
5291	60	60	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 60}]	digital_glarus_a_new_area	9	200
5292	61	61	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 61}]	digital_glarus_a_new_area_content	9	200
5293	62	62	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 62}]	digital_glarus_why_be_interested	9	200
5294	181	181	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 181}]	The Swiss IT...	35	200
5295	64	64	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 64}]	digital_glarus_where_we_are	9	200
5296	65	65	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 65}]	digital_glarus_where_we_are_content	9	200
5297	66	66	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 66}]	digital_glarus_legend	9	200
5298	67	67	json	[{"fields": {"slot": "digitalglarus_why_us", "default_width": null}, "model": "cms.placeholder", "pk": 67}]	digitalglarus_why_us	9	200
5299	68	68	json	[{"fields": {"slot": "digitalglarus_why_us_content", "default_width": null}, "model": "cms.placeholder", "pk": 68}]	digitalglarus_why_us_content	9	200
5300	69	69	json	[{"fields": {"slot": "digitalglarus_why_glarus", "default_width": null}, "model": "cms.placeholder", "pk": 69}]	digitalglarus_why_glarus	9	200
5301	70	70	json	[{"fields": {"slot": "digitalglarus_why_glarus_beautiful_landscape", "default_width": null}, "model": "cms.placeholder", "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	200
5302	71	71	json	[{"fields": {"slot": "digitalglarus_why_glarus_affordable_price", "default_width": null}, "model": "cms.placeholder", "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	200
5303	72	72	json	[{"fields": {"slot": "digitalglarus_why_glarus_direct_connection_zurich", "default_width": null}, "model": "cms.placeholder", "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	200
5304	183	183	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "position": 0, "path": "001L", "numchild": 0, "creation_date": "2015-10-04T17:52:54.182Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 183}]	183	10	200
5305	184	184	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "position": 0, "path": "001M", "numchild": 0, "creation_date": "2015-10-04T17:55:08.645Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 184}]	184	10	200
5306	185	185	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "position": 0, "path": "001N", "numchild": 0, "creation_date": "2015-10-04T17:55:24.521Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 185}]	185	10	200
5307	182	182	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "position": 0, "path": "001K", "numchild": 0, "creation_date": "2015-10-04T17:52:38.665Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 182}]	182	10	200
5308	187	187	json	[{"fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	200
5309	188	188	json	[{"fields": {"body": "<h3>PREISWERT</h3>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 188}]	PREISWERT	35	200
5310	187	187	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "position": 0, "path": "001P", "numchild": 0, "creation_date": "2015-10-04T17:56:10.917Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 187}]	187	10	200
5311	63	63	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 63}]	digital_glarus_why_be_interested_content	9	200
10846	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	394
5312	195	195	json	[{"fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 195}]		35	201
5313	196	196	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 196}]	The Swiss IT...	35	201
5314	197	197	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 197}]	Kontakt DIGITAL GLARUS	35	201
5315	198	198	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "path": "001X", "numchild": 0, "creation_date": "2015-10-04T18:16:04.529Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 198}]	198	10	201
5316	7	7	json	[{"fields": {"parent": 5, "navigation_extenders": "", "numchild": 0, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_namespace": null, "changed_date": "2015-10-04T23:29:48.603Z", "publication_date": "2015-10-04T23:27:38.405Z", "site": 1, "publication_end_date": null, "reverse_id": null, "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "00050002", "creation_date": "2015-10-04T18:05:38.150Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/contact.html", "languages": "en-us,de", "depth": 2, "soft_root": false, "login_required": false}, "model": "cms.page", "pk": 7}]	contact	11	201
5317	73	73	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 73}]	digital_glarus_build_a_tech_valley	9	201
5318	74	74	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	201
5319	75	75	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 75}]	digital_glarus_a_new_area	9	201
5320	76	76	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 76}]	digital_glarus_a_new_area_content	9	201
5321	77	77	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 77}]	digital_glarus_why_be_interested	9	201
5322	78	78	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 78}]	digital_glarus_why_be_interested_content	9	201
5323	79	79	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 79}]	digital_glarus_where_we_are	9	201
5324	80	80	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 80}]	digital_glarus_where_we_are_content	9	201
5325	81	81	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 81}]	digital_glarus_legend	9	201
5326	82	82	json	[{"fields": {"slot": "digital_glarus_contact", "default_width": null}, "model": "cms.placeholder", "pk": 82}]	digital_glarus_contact	9	201
5327	195	195	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "path": "001U", "numchild": 0, "creation_date": "2015-10-04T18:10:28.015Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 195}]	195	10	201
5328	84	84	json	[{"fields": {"slot": "digital_glarus_contact_information", "default_width": null}, "model": "cms.placeholder", "pk": 84}]	digital_glarus_contact_information	9	201
5329	196	196	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "path": "001V", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 196}]	196	10	201
5330	199	199	json	[{"fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 199}]	Telefon: +41 (0)...	35	201
5331	197	197	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "path": "001W", "numchild": 0, "creation_date": "2015-10-04T18:14:38.170Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 197}]	197	10	201
5332	198	198	json	[{"fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "model": "djangocms_text_ckeditor.text", "pk": 198}]		35	201
5333	199	199	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "path": "001Y", "numchild": 0, "creation_date": "2015-10-04T18:16:22.743Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 199}]	199	10	201
5334	189	189	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 81, "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "path": "001R", "numchild": 0, "creation_date": "2015-10-04T18:06:26.767Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 189}]	189	10	201
5335	10	10	json	[{"fields": {"language": "de", "menu_title": "digital.glarus.kontakt", "title": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "path": "digital-glarus-startseite/digital-glarus-kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "redirect": null, "slug": "digital-glarus-kontakt", "published": false, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	201
5336	83	83	json	[{"fields": {"slot": "digital_glarus_contact_content", "default_width": null}, "model": "cms.placeholder", "pk": 83}]	digital_glarus_contact_content	9	201
6150	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	225
5337	190	190	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "path": "001S", "numchild": 0, "creation_date": "2015-10-04T18:06:49.275Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 190}]	190	10	201
5338	9	9	json	[{"fields": {"language": "en-us", "menu_title": "contact", "title": "Digital Glarus - Contact", "page_title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "path": "digitalglarus/digital-glarus-contact", "creation_date": "2015-10-04T18:05:38.201Z", "redirect": "", "slug": "digital-glarus-contact", "published": true, "page": 7, "has_url_overwrite": false}, "model": "cms.title", "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	201
5339	191	191	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 84, "changed_date": "2015-10-04T18:12:07.389Z", "position": 0, "path": "001T", "numchild": 0, "creation_date": "2015-10-04T18:07:07.395Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 191}]	191	10	201
5340	189	189	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 189}]	The Swiss IT...	35	201
5341	190	190	json	[{"fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 190}]	Contact DIGITAL GLARUS	35	201
5342	191	191	json	[{"fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 191}]	Phone: +41 (0)...	35	201
10418	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	383
10988	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	399
10989	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	399
10990	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	399
10991	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (jazz, en-us)	16	399
10992	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	399
10993	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	399
10994	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	399
10995	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	399
10996	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	399
10997	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	399
10998	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	399
10999	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	399
11000	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	399
11001	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	399
11002	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	399
11003	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	399
11004	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	399
11005	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	399
11006	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	399
10419	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	384
10420	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 196}]	The Swiss IT...	35	384
10421	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	384
10422	198	198	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "creation_date": "2015-10-04T18:16:04.529Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001X"}, "pk": 198}]	198	10	384
10423	7	7	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-10-05T01:48:08.209Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:38.405Z", "path": "00050002", "soft_root": false, "template": "cms/digitalglarus/contact.html", "xframe_options": 0, "creation_date": "2015-10-04T18:05:38.150Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]}, "pk": 7}]	contact	11	384
10424	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	384
10425	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	384
10426	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	384
10427	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	384
10428	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	384
10429	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	384
10430	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	384
10431	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	384
5814	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	217
5815	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	217
5816	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	217
5817	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	217
5818	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	217
5819	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	217
5820	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	217
10432	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	384
10433	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	384
10434	195	195	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "creation_date": "2015-10-04T18:10:28.015Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001U"}, "pk": 195}]	195	10	384
5952	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	219
5953	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	220
5954	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:56:15.585Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	home	11	220
5955	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digitalglarus", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digitalglarus, de)	16	220
5956	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	220
5957	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	220
5958	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	220
5959	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	220
5960	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	220
5961	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	220
5962	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	220
5963	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	220
5964	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	220
5965	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	220
5966	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	220
5967	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	220
5968	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	220
5969	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	220
5970	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	220
5971	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	220
5972	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	220
5973	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	220
5974	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	220
5975	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	220
5976	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	220
5977	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	220
5978	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	220
5979	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	220
5980	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	220
5981	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	220
5982	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	220
5983	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	220
5984	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	220
5985	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	220
5986	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	220
5987	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	220
5988	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	220
5989	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	220
5991	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	220
5992	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	220
5993	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	220
5994	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	220
5995	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	220
5996	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	220
5997	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	220
5998	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	220
5999	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	220
6000	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	220
6001	34	34	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "model": "cms.placeholder", "pk": 34}]	digital_glarus_a_new_area_content	9	221
6002	5	5	json	[{"fields": {"parent": null, "navigation_extenders": "", "numchild": 3, "changed_by": "ungleich", "in_navigation": true, "revision_id": 0, "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_namespace": null, "changed_date": "2015-10-04T23:56:22.982Z", "publication_date": "2015-10-04T22:19:37.050Z", "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "is_home": false, "xframe_options": 0, "limit_visibility_in_menu": null, "path": "0005", "creation_date": "2015-10-04T16:53:42.171Z", "created_by": "ungleich", "application_urls": "", "template": "cms/digitalglarus/index.html", "languages": "en-us,de", "depth": 1, "soft_root": true, "login_required": false}, "model": "cms.page", "pk": 5}]	Startseite	11	221
6003	6	6	json	[{"fields": {"language": "de", "menu_title": "Startseite", "title": "Digital Glarus - Startseite", "page_title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "path": "digitalglarus", "creation_date": "2015-10-04T17:20:12.951Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": false}, "model": "cms.title", "pk": 6}]	Digital Glarus - Startseite (digitalglarus, de)	16	221
6004	172	172	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "path": "001A", "numchild": 0, "creation_date": "2015-10-04T17:32:07.260Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 172}]	172	10	221
6005	5	5	json	[{"fields": {"language": "en-us", "menu_title": "home", "title": "Digital Glarus - Welcome", "page_title": "Digital Glarus", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "path": "digitalglarus", "creation_date": "2015-10-04T16:53:42.348Z", "redirect": "", "slug": "digitalglarus", "published": true, "page": 5, "has_url_overwrite": true}, "model": "cms.title", "pk": 5}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	221
6006	173	173	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "path": "001B", "numchild": 0, "creation_date": "2015-10-04T17:36:07.616Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 173}]	173	10	221
6007	171	171	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "path": "0019", "numchild": 0, "creation_date": "2015-10-04T17:31:39.702Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 171}]	171	10	221
6008	153	153	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "path": "000S", "numchild": 0, "creation_date": "2015-10-04T16:56:13.254Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 153}]	153	10	221
6047	170	170	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "path": "0018", "numchild": 0, "creation_date": "2015-10-04T17:31:20.090Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 170}]	170	10	221
6074	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	222
6009	153	153	json	[{"fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 153}]	Digital Glarus, this...	35	221
6010	154	154	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 154}]	Build a tech...	35	221
6011	155	155	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "path": "000U", "numchild": 0, "creation_date": "2015-10-04T16:59:46.792Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 155}]	155	10	221
6012	156	156	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "path": "000V", "numchild": 0, "creation_date": "2015-10-04T17:00:03.379Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 156}]	156	10	221
6013	154	154	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "path": "000T", "numchild": 0, "creation_date": "2015-10-04T16:56:41.534Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 154}]	154	10	221
6014	158	158	json	[{"fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 158}]	The current de-facto...	35	221
6015	159	159	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 159}]	Wherewe are	35	221
6016	160	160	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "path": "000Z", "numchild": 0, "creation_date": "2015-10-04T17:01:51.549Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 160}]	160	10	221
6017	161	161	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "path": "0010", "numchild": 0, "creation_date": "2015-10-04T17:02:21.812Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 161}]	161	10	221
6018	162	162	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 162}]	The Swiss IT...	35	221
6019	163	163	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "path": "0012", "numchild": 0, "creation_date": "2015-10-04T17:22:11.318Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 163}]	163	10	221
6020	164	164	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "path": "0013", "numchild": 0, "creation_date": "2015-10-04T17:22:41.094Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 164}]	164	10	221
6021	165	165	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "path": "0014", "numchild": 0, "creation_date": "2015-10-04T17:23:05.607Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 165}]	165	10	221
6022	38	38	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "model": "cms.placeholder", "pk": 38}]	digital_glarus_where_we_are_content	9	221
6023	39	39	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "model": "cms.placeholder", "pk": 39}]	digital_glarus_legend	9	221
6024	156	156	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 156}]	a new area	35	221
6025	170	170	json	[{"fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 170}]	WIESO SOLLTE SICH...	35	221
6026	171	171	json	[{"fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 171}]	Das momentane de-facto...	35	221
6027	172	172	json	[{"fields": {"body": "WO SIND WIR\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 172}]	WO SIND WIR	35	221
6048	166	166	json	[{"fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 166}]	Die alten Fabriken,...	35	221
6028	173	173	json	[{"fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 173}]	Der erste grosse...	35	221
6029	157	157	json	[{"fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 157}]	Why would anyone...	35	221
6030	155	155	json	[{"fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 155}]	While you can...	35	221
6031	158	158	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "path": "000X", "numchild": 0, "creation_date": "2015-10-04T17:01:04.021Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 158}]	158	10	221
6032	31	31	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "model": "cms.placeholder", "pk": 31}]	digital_glarus_build_a_tech_valley	9	221
6033	36	36	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "model": "cms.placeholder", "pk": 36}]	digital_glarus_why_be_interested_content	9	221
6034	35	35	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "model": "cms.placeholder", "pk": 35}]	digital_glarus_why_be_interested	9	221
6035	160	160	json	[{"fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 160}]	At the moment...	35	221
6036	161	161	json	[{"fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 161}]	The Swiss IT...	35	221
6037	162	162	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "path": "0011", "numchild": 0, "creation_date": "2015-10-04T17:20:34.383Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 162}]	162	10	221
6038	163	163	json	[{"fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	221
6039	164	164	json	[{"fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 164}]	Digital Glarus, so...	35	221
6040	159	159	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "path": "000Y", "numchild": 0, "creation_date": "2015-10-04T17:01:30.763Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 159}]	159	10	221
6041	37	37	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "model": "cms.placeholder", "pk": 37}]	digital_glarus_where_we_are	9	221
6042	165	165	json	[{"fields": {"body": "EINE NEUE REGION.\\n"}, "model": "djangocms_text_ckeditor.text", "pk": 165}]	EINE NEUE REGION.	35	221
6043	32	32	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "model": "cms.placeholder", "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	221
6044	33	33	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "model": "cms.placeholder", "pk": 33}]	digital_glarus_a_new_area	9	221
6045	157	157	json	[{"fields": {"language": "en-us", "parent": null, "plugin_type": "TextPlugin", "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "path": "000W", "numchild": 0, "creation_date": "2015-10-04T17:00:37.507Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 157}]	157	10	221
6046	166	166	json	[{"fields": {"language": "de", "parent": null, "plugin_type": "TextPlugin", "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "path": "0015", "numchild": 0, "creation_date": "2015-10-04T17:23:23.851Z", "depth": 1}, "model": "cms.cmsplugin", "pk": 166}]	166	10	221
6049	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	222
6050	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	222
6051	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	222
6052	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	222
6053	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-04T23:39:51.507Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	contact	11	222
6054	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	222
6055	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	222
6056	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	222
6057	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	222
6058	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	222
6059	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	222
6060	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	222
6061	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	222
6062	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	222
6063	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	222
6064	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	222
6065	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	222
6066	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	222
6067	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}}]	Telefon: +41 (0)...	35	222
6068	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	222
6069	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	222
6070	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	222
6071	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	222
6072	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	222
6073	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	222
6124	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	224
6075	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	222
6076	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:46:26.119Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	222
6077	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	222
6078	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	222
6079	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:<strong> <span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	222
6080	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	223
6081	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	223
6082	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	223
6083	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	223
6084	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-05T01:46:26.375Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	contact	11	223
6085	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	223
6086	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	223
6087	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	223
6088	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	223
6089	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	223
6090	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	223
6091	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	223
6092	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	223
6093	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	223
6094	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	223
6095	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	223
6096	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	223
6097	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	223
6098	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}}]	Telefon: +41 (0)...	35	223
6125	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	224
6099	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	223
6100	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	223
6101	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	223
6102	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	223
6103	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	223
6104	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	223
6105	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	223
6106	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	223
6107	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:46:45.907Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	223
6108	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	223
6109	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	223
6110	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	223
6111	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	224
6112	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	224
6113	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	224
6114	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	224
6115	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-05T01:46:51.239Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	contact	11	224
6116	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	224
6117	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	224
6118	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	224
6119	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	224
6120	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	224
6121	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	224
6122	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	224
6123	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	224
6126	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	224
6128	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	224
6129	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}}]	Telefon: +41 (0)...	35	224
6130	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	224
6131	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	224
6132	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	224
6133	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	224
6134	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	224
6135	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	224
6136	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	224
6137	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	224
6138	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:46:45.907Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	224
6139	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	224
6140	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	224
6141	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	224
6142	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	225
6143	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	225
6144	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	225
6145	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	225
6146	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-05T01:46:51.311Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	contact	11	225
6147	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	225
6148	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	225
6149	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	225
6151	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	225
6152	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	225
6153	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	225
6154	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	225
6155	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	225
6156	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	225
6157	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	225
6158	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	225
6159	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	225
6160	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}}]	Telefon: +41 (0)...	35	225
6161	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	225
6162	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	225
6163	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	225
6164	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	225
6165	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	225
6166	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	225
6167	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	225
6168	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	225
6169	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	225
6170	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	225
6171	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	225
6172	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	225
6173	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	226
6174	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	226
6175	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	226
6176	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	226
6177	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-05T01:47:27.401Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	contact	11	226
6178	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	226
6179	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	226
6180	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	226
6181	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	226
6182	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	226
6183	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	226
6184	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	226
6185	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	226
6186	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	226
6187	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	226
6188	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	226
6189	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	226
6190	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	226
6191	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\" tabindex=\\"-1\\"><span class=\\"hps\\">Anschrift</span></span>: <strong>Hauptstrasse 14, 8775 Luchsingen</strong></p>\\n"}}]	Telefon: +41 (0)...	35	226
6192	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	226
6193	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	226
6194	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:05.702Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	226
6195	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	226
6196	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	226
6197	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	226
6198	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	226
6285	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	230
6199	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	226
6200	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	226
6201	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	226
6202	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	226
6203	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	226
6204	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	227
6205	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	227
6206	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	227
6207	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	227
6208	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-05T01:47:27.477Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	contact	11	227
6209	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	227
6210	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	227
6211	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	227
6212	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	227
6213	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	227
6214	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	227
6215	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	227
6216	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	227
6217	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	227
6218	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	227
6219	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	227
6220	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	227
6221	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	227
6222	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}}]	Telefon: +41 (0)...	35	227
6223	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	227
6306	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	230
6224	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	227
6251	84	84	json	[{"pk": 84, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_information", "default_width": null}}]	digital_glarus_contact_information	9	228
6225	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:48:02.213Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	227
6226	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	227
6227	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	227
6228	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	227
6229	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	227
6230	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	227
6231	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	227
6232	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	227
6233	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	227
6234	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	227
6235	195	195	json	[{"pk": 195, "model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	228
6236	196	196	json	[{"pk": 196, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	228
6237	197	197	json	[{"pk": 197, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}}]	Kontakt DIGITAL GLARUS	35	228
6238	198	198	json	[{"pk": 198, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:04.529Z", "placeholder": 83, "language": "de", "path": "001X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:17:33.725Z", "position": 0, "numchild": 0, "depth": 1}}]	198	10	228
6239	7	7	json	[{"pk": 7, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/contact.html", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T23:27:38.405Z", "login_required": false, "creation_date": "2015-10-04T18:05:38.150Z", "path": "00050002", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": 5, "in_navigation": true, "changed_date": "2015-10-05T01:48:08.129Z", "application_namespace": null, "depth": 2, "created_by": "ungleich"}}]	Kontakt	11	228
6240	73	73	json	[{"pk": 73, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	228
6241	74	74	json	[{"pk": 74, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	228
6242	75	75	json	[{"pk": 75, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	228
6243	76	76	json	[{"pk": 76, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	228
6244	77	77	json	[{"pk": 77, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	228
6245	78	78	json	[{"pk": 78, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	228
6246	79	79	json	[{"pk": 79, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	228
6247	80	80	json	[{"pk": 80, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	228
6248	81	81	json	[{"pk": 81, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	228
6249	82	82	json	[{"pk": 82, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact", "default_width": null}}]	digital_glarus_contact	9	228
6250	195	195	json	[{"pk": 195, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:10:28.015Z", "placeholder": 83, "language": "en-us", "path": "001U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:11:17.160Z", "position": 0, "numchild": 0, "depth": 1}}]	195	10	228
6252	196	196	json	[{"pk": 196, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "de", "path": "001V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:14:27.945Z", "position": 0, "numchild": 0, "depth": 1}}]	196	10	228
6253	199	199	json	[{"pk": 199, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}}]	Telefon: +41 (0)...	35	228
6254	197	197	json	[{"pk": 197, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:14:38.170Z", "placeholder": 82, "language": "de", "path": "001W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:15:40.462Z", "position": 0, "numchild": 0, "depth": 1}}]	197	10	228
6255	198	198	json	[{"pk": 198, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}}]		35	228
6256	199	199	json	[{"pk": 199, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:16:22.743Z", "placeholder": 84, "language": "de", "path": "001Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:48:02.213Z", "position": 0, "numchild": 0, "depth": 1}}]	199	10	228
6257	189	189	json	[{"pk": 189, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:26.767Z", "placeholder": 81, "language": "en-us", "path": "001R", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:06:32.029Z", "position": 0, "numchild": 0, "depth": 1}}]	189	10	228
6258	10	10	json	[{"pk": 10, "model": "cms.title", "fields": {"redirect": null, "language": "de", "published": true, "slug": "digital-glarus-kontakt", "page": 7, "menu_title": "Kontakt", "has_url_overwrite": false, "title": "Digital Glarus - Kontakt", "meta_description": "Digital Glarus - Kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "path": "digitalglarus/digital-glarus-kontakt"}}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	228
6259	83	83	json	[{"pk": 83, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_contact_content", "default_width": null}}]	digital_glarus_contact_content	9	228
6260	190	190	json	[{"pk": 190, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:06:49.275Z", "placeholder": 82, "language": "en-us", "path": "001S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T18:12:53.711Z", "position": 0, "numchild": 0, "depth": 1}}]	190	10	228
6261	9	9	json	[{"pk": 9, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digital-glarus-contact", "page": 7, "menu_title": "contact", "has_url_overwrite": false, "title": "Digital Glarus - Contact", "meta_description": "Contact DIGITAL GLARUS ", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "path": "digitalglarus/digital-glarus-contact"}}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	228
6262	191	191	json	[{"pk": 191, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T18:07:07.395Z", "placeholder": 84, "language": "en-us", "path": "001T", "plugin_type": "TextPlugin", "changed_date": "2015-10-05T01:47:21.611Z", "position": 0, "numchild": 0, "depth": 1}}]	191	10	228
6263	189	189	json	[{"pk": 189, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	228
6264	190	190	json	[{"pk": 190, "model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}}]	Contact DIGITAL GLARUS	35	228
6265	191	191	json	[{"pk": 191, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}}]	Phone: +41 (0)...	35	228
6266	3	3	json	[{"pk": 3, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "blog", "page": 3, "menu_title": "Blog", "has_url_overwrite": true, "title": "Blog", "meta_description": "on OpenSource, technology, our passion and interests...", "page_title": "ungleich Blog", "creation_date": "2015-06-12T17:05:57.066Z", "path": "blog"}}]	Blog (blog, en-us)	16	229
6267	3	3	json	[{"pk": 3, "model": "cms.page", "fields": {"languages": "en-us", "template": "cms/ungleichch/blog.html", "placeholders": [6], "application_urls": "BlogApp", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": true, "publication_date": "2015-06-12T17:17:49.261Z", "login_required": false, "creation_date": "2015-06-12T17:05:57.028Z", "path": "0003", "revision_id": 0, "numchild": 0, "publication_end_date": null, "soft_root": false, "changed_by": "ungleich", "reverse_id": null, "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": false, "changed_date": "2015-10-10T19:00:40.263Z", "application_namespace": "djangocms_blog", "depth": 1, "created_by": "ungleich"}}]	Blog	11	229
6268	6	6	json	[{"pk": 6, "model": "cms.placeholder", "fields": {"slot": "page_content", "default_width": null}}]	page_content	9	229
6269	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	230
6270	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus"}}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	230
6271	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}]	Digital Glarus - Startseite (digitalglarus, de)	16	230
6272	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	230
6273	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	230
6274	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	230
6275	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	230
6276	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	230
6277	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	230
6278	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	230
6279	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	230
6280	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	230
6281	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	230
6282	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:34:07.580Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	230
6283	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	230
6284	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	230
6286	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	230
6315	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	230
6287	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	230
6288	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	230
6289	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	230
6290	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	230
6291	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	230
6292	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	230
6293	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	230
6294	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	230
6295	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	230
6296	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	230
6297	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	230
6298	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	230
6299	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	230
6300	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	230
6301	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	230
6302	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	230
6303	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	230
6304	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	230
6305	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	230
6313	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	230
6314	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	230
6316	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	230
6317	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	231
6318	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:34:45.053Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	231
6319	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}]	Digital Glarus - Startseite (digitalglarus, de)	16	231
6320	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	231
6321	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus"}}]	Digital Glarus - Welcome (digitalglarus, en-us)	16	231
6322	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	231
6323	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	231
6324	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	231
6325	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	231
6326	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	231
6327	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	231
6328	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	231
6329	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	231
6330	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	231
6331	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	231
6332	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	231
6333	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	231
6334	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	231
6335	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	231
6336	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	231
6337	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	231
6338	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	231
6339	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	231
6340	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	231
6341	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	231
6342	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	231
6343	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	231
6344	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	231
6345	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	231
6346	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	231
6347	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	231
6348	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	231
6349	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	231
6350	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	231
6351	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	231
6352	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	231
6353	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	231
6354	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	231
6355	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	231
6356	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	231
6357	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	231
6358	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	231
6359	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	231
6360	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	231
6361	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	231
6362	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	231
6363	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	231
6364	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	231
6365	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	232
6366	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	232
6367	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}]	Digital Glarus - Startseite (digitalglarus, de)	16	232
6368	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	232
6369	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	232
6370	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	232
11007	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	399
6371	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	232
6410	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	232
6372	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	232
6373	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	232
6374	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	232
6375	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	232
6376	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	232
6377	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	232
6378	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:35:07.288Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	232
6379	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	232
6380	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	232
6381	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	232
6382	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	232
6383	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	232
6384	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	232
6409	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	232
6411	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	232
6450	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	233
6385	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	232
6386	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	232
6387	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	232
6388	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	232
6389	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	232
6390	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	232
6391	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	232
6392	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	232
6393	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	232
6394	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	232
6395	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	232
6396	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	232
6397	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	232
6398	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	232
6399	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	232
6400	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	232
6401	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	232
6402	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	232
6403	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	232
6404	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	232
6405	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	232
6406	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	232
6407	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	232
6408	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	232
6412	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	232
6413	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	233
6414	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:35:27.366Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	233
6415	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}]	Digital Glarus - Startseite (digitalglarus, de)	16	233
6416	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	233
6417	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	233
6418	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	233
6419	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	233
6420	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	233
6421	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	233
6422	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	233
6423	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	233
6424	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	233
6425	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	233
6426	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	233
6427	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	233
6428	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	233
6448	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	233
6429	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	233
6430	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	233
6431	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	233
6432	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	233
6433	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	233
6434	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	233
6435	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	233
6436	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	233
6437	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	233
6438	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	233
6439	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	233
6440	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	233
6441	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	233
6442	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	233
6443	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	233
6444	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	233
6445	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	233
6446	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	233
6447	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	233
6449	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	233
6451	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	233
6452	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	233
6453	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	233
6454	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	233
6455	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	233
6456	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	233
6457	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	233
6458	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	233
6459	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	233
6460	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	233
6461	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	234
6462	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	234
6463	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus"}}]	Digital Glarus - Startseite (digitalglarus, de)	16	234
6464	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	234
6465	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	234
6466	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	234
6467	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	234
6508	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	234
6509	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	235
6468	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	234
6469	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	234
6470	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	234
6471	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	234
6472	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	234
6473	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	234
6474	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:35:55.809Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	234
6475	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	234
6476	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	234
6477	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	234
6478	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	234
6479	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	234
6480	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	234
6505	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	234
6506	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	234
6507	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	234
6481	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	234
6482	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	234
6483	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	234
6484	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	234
6485	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	234
6486	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	234
6487	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	234
6488	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	234
6489	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	234
6490	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	234
6491	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	234
6492	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	234
6493	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	234
6494	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	234
6495	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	234
6496	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	234
6497	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	234
6498	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	234
6499	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	234
6500	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	234
6501	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	234
6502	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	234
6503	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	234
6504	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	234
6510	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	235
6511	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus-startseite", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus-startseite"}}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	235
6512	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	235
6513	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	235
6514	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	235
6515	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	235
6516	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	235
6517	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	235
6518	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	235
6519	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	235
6520	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	235
6521	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	235
6522	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:36:40.872Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	home	11	235
6539	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	235
6541	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	235
6542	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	235
6543	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	235
6523	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	235
6524	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	235
6525	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	235
6526	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	235
6527	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	235
6528	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	235
6529	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	235
6530	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	235
6531	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	235
6532	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	235
6533	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	235
6534	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	235
6535	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	235
6536	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	235
6537	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	235
6538	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	235
6540	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	235
6544	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	235
6545	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	235
6546	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	235
6547	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	235
6548	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	235
6549	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	235
6550	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	235
6551	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	235
6552	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	235
6553	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	235
6554	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	235
6555	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	235
6556	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	235
6557	34	34	json	[{"pk": 34, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}}]	digital_glarus_a_new_area_content	9	236
6558	5	5	json	[{"pk": 5, "model": "cms.page", "fields": {"languages": "en-us,de", "template": "cms/digitalglarus/index.html", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39], "application_urls": "", "xframe_options": 0, "limit_visibility_in_menu": null, "is_home": false, "publication_date": "2015-10-04T22:19:37.050Z", "login_required": false, "creation_date": "2015-10-04T16:53:42.171Z", "path": "0005", "revision_id": 0, "numchild": 3, "publication_end_date": null, "soft_root": true, "changed_by": "ungleich", "reverse_id": "digital-glarus-page", "navigation_extenders": "", "site": 1, "parent": null, "in_navigation": true, "changed_date": "2015-10-13T13:36:49.446Z", "application_namespace": null, "depth": 1, "created_by": "ungleich"}}]	Startseite	11	236
6559	6	6	json	[{"pk": 6, "model": "cms.title", "fields": {"redirect": "", "language": "de", "published": true, "slug": "digitalglarus-startseite", "page": 5, "menu_title": "Startseite", "has_url_overwrite": false, "title": "Digital Glarus - Startseite", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "path": "digitalglarus-startseite"}}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	236
6560	172	172	json	[{"pk": 172, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:32:07.260Z", "placeholder": 37, "language": "de", "path": "001A", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:29.358Z", "position": 0, "numchild": 0, "depth": 1}}]	172	10	236
6561	5	5	json	[{"pk": 5, "model": "cms.title", "fields": {"redirect": "", "language": "en-us", "published": true, "slug": "digitalglarus-home", "page": 5, "menu_title": "home", "has_url_overwrite": false, "title": "Digital Glarus - Welcome", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "path": "digitalglarus-home"}}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	236
6562	173	173	json	[{"pk": 173, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:36:07.616Z", "placeholder": 38, "language": "de", "path": "001B", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:36:16.255Z", "position": 0, "numchild": 0, "depth": 1}}]	173	10	236
6563	171	171	json	[{"pk": 171, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:39.702Z", "placeholder": 36, "language": "de", "path": "0019", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:31:46.273Z", "position": 0, "numchild": 0, "depth": 1}}]	171	10	236
6564	153	153	json	[{"pk": 153, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:13.254Z", "placeholder": 32, "language": "en-us", "path": "000S", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:23.181Z", "position": 0, "numchild": 0, "depth": 1}}]	153	10	236
6603	170	170	json	[{"pk": 170, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:31:20.090Z", "placeholder": 35, "language": "de", "path": "0018", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:08.100Z", "position": 0, "numchild": 0, "depth": 1}}]	170	10	236
11008	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	399
7722	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	268
10436	196	196	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-10-04T18:14:27.945Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001V"}, "pk": 196}]	196	10	384
6565	153	153	json	[{"pk": 153, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n"}}]	Digital Glarus, this...	35	236
6566	154	154	json	[{"pk": 154, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}}]	Build a tech...	35	236
6567	155	155	json	[{"pk": 155, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:59:46.792Z", "placeholder": 34, "language": "en-us", "path": "000U", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:59:52.991Z", "position": 0, "numchild": 0, "depth": 1}}]	155	10	236
6568	156	156	json	[{"pk": 156, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:03.379Z", "placeholder": 33, "language": "en-us", "path": "000V", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:11.377Z", "position": 0, "numchild": 0, "depth": 1}}]	156	10	236
6569	154	154	json	[{"pk": 154, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T16:56:41.534Z", "placeholder": 31, "language": "en-us", "path": "000T", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T16:56:47.550Z", "position": 0, "numchild": 0, "depth": 1}}]	154	10	236
6570	158	158	json	[{"pk": 158, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}}]	The current de-facto...	35	236
6571	159	159	json	[{"pk": 159, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}}]	Wherewe are	35	236
6572	160	160	json	[{"pk": 160, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:51.549Z", "placeholder": 38, "language": "en-us", "path": "000Z", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:59.197Z", "position": 0, "numchild": 0, "depth": 1}}]	160	10	236
6573	161	161	json	[{"pk": 161, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:02:21.812Z", "placeholder": 39, "language": "en-us", "path": "0010", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:02:27.073Z", "position": 0, "numchild": 0, "depth": 1}}]	161	10	236
6574	162	162	json	[{"pk": 162, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	236
6575	163	163	json	[{"pk": 163, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:11.318Z", "placeholder": 31, "language": "de", "path": "0012", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:40:11.985Z", "position": 0, "numchild": 0, "depth": 1}}]	163	10	236
6576	164	164	json	[{"pk": 164, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:22:41.094Z", "placeholder": 32, "language": "de", "path": "0013", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:22:47.375Z", "position": 0, "numchild": 0, "depth": 1}}]	164	10	236
6577	165	165	json	[{"pk": 165, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:05.607Z", "placeholder": 33, "language": "de", "path": "0014", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:39:51.912Z", "position": 0, "numchild": 0, "depth": 1}}]	165	10	236
6578	38	38	json	[{"pk": 38, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}}]	digital_glarus_where_we_are_content	9	236
6579	39	39	json	[{"pk": 39, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_legend", "default_width": null}}]	digital_glarus_legend	9	236
6580	156	156	json	[{"pk": 156, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}}]	a new area	35	236
6581	170	170	json	[{"pk": 170, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}}]	WIESO SOLLTE SICH...	35	236
6582	171	171	json	[{"pk": 171, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}}]	Das momentane de-facto...	35	236
6583	172	172	json	[{"pk": 172, "model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}}]	WO SIND WIR	35	236
6604	166	166	json	[{"pk": 166, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}}]	Die alten Fabriken,...	35	236
6584	173	173	json	[{"pk": 173, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}}]	Der erste grosse...	35	236
6585	157	157	json	[{"pk": 157, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}}]	Why would anyone...	35	236
6586	155	155	json	[{"pk": 155, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}}]	While you can...	35	236
6587	158	158	json	[{"pk": 158, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:04.021Z", "placeholder": 36, "language": "en-us", "path": "000X", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:09.865Z", "position": 0, "numchild": 0, "depth": 1}}]	158	10	236
6588	31	31	json	[{"pk": 31, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}}]	digital_glarus_build_a_tech_valley	9	236
6589	36	36	json	[{"pk": 36, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}}]	digital_glarus_why_be_interested_content	9	236
6590	35	35	json	[{"pk": 35, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}}]	digital_glarus_why_be_interested	9	236
6591	160	160	json	[{"pk": 160, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}}]	At the moment...	35	236
6592	161	161	json	[{"pk": 161, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}}]	The Swiss IT...	35	236
6593	162	162	json	[{"pk": 162, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:20:34.383Z", "placeholder": 39, "language": "de", "path": "0011", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:21:59.568Z", "position": 0, "numchild": 0, "depth": 1}}]	162	10	236
6594	163	163	json	[{"pk": 163, "model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}}]	DIE ERSCHAFFUNG EINES...	35	236
6595	164	164	json	[{"pk": 164, "model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}}]	Digital Glarus, so...	35	236
6596	159	159	json	[{"pk": 159, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:01:30.763Z", "placeholder": 37, "language": "en-us", "path": "000Y", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:01:35.916Z", "position": 0, "numchild": 0, "depth": 1}}]	159	10	236
6597	37	37	json	[{"pk": 37, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_where_we_are", "default_width": null}}]	digital_glarus_where_we_are	9	236
6598	165	165	json	[{"pk": 165, "model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}}]	EINE NEUE REGION.	35	236
6599	32	32	json	[{"pk": 32, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}}]	digital_glarus_build_a_tech_valley_content	9	236
6600	33	33	json	[{"pk": 33, "model": "cms.placeholder", "fields": {"slot": "digital_glarus_a_new_area", "default_width": null}}]	digital_glarus_a_new_area	9	236
6601	157	157	json	[{"pk": 157, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:00:37.507Z", "placeholder": 35, "language": "en-us", "path": "000W", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:00:43.059Z", "position": 0, "numchild": 0, "depth": 1}}]	157	10	236
6602	166	166	json	[{"pk": 166, "model": "cms.cmsplugin", "fields": {"parent": null, "creation_date": "2015-10-04T17:23:23.851Z", "placeholder": 34, "language": "de", "path": "0015", "plugin_type": "TextPlugin", "changed_date": "2015-10-04T17:23:28.835Z", "position": 0, "numchild": 0, "depth": 1}}]	166	10	236
7723	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:22:15.298Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	268
7724	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	268
7725	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	268
7726	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	268
7727	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	268
7728	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	268
7729	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	268
7730	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	268
7731	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	268
7732	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	268
7733	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	268
7734	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	268
7735	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	268
7736	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	268
7737	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	268
7738	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	268
7739	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	268
7740	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	268
7741	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	268
7742	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	268
7743	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	268
7744	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	268
7745	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	268
10435	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	384
10647	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	389
10437	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	384
10438	197	197	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}]	197	10	384
10439	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 198}]		35	384
10440	199	199	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}]	199	10	384
10441	189	189	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}]	189	10	384
10442	10	10	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	384
10443	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	384
10444	190	190	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}]	190	10	384
10445	9	9	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	384
10446	191	191	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}]	191	10	384
10447	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 189}]	GLARNER CO-WORKING |...	35	384
10448	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	384
10449	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	384
11009	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	399
11010	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	399
11119	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	404
7646	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	266
7647	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	266
7507	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	We found a...	35	262
7508	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	262
7509	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	262
7510	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	262
7511	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	262
7512	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	262
7513	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	262
7514	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:43:11.610Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	262
7515	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	262
10450	34	34	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 34}]	digital_glarus_a_new_area_content	9	385
10451	5	5	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 1, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": null, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:57:13.551Z", "languages": "en-us,de", "numchild": 4, "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "publication_date": "2015-10-04T22:19:37.050Z", "path": "0005", "soft_root": true, "template": "cms/digitalglarus/index.html", "xframe_options": 0, "creation_date": "2015-10-04T16:53:42.171Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39]}, "pk": 5}]	home	11	385
10452	6	6	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Startseite", "has_url_overwrite": false, "redirect": "", "menu_title": "Startseite", "path": "digitalglarus-startseite", "page": 5, "slug": "digitalglarus-startseite", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 6}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	385
10453	172	172	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "creation_date": "2015-10-04T17:32:07.260Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001A"}, "pk": 172}]	172	10	385
10454	5	5	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Welcome", "has_url_overwrite": false, "redirect": "", "menu_title": "home", "path": "digitalglarus-home", "page": 5, "slug": "digitalglarus-home", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "published": true}, "pk": 5}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	385
10455	173	173	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "creation_date": "2015-10-04T17:36:07.616Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001B"}, "pk": 173}]	173	10	385
10456	171	171	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "creation_date": "2015-10-04T17:31:39.702Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0019"}, "pk": 171}]	171	10	385
10457	153	153	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-13T14:02:19.803Z", "creation_date": "2015-10-04T16:56:13.254Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000S"}, "pk": 153}]	153	10	385
11011	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	400
7528	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	263
7529	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	263
7530	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	263
7531	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	263
7532	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	263
7533	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	263
7534	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	263
7535	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	263
7536	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	263
7537	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	263
7538	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	263
7539	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	263
7540	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	263
7541	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	263
7542	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	263
7543	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	263
7544	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	263
7545	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	263
7546	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	263
7547	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	263
7559	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T00:57:39.242Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	264
7560	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	264
7561	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	264
7548	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	We found a...	35	263
7549	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	263
7550	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	263
7551	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	263
7552	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	263
7553	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	263
7554	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	263
7555	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:43:11.610Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	263
7556	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	263
10458	153	153	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n\\n<p>\\u00a0</p>\\n\\n"}, "pk": 153}]	Digital Glarus, this...	35	385
10459	154	154	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "pk": 154}]	Build a tech...	35	385
10460	155	155	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "creation_date": "2015-10-04T16:59:46.792Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000U"}, "pk": 155}]	155	10	385
10461	156	156	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "creation_date": "2015-10-04T17:00:03.379Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000V"}, "pk": 156}]	156	10	385
10462	154	154	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "creation_date": "2015-10-04T16:56:41.534Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000T"}, "pk": 154}]	154	10	385
10463	158	158	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "pk": 158}]	The current de-facto...	35	385
10464	159	159	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "pk": 159}]	Wherewe are	35	385
10465	160	160	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "creation_date": "2015-10-04T17:01:51.549Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Z"}, "pk": 160}]	160	10	385
7648	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	266
7569	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	264
7570	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	264
7571	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	264
7572	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	264
7573	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	264
7574	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	264
7575	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	264
7576	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	264
7577	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	264
7578	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	264
7579	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	264
7580	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	264
7581	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	264
7582	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	264
7583	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	264
7584	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	264
7585	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	264
7586	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	264
7587	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	264
7588	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	264
7601	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	265
7602	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	265
7603	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	265
7604	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	265
7763	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	269
7589	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr>\\n</div>\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	264
7590	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	264
7591	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	264
7592	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	264
7593	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	264
7594	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	264
7595	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	264
7596	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:04:49.878Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	264
7597	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	264
10466	161	161	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T14:55:56.749Z", "creation_date": "2015-10-04T17:02:21.812Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0010"}, "pk": 161}]	161	10	385
10467	162	162	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 162}]	The Swiss IT...	35	385
10468	163	163	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "creation_date": "2015-10-04T17:22:11.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0012"}, "pk": 163}]	163	10	385
10469	164	164	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "creation_date": "2015-10-04T17:22:41.094Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0013"}, "pk": 164}]	164	10	385
10470	165	165	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "creation_date": "2015-10-04T17:23:05.607Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0014"}, "pk": 165}]	165	10	385
10471	38	38	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 38}]	digital_glarus_where_we_are_content	9	385
10472	39	39	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 39}]	digital_glarus_legend	9	385
10473	156	156	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "pk": 156}]	a new area	35	385
10474	170	170	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "pk": 170}]	WIESO SOLLTE SICH...	35	385
10475	171	171	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "pk": 171}]	Das momentane de-facto...	35	385
7649	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	266
10648	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	389
7610	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	265
7611	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	265
7612	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	265
7613	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	265
7614	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	265
7615	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	265
7616	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	265
7617	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	265
7618	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	265
7619	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	265
7620	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	265
7621	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	265
7622	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	265
7623	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	265
7624	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	265
7625	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	265
7626	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	265
7627	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	265
7628	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	265
7629	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	265
7641	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:21:17.776Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	266
7642	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	266
7643	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	266
7630	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden. \\n</p><p>It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF). We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF). \\n</p><p>\\nIf there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF). \\n</p>\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	265
7631	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	265
7632	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	265
7633	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	265
7634	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	265
7635	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	265
7636	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	265
7637	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:21:17.333Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	265
7638	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	265
10476	172	172	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}, "pk": 172}]	WO SIND WIR	35	385
10477	173	173	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "pk": 173}]	Der erste grosse...	35	385
10478	157	157	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "pk": 157}]	Why would anyone...	35	385
10479	155	155	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "pk": 155}]	While you can...	35	385
10480	158	158	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}]	158	10	385
10481	31	31	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}]	digital_glarus_build_a_tech_valley	9	385
10482	36	36	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}]	digital_glarus_why_be_interested_content	9	385
10483	35	35	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}]	digital_glarus_why_be_interested	9	385
11012	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	400
10649	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	389
7650	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	266
7651	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	266
7652	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	266
7653	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	266
7654	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	266
7655	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	266
7656	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	266
7657	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	266
7658	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	266
7659	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	266
7660	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	266
7661	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	266
7662	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	266
7663	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	266
7664	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	266
7665	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	266
7666	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	266
7667	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	266
7668	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	266
7669	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	266
7670	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	266
7803	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	270
7682	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:21:47.210Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	267
7671	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation. We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	266
7672	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	266
7673	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	266
7674	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	266
7675	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	266
7676	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	266
7677	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	266
7678	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:21:46.892Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	266
7679	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	266
10484	160	160	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "pk": 160}]	At the moment...	35	385
10485	161	161	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 161}]	GLARNER CO-WORKING |...	35	385
10486	162	162	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-10-04T17:21:59.568Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}]	162	10	385
10487	163	163	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	385
10488	164	164	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "pk": 164}]	Digital Glarus, so...	35	385
10489	159	159	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}]	159	10	385
10540	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	386
7683	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	267
7684	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	267
7685	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	267
7686	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	267
7687	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	267
7688	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	267
7689	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	267
7690	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	267
7691	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	267
7692	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<h4>\\nLASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!\\n</h4>\\n\\n<p>\\u00a0</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!\\n\\nEs ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen.\\n\\nWir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).\\n\\nWir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).\\n\\nFalls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	267
7693	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	267
7694	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	267
7695	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	267
7696	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	267
7697	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	267
7698	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T00:56:41.098Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	267
7699	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	267
7700	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	267
7701	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	267
7702	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	267
7703	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	267
7704	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	267
7705	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	267
7706	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	267
7707	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	267
7708	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	267
7709	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	267
7710	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	267
7711	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	267
7712	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	267
7713	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	267
7714	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	267
7715	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	267
7716	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	267
7717	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	267
7718	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	267
7719	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:22:00.638Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	267
7720	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	267
10490	37	37	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}]	digital_glarus_where_we_are	9	385
10491	165	165	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}, "pk": 165}]	EINE NEUE REGION.	35	385
10492	32	32	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	385
10493	33	33	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}]	digital_glarus_a_new_area	9	385
10494	157	157	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "creation_date": "2015-10-04T17:00:37.507Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000W"}, "pk": 157}]	157	10	385
10495	166	166	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "creation_date": "2015-10-04T17:23:23.851Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0015"}, "pk": 166}]	166	10	385
10496	170	170	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "creation_date": "2015-10-04T17:31:20.090Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0018"}, "pk": 170}]	170	10	385
7748	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	268
7749	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	268
7750	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	268
7751	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	268
7752	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	268
7753	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	268
7754	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	268
7755	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	268
7756	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	268
7757	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	268
7758	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	268
7759	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	268
7760	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:22:00.638Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	268
7761	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	268
10497	166	166	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "pk": 166}]	Die alten Fabriken,...	35	385
11013	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:41:08.309Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	400
7764	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:22:15.384Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	269
10541	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	386
7765	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	269
7766	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	269
7767	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	269
7768	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	269
7769	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	269
7770	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	269
7771	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	269
7772	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	269
7773	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	269
7774	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	269
7775	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	269
7776	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	269
7777	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	269
7778	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	269
7779	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	269
7780	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	269
7781	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	269
7782	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	269
7783	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	269
7784	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	269
7785	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	269
7786	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	269
7787	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	269
7788	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	269
7789	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	269
7790	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	269
10574	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	387
7791	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	269
7792	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	269
7793	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	269
7794	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	269
7795	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	269
7796	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	269
7797	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	269
7798	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	269
7799	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	269
7800	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	269
7801	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:22:00.638Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	269
7802	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	269
10498	179	179	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "creation_date": "2015-10-04T17:47:50.728Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001H"}, "pk": 179}]	179	10	386
10499	6	6	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:57:26.501Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:26.906Z", "path": "00050001", "soft_root": false, "template": "cms/digitalglarus/about.html", "xframe_options": 0, "creation_date": "2015-10-04T17:45:05.381Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72]}, "pk": 6}]	about	11	386
10500	7	7	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - About", "has_url_overwrite": false, "redirect": "", "menu_title": "about", "path": "digitalglarus-home/digital-glarus-about", "page": 6, "slug": "digital-glarus-about", "page_title": "Digital Glarus - About", "creation_date": "2015-10-04T17:45:05.433Z", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": true}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	386
7805	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:23:20.964Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	Crowdfunding	11	270
7806	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	270
7807	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	270
7808	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	270
7809	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	270
7810	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	270
7811	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	270
7812	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	270
7813	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	270
7814	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	270
7815	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	270
7816	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	270
7817	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	270
7818	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	270
7819	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	270
7820	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	270
7821	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	270
7822	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	270
7823	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	270
7824	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	270
7825	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	270
7826	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	270
7827	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	270
7828	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	270
7829	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	270
7830	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	270
7831	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	270
7832	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	270
7833	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	270
7834	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	270
7835	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	270
7836	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	270
7837	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	270
7838	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	270
7839	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	270
7840	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	270
7841	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	270
7842	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:22:00.638Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	270
7843	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	270
7844	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	271
7845	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	271
7846	8	8	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-10-04T18:54:49.173Z", "changed_date": "2015-11-15T01:23:21.052Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-10-04T23:27:52.894Z", "is_home": false, "navigation_extenders": "", "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050003", "application_urls": "", "changed_by": "ungleich", "application_namespace": null, "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171], "reverse_id": null}, "pk": 8}]	crowdfunding	11	271
7847	201	201	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0020", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 201}]	201	10	271
7848	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	271
7849	203	203	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0022", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 203}]	203	10	271
7850	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 204}]	The Swiss IT...	35	271
10609	170	170	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "pk": 170}]	WIESO SOLLTE SICH...	35	388
7851	205	205	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0024", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:49:46.248Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 205}]	205	10	271
7852	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	271
7853	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 205}]	The Swiss IT...	35	271
7854	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	271
7855	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	271
7856	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	271
7857	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	271
7858	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	271
7859	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	271
7860	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	271
7861	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	271
7862	461	461	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0075", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 461}]	461	10	271
7863	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	271
7864	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	271
7865	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	271
7866	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	271
7867	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	271
7868	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	271
7869	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	271
7870	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	271
7871	207	207	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 95, "path": "0026", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 207}]	207	10	271
7872	209	209	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 97, "path": "0028", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 209}]	209	10	271
7873	11	11	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T18:54:49.222Z", "menu_title": "crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": "", "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "en-us", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	271
7874	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	271
7875	208	208	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0027", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 208}]	208	10	271
11134	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	404
7876	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\"><hr></div>\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 460}]	LET'S RENOVATE THE...	35	271
7877	12	12	json	[{"model": "cms.title", "fields": {"creation_date": "2015-10-04T19:49:28.161Z", "menu_title": "Crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "published": true, "redirect": null, "title": "Digital Glarus - Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "meta_description": "Digital Glarus - Crowdfunding", "language": "de", "slug": "digital-glarus-crowdfunding", "has_url_overwrite": false}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	271
7878	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	271
7879	206	206	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "0025", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 206}]	206	10	271
7880	200	200	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 94, "path": "001Z", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 200}]	200	10	271
7881	204	204	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 93, "path": "0023", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:35:33.087Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 204}]	204	10	271
7882	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	271
7883	460	460	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 171, "path": "0074", "position": 0, "numchild": 0, "changed_date": "2015-11-15T01:24:09.332Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 460}]	460	10	271
7884	202	202	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 96, "path": "0021", "position": 0, "numchild": 0, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 202}]	202	10	271
10501	8	8	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - \\u00dcber uns", "has_url_overwrite": false, "redirect": null, "menu_title": "\\u00dcber uns", "path": "digitalglarus-startseite/digital-glarus-uber-uns", "page": 6, "slug": "digital-glarus-uber-uns", "page_title": "Digital Glarus - \\u00dcber uns", "creation_date": "2015-10-04T17:54:39.076Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	386
10502	188	188	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "creation_date": "2015-10-04T17:56:28.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Q"}, "pk": 188}]	188	10	386
10503	174	174	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T14:56:18.192Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001C"}, "pk": 174}]	174	10	386
10504	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	386
10505	176	176	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "creation_date": "2015-10-04T17:46:40.251Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001E"}, "pk": 176}]	176	10	386
10506	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	386
10507	177	177	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "creation_date": "2015-10-04T17:47:04.566Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001F"}, "pk": 177}]	177	10	386
10508	178	178	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "creation_date": "2015-10-04T17:47:33.925Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001G"}, "pk": 178}]	178	10	386
10509	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 174}]	GLARNER CO-WORKING |...	35	386
10510	175	175	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "creation_date": "2015-10-04T17:46:20.372Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001D"}, "pk": 175}]	175	10	386
10539	182	182	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "creation_date": "2015-10-04T17:52:38.665Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001K"}, "pk": 182}]	182	10	386
10511	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	386
10512	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	386
10513	178	178	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>BEAUTIFUL <small> landscape</small></h3>\\n"}, "pk": 178}]	BEAUTIFUL landscape	35	386
10514	179	179	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 179}]	AFFORDABLE price	35	386
10515	180	180	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "creation_date": "2015-10-04T17:48:04.828Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001I"}, "pk": 180}]	180	10	386
10516	181	181	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-10-04T17:52:10.927Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001J"}, "pk": 181}]	181	10	386
10517	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	386
10518	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	386
10519	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	386
10520	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	386
10521	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	386
10522	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	386
10523	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	386
10524	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	386
10525	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	386
10526	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>\\n"}, "pk": 181}]	The Swiss IT...	35	386
10527	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	386
10528	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	386
10529	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	386
10530	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	386
10531	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	386
10532	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	386
10533	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	386
10534	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	386
10535	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	386
10536	183	183	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "creation_date": "2015-10-04T17:52:54.182Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001L"}, "pk": 183}]	183	10	386
10537	184	184	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "creation_date": "2015-10-04T17:55:08.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001M"}, "pk": 184}]	184	10	386
10538	185	185	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "creation_date": "2015-10-04T17:55:24.521Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001N"}, "pk": 185}]	185	10	386
10542	187	187	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "creation_date": "2015-10-04T17:56:10.917Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001P"}, "pk": 187}]	187	10	386
10543	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	386
11014	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	400
11015	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	400
11016	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	400
11017	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (jazz, en-us)	16	400
11018	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	400
11019	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	400
11020	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	400
11021	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	400
11022	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	400
11023	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	400
11024	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	400
11025	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	400
11026	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	400
11027	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	400
11028	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	400
11029	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	400
11030	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	400
11031	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	400
11032	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	400
10544	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	387
10545	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	387
10546	8	8	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:55:34.826Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:52.894Z", "path": "00050003", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-10-04T18:54:49.173Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171]}, "pk": 8}]	crowdfunding	11	387
10547	201	201	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0020"}, "pk": 201}]	201	10	387
10548	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	387
10549	203	203	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0022"}, "pk": 203}]	203	10	387
10550	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 204}]	GLARNER CO-WORKING |...	35	387
10551	205	205	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-11-29T18:45:25.172Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0024"}, "pk": 205}]	205	10	387
10552	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	387
10553	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 205}]	GLARNER CO-WORKING |...	35	387
10554	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	387
10555	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	387
10556	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	387
10557	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	387
10558	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	387
10559	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	387
10560	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	387
10561	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	387
10562	461	461	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0075"}, "pk": 461}]	461	10	387
10563	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	387
10564	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	387
10565	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	387
10566	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	387
10567	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	387
10568	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	387
10569	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	387
10570	200	200	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "why <strong>glarus?</strong>\\n"}, "pk": 200}]	why glarus?	35	387
10571	207	207	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0026"}, "pk": 207}]	207	10	387
10572	209	209	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0028"}, "pk": 209}]	209	10	387
10573	11	11	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": true, "redirect": "", "menu_title": "crowdfunding", "path": "digitalglarus", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T18:54:49.222Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	387
10575	208	208	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0027"}, "pk": 208}]	208	10	387
10576	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\">\\n<iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n</div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	387
10577	12	12	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": false, "redirect": null, "menu_title": "Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T19:49:28.161Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	387
10578	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	387
10579	206	206	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0025"}, "pk": 206}]	206	10	387
10580	200	200	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001Z"}, "pk": 200}]	200	10	387
10581	204	204	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-11-29T14:55:24.411Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0023"}, "pk": 204}]	204	10	387
10582	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	387
10583	460	460	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-21T16:36:27.273Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0074"}, "pk": 460}]	460	10	387
10584	202	202	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0021"}, "pk": 202}]	202	10	387
11033	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	400
11034	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	400
11120	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	404
11121	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	404
11122	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	404
10585	34	34	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 34}]	digital_glarus_a_new_area_content	9	388
10586	5	5	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 1, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": null, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:57:13.693Z", "languages": "en-us,de", "numchild": 4, "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "publication_date": "2015-10-04T22:19:37.050Z", "path": "0005", "soft_root": true, "template": "cms/digitalglarus/index.html", "xframe_options": 0, "creation_date": "2015-10-04T16:53:42.171Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39]}, "pk": 5}]	home	11	388
10587	6	6	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Startseite", "has_url_overwrite": false, "redirect": "", "menu_title": "Startseite", "path": "digitalglarus-startseite", "page": 5, "slug": "digitalglarus-startseite", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 6}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	388
10588	172	172	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "creation_date": "2015-10-04T17:32:07.260Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001A"}, "pk": 172}]	172	10	388
10589	5	5	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Welcome", "has_url_overwrite": false, "redirect": "", "menu_title": "home", "path": "digitalglarus-home", "page": 5, "slug": "digitalglarus-home", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "published": true}, "pk": 5}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	388
10590	173	173	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "creation_date": "2015-10-04T17:36:07.616Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001B"}, "pk": 173}]	173	10	388
10591	171	171	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "creation_date": "2015-10-04T17:31:39.702Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0019"}, "pk": 171}]	171	10	388
10592	153	153	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-13T14:02:19.803Z", "creation_date": "2015-10-04T16:56:13.254Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000S"}, "pk": 153}]	153	10	388
10593	153	153	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n\\n<p>\\u00a0</p>\\n\\n"}, "pk": 153}]	Digital Glarus, this...	35	388
10594	154	154	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "pk": 154}]	Build a tech...	35	388
10595	155	155	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "creation_date": "2015-10-04T16:59:46.792Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000U"}, "pk": 155}]	155	10	388
10596	156	156	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "creation_date": "2015-10-04T17:00:03.379Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000V"}, "pk": 156}]	156	10	388
10597	154	154	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "creation_date": "2015-10-04T16:56:41.534Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000T"}, "pk": 154}]	154	10	388
11123	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	404
10598	158	158	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "pk": 158}]	The current de-facto...	35	388
10599	159	159	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "pk": 159}]	Wherewe are	35	388
10600	160	160	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "creation_date": "2015-10-04T17:01:51.549Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Z"}, "pk": 160}]	160	10	388
10601	161	161	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T14:55:56.749Z", "creation_date": "2015-10-04T17:02:21.812Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0010"}, "pk": 161}]	161	10	388
10602	162	162	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 162}]	GLARNER CO-WORKING |...	35	388
10603	163	163	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "creation_date": "2015-10-04T17:22:11.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0012"}, "pk": 163}]	163	10	388
10604	164	164	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "creation_date": "2015-10-04T17:22:41.094Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0013"}, "pk": 164}]	164	10	388
10605	165	165	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "creation_date": "2015-10-04T17:23:05.607Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0014"}, "pk": 165}]	165	10	388
10606	38	38	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 38}]	digital_glarus_where_we_are_content	9	388
10607	39	39	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 39}]	digital_glarus_legend	9	388
10608	156	156	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "pk": 156}]	a new area	35	388
10610	171	171	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "pk": 171}]	Das momentane de-facto...	35	388
10611	172	172	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}, "pk": 172}]	WO SIND WIR	35	388
10612	173	173	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "pk": 173}]	Der erste grosse...	35	388
10613	157	157	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "pk": 157}]	Why would anyone...	35	388
10614	155	155	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "pk": 155}]	While you can...	35	388
10615	158	158	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}]	158	10	388
10616	31	31	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}]	digital_glarus_build_a_tech_valley	9	388
10617	36	36	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}]	digital_glarus_why_be_interested_content	9	388
10618	35	35	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}]	digital_glarus_why_be_interested	9	388
11124	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	404
11125	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	404
11126	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	404
10619	160	160	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "pk": 160}]	At the moment...	35	388
10620	161	161	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 161}]	GLARNER CO-WORKING |...	35	388
10621	162	162	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T18:45:41.198Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}]	162	10	388
10622	163	163	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	388
11135	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	404
11136	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	404
10623	164	164	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "pk": 164}]	Digital Glarus, so...	35	388
10624	159	159	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}]	159	10	388
10625	37	37	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}]	digital_glarus_where_we_are	9	388
10626	165	165	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}, "pk": 165}]	EINE NEUE REGION.	35	388
10627	32	32	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	388
10628	33	33	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}]	digital_glarus_a_new_area	9	388
10629	157	157	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "creation_date": "2015-10-04T17:00:37.507Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000W"}, "pk": 157}]	157	10	388
10630	166	166	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "creation_date": "2015-10-04T17:23:23.851Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0015"}, "pk": 166}]	166	10	388
10631	170	170	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "creation_date": "2015-10-04T17:31:20.090Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0018"}, "pk": 170}]	170	10	388
10632	166	166	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "pk": 166}]	Die alten Fabriken,...	35	388
11035	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	400
11036	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	400
11127	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	404
11128	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	404
11129	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	404
11130	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	404
11131	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	404
11132	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	404
11133	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	404
11139	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	404
10633	179	179	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "creation_date": "2015-10-04T17:47:50.728Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001H"}, "pk": 179}]	179	10	389
10634	6	6	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:57:26.596Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:26.906Z", "path": "00050001", "soft_root": false, "template": "cms/digitalglarus/about.html", "xframe_options": 0, "creation_date": "2015-10-04T17:45:05.381Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72]}, "pk": 6}]	about	11	389
10635	7	7	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - About", "has_url_overwrite": false, "redirect": "", "menu_title": "about", "path": "digitalglarus-home/digital-glarus-about", "page": 6, "slug": "digital-glarus-about", "page_title": "Digital Glarus - About", "creation_date": "2015-10-04T17:45:05.433Z", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": true}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	389
10636	8	8	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - \\u00dcber uns", "has_url_overwrite": false, "redirect": null, "menu_title": "\\u00dcber uns", "path": "digitalglarus-startseite/digital-glarus-uber-uns", "page": 6, "slug": "digital-glarus-uber-uns", "page_title": "Digital Glarus - \\u00dcber uns", "creation_date": "2015-10-04T17:54:39.076Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	389
10637	188	188	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "creation_date": "2015-10-04T17:56:28.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Q"}, "pk": 188}]	188	10	389
10638	174	174	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T14:56:18.192Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001C"}, "pk": 174}]	174	10	389
10639	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	389
10640	176	176	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "creation_date": "2015-10-04T17:46:40.251Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001E"}, "pk": 176}]	176	10	389
10641	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	389
10642	177	177	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "creation_date": "2015-10-04T17:47:04.566Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001F"}, "pk": 177}]	177	10	389
10643	178	178	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "creation_date": "2015-10-04T17:47:33.925Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001G"}, "pk": 178}]	178	10	389
10644	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 174}]	GLARNER CO-WORKING |...	35	389
10645	175	175	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "creation_date": "2015-10-04T17:46:20.372Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001D"}, "pk": 175}]	175	10	389
10646	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	389
10650	180	180	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:48:12.223Z", "creation_date": "2015-10-04T17:48:04.828Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001I"}, "pk": 180}]	180	10	389
10651	181	181	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T18:47:28.621Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001J"}, "pk": 181}]	181	10	389
10652	182	182	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO WIR?\\n"}, "pk": 182}]	WIESO WIR?	35	389
11037	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	401
11038	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	401
10653	183	183	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Wir, die ungleich GmbH, wurden im Jahre 2013 in der Schweiz gegr\\u00fcndet \\u2013 obwohl, unsere erste Verk\\u00f6rperung lag in Deutschland im Jahre 2000 zur\\u00fcck. Wir haben ein grosses Wissen in der Technologie Branche und haben umfangreiche Netzwerke mit kleinen bis mittleren Technik-Unternehmungen der Schweiz, weil wir auch eine davon sind. Wir arbeiteten mit diesen kleinen bis mittleren IT-Firmen in Co-Working Spaces; Technik-K\\u00f6pfchen und flexibel, Technik-Unternehmen haben eine offene Kultur in der Arbeit, und sehr oft erfahren sie schwierige Situationen, weil sie ihre Mitarbeiter so kreativ wie m\\u00f6glich arbeiten lassen wollen. Wir kennen und teilen die Bed\\u00fcrfnisse und Probleme. Aus diesem Grund kamen wir auf eine eigene L\\u00f6sung, in dem wir einen attraktiven Arbeitsplatz f\\u00fcr Technologie-Unternehmen in der Schweiz fanden und zu Verf\\u00fcgung stellen wollen.</p>\\n"}, "pk": 183}]	Wir, die ungleich...	35	389
10654	184	184	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p style=\\"text-align: center;\\">WIESO GLARUS?</p>\\n"}, "pk": 184}]	WIESO GLARUS?	35	389
10655	185	185	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>WUNDERSCH\\u00d6NE <small>LANDSCHAFT</small></h3>\\n"}, "pk": 185}]	WUNDERSCHÖNE LANDSCHAFT	35	389
10656	58	58	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 58}]	digital_glarus_build_a_tech_valley	9	389
10657	59	59	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 59}]	digital_glarus_build_a_tech_valley_content	9	389
10658	60	60	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 60}]	digital_glarus_a_new_area	9	389
10659	61	61	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 61}]	digital_glarus_a_new_area_content	9	389
10660	62	62	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 62}]	digital_glarus_why_be_interested	9	389
10661	181	181	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 181}]	GLARNER CO-WORKING |...	35	389
10662	64	64	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 64}]	digital_glarus_where_we_are	9	389
10663	65	65	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 65}]	digital_glarus_where_we_are_content	9	389
10664	66	66	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 66}]	digital_glarus_legend	9	389
10665	67	67	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 67}]	digitalglarus_why_us	9	389
10666	68	68	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us_content"}, "pk": 68}]	digitalglarus_why_us_content	9	389
10667	69	69	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 69}]	digitalglarus_why_glarus	9	389
10668	70	70	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 70}]	digitalglarus_why_glarus_beautiful_landscape	9	389
10669	71	71	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 71}]	digitalglarus_why_glarus_affordable_price	9	389
10670	72	72	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 72}]	digitalglarus_why_glarus_direct_connection_zurich	9	389
10671	183	183	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:53:03.407Z", "creation_date": "2015-10-04T17:52:54.182Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001L"}, "pk": 183}]	183	10	389
10672	184	184	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T18:00:01.920Z", "creation_date": "2015-10-04T17:55:08.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001M"}, "pk": 184}]	184	10	389
10673	185	185	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:58:54.653Z", "creation_date": "2015-10-04T17:55:24.521Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001N"}, "pk": 185}]	185	10	389
10674	182	182	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:57:08.089Z", "creation_date": "2015-10-04T17:52:38.665Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001K"}, "pk": 182}]	182	10	389
10675	187	187	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE VERBINDUNGEN <small>NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 187}]	DIREKTE VERBINDUNGEN NACH...	35	389
10676	188	188	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 188}]	PREISWERT	35	389
11054	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	401
10677	187	187	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 72, "changed_date": "2015-10-04T17:59:41.183Z", "creation_date": "2015-10-04T17:56:10.917Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001P"}, "pk": 187}]	187	10	389
10678	63	63	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 63}]	digital_glarus_why_be_interested_content	9	389
11039	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:41:38.460Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	401
10679	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	390
10680	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 196}]	GLARNER CO-WORKING |...	35	390
10681	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	390
10682	198	198	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "creation_date": "2015-10-04T18:16:04.529Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001X"}, "pk": 198}]	198	10	390
10683	7	7	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T14:56:35.891Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:38.405Z", "path": "00050002", "soft_root": false, "template": "cms/digitalglarus/contact.html", "xframe_options": 0, "creation_date": "2015-10-04T18:05:38.150Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]}, "pk": 7}]	contact	11	390
10684	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	390
10685	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	390
10686	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	390
10687	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	390
10688	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	390
10689	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	390
10690	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	390
10691	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	390
10692	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	390
10693	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	390
10694	195	195	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "creation_date": "2015-10-04T18:10:28.015Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001U"}, "pk": 195}]	195	10	390
10695	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	390
10696	196	196	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T18:47:44.788Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001V"}, "pk": 196}]	196	10	390
10697	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	390
10698	197	197	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}]	197	10	390
10699	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 198}]		35	390
11055	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	401
10700	199	199	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}]	199	10	390
10701	189	189	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}]	189	10	390
10702	10	10	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	390
10703	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	390
10704	190	190	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}]	190	10	390
11040	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	401
10705	9	9	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	390
10706	191	191	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}]	191	10	390
10707	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 189}]	GLARNER CO-WORKING |...	35	390
10708	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	390
10709	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	390
11041	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	401
11042	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	401
11043	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (jazz, en-us)	16	401
11044	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	401
11045	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (jazz, de)	16	401
11046	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	401
11047	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	401
11048	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	401
11049	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	401
11050	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	401
11051	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	401
11052	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	401
11053	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	401
11056	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	401
10710	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	391
10711	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 196}]	GLARNER CO-WORKING |...	35	391
10712	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	391
10713	198	198	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "creation_date": "2015-10-04T18:16:04.529Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001X"}, "pk": 198}]	198	10	391
10714	7	7	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:47:55.186Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:38.405Z", "path": "00050002", "soft_root": false, "template": "cms/digitalglarus/contact.html", "xframe_options": 0, "creation_date": "2015-10-04T18:05:38.150Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]}, "pk": 7}]	Kontakt	11	391
10715	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	391
10716	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	391
10717	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	391
10718	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	391
10719	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	391
10720	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	391
10721	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	391
10722	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	391
10723	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	391
10724	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	391
10725	195	195	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "creation_date": "2015-10-04T18:10:28.015Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001U"}, "pk": 195}]	195	10	391
10726	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	391
10727	196	196	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T18:47:44.788Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001V"}, "pk": 196}]	196	10	391
10728	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	391
10729	197	197	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}]	197	10	391
10730	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 198}]		35	391
10731	199	199	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}]	199	10	391
10732	189	189	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}]	189	10	391
10733	10	10	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	391
10734	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	391
10735	190	190	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}]	190	10	391
10736	9	9	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	391
10737	191	191	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}]	191	10	391
10738	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 189}]	GLARNER CO-WORKING |...	35	391
10739	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	391
10740	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	391
11057	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	401
11058	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	401
11059	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	401
11060	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	401
11061	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	401
11062	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	401
11140	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	404
11165	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	405
10741	34	34	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 34}]	digital_glarus_a_new_area_content	9	392
10742	5	5	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 1, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": null, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:48:17.932Z", "languages": "en-us,de", "numchild": 4, "site": 1, "publication_end_date": null, "reverse_id": "digital-glarus-page", "publication_date": "2015-10-04T22:19:37.050Z", "path": "0005", "soft_root": true, "template": "cms/digitalglarus/index.html", "xframe_options": 0, "creation_date": "2015-10-04T16:53:42.171Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [31, 32, 33, 34, 35, 36, 37, 38, 39]}, "pk": 5}]	Startseite	11	392
10743	6	6	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Startseite", "has_url_overwrite": false, "redirect": "", "menu_title": "Startseite", "path": "digitalglarus-startseite", "page": 5, "slug": "digitalglarus-startseite", "page_title": "Digital Glarus - Startseite", "creation_date": "2015-10-04T17:20:12.951Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 6}]	Digital Glarus - Startseite (digitalglarus-startseite, de)	16	392
10744	172	172	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:39:29.358Z", "creation_date": "2015-10-04T17:32:07.260Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001A"}, "pk": 172}]	172	10	392
10745	5	5	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Welcome", "has_url_overwrite": false, "redirect": "", "menu_title": "home", "path": "digitalglarus-home", "page": 5, "slug": "digitalglarus-home", "page_title": "Digital Glarus", "creation_date": "2015-10-04T16:53:42.348Z", "meta_description": "BUILD A TECH VALLEY IN THE HEART OF SWITZERLAND", "published": true}, "pk": 5}]	Digital Glarus - Welcome (digitalglarus-home, en-us)	16	392
10746	173	173	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:36:16.255Z", "creation_date": "2015-10-04T17:36:07.616Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001B"}, "pk": 173}]	173	10	392
10747	171	171	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:31:46.273Z", "creation_date": "2015-10-04T17:31:39.702Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0019"}, "pk": 171}]	171	10	392
10748	153	153	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-13T14:02:19.803Z", "creation_date": "2015-10-04T16:56:13.254Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000S"}, "pk": 153}]	153	10	392
10749	153	153	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, this is how we call the new home for high tech companies. Located south of Zurich, it has unique features you can not find anywhere else in Switzerland.</p>\\n\\n<p>The combination of beautiful landscape, recreational areas as well as having high speed Internet connections and huge\\u00a0variety of great food offers forms what we call \\"Digital Glarus\\".</p>\\n\\n<p>The valley also known as \\"Glarnerland\\" has many gorgeous, eye-catching buildings from former industrial area.</p>\\n\\n<p>In fact, Glarnerland may be the valley to contain most well preserved antique houses equipped with high quality\\u00a0old age furniture (those you always look at in expensive stores, but never buy - this is how people live here).</p>\\n\\n<p>\\u00a0</p>\\n\\n"}, "pk": 153}]	Digital Glarus, this...	35	392
10750	154	154	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Build a tech valley <strong>in the heart of switzerland</strong></h2>\\n"}, "pk": 154}]	Build a tech...	35	392
10751	155	155	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T16:59:52.991Z", "creation_date": "2015-10-04T16:59:46.792Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000U"}, "pk": 155}]	155	10	392
10752	156	156	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:00:11.377Z", "creation_date": "2015-10-04T17:00:03.379Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000V"}, "pk": 156}]	156	10	392
10753	154	154	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T16:56:47.550Z", "creation_date": "2015-10-04T16:56:41.534Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000T"}, "pk": 154}]	154	10	392
10754	158	158	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>The current de-facto tech centre of Switzerland, Zurich, is overpopulated with an average of less than 0.1% free apartments.Crowded, expensive and loud, to be exact.. Although the density of population is helpful for businesses in finding customers, most tech companies are making their business on the Internet and are flexible in change of location. Why not start from beautiful, empty buildings so many available in Glarus? We are aware of the fact that some investment of time, money and passion will be required to be actually attractive for tech companies to come here. Nonetheless, the overall cost required will be significantly lower than staying in an already overcrowded city.</p>\\n"}, "pk": 158}]	The current de-facto...	35	392
10755	159	159	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><strong>Where</strong>we are</h2>\\n"}, "pk": 159}]	Wherewe are	35	392
10756	160	160	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 38, "changed_date": "2015-10-04T17:01:59.197Z", "creation_date": "2015-10-04T17:01:51.549Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Z"}, "pk": 160}]	160	10	392
10757	161	161	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T14:55:56.749Z", "creation_date": "2015-10-04T17:02:21.812Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0010"}, "pk": 161}]	161	10	392
10758	162	162	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 162}]	GLARNER CO-WORKING |...	35	392
10759	163	163	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 31, "changed_date": "2015-10-04T17:40:11.985Z", "creation_date": "2015-10-04T17:22:11.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0012"}, "pk": 163}]	163	10	392
10820	203	203	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 203}]	direct connection to...	35	394
10760	164	164	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 32, "changed_date": "2015-10-04T17:22:47.375Z", "creation_date": "2015-10-04T17:22:41.094Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0013"}, "pk": 164}]	164	10	392
10761	165	165	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 33, "changed_date": "2015-10-04T17:39:51.912Z", "creation_date": "2015-10-04T17:23:05.607Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0014"}, "pk": 165}]	165	10	392
10762	38	38	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 38}]	digital_glarus_where_we_are_content	9	392
10763	39	39	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 39}]	digital_glarus_legend	9	392
10764	156	156	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">a new <strong>area</strong></h2>\\n"}, "pk": 156}]	a new area	35	392
10765	170	170	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WIESO SOLLTE SICH JEMAND F\\u00dcR DAS INTERESSIEREN?\\n"}, "pk": 170}]	WIESO SOLLTE SICH...	35	392
10766	171	171	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Das momentane de-facto Technik-Zentrum der Schweiz, Z\\u00fcrich, ist, mit einem Durchschnitt von weniger als 0.1% freien Wohnungen, \\u00fcberbev\\u00f6lkert.<br>\\nUm es genau zu nehmen \\u00fcberf\\u00fcllt, teuer und laut\\u2026 Obwohl die hohe Dichte der Personen f\\u00fcr Firmen praktisch ist um neue Mitarbeiter zu finden, sind die meisten Technik-Unternehmen arbeiten im Internet und sind flexibel im Ortswechsel.<br>\\nWieso nicht in sch\\u00f6nen Geb\\u00e4uden in Glarus neu beginnen?<br>\\nWir wissen, dass Zeit, Geld und Leidenschaft ben\\u00f6tigt wird um reizend f\\u00fcr Technik-Unternehmen zu werden, damit diese hier her kommen.<br>\\nNichtsdestotrotz werden die Gesamtkosten extrem sinken gegen\\u00fcber dem Verbleib in einer \\u00fcberf\\u00fcllten Stadt.</p>\\n"}, "pk": 171}]	Das momentane de-facto...	35	392
10767	172	172	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "WO SIND WIR\\n"}, "pk": 172}]	WO SIND WIR	35	392
10768	173	173	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Der erste grosse Schritt, welcher wir (ungleich) gemacht haben ist der Kauf eines charmanten \\u00e4lteren Hauses in Schwanden, Glarus. Das wird unser Prototyp um das Glarnerland besser kennenzulernen und um um Talente herzulocken.<br>\\nWir sind an der Er\\u00f6ffnung der \\u00d6rtlichkeit f\\u00fcr Technik-Unternehmungen, als Co-Working Space, dran. Wir arbeiten eng mit lokalen \\u00c4mter und Unterst\\u00fctzer zusammen. Es ist wichtig, dass eine gewisse Infrastruktur und fr\\u00fche Anwender aufgebaut werden. Wir wollen dass Glarus und die IT-Gemeinschaft der Schweiz auf diesen Zug aufspringen, f\\u00fcr das grossartige Abenteuer im sch\\u00f6nen Tal von Glarus.</p>\\n\\n<p>Bist du interessiert?</p>\\n\\n<p>Kontaktiere uns:</p>\\n\\n<p><a class=\\"email\\" href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a> // +41 (0) 44 534 66 22</p>\\n"}, "pk": 173}]	Der erste grosse...	35	392
10769	157	157	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">Why would anyone be <strong>interested</strong> in it?</h2>\\n"}, "pk": 157}]	Why would anyone...	35	392
10770	155	155	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>While you can imagine that the old factories, many of them being weaving mills, are not running anymore, their heritage suits\\u00a0exactly what the tech society of Switzerland requires: Great\\u00a0and affordable place for computer scientists.</p>\\n\\n<p>We are building the new tech centre of Switzerland by converting old, abandoned buidings into attractive co-working spaces.</p>\\n\\n<p>But what is attractive to a computer scientist? Pizza, Coke and fast Internet? The latter is a still true, though computer scientists in\\u00a0Switzerland are more orientated on living healthy, which is exactly\\u00a0what Glarnerland can provide.</p>\\n"}, "pk": 155}]	While you can...	35	392
10771	158	158	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 36, "changed_date": "2015-10-04T17:01:09.865Z", "creation_date": "2015-10-04T17:01:04.021Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000X"}, "pk": 158}]	158	10	392
10772	31	31	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 31}]	digital_glarus_build_a_tech_valley	9	392
10773	36	36	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 36}]	digital_glarus_why_be_interested_content	9	392
10774	35	35	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 35}]	digital_glarus_why_be_interested	9	392
10775	160	160	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>At the moment we at <a href=\\"http://www.ungleich.ch\\"> ungleich</a> are talking to authorities and\\u00a0 sponsors. It is crucial to build up some basic infrastructure and\\u00a0 attract early adopters. Building a community (<a href=\\"http://www.meetup.ch\\">meetup</a> alike)\\u00a0 can be helpful, but competitive pricing as well as superior infrastructure are crucial for success.</p>\\n\\n<p>The great first step we (<a href=\\"http://www.ungleich.ch\\">ungleich</a>) took is purchasing a charming old house in Schwanden, Glarus. This is our prototype for reviving Glarus and bringing in talents here. We plan to open this place up for Tech companies as a co-working space. We are working tightly with local authorities and supporters. It is crucial to build up some basic infrastructure, and also welcome early adopters. We want Glarus and the IT communities in Switzerland to get on this train, to a great journey we plan through the beautiful valley of Glarus.</p>\\n\\n<p>Have you become interested in the project?</p>\\n\\n<p>Contact us at<br>\\n<br>\\n<a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch </a> // <a value=\\"+41445346622\\">+41 (0) 44 534 66 22</a></p>\\n\\n<p>\\u00a0</p>\\n"}, "pk": 160}]	At the moment...	35	392
10776	161	161	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 161}]	GLARNER CO-WORKING |...	35	392
10777	162	162	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 39, "changed_date": "2015-11-29T18:45:41.198Z", "creation_date": "2015-10-04T17:20:34.383Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0011"}, "pk": 162}]	162	10	392
10778	163	163	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ\\n"}, "pk": 163}]	DIE ERSCHAFFUNG EINES...	35	392
11209	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	407
10779	164	164	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Digital Glarus, so nennen wir das neue Zuhause f\\u00fcr High-Tech Firmen. Im S\\u00fcden von Z\\u00fcrich hat es einmalige Vorteile, welche man nirgends sonst in der Schweiz finden wird.</p>\\n\\n<p>Die Kombination von wundersch\\u00f6ner Aussicht und Erholungsgebieten sowie den Besitz von High-Speed Internet und eine riesige Auswahl an Restaurants kreiert was wir \\u201eDigital Glarus\\u201c nennen.</p>\\n\\n<p>Die Landschaft, das \\u201eGlarnerland\\u201c hat viele ehemalige Geb\\u00e4ude des Industriegebietes, welche direkt ins Auge fallen.</p>\\n\\n<p>Genaugenommen besitzt das Glarnerland \\u00fcber die besterhaltenste Sammlung von antiken H\\u00e4user mit M\\u00f6beln bester Qualit\\u00e4t. (Genau von denen, welche du immer in teuren L\\u00e4den anschaust, aber nie kaufst \\u2013 so leben die Leute hier).</p>\\n"}, "pk": 164}]	Digital Glarus, so...	35	392
10780	159	159	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 37, "changed_date": "2015-10-04T17:01:35.916Z", "creation_date": "2015-10-04T17:01:30.763Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000Y"}, "pk": 159}]	159	10	392
10781	37	37	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 37}]	digital_glarus_where_we_are	9	392
10782	165	165	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "EINE NEUE REGION.\\n"}, "pk": 165}]	EINE NEUE REGION.	35	392
10783	32	32	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 32}]	digital_glarus_build_a_tech_valley_content	9	392
10784	33	33	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 33}]	digital_glarus_a_new_area	9	392
10785	157	157	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:00:43.059Z", "creation_date": "2015-10-04T17:00:37.507Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "000W"}, "pk": 157}]	157	10	392
10786	166	166	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 34, "changed_date": "2015-10-04T17:23:28.835Z", "creation_date": "2015-10-04T17:23:23.851Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0015"}, "pk": 166}]	166	10	392
10787	170	170	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 35, "changed_date": "2015-10-04T17:39:08.100Z", "creation_date": "2015-10-04T17:31:20.090Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0018"}, "pk": 170}]	170	10	392
10788	166	166	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Die alten Fabriken, welche h\\u00e4ufig Webm\\u00fchlen waren, sind heute nicht mehr in Betrieb, ihre Erhaltung passt jedoch genaustens in das was die Technik-Gesellschaft der Schweiz verlangt: Grossartige und preiswerte Orte f\\u00fcr IT-Begeisterte</p>\\n\\n<p>Wir arbeiten am neuen Technik-Zentrum der Schweiz, indem wir alte freistehende Geb\\u00e4ude in attraktive Co-Working Spaces verwandeln.</p>\\n\\n<p>Aber was ist eigentlich reizvoll f\\u00fcr einen IT-Mensch? Pizza, Cola und schnelles Internet? Letzteres bestimmt ja, aber die meisten IT-Fachleute orientieren sich meist an einer gesunden Lebenshaltung, welche das Glarnerland bestens bietet.</p>\\n"}, "pk": 166}]	Die alten Fabriken,...	35	392
11063	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	402
11064	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	402
11065	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:41:49.700Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	402
11066	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	402
11067	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	402
11068	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	402
11069	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (jazz, en-us)	16	402
11070	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	402
11071	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (jazz, de)	16	402
11072	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	402
11210	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	407
10789	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	393
10790	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 196}]	GLARNER CO-WORKING |...	35	393
10791	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	393
10792	198	198	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "creation_date": "2015-10-04T18:16:04.529Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001X"}, "pk": 198}]	198	10	393
10793	7	7	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:48:33.864Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:38.405Z", "path": "00050002", "soft_root": false, "template": "cms/digitalglarus/contact.html", "xframe_options": 0, "creation_date": "2015-10-04T18:05:38.150Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]}, "pk": 7}]	contact	11	393
10794	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	393
10795	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	393
10796	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	393
10797	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	393
10798	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	393
10799	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	393
10800	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	393
10801	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	393
10802	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	393
10803	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	393
10804	195	195	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "creation_date": "2015-10-04T18:10:28.015Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001U"}, "pk": 195}]	195	10	393
10805	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	393
10806	196	196	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T18:47:44.788Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001V"}, "pk": 196}]	196	10	393
10807	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	393
10808	197	197	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}]	197	10	393
10809	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 198}]		35	393
10810	199	199	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}]	199	10	393
10811	189	189	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}]	189	10	393
10812	10	10	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	393
10813	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	393
11211	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	407
10814	190	190	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}]	190	10	393
10815	9	9	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	393
10816	191	191	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:47:21.611Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}]	191	10	393
10817	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 189}]	GLARNER CO-WORKING |...	35	393
10818	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	393
10819	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	393
11073	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	402
11074	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	402
11075	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	402
11076	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	402
11077	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	402
11078	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	402
11079	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	402
11080	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	402
11081	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	402
11082	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	402
11083	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	402
11084	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	402
11085	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	402
11086	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	402
11087	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	402
11088	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	402
10821	207	207	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<span>WUNDERSCH\\u00d6NE <small> LANDSCHAFT </small></span>\\n"}, "pk": 207}]	WUNDERSCHÖNE LANDSCHAFT	35	394
10822	8	8	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:48:45.198Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:52.894Z", "path": "00050003", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-10-04T18:54:49.173Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 171]}, "pk": 8}]	Crowdfunding	11	394
10823	201	201	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:31:37.378Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0020"}, "pk": 201}]	201	10	394
10824	202	202	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>AFFORDABLE <small>price</small></h3>\\n"}, "pk": 202}]	AFFORDABLE price	35	394
10825	203	203	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:37:34.513Z", "creation_date": "2015-10-04T19:32:35.145Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0022"}, "pk": 203}]	203	10	394
10826	204	204	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 204}]	GLARNER CO-WORKING |...	35	394
10827	205	205	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-11-29T18:45:25.172Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0024"}, "pk": 205}]	205	10	394
10828	206	206	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>WIESO GLARUS?</p>\\n"}, "pk": 206}]	WIESO GLARUS?	35	394
10829	205	205	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 205}]	GLARNER CO-WORKING |...	35	394
10830	208	208	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>PREISWERT</h3>\\n"}, "pk": 208}]	PREISWERT	35	394
10831	209	209	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>DIREKTE <small>VERBINDUNGEN NACH Z\\u00dcRICH</small></h3>\\n"}, "pk": 209}]	DIREKTE VERBINDUNGEN NACH...	35	394
10832	461	461	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<p>LASST UNS DAS DIGITAL CHALET IN SCHWANDEN RENOVIEREN!</p>\\n\\n<p>Wir haben ein sch\\u00f6nes Haus im Glarnerland gefunden um den ersten Co-Working Space in Schwanden zu er\\u00f6ffnen!</p>\\n\\n<p>Es ist un-glaub-lich sch\\u00f6n.. aber auch sch\\u00f6n alt und braucht etwas Liebe und Renovationen. Wir m\\u00f6chten die elektrischen Leitungen, Sicherungen und Steckdosen ersetzen und eine Basis-Netzwerkinfrastruktur im Haus aufbauen, damit Du hier auch \\"richtiges\\" Internet hast (Kosten: etwa 15'000 CHF).</p>\\n\\n<p>Wir w\\u00fcrden auch gerne ein paar M\\u00f6bel kaufen, wie Sofas, St\\u00fchle und Tische, damit Du gem\\u00fctlich bei uns arbeiten kannst (Kosten: etwa 5'000 CHF).</p>\\n\\n<p>Falls noch etwas Geld \\u00fcbrig ist, planen wir das Haus neu zu streichen (besonders das Dach!) und etwas in eine moderne Schliessanlage zu investieren, damit Du die T\\u00fcr mit dem Handy \\u00f6ffnen kannst (2'000 - 20'000 CHF).</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-5\\">\\n<p>\\u00a0</p>\\n\\n<p><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n</div>\\n\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<hr></div>\\n\\n<div class=\\"col-md-12\\"><iframe width=\\"100%\\" frameborder=\\"0\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1N91dpiiCm439JXQBqbX1Nn_DCVVtku_kc56_t21KucQ&amp;font=Default&amp;lang=de&amp;initial_zoom=2&amp;height=650\\" height=\\"650\\"></iframe></div>\\n</div>\\n"}, "pk": 461}]	LASST UNS DAS...	35	394
10833	85	85	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 85}]	digital_glarus_build_a_tech_valley	9	394
10834	86	86	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 86}]	digital_glarus_build_a_tech_valley_content	9	394
10835	87	87	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 87}]	digital_glarus_a_new_area	9	394
10836	88	88	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 88}]	digital_glarus_a_new_area_content	9	394
10837	89	89	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 89}]	digital_glarus_why_be_interested	9	394
10838	461	461	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-15T01:23:07.287Z", "creation_date": "2015-11-15T00:25:49.040Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0075"}, "pk": 461}]	461	10	394
10839	91	91	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 91}]	digital_glarus_where_we_are	9	394
10840	92	92	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 92}]	digital_glarus_where_we_are_content	9	394
10841	90	90	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 90}]	digital_glarus_why_be_interested_content	9	394
10842	94	94	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus"}, "pk": 94}]	digitalglarus_why_glarus	9	394
10843	95	95	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_beautiful_landscape"}, "pk": 95}]	digitalglarus_why_glarus_beautiful_landscape	9	394
10844	96	96	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_affordable_price"}, "pk": 96}]	digitalglarus_why_glarus_affordable_price	9	394
10845	97	97	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_glarus_direct_connection_zurich"}, "pk": 97}]	digitalglarus_why_glarus_direct_connection_zurich	9	394
10847	207	207	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 95, "changed_date": "2015-10-04T19:57:32.219Z", "creation_date": "2015-10-04T19:30:45.478Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0026"}, "pk": 207}]	207	10	394
10848	209	209	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 97, "changed_date": "2015-10-04T19:58:13.941Z", "creation_date": "2015-10-04T19:56:30.645Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0028"}, "pk": 209}]	209	10	394
10849	11	11	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": true, "redirect": "", "menu_title": "crowdfunding", "path": "digitalglarus", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T18:54:49.222Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 11}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, en-us)	16	394
10850	171	171	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 171}]	digitalglarus_why_us	9	394
10851	208	208	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:57:52.947Z", "creation_date": "2015-10-04T19:56:14.042Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0027"}, "pk": 208}]	208	10	394
10852	460	460	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<div class=\\"col-md-7\\">\\n<h4>LET'S RENOVATE THE DIGITAL CHALET SCHWANDEN!</h4>\\n\\n<p>We found a house to open up the first Co-Working Space in Glarnerland in Schwanden.</p>\\n\\n<p>It is a pretty... old house and needs some love and renovation.</p>\\n\\n<p>We need to modernise the electrical connections (fuses, cables, outlets) and also provide a basic network infrastructure in the house, so you can enjoy a proper Internet connection (about 15'000 CHF).</p>\\n\\n<p>We also would like to get some basic furniture (sofas, chairs, desks), so you will sit comfortable and enjoy your stay (about 5'000 CHF).</p>\\n\\n<p>If there is some money left, we plan to paint the house (especially the roof) and invest some money into modern locks, so you can open the house with your mobile phone (&gt; 20'000 CHF).</p>\\n\\n<p>Help us to renovate the house, so we can open the Co-Working Space in Schwanden soon!</p>\\n</div>\\n\\n<div class=\\"col-md-5\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<hr>\\n<p>\\u00a0</p>\\n</div>\\n\\n<div class=\\"col-md-12\\">\\n<iframe frameborder=\\"0\\" height=\\"650\\" width=\\"100%\\" src=\\"//cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=15clFd1fjnVScVziBlF-X7j5M7V6uNFt9jt9QZVylaYI&amp;font=Default&amp;lang=en&amp;initial_zoom=2&amp;height=650\\"></iframe>\\n</div>\\n</div>"}, "pk": 460}]	LET'S RENOVATE THE...	35	394
10853	12	12	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Crowdfunding", "has_url_overwrite": false, "redirect": null, "menu_title": "Crowdfunding", "path": "digitalglarus-startseite/digital-glarus-crowdfunding", "page": 8, "slug": "digital-glarus-crowdfunding", "page_title": "Digital Glarus - Crowdfunding", "creation_date": "2015-10-04T19:49:28.161Z", "meta_description": "Digital Glarus - Crowdfunding", "published": true}, "pk": 12}]	Digital Glarus - Crowdfunding (digital-glarus-crowdfunding, de)	16	394
10854	93	93	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 93}]	digital_glarus_legend	9	394
10855	206	206	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:55:12.396Z", "creation_date": "2015-10-04T19:54:37.668Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "0025"}, "pk": 206}]	206	10	394
10856	200	200	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 94, "changed_date": "2015-10-04T19:30:26.592Z", "creation_date": "2015-10-04T19:30:01.255Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001Z"}, "pk": 200}]	200	10	394
10857	204	204	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 93, "changed_date": "2015-11-29T14:55:24.411Z", "creation_date": "2015-10-04T19:35:23.668Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0023"}, "pk": 204}]	204	10	394
10858	201	201	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "BEAUTIFUL <small> landscape</small>\\n"}, "pk": 201}]	BEAUTIFUL landscape	35	394
10859	460	460	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 171, "changed_date": "2015-11-21T16:36:27.273Z", "creation_date": "2015-11-15T00:01:22.760Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0074"}, "pk": 460}]	460	10	394
10860	202	202	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 96, "changed_date": "2015-10-04T19:37:11.853Z", "creation_date": "2015-10-04T19:31:45.823Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "0021"}, "pk": 202}]	202	10	394
11089	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	403
11090	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	403
11091	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:43:25.172Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	403
10861	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	395
11104	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	403
10862	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	395
10863	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:48:56.719Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	395
10864	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	395
10865	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	395
10866	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	395
10867	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	395
10868	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	395
10869	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	395
10870	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	395
10871	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	395
10872	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	395
10873	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	395
10874	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	395
10875	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	395
10876	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	395
10877	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	395
10878	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	395
10879	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	395
10880	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	395
10881	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	395
10882	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	395
10883	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	395
10884	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	395
11092	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	403
11093	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	403
11094	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	403
10018	15	15	json	[{"model": "cms.page", "fields": {"parent": 5, "creation_date": "2015-11-25T06:19:53.576Z", "changed_date": "2015-11-25T20:15:34.175Z", "in_navigation": true, "template": "cms/digitalglarus/one_column.html", "publication_end_date": null, "limit_visibility_in_menu": null, "numchild": 0, "xframe_options": 0, "publication_date": "2015-11-25T07:04:21.089Z", "is_home": false, "navigation_extenders": null, "depth": 2, "languages": "en-us,de", "login_required": false, "soft_root": false, "created_by": "ungleich", "revision_id": 0, "site": 1, "path": "00050004", "application_urls": null, "changed_by": "ungleich", "application_namespace": null, "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184], "reverse_id": null}, "pk": 15}]	jazz	11	371
10019	532	532	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008E", "position": 0, "numchild": 3, "changed_date": "2015-11-25T20:10:32.354Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "plugin_type": "TextPlugin"}, "pk": 532}]	532	10	371
10020	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	371
10021	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via meetup.com anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>"}, "pk": 537}]	JAZZ IN DIGITAL...	35	371
10022	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	371
10023	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:14:34.630Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	371
10024	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	371
10025	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	371
10026	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	371
10027	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	371
10028	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	371
10029	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	371
10030	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	371
10031	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	371
10032	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	371
10033	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	371
10034	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	371
11105	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	403
10035	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	371
10036	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	371
10039	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>.<iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	371
10040	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	371
10885	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	395
10886	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	395
11095	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	403
11096	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	403
11097	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/jazz", "page": 15, "slug": "jazz", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (jazz, de)	16	403
11098	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	403
11099	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	403
11100	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	403
11101	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	403
11102	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	403
11103	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	403
11106	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	403
10045	533	533	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 533}]	533	10	372
10046	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	372
10047	24	24	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T06:19:53.724Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus!", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "meta_description": "", "language": "en-us", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	372
10048	537	537	json	[{"model": "cms.cmsplugin", "fields": {"depth": 1, "parent": null, "placeholder": 184, "path": "008G", "position": 0, "numchild": 1, "changed_date": "2015-11-25T20:15:59.537Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "plugin_type": "TextPlugin"}, "pk": 537}]	537	10	372
10049	26	26	json	[{"model": "cms.title", "fields": {"creation_date": "2015-11-25T07:05:18.587Z", "menu_title": "jazz", "page_title": "Jazz in Glarus!", "published": true, "redirect": null, "title": "Let's Jazz in Glarus", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "meta_description": "jazz, glarus, coworking", "language": "de", "slug": "lets-jazz-glarus", "has_url_overwrite": false}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	372
10050	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "Jazzband FivePastEight", "url": "https://www.facebook.com/fivepasteight/photos_stream"}, "pk": 542}]	Jazzband FivePastEight	30	372
10051	544	544	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0004", "position": 2, "numchild": 0, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 544}]	544	10	372
10052	551	551	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 537, "placeholder": 184, "path": "008G0001", "position": 0, "numchild": 0, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "plugin_type": "FilerLinkPlugin"}, "pk": 551}]	551	10	372
10053	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"mailto": "", "file": null, "new_window": false, "page_link": null, "link_style": " ", "name": "meetup.com", "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/"}, "pk": 551}]	meetup.com	30	372
10054	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	372
10055	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	372
10056	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	372
10057	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	372
10058	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	372
10059	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	372
10060	542	542	json	[{"model": "cms.cmsplugin", "fields": {"depth": 2, "parent": 532, "placeholder": 184, "path": "008E0002", "position": 1, "numchild": 0, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "plugin_type": "FilerLinkPlugin"}, "pk": 542}]	542	10	372
10061	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	372
10062	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	372
10063	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	372
10887	179	179	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:47:57.022Z", "creation_date": "2015-10-04T17:47:50.728Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001H"}, "pk": 179}]	179	10	396
11107	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	403
10064	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>.<iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	372
10065	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	372
10888	6	6	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:49:11.012Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:26.906Z", "path": "00050001", "soft_root": false, "template": "cms/digitalglarus/about.html", "xframe_options": 0, "creation_date": "2015-10-04T17:45:05.381Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72]}, "pk": 6}]	Ãœber uns	11	396
10889	7	7	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - About", "has_url_overwrite": false, "redirect": "", "menu_title": "about", "path": "digitalglarus-home/digital-glarus-about", "page": 6, "slug": "digital-glarus-about", "page_title": "Digital Glarus - About", "creation_date": "2015-10-04T17:45:05.433Z", "meta_description": "The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13", "published": true}, "pk": 7}]	Digital Glarus - About (digital-glarus-about, en-us)	16	396
10890	8	8	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - \\u00dcber uns", "has_url_overwrite": false, "redirect": null, "menu_title": "\\u00dcber uns", "path": "digitalglarus-startseite/digital-glarus-uber-uns", "page": 6, "slug": "digital-glarus-uber-uns", "page_title": "Digital Glarus - \\u00dcber uns", "creation_date": "2015-10-04T17:54:39.076Z", "meta_description": "DIE ERSCHAFFUNG EINES TECH VALLEYS IM HERZEN DER SCHWEIZ", "published": true}, "pk": 8}]	Digital Glarus - Ãœber uns (digital-glarus-uber-uns, de)	16	396
10891	188	188	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 71, "changed_date": "2015-10-04T17:59:12.135Z", "creation_date": "2015-10-04T17:56:28.318Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Q"}, "pk": 188}]	188	10	396
10892	174	174	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 66, "changed_date": "2015-11-29T14:56:18.192Z", "creation_date": "2015-10-04T17:45:58.715Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001C"}, "pk": 174}]	174	10	396
10893	175	175	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>Us?</strong></h2>\\n"}, "pk": 175}]	why Us?	35	396
10894	176	176	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 68, "changed_date": "2015-10-04T17:46:52.849Z", "creation_date": "2015-10-04T17:46:40.251Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001E"}, "pk": 176}]	176	10	396
10895	180	180	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h3>direct <small> connection to zurich</small></h3>\\n"}, "pk": 180}]	direct connection to...	35	396
10896	177	177	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 69, "changed_date": "2015-10-04T17:47:14.264Z", "creation_date": "2015-10-04T17:47:04.566Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001F"}, "pk": 177}]	177	10	396
10897	178	178	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 70, "changed_date": "2015-10-04T17:47:41.789Z", "creation_date": "2015-10-04T17:47:33.925Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001G"}, "pk": 178}]	178	10	396
10898	174	174	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 174}]	GLARNER CO-WORKING |...	35	396
10899	175	175	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 67, "changed_date": "2015-10-04T17:46:27.188Z", "creation_date": "2015-10-04T17:46:20.372Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001D"}, "pk": 175}]	175	10	396
10900	176	176	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.</p>\\n"}, "pk": 176}]	We, the ungleich...	35	396
10901	177	177	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\">why <strong>glarus?</strong></h2>\\n"}, "pk": 177}]	why glarus?	35	396
11166	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	405
11167	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	406
11168	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	406
11169	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:43:53.194Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	406
11170	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	406
11171	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	406
11172	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	406
11173	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	406
11174	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	406
11175	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	406
11176	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	406
11177	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	406
11178	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	406
11179	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	406
11180	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	406
11181	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	406
11182	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	406
11183	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	406
11184	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	406
11185	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	406
11186	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	406
11187	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	406
11188	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	406
11189	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	406
11190	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	406
11191	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	406
11192	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	406
11193	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	407
11194	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	407
11195	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:44:05.528Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	407
11196	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:38.121Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 4, "path": "008E"}, "pk": 532}]	532	10	407
11197	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	407
11198	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	407
11199	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	407
11200	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	407
11201	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	407
11202	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	407
11203	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	407
11204	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	407
11205	552	552	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "LinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:19:39.008Z", "creation_date": "2015-11-25T20:19:38.800Z", "language": "en-us", "position": 3, "parent": 532, "numchild": 0, "path": "008E0005"}, "pk": 552}]	552	10	407
11206	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	407
11207	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	407
11208	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	407
11213	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	407
11214	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	407
11215	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	407
11216	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	407
11217	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"><a href=\\"#\\" style=\\"line-height: 1.6;\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" id=\\"plugin_obj_544\\" src=\\"/static/cms/images/plugins/link.png\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>"}, "pk": 532}]	JAZZ IN DIGITAL...	35	407
11218	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	407
11219	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	408
11220	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	408
11221	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-01T23:44:05.741Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	408
11222	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-12-02T04:09:10.660Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 3, "path": "008E"}, "pk": 532}]	532	10	408
11223	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	408
11224	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	408
11225	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	408
11226	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	408
11227	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	408
11228	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	408
11229	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	408
11230	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	408
11365	212	212	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "pk": 212, "model": "cms.placeholder"}]	digital_glarus_why_be_interested_content	9	414
11231	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	408
11232	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	408
11233	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	408
11234	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	408
11235	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	408
11236	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	408
11237	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	408
11238	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	408
11239	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	408
11240	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	408
11241	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	408
11242	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_542\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\" class=\\"center-block\\" height=\\"330\\" width=\\"220\\" frameborder=\\"0\\" scrolling=\\"no\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_533\\"><a style=\\"line-height: 1.6;\\" href=\\"#\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_544\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	408
11243	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	408
11244	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	409
11245	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	409
11246	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-02T04:09:19.438Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	409
11247	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-12-02T04:09:10.660Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 3, "path": "008E"}, "pk": 532}]	532	10	409
11248	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	409
11249	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	409
11250	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	409
11251	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	409
11252	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	409
11253	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	409
11254	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	409
11255	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	409
11256	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	409
11257	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	409
11258	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	409
11259	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	409
11260	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	409
11261	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	409
11262	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	409
11263	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	409
11264	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	409
11265	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	409
11266	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	409
11267	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_542\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\" class=\\"center-block\\" height=\\"330\\" width=\\"220\\" frameborder=\\"0\\" scrolling=\\"no\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_533\\"><a style=\\"line-height: 1.6;\\" href=\\"#\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_544\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	409
11268	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	409
11269	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	410
11270	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	410
11271	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": false, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-15T15:18:12.797Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	410
11366	213	213	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "pk": 213, "model": "cms.placeholder"}]	digital_glarus_where_we_are	9	414
11272	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-12-02T04:09:10.660Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 3, "path": "008E"}, "pk": 532}]	532	10	410
11273	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	410
11274	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	410
11275	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	410
11276	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	410
11277	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	410
11278	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	410
11279	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	410
11280	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	410
11281	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	410
11282	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	410
11283	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	410
11284	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	410
11285	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	410
11286	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	410
11287	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	410
11288	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	410
11289	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	410
11290	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	410
11291	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	410
11292	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_542\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\" class=\\"center-block\\" height=\\"330\\" width=\\"220\\" frameborder=\\"0\\" scrolling=\\"no\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_533\\"><a style=\\"line-height: 1.6;\\" href=\\"#\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_544\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	410
11293	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	410
11294	544	544	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 544}]	meetup	30	411
11295	533	533	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://100-days.net/start-digital-glarus", "name": "100-days.net/start-digital-glarus", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 533}]	100-days.net/start-digital-glarus	30	411
11296	15	15	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": false, "revision_id": 0, "navigation_extenders": null, "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-12-15T15:18:47.529Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-11-25T07:04:21.089Z", "path": "00050004", "soft_root": false, "template": "cms/digitalglarus/one_column.html", "xframe_options": 0, "creation_date": "2015-11-25T06:19:53.576Z", "application_urls": null, "login_required": false, "created_by": "ungleich", "placeholders": [175, 176, 177, 178, 179, 180, 181, 182, 183, 184]}, "pk": 15}]	jazz	11	411
11297	532	532	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-12-02T04:09:10.660Z", "creation_date": "2015-11-25T06:36:07.172Z", "language": "en-us", "position": 0, "parent": null, "numchild": 3, "path": "008E"}, "pk": 532}]	532	10	411
11298	533	533	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T06:51:01.597Z", "creation_date": "2015-11-25T06:50:51.131Z", "language": "en-us", "position": 0, "parent": 532, "numchild": 0, "path": "008E0001"}, "pk": 533}]	533	10	411
11299	537	537	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<h4>\\u00a0</h4>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Willkommen im Digital Chalet Schwanden.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>Im ERSTEN Co-Working Space (wo sich Leute mit Ihren Notebooks treffen und netzwerken k\\u00f6nnen) von Digital Glarus!</p>\\n\\n<p>Wir m\\u00f6chten einen inspirierenden Co-Working Space aufbauen - f\\u00fcr Glarner und f\\u00fcr die Glarner Wirtschaft.</p>\\n\\n<p>Unser Co-Working Space wurde VOR 1890 erbaut und hat sein neues Leben als Co-Working Space im Oktober 2015 begonnen.</p>\\n\\n<p>Wir m\\u00f6chten uns bei all unseren Unterst\\u00fctzern (auch zuk\\u00fcnftigen) mit einem Jazz-Konzert bedanken, f\\u00fcr alle Beitr\\u00e4ge und Hilfe, die wir von so vielen Seiten bekommen haben!</p>\\n\\n<p>Der Eintritt ist frei und ihr d\\u00fcrft gerne auch Freunde und Familie mitnehmen und den Co-Working Space bei gem\\u00fctlicher Musik kennenlernen!</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\" class=\\"img-responsive\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" id=\\"plugin_obj_542\\" src=\\"/static/cms/images/plugins/link.png\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe scrolling=\\"no\\" width=\\"220\\" class=\\"center-block\\" frameborder=\\"0\\" height=\\"330\\" src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>Um die n\\u00f6tigen Renovationen am Co-Working Space zu finanzieren haben wir eine Crowdfunding-Kampagne gestartet, die Du auf\\u00a0<img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" id=\\"plugin_obj_533\\" src=\\"/static/cms/images/plugins/link.png\\"> findest.</p>\\n\\n<p>Mit dem Geld wollen wir das Haus modernisieren (zum Beispiel die Stromleitungen), aber den sch\\u00f6nen alten Charm beibehalten.</p>\\n\\n<p>Wenn Du Freude hast an charmanten H\\u00e4usern oder das Projekt gut findest, unterst\\u00fctze uns heute - die Crowdfunding-Kampagne l\\u00e4uft nicht mehr lange!</p>\\n\\n<p>Auf jedem Fall freuen wir uns Dich am 5. Dezember beim Jazz-Konzert zu sehen - oh, und haben wir erw\\u00e4hnt, dass jeder, der sich via <img alt=\\"Link\\" title=\\"Link - meetup.com\\" id=\\"plugin_obj_551\\" src=\\"/static/cms/images/plugins/link.png\\"> anmeldet, ein Gratisgetr\\u00e4nk bekommt?</p>\\n\\n<p>Also, bis bald &amp; Let's Jazz in Glarus!</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\" class=\\"img-responsive\\"></p>\\n</div>\\n"}, "pk": 537}]	JAZZ IN DIGITAL...	35	411
11300	24	24	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Let's Jazz in Glarus!", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-home/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T06:19:53.724Z", "meta_description": "", "published": true}, "pk": 24}]	Let's Jazz in Glarus! (lets-jazz-glarus, en-us)	16	411
11301	537	537	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 184, "changed_date": "2015-11-25T20:18:11.193Z", "creation_date": "2015-11-25T07:06:27.105Z", "language": "de", "position": 0, "parent": null, "numchild": 1, "path": "008G"}, "pk": 537}]	537	10	411
11302	26	26	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Let's Jazz in Glarus", "has_url_overwrite": false, "redirect": null, "menu_title": "jazz", "path": "digitalglarus-startseite/lets-jazz-glarus", "page": 15, "slug": "lets-jazz-glarus", "page_title": "Jazz in Glarus!", "creation_date": "2015-11-25T07:05:18.587Z", "meta_description": "jazz, glarus, coworking", "published": true}, "pk": 26}]	Let's Jazz in Glarus (lets-jazz-glarus, de)	16	411
11303	542	542	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": "https://www.facebook.com/fivepasteight/photos_stream", "name": "Jazzband FivePastEight", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 542}]	Jazzband FivePastEight	30	411
11304	544	544	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:49:19.954Z", "creation_date": "2015-11-25T19:46:37.047Z", "language": "en-us", "position": 2, "parent": 532, "numchild": 0, "path": "008E0004"}, "pk": 544}]	544	10	411
11305	551	551	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T20:15:46.897Z", "creation_date": "2015-11-25T20:15:33.454Z", "language": "de", "position": 0, "parent": 537, "numchild": 0, "path": "008G0001"}, "pk": 551}]	551	10	411
11306	551	551	json	[{"model": "cmsplugin_filer_link.filerlinkplugin", "fields": {"new_window": false, "url": " http://www.meetup.com/Digital-Glarus-Business-Technology/events/226370929/", "name": "meetup.com", "file": null, "mailto": "", "link_style": " ", "page_link": null}, "pk": 551}]	meetup.com	30	411
11307	175	175	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 175}]	digital_glarus_build_a_tech_valley	9	411
11308	176	176	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 176}]	digital_glarus_build_a_tech_valley_content	9	411
11309	177	177	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 177}]	digital_glarus_a_new_area	9	411
11310	178	178	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 178}]	digital_glarus_a_new_area_content	9	411
11311	179	179	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 179}]	digital_glarus_why_be_interested	9	411
11312	180	180	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 180}]	digital_glarus_why_be_interested_content	9	411
11313	542	542	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "FilerLinkPlugin", "depth": 2, "placeholder": 184, "changed_date": "2015-11-25T19:42:49.547Z", "creation_date": "2015-11-25T19:42:12.795Z", "language": "en-us", "position": 1, "parent": 532, "numchild": 0, "path": "008E0002"}, "pk": 542}]	542	10	411
11314	182	182	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 182}]	digital_glarus_where_we_are_content	9	411
11315	183	183	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 183}]	digital_glarus_legend	9	411
11316	184	184	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digitalglarus_why_us"}, "pk": 184}]	digitalglarus_why_us	9	411
11338	197	197	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:15:40.462Z", "creation_date": "2015-10-04T18:14:38.170Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001W"}, "pk": 197}]	197	10	412
11339	198	198	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 198}]		35	412
11317	532	532	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/22/bb/22bb868b-ca56-460b-b9d6-bac055e538ea/blog_digitalglarus_concert_jazz.png\\"></p>\\n</div>\\n\\n<div class=\\"row\\">\\n<div class=\\"col-md-12\\">\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"col-lg-12 text-center\\">\\n<hr class=\\"tagline-divider\\">\\n<h2>JAZZ IN DIGITAL CHALET</h2>\\n\\n<hr class=\\"tagline-divider\\">\\n<p>\\u00a0</p>\\n</div>\\n\\n<p>Welcome to Digital Chalet Schwanden.\\u00a0</p>\\n\\n<p><span style=\\"line-height: 1.6;\\">It is the first coworking space (where people can bring laptops to work freely and to network) Digital Glarus!</span></p>\\n\\n<p>We want to build an inspiring coworking space - for Glarus, and Glarus economy.</p>\\n\\n<p>Our coworking space was built before 1890, but its new life as a coworking space began in October 2015.</p>\\n\\n<p>We would like to thank all our supporters (including future supporters) with a jazz concert, for all supports and help we have received from so many ways!</p>\\n\\n<p>The concert is free entrance, please feel free to bring your friends and family.</p>\\n\\n<p>Explore our coworking space, meet and connect with other great people with great music.</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div class=\\"row\\">\\n<h3 style=\\"color: rgb(170, 170, 170); font-style: italic; text-align: center;\\" class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/27/a7/27a7f8bf-69f8-4d0b-bbc8-44bf82aa9e3a/fivepasteight_band.jpg\\"><small><img alt=\\"Link\\" title=\\"Link - Jazzband FivePastEight\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_542\\"></small></h3>\\n</div>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<p>\\u00a0</p>\\n\\n<div style=\\"float: left; margin: 10px;\\"><iframe src=\\"//www.100-days.net/de/projekt/start-digital-glarus/widget/v2\\" class=\\"center-block\\" height=\\"330\\" width=\\"220\\" frameborder=\\"0\\" scrolling=\\"no\\"></iframe></div>\\n\\n<p>\\u00a0</p>\\n\\n<p>To finance the necessary renovations of our coworking space we launched a crowdfunding campaign.</p>\\n\\n<p>You can find it on <img alt=\\"Link\\" title=\\"Link - 100-days.net/start-digital-glarus\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_533\\"><a style=\\"line-height: 1.6;\\" href=\\"#\\">s.net/start-digital-glarus</a><span style=\\"line-height: 1.6;\\"> With the money we want to modernize the house (for example, the power lines), while still keeping the beautiful ancient charm.</span></p>\\n\\n<p>If you enjoy charming old houses, or if you find our project is cool, support us today - the crowdfunding campaign is running</p>\\n\\n<p>We\\u00a0<span style=\\"line-height: 1.6;\\">are p</span><span style=\\"line-height: 1.6;\\">leased to inv</span><span style=\\"line-height: 1.6;\\">ite you on December 5 at the jazz conc</span><span style=\\"line-height: 1.6;\\">ert!</span></p>\\n\\n<p>And one tip from us: RSVP on our <img alt=\\"Link\\" title=\\"Link - meetup\\" src=\\"/static/cms/images/plugins/link.png\\" id=\\"plugin_obj_544\\">, you get a free drink at the venue.</p>\\n\\n<p>See you soon &amp; Let's Jazz in Glarus!</p>\\n\\n<p>\\u00a0</p>\\n</div>\\n</div>\\n\\n<div class=\\"row\\">\\n<p class=\\"col-md-12\\"><img class=\\"img-responsive\\" src=\\"/media/filer_public/b6/f1/b6f156c0-5d52-4171-868b-4f2e7a385f75/banner_100days_1062x274.png\\"></p>\\n</div>\\n"}, "pk": 532}]	JAZZ IN DIGITAL...	35	411
11318	181	181	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 181}]	digital_glarus_where_we_are	9	411
11319	195	195	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "\\n<iframe width=\\"100%\\" height=\\"400\\" src=\\"//maps.google.com/maps?hl=en&amp;ie=UTF8&amp;ll=46.969959,9.039001&amp;spn=56.506174,79.013672&amp;t=m&amp;z=12&amp;output=embed\\" scrolling=\\"no\\" frameborder=\\"0\\"></iframe>"}, "pk": 195}]		35	412
11320	196	196	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 196}]	GLARNER CO-WORKING |...	35	412
11321	197	197	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<h2 class=\\"intro-text text-center\\"><span class=\\"short_text\\" id=\\"result_box\\" lang=\\"de\\">Kontakt\\u00a0</span> <strong>DIGITAL GLARUS</strong></h2>\\n"}, "pk": 197}]	Kontakt DIGITAL GLARUS	35	412
11322	198	198	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:17:33.725Z", "creation_date": "2015-10-04T18:16:04.529Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001X"}, "pk": 198}]	198	10	412
11323	7	7	json	[{"model": "cms.page", "fields": {"limit_visibility_in_menu": null, "depth": 2, "in_navigation": true, "revision_id": 0, "navigation_extenders": "", "parent": 5, "changed_by": "ungleich", "is_home": false, "application_namespace": null, "changed_date": "2015-11-29T18:48:33.940Z", "languages": "en-us,de", "numchild": 0, "site": 1, "publication_end_date": null, "reverse_id": null, "publication_date": "2015-10-04T23:27:38.405Z", "path": "00050002", "soft_root": false, "template": "cms/digitalglarus/contact.html", "xframe_options": 0, "creation_date": "2015-10-04T18:05:38.150Z", "application_urls": "", "login_required": false, "created_by": "ungleich", "placeholders": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]}, "pk": 7}]	contact	11	412
11324	73	73	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley"}, "pk": 73}]	digital_glarus_build_a_tech_valley	9	412
11325	74	74	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_build_a_tech_valley_content"}, "pk": 74}]	digital_glarus_build_a_tech_valley_content	9	412
11326	75	75	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area"}, "pk": 75}]	digital_glarus_a_new_area	9	412
11327	76	76	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_a_new_area_content"}, "pk": 76}]	digital_glarus_a_new_area_content	9	412
11328	77	77	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested"}, "pk": 77}]	digital_glarus_why_be_interested	9	412
11329	78	78	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_why_be_interested_content"}, "pk": 78}]	digital_glarus_why_be_interested_content	9	412
11330	79	79	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are"}, "pk": 79}]	digital_glarus_where_we_are	9	412
11331	80	80	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_where_we_are_content"}, "pk": 80}]	digital_glarus_where_we_are_content	9	412
11332	81	81	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_legend"}, "pk": 81}]	digital_glarus_legend	9	412
11333	82	82	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact"}, "pk": 82}]	digital_glarus_contact	9	412
11334	195	195	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 83, "changed_date": "2015-10-04T18:11:17.160Z", "creation_date": "2015-10-04T18:10:28.015Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001U"}, "pk": 195}]	195	10	412
11335	84	84	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_information"}, "pk": 84}]	digital_glarus_contact_information	9	412
11336	196	196	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T18:47:44.788Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001V"}, "pk": 196}]	196	10	412
11337	199	199	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Telefon</span></span>: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">digitalglarus@ungleich.ch</a></strong></p>\\n\\n<p><span tabindex=\\"-1\\" class=\\"short_text\\" lang=\\"de\\" id=\\"result_box\\"><span class=\\"hps\\">Anschrift</span></span>: <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n"}, "pk": 199}]	Telefon: +41 (0)...	35	412
11340	199	199	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2015-10-05T01:48:02.213Z", "creation_date": "2015-10-04T18:16:22.743Z", "language": "de", "position": 0, "parent": null, "numchild": 0, "path": "001Y"}, "pk": 199}]	199	10	412
11341	189	189	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 81, "changed_date": "2015-11-29T14:56:35.337Z", "creation_date": "2015-10-04T18:06:26.767Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001R"}, "pk": 189}]	189	10	412
11342	10	10	json	[{"model": "cms.title", "fields": {"language": "de", "title": "Digital Glarus - Kontakt", "has_url_overwrite": false, "redirect": null, "menu_title": "Kontakt", "path": "digitalglarus-startseite/digital-glarus-kontakt", "page": 7, "slug": "digital-glarus-kontakt", "page_title": "Digital Glarus - Kontakt", "creation_date": "2015-10-04T18:14:07.928Z", "meta_description": "Digital Glarus - Kontakt", "published": true}, "pk": 10}]	Digital Glarus - Kontakt (digital-glarus-kontakt, de)	16	412
11343	83	83	json	[{"model": "cms.placeholder", "fields": {"default_width": null, "slot": "digital_glarus_contact_content"}, "pk": 83}]	digital_glarus_contact_content	9	412
11344	190	190	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 82, "changed_date": "2015-10-04T18:12:53.711Z", "creation_date": "2015-10-04T18:06:49.275Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001S"}, "pk": 190}]	190	10	412
11345	9	9	json	[{"model": "cms.title", "fields": {"language": "en-us", "title": "Digital Glarus - Contact", "has_url_overwrite": false, "redirect": "", "menu_title": "contact", "path": "digitalglarus-home/digital-glarus-contact", "page": 7, "slug": "digital-glarus-contact", "page_title": "Digital Glarus - Contact", "creation_date": "2015-10-04T18:05:38.201Z", "meta_description": "Contact DIGITAL GLARUS ", "published": true}, "pk": 9}]	Digital Glarus - Contact (digital-glarus-contact, en-us)	16	412
11346	191	191	json	[{"model": "cms.cmsplugin", "fields": {"plugin_type": "TextPlugin", "depth": 1, "placeholder": 84, "changed_date": "2016-01-29T19:50:40.842Z", "creation_date": "2015-10-04T18:07:07.395Z", "language": "en-us", "position": 0, "parent": null, "numchild": 0, "path": "001T"}, "pk": 191}]	191	10	412
11347	189	189	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<div class=\\"address-bar\\">GLARNER CO-WORKING | IN DER AU 7 SCHWANDEN, 8762 GL | SWITZERLAND</div>\\n"}, "pk": 189}]	GLARNER CO-WORKING |...	35	412
11348	190	190	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "Contact <strong>DIGITAL GLARUS</strong>\\n"}, "pk": 190}]	Contact DIGITAL GLARUS	35	412
11349	191	191	json	[{"model": "djangocms_text_ckeditor.text", "fields": {"body": "<p>Phone: <strong>+41 (0) 44 534 66 22</strong></p>\\n\\n<p>Email: <strong><a href=\\"mailto:digitalglarus@ungleich.ch\\">info@digitalglarus.ch</a></strong></p>\\n\\n<p>Address:\\u00a0 <strong><span style=\\"\\">In Der Au 7, \\u00a08762 Schwanden Switzerland</span></strong></p>\\n\\n<div class=\\"clearfix\\">\\u00a0</div>\\n"}, "pk": 191}]	Phone: +41 (0)...	35	412
11350	17	17	json	[{"fields": {"changed_by": "ungleich", "created_by": "ungleich", "languages": null, "publication_date": null, "is_home": false, "revision_id": 0, "soft_root": false, "application_namespace": null, "template": "INHERIT", "path": "00050005", "site": 1, "numchild": 0, "limit_visibility_in_menu": null, "depth": 2, "changed_date": "2016-02-28T15:08:34.358Z", "application_urls": null, "parent": 5, "creation_date": "2016-02-28T15:08:34.220Z", "login_required": false, "reverse_id": null, "navigation_extenders": null, "publication_end_date": null, "placeholders": [198, 199, 200, 201, 202, 203, 204, 205, 206], "xframe_options": 0, "in_navigation": true}, "pk": 17, "model": "cms.page"}]	test	11	413
11351	204	204	json	[{"fields": {"slot": "digital_glarus_where_we_are", "default_width": null}, "pk": 204, "model": "cms.placeholder"}]	digital_glarus_where_we_are	9	413
11352	198	198	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "pk": 198, "model": "cms.placeholder"}]	digital_glarus_build_a_tech_valley	9	413
11353	199	199	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "pk": 199, "model": "cms.placeholder"}]	digital_glarus_build_a_tech_valley_content	9	413
11354	200	200	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "pk": 200, "model": "cms.placeholder"}]	digital_glarus_a_new_area	9	413
11355	201	201	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "pk": 201, "model": "cms.placeholder"}]	digital_glarus_a_new_area_content	9	413
11356	202	202	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "pk": 202, "model": "cms.placeholder"}]	digital_glarus_why_be_interested	9	413
11357	203	203	json	[{"fields": {"slot": "digital_glarus_why_be_interested_content", "default_width": null}, "pk": 203, "model": "cms.placeholder"}]	digital_glarus_why_be_interested_content	9	413
11358	28	28	json	[{"fields": {"redirect": null, "page": 17, "creation_date": "2016-02-28T15:08:34.369Z", "menu_title": "", "slug": "test", "title": "test", "meta_description": "", "language": "en-us", "path": "digitalglarus-home/test", "published": false, "page_title": "", "has_url_overwrite": false}, "pk": 28, "model": "cms.title"}]	test (test, en-us)	16	413
11359	205	205	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "pk": 205, "model": "cms.placeholder"}]	digital_glarus_where_we_are_content	9	413
11360	206	206	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "pk": 206, "model": "cms.placeholder"}]	digital_glarus_legend	9	413
11361	208	208	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley_content", "default_width": null}, "pk": 208, "model": "cms.placeholder"}]	digital_glarus_build_a_tech_valley_content	9	414
11362	209	209	json	[{"fields": {"slot": "digital_glarus_a_new_area", "default_width": null}, "pk": 209, "model": "cms.placeholder"}]	digital_glarus_a_new_area	9	414
11363	18	18	json	[{"fields": {"changed_by": "ungleich", "created_by": "ungleich", "languages": "en-us", "publication_date": null, "is_home": false, "revision_id": 0, "soft_root": false, "application_namespace": null, "template": "INHERIT", "path": "0007", "site": 1, "numchild": 0, "limit_visibility_in_menu": null, "depth": 1, "changed_date": "2016-02-28T15:12:18.342Z", "application_urls": null, "parent": null, "creation_date": "2016-02-28T15:12:18.253Z", "login_required": false, "reverse_id": null, "navigation_extenders": null, "publication_end_date": null, "placeholders": [207, 208, 209, 210, 211, 212, 213, 214, 215], "xframe_options": 0, "in_navigation": true}, "pk": 18, "model": "cms.page"}]	Events	11	414
11364	211	211	json	[{"fields": {"slot": "digital_glarus_why_be_interested", "default_width": null}, "pk": 211, "model": "cms.placeholder"}]	digital_glarus_why_be_interested	9	414
11367	214	214	json	[{"fields": {"slot": "digital_glarus_where_we_are_content", "default_width": null}, "pk": 214, "model": "cms.placeholder"}]	digital_glarus_where_we_are_content	9	414
11368	215	215	json	[{"fields": {"slot": "digital_glarus_legend", "default_width": null}, "pk": 215, "model": "cms.placeholder"}]	digital_glarus_legend	9	414
11369	210	210	json	[{"fields": {"slot": "digital_glarus_a_new_area_content", "default_width": null}, "pk": 210, "model": "cms.placeholder"}]	digital_glarus_a_new_area_content	9	414
11370	29	29	json	[{"fields": {"redirect": null, "page": 18, "creation_date": "2016-02-28T15:12:18.340Z", "menu_title": "Events", "slug": "events", "title": "events", "meta_description": "events", "language": "en-us", "path": "events", "published": false, "page_title": "Events", "has_url_overwrite": false}, "pk": 29, "model": "cms.title"}]	events (events, en-us)	16	414
11371	207	207	json	[{"fields": {"slot": "digital_glarus_build_a_tech_valley", "default_width": null}, "pk": 207, "model": "cms.placeholder"}]	digital_glarus_build_a_tech_valley	9	414
\.


--
-- Name: reversion_version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('reversion_version_id_seq', 11371, true);


--
-- Data for Name: taggit_tag; Type: TABLE DATA; Schema: public; Owner: app
--

COPY taggit_tag (id, name, slug) FROM stdin;
1	digitalglarus	digitalglarus
2	blog	blog
\.


--
-- Name: taggit_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('taggit_tag_id_seq', 2, true);


--
-- Data for Name: taggit_taggeditem; Type: TABLE DATA; Schema: public; Owner: app
--

COPY taggit_taggeditem (id, object_id, content_type_id, tag_id) FROM stdin;
1	21	53	1
2	20	53	1
3	19	53	1
4	17	53	1
5	16	53	1
6	15	53	1
7	11	53	1
8	10	53	1
9	26	53	1
10	30	53	1
11	30	53	2
12	28	53	1
13	27	53	1
15	31	53	1
16	32	53	1
17	33	53	1
\.


--
-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('taggit_taggeditem_id_seq', 17, true);


--
-- Data for Name: ungleich_ungleichpage; Type: TABLE DATA; Schema: public; Owner: app
--

COPY ungleich_ungleichpage (id, extended_object_id, public_extension_id, image_id) FROM stdin;
1	3	2	17
2	4	\N	17
\.


--
-- Name: ungleich_ungleichpage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: app
--

SELECT pg_catalog.setval('ungleich_ungleichpage_id_seq', 2, true);


--
-- Name: auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_group
    ADD CONSTRAINT auth_group_name_key UNIQUE (name);


--
-- Name: auth_group_permissions_group_id_permission_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_group_permissions
    ADD CONSTRAINT auth_group_permissions_group_id_permission_id_key UNIQUE (group_id, permission_id);


--
-- Name: auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_group_permissions
    ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);


--
-- Name: auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_group
    ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);


--
-- Name: auth_permission_content_type_id_codename_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_permission
    ADD CONSTRAINT auth_permission_content_type_id_codename_key UNIQUE (content_type_id, codename);


--
-- Name: auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_permission
    ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);


--
-- Name: auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_user_groups
    ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id);


--
-- Name: auth_user_groups_user_id_group_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_user_groups
    ADD CONSTRAINT auth_user_groups_user_id_group_id_key UNIQUE (user_id, group_id);


--
-- Name: auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_user
    ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id);


--
-- Name: auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_user_user_permissions
    ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id);


--
-- Name: auth_user_user_permissions_user_id_permission_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_user_user_permissions
    ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_key UNIQUE (user_id, permission_id);


--
-- Name: auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY auth_user
    ADD CONSTRAINT auth_user_username_key UNIQUE (username);


--
-- Name: cms_aliaspluginmodel_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_aliaspluginmodel
    ADD CONSTRAINT cms_aliaspluginmodel_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cms_cmsplugin_path_6db4a772adcf443b_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_cmsplugin
    ADD CONSTRAINT cms_cmsplugin_path_6db4a772adcf443b_uniq UNIQUE (path);


--
-- Name: cms_cmsplugin_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_cmsplugin
    ADD CONSTRAINT cms_cmsplugin_pkey PRIMARY KEY (id);


--
-- Name: cms_globalpagepermission_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_globalpagepermission
    ADD CONSTRAINT cms_globalpagepermission_pkey PRIMARY KEY (id);


--
-- Name: cms_globalpagepermission_site_globalpagepermission_id_site__key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_globalpagepermission_sites
    ADD CONSTRAINT cms_globalpagepermission_site_globalpagepermission_id_site__key UNIQUE (globalpagepermission_id, site_id);


--
-- Name: cms_globalpagepermission_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_globalpagepermission_sites
    ADD CONSTRAINT cms_globalpagepermission_sites_pkey PRIMARY KEY (id);


--
-- Name: cms_page_path_b495adb731fe537_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_path_b495adb731fe537_uniq UNIQUE (path);


--
-- Name: cms_page_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_pkey PRIMARY KEY (id);


--
-- Name: cms_page_placeholders_page_id_placeholder_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page_placeholders
    ADD CONSTRAINT cms_page_placeholders_page_id_placeholder_id_key UNIQUE (page_id, placeholder_id);


--
-- Name: cms_page_placeholders_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page_placeholders
    ADD CONSTRAINT cms_page_placeholders_pkey PRIMARY KEY (id);


--
-- Name: cms_page_publisher_is_draft_603d95861eb3d85b_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_publisher_is_draft_603d95861eb3d85b_uniq UNIQUE (publisher_is_draft, site_id, application_namespace);


--
-- Name: cms_page_publisher_public_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_publisher_public_id_key UNIQUE (publisher_public_id);


--
-- Name: cms_page_reverse_id_38543d1ba5dbbf2f_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_reverse_id_38543d1ba5dbbf2f_uniq UNIQUE (reverse_id, site_id, publisher_is_draft);


--
-- Name: cms_pagepermission_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_pagepermission
    ADD CONSTRAINT cms_pagepermission_pkey PRIMARY KEY (id);


--
-- Name: cms_pageuser_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_pageuser
    ADD CONSTRAINT cms_pageuser_pkey PRIMARY KEY (user_ptr_id);


--
-- Name: cms_pageusergroup_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_pageusergroup
    ADD CONSTRAINT cms_pageusergroup_pkey PRIMARY KEY (group_ptr_id);


--
-- Name: cms_placeholder_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_placeholder
    ADD CONSTRAINT cms_placeholder_pkey PRIMARY KEY (id);


--
-- Name: cms_placeholderreference_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_placeholderreference
    ADD CONSTRAINT cms_placeholderreference_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cms_staticplaceholder_code_13295693baa76e9c_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_staticplaceholder
    ADD CONSTRAINT cms_staticplaceholder_code_13295693baa76e9c_uniq UNIQUE (code, site_id);


--
-- Name: cms_staticplaceholder_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_staticplaceholder
    ADD CONSTRAINT cms_staticplaceholder_pkey PRIMARY KEY (id);


--
-- Name: cms_title_language_6c0f5d7214ca8030_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_title
    ADD CONSTRAINT cms_title_language_6c0f5d7214ca8030_uniq UNIQUE (language, page_id);


--
-- Name: cms_title_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_title
    ADD CONSTRAINT cms_title_pkey PRIMARY KEY (id);


--
-- Name: cms_title_publisher_public_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_title
    ADD CONSTRAINT cms_title_publisher_public_id_key UNIQUE (publisher_public_id);


--
-- Name: cms_usersettings_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_usersettings
    ADD CONSTRAINT cms_usersettings_pkey PRIMARY KEY (id);


--
-- Name: cms_usersettings_user_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cms_usersettings
    ADD CONSTRAINT cms_usersettings_user_id_key UNIQUE (user_id);


--
-- Name: cmsplugin_filer_file_filerfile_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_file_filerfile
    ADD CONSTRAINT cmsplugin_filer_file_filerfile_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cmsplugin_filer_folder_filerfolder_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_folder_filerfolder
    ADD CONSTRAINT cmsplugin_filer_folder_filerfolder_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cmsplugin_filer_image_filerimage_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_image_filerimage
    ADD CONSTRAINT cmsplugin_filer_image_filerimage_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cmsplugin_filer_image_thumbnailoption_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_image_thumbnailoption
    ADD CONSTRAINT cmsplugin_filer_image_thumbnailoption_pkey PRIMARY KEY (id);


--
-- Name: cmsplugin_filer_link_filerlinkplugin_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_link_filerlinkplugin
    ADD CONSTRAINT cmsplugin_filer_link_filerlinkplugin_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cmsplugin_filer_teaser_filerteaser_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_teaser_filerteaser
    ADD CONSTRAINT cmsplugin_filer_teaser_filerteaser_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: cmsplugin_filer_video_filervideo_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY cmsplugin_filer_video_filervideo
    ADD CONSTRAINT cmsplugin_filer_video_filervideo_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: digitalglarus_message_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY digitalglarus_message
    ADD CONSTRAINT digitalglarus_message_pkey PRIMARY KEY (id);


--
-- Name: django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_admin_log
    ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);


--
-- Name: django_content_type_app_label_3dcea89a55f2eebc_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_content_type
    ADD CONSTRAINT django_content_type_app_label_3dcea89a55f2eebc_uniq UNIQUE (app_label, model);


--
-- Name: django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_content_type
    ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);


--
-- Name: django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_migrations
    ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);


--
-- Name: django_select2_keymap_key_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_select2_keymap
    ADD CONSTRAINT django_select2_keymap_key_key UNIQUE (key);


--
-- Name: django_select2_keymap_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_select2_keymap
    ADD CONSTRAINT django_select2_keymap_pkey PRIMARY KEY (id);


--
-- Name: django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_session
    ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);


--
-- Name: django_site_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY django_site
    ADD CONSTRAINT django_site_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_authorentriesp_authorentriesplugin_id_user_i_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin_authors
    ADD CONSTRAINT djangocms_blog_authorentriesp_authorentriesplugin_id_user_i_key UNIQUE (authorentriesplugin_id, user_id);


--
-- Name: djangocms_blog_authorentriesplugin_authors_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin_authors
    ADD CONSTRAINT djangocms_blog_authorentriesplugin_authors_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_authorentriesplugin_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin
    ADD CONSTRAINT djangocms_blog_authorentriesplugin_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_blog_blogcategory__language_code_a19aa8b8cfb0d53_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_blogcategory_translation
    ADD CONSTRAINT djangocms_blog_blogcategory__language_code_a19aa8b8cfb0d53_uniq UNIQUE (language_code, slug);


--
-- Name: djangocms_blog_blogcategory_language_code_755572fed22105af_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_blogcategory_translation
    ADD CONSTRAINT djangocms_blog_blogcategory_language_code_755572fed22105af_uniq UNIQUE (language_code, master_id);


--
-- Name: djangocms_blog_blogcategory_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_blogcategory
    ADD CONSTRAINT djangocms_blog_blogcategory_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_blogcategory_translation_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_blogcategory_translation
    ADD CONSTRAINT djangocms_blog_blogcategory_translation_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_latestpostsplu_latestpostsplugin_id_blogcate_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_categories
    ADD CONSTRAINT djangocms_blog_latestpostsplu_latestpostsplugin_id_blogcate_key UNIQUE (latestpostsplugin_id, blogcategory_id);


--
-- Name: djangocms_blog_latestpostsplugi_latestpostsplugin_id_tag_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_tags
    ADD CONSTRAINT djangocms_blog_latestpostsplugi_latestpostsplugin_id_tag_id_key UNIQUE (latestpostsplugin_id, tag_id);


--
-- Name: djangocms_blog_latestpostsplugin_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_categories
    ADD CONSTRAINT djangocms_blog_latestpostsplugin_categories_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_latestpostsplugin_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin
    ADD CONSTRAINT djangocms_blog_latestpostsplugin_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_blog_latestpostsplugin_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_tags
    ADD CONSTRAINT djangocms_blog_latestpostsplugin_tags_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_post_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_categories
    ADD CONSTRAINT djangocms_blog_post_categories_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_post_categories_post_id_blogcategory_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_categories
    ADD CONSTRAINT djangocms_blog_post_categories_post_id_blogcategory_id_key UNIQUE (post_id, blogcategory_id);


--
-- Name: djangocms_blog_post_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post
    ADD CONSTRAINT djangocms_blog_post_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_post_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_sites
    ADD CONSTRAINT djangocms_blog_post_sites_pkey PRIMARY KEY (id);


--
-- Name: djangocms_blog_post_sites_post_id_site_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_sites
    ADD CONSTRAINT djangocms_blog_post_sites_post_id_site_id_key UNIQUE (post_id, site_id);


--
-- Name: djangocms_blog_post_transla_language_code_38d8970fc71783dd_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_translation
    ADD CONSTRAINT djangocms_blog_post_transla_language_code_38d8970fc71783dd_uniq UNIQUE (language_code, slug);


--
-- Name: djangocms_blog_post_transla_language_code_727992a8ca095c7f_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_translation
    ADD CONSTRAINT djangocms_blog_post_transla_language_code_727992a8ca095c7f_uniq UNIQUE (language_code, master_id);


--
-- Name: djangocms_blog_post_translation_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_blog_post_translation
    ADD CONSTRAINT djangocms_blog_post_translation_pkey PRIMARY KEY (id);


--
-- Name: djangocms_flash_flash_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_flash_flash
    ADD CONSTRAINT djangocms_flash_flash_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_googlemap_googlemap_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_googlemap_googlemap
    ADD CONSTRAINT djangocms_googlemap_googlemap_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_inherit_inheritpageplaceholder_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_inherit_inheritpageplaceholder
    ADD CONSTRAINT djangocms_inherit_inheritpageplaceholder_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_link_link_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_link_link
    ADD CONSTRAINT djangocms_link_link_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_page_meta_pagemeta_extended_object_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT djangocms_page_meta_pagemeta_extended_object_id_key UNIQUE (extended_object_id);


--
-- Name: djangocms_page_meta_pagemeta_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT djangocms_page_meta_pagemeta_pkey PRIMARY KEY (id);


--
-- Name: djangocms_page_meta_pagemeta_public_extension_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT djangocms_page_meta_pagemeta_public_extension_id_key UNIQUE (public_extension_id);


--
-- Name: djangocms_page_meta_titlemeta_extended_object_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta
    ADD CONSTRAINT djangocms_page_meta_titlemeta_extended_object_id_key UNIQUE (extended_object_id);


--
-- Name: djangocms_page_meta_titlemeta_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta
    ADD CONSTRAINT djangocms_page_meta_titlemeta_pkey PRIMARY KEY (id);


--
-- Name: djangocms_page_meta_titlemeta_public_extension_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta
    ADD CONSTRAINT djangocms_page_meta_titlemeta_public_extension_id_key UNIQUE (public_extension_id);


--
-- Name: djangocms_snippet_snippet_name_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_snippet_snippet
    ADD CONSTRAINT djangocms_snippet_snippet_name_key UNIQUE (name);


--
-- Name: djangocms_snippet_snippet_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_snippet_snippet
    ADD CONSTRAINT djangocms_snippet_snippet_pkey PRIMARY KEY (id);


--
-- Name: djangocms_snippet_snippetptr_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_snippet_snippetptr
    ADD CONSTRAINT djangocms_snippet_snippetptr_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_teaser_teaser_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_teaser_teaser
    ADD CONSTRAINT djangocms_teaser_teaser_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: djangocms_text_ckeditor_text_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY djangocms_text_ckeditor_text
    ADD CONSTRAINT djangocms_text_ckeditor_text_pkey PRIMARY KEY (cmsplugin_ptr_id);


--
-- Name: easy_thumbnails_source_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY easy_thumbnails_source
    ADD CONSTRAINT easy_thumbnails_source_pkey PRIMARY KEY (id);


--
-- Name: easy_thumbnails_source_storage_hash_7c8eb4f6f9dd654b_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY easy_thumbnails_source
    ADD CONSTRAINT easy_thumbnails_source_storage_hash_7c8eb4f6f9dd654b_uniq UNIQUE (storage_hash, name);


--
-- Name: easy_thumbnails_thumbnail_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY easy_thumbnails_thumbnail
    ADD CONSTRAINT easy_thumbnails_thumbnail_pkey PRIMARY KEY (id);


--
-- Name: easy_thumbnails_thumbnail_storage_hash_7fddac563f20b9d1_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY easy_thumbnails_thumbnail
    ADD CONSTRAINT easy_thumbnails_thumbnail_storage_hash_7fddac563f20b9d1_uniq UNIQUE (storage_hash, name, source_id);


--
-- Name: easy_thumbnails_thumbnaildimensions_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions
    ADD CONSTRAINT easy_thumbnails_thumbnaildimensions_pkey PRIMARY KEY (id);


--
-- Name: easy_thumbnails_thumbnaildimensions_thumbnail_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions
    ADD CONSTRAINT easy_thumbnails_thumbnaildimensions_thumbnail_id_key UNIQUE (thumbnail_id);


--
-- Name: filer_clipboard_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_clipboard
    ADD CONSTRAINT filer_clipboard_pkey PRIMARY KEY (id);


--
-- Name: filer_clipboarditem_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_clipboarditem
    ADD CONSTRAINT filer_clipboarditem_pkey PRIMARY KEY (id);


--
-- Name: filer_file_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_file
    ADD CONSTRAINT filer_file_pkey PRIMARY KEY (id);


--
-- Name: filer_folder_parent_id_1390b0846a51c444_uniq; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_folder
    ADD CONSTRAINT filer_folder_parent_id_1390b0846a51c444_uniq UNIQUE (parent_id, name);


--
-- Name: filer_folder_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_folder
    ADD CONSTRAINT filer_folder_pkey PRIMARY KEY (id);


--
-- Name: filer_folderpermission_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_folderpermission
    ADD CONSTRAINT filer_folderpermission_pkey PRIMARY KEY (id);


--
-- Name: filer_image_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY filer_image
    ADD CONSTRAINT filer_image_pkey PRIMARY KEY (file_ptr_id);


--
-- Name: hosting_railsbetauser_email_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY hosting_railsbetauser
    ADD CONSTRAINT hosting_railsbetauser_email_key UNIQUE (email);


--
-- Name: hosting_railsbetauser_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY hosting_railsbetauser
    ADD CONSTRAINT hosting_railsbetauser_pkey PRIMARY KEY (id);


--
-- Name: menus_cachekey_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY menus_cachekey
    ADD CONSTRAINT menus_cachekey_pkey PRIMARY KEY (id);


--
-- Name: railshosting_railsbetauser_email_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY railshosting_railsbetauser
    ADD CONSTRAINT railshosting_railsbetauser_email_key UNIQUE (email);


--
-- Name: railshosting_railsbetauser_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY railshosting_railsbetauser
    ADD CONSTRAINT railshosting_railsbetauser_pkey PRIMARY KEY (id);


--
-- Name: reversion_revision_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY reversion_revision
    ADD CONSTRAINT reversion_revision_pkey PRIMARY KEY (id);


--
-- Name: reversion_version_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY reversion_version
    ADD CONSTRAINT reversion_version_pkey PRIMARY KEY (id);


--
-- Name: taggit_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY taggit_tag
    ADD CONSTRAINT taggit_tag_name_key UNIQUE (name);


--
-- Name: taggit_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY taggit_tag
    ADD CONSTRAINT taggit_tag_pkey PRIMARY KEY (id);


--
-- Name: taggit_tag_slug_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY taggit_tag
    ADD CONSTRAINT taggit_tag_slug_key UNIQUE (slug);


--
-- Name: taggit_taggeditem_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY taggit_taggeditem
    ADD CONSTRAINT taggit_taggeditem_pkey PRIMARY KEY (id);


--
-- Name: ungleich_ungleichpage_extended_object_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY ungleich_ungleichpage
    ADD CONSTRAINT ungleich_ungleichpage_extended_object_id_key UNIQUE (extended_object_id);


--
-- Name: ungleich_ungleichpage_pkey; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY ungleich_ungleichpage
    ADD CONSTRAINT ungleich_ungleichpage_pkey PRIMARY KEY (id);


--
-- Name: ungleich_ungleichpage_public_extension_id_key; Type: CONSTRAINT; Schema: public; Owner: app; Tablespace: 
--

ALTER TABLE ONLY ungleich_ungleichpage
    ADD CONSTRAINT ungleich_ungleichpage_public_extension_id_key UNIQUE (public_extension_id);


--
-- Name: auth_group_name_278a4cf7a334bf0c_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_group_name_278a4cf7a334bf0c_like ON auth_group USING btree (name varchar_pattern_ops);


--
-- Name: auth_group_permissions_0e939a4f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_group_permissions_0e939a4f ON auth_group_permissions USING btree (group_id);


--
-- Name: auth_group_permissions_8373b171; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_group_permissions_8373b171 ON auth_group_permissions USING btree (permission_id);


--
-- Name: auth_permission_417f1b1c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_permission_417f1b1c ON auth_permission USING btree (content_type_id);


--
-- Name: auth_user_groups_0e939a4f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_user_groups_0e939a4f ON auth_user_groups USING btree (group_id);


--
-- Name: auth_user_groups_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_user_groups_e8701ad4 ON auth_user_groups USING btree (user_id);


--
-- Name: auth_user_user_permissions_8373b171; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_user_user_permissions_8373b171 ON auth_user_user_permissions USING btree (permission_id);


--
-- Name: auth_user_user_permissions_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_user_user_permissions_e8701ad4 ON auth_user_user_permissions USING btree (user_id);


--
-- Name: auth_user_username_186bc59fbaa414d5_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX auth_user_username_186bc59fbaa414d5_like ON auth_user USING btree (username varchar_pattern_ops);


--
-- Name: cms_aliaspluginmodel_921abf5c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_aliaspluginmodel_921abf5c ON cms_aliaspluginmodel USING btree (alias_placeholder_id);


--
-- Name: cms_aliaspluginmodel_b25eaab4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_aliaspluginmodel_b25eaab4 ON cms_aliaspluginmodel USING btree (plugin_id);


--
-- Name: cms_cmsplugin_667a6151; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_cmsplugin_667a6151 ON cms_cmsplugin USING btree (placeholder_id);


--
-- Name: cms_cmsplugin_6be37982; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_cmsplugin_6be37982 ON cms_cmsplugin USING btree (parent_id);


--
-- Name: cms_cmsplugin_8512ae7d; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_cmsplugin_8512ae7d ON cms_cmsplugin USING btree (language);


--
-- Name: cms_cmsplugin_b5e4cf8f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_cmsplugin_b5e4cf8f ON cms_cmsplugin USING btree (plugin_type);


--
-- Name: cms_cmsplugin_language_7123ba4ab8692cf5_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_cmsplugin_language_7123ba4ab8692cf5_like ON cms_cmsplugin USING btree (language varchar_pattern_ops);


--
-- Name: cms_cmsplugin_plugin_type_4ab9d6bfbdea06a4_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_cmsplugin_plugin_type_4ab9d6bfbdea06a4_like ON cms_cmsplugin USING btree (plugin_type varchar_pattern_ops);


--
-- Name: cms_globalpagepermission_0e939a4f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_globalpagepermission_0e939a4f ON cms_globalpagepermission USING btree (group_id);


--
-- Name: cms_globalpagepermission_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_globalpagepermission_e8701ad4 ON cms_globalpagepermission USING btree (user_id);


--
-- Name: cms_globalpagepermission_sites_9365d6e7; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_globalpagepermission_sites_9365d6e7 ON cms_globalpagepermission_sites USING btree (site_id);


--
-- Name: cms_globalpagepermission_sites_a3d12ecd; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_globalpagepermission_sites_a3d12ecd ON cms_globalpagepermission_sites USING btree (globalpagepermission_id);


--
-- Name: cms_page_1d85575d; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_1d85575d ON cms_page USING btree (soft_root);


--
-- Name: cms_page_2247c5f0; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_2247c5f0 ON cms_page USING btree (publication_end_date);


--
-- Name: cms_page_3d9ef52f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_3d9ef52f ON cms_page USING btree (reverse_id);


--
-- Name: cms_page_4fa1c803; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_4fa1c803 ON cms_page USING btree (is_home);


--
-- Name: cms_page_6be37982; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_6be37982 ON cms_page USING btree (parent_id);


--
-- Name: cms_page_7b8acfa6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_7b8acfa6 ON cms_page USING btree (navigation_extenders);


--
-- Name: cms_page_9365d6e7; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_9365d6e7 ON cms_page USING btree (site_id);


--
-- Name: cms_page_93b83098; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_93b83098 ON cms_page USING btree (publication_date);


--
-- Name: cms_page_application_urls_71bd190d025877b8_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_application_urls_71bd190d025877b8_like ON cms_page USING btree (application_urls varchar_pattern_ops);


--
-- Name: cms_page_b7700099; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_b7700099 ON cms_page USING btree (publisher_is_draft);


--
-- Name: cms_page_cb540373; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_cb540373 ON cms_page USING btree (limit_visibility_in_menu);


--
-- Name: cms_page_db3eb53f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_db3eb53f ON cms_page USING btree (in_navigation);


--
-- Name: cms_page_e721871e; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_e721871e ON cms_page USING btree (application_urls);


--
-- Name: cms_page_navigation_extenders_3bf544ece0950dc2_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_navigation_extenders_3bf544ece0950dc2_like ON cms_page USING btree (navigation_extenders varchar_pattern_ops);


--
-- Name: cms_page_placeholders_1a63c800; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_placeholders_1a63c800 ON cms_page_placeholders USING btree (page_id);


--
-- Name: cms_page_placeholders_667a6151; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_placeholders_667a6151 ON cms_page_placeholders USING btree (placeholder_id);


--
-- Name: cms_page_reverse_id_66ad1d01e5dfa704_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_page_reverse_id_66ad1d01e5dfa704_like ON cms_page USING btree (reverse_id varchar_pattern_ops);


--
-- Name: cms_pagepermission_0e939a4f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_pagepermission_0e939a4f ON cms_pagepermission USING btree (group_id);


--
-- Name: cms_pagepermission_1a63c800; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_pagepermission_1a63c800 ON cms_pagepermission USING btree (page_id);


--
-- Name: cms_pagepermission_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_pagepermission_e8701ad4 ON cms_pagepermission USING btree (user_id);


--
-- Name: cms_pageuser_e93cb7eb; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_pageuser_e93cb7eb ON cms_pageuser USING btree (created_by_id);


--
-- Name: cms_pageusergroup_e93cb7eb; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_pageusergroup_e93cb7eb ON cms_pageusergroup USING btree (created_by_id);


--
-- Name: cms_placeholder_5e97994e; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_placeholder_5e97994e ON cms_placeholder USING btree (slot);


--
-- Name: cms_placeholder_slot_5cc23865c802b1e2_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_placeholder_slot_5cc23865c802b1e2_like ON cms_placeholder USING btree (slot varchar_pattern_ops);


--
-- Name: cms_placeholderreference_328d0afc; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_placeholderreference_328d0afc ON cms_placeholderreference USING btree (placeholder_ref_id);


--
-- Name: cms_staticplaceholder_1ee2744d; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_staticplaceholder_1ee2744d ON cms_staticplaceholder USING btree (public_id);


--
-- Name: cms_staticplaceholder_5cb48773; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_staticplaceholder_5cb48773 ON cms_staticplaceholder USING btree (draft_id);


--
-- Name: cms_staticplaceholder_9365d6e7; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_staticplaceholder_9365d6e7 ON cms_staticplaceholder USING btree (site_id);


--
-- Name: cms_title_1268de9a; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_1268de9a ON cms_title USING btree (has_url_overwrite);


--
-- Name: cms_title_1a63c800; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_1a63c800 ON cms_title USING btree (page_id);


--
-- Name: cms_title_2dbcba41; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_2dbcba41 ON cms_title USING btree (slug);


--
-- Name: cms_title_8512ae7d; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_8512ae7d ON cms_title USING btree (language);


--
-- Name: cms_title_b7700099; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_b7700099 ON cms_title USING btree (publisher_is_draft);


--
-- Name: cms_title_d6fe1d0b; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_d6fe1d0b ON cms_title USING btree (path);


--
-- Name: cms_title_f7202fc0; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_f7202fc0 ON cms_title USING btree (publisher_state);


--
-- Name: cms_title_language_4a0d9e2ff2ad085c_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_language_4a0d9e2ff2ad085c_like ON cms_title USING btree (language varchar_pattern_ops);


--
-- Name: cms_title_path_631a79107e3c59a2_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_path_631a79107e3c59a2_like ON cms_title USING btree (path varchar_pattern_ops);


--
-- Name: cms_title_slug_1a7da21be398730e_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_title_slug_1a7da21be398730e_like ON cms_title USING btree (slug varchar_pattern_ops);


--
-- Name: cms_usersettings_2655b062; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cms_usersettings_2655b062 ON cms_usersettings USING btree (clipboard_id);


--
-- Name: cmsplugin_filer_file_filerfile_814552b9; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_file_filerfile_814552b9 ON cmsplugin_filer_file_filerfile USING btree (file_id);


--
-- Name: cmsplugin_filer_folder_filerfolder_a8a44dbb; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_folder_filerfolder_a8a44dbb ON cmsplugin_filer_folder_filerfolder USING btree (folder_id);


--
-- Name: cmsplugin_filer_image_filerimage_0fe0fc57; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_image_filerimage_0fe0fc57 ON cmsplugin_filer_image_filerimage USING btree (file_link_id);


--
-- Name: cmsplugin_filer_image_filerimage_6b85b7b1; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_image_filerimage_6b85b7b1 ON cmsplugin_filer_image_filerimage USING btree (thumbnail_option_id);


--
-- Name: cmsplugin_filer_image_filerimage_d916d256; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_image_filerimage_d916d256 ON cmsplugin_filer_image_filerimage USING btree (page_link_id);


--
-- Name: cmsplugin_filer_image_filerimage_f33175e6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_image_filerimage_f33175e6 ON cmsplugin_filer_image_filerimage USING btree (image_id);


--
-- Name: cmsplugin_filer_link_filerlinkplugin_814552b9; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_link_filerlinkplugin_814552b9 ON cmsplugin_filer_link_filerlinkplugin USING btree (file_id);


--
-- Name: cmsplugin_filer_link_filerlinkplugin_d916d256; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_link_filerlinkplugin_d916d256 ON cmsplugin_filer_link_filerlinkplugin USING btree (page_link_id);


--
-- Name: cmsplugin_filer_teaser_filerteaser_d916d256; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_teaser_filerteaser_d916d256 ON cmsplugin_filer_teaser_filerteaser USING btree (page_link_id);


--
-- Name: cmsplugin_filer_teaser_filerteaser_f33175e6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_teaser_filerteaser_f33175e6 ON cmsplugin_filer_teaser_filerteaser USING btree (image_id);


--
-- Name: cmsplugin_filer_video_filervideo_d1b173c8; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_video_filervideo_d1b173c8 ON cmsplugin_filer_video_filervideo USING btree (movie_id);


--
-- Name: cmsplugin_filer_video_filervideo_f33175e6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX cmsplugin_filer_video_filervideo_f33175e6 ON cmsplugin_filer_video_filervideo USING btree (image_id);


--
-- Name: django_admin_log_417f1b1c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX django_admin_log_417f1b1c ON django_admin_log USING btree (content_type_id);


--
-- Name: django_admin_log_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX django_admin_log_e8701ad4 ON django_admin_log USING btree (user_id);


--
-- Name: django_select2_keymap_key_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX django_select2_keymap_key_like ON django_select2_keymap USING btree (key varchar_pattern_ops);


--
-- Name: django_session_de54fa62; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX django_session_de54fa62 ON django_session USING btree (expire_date);


--
-- Name: django_session_session_key_61253c6c71e29745_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX django_session_session_key_61253c6c71e29745_like ON django_session USING btree (session_key varchar_pattern_ops);


--
-- Name: djangocms_blog_authorentriesplugin_authors_793c8338; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_authorentriesplugin_authors_793c8338 ON djangocms_blog_authorentriesplugin_authors USING btree (authorentriesplugin_id);


--
-- Name: djangocms_blog_authorentriesplugin_authors_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_authorentriesplugin_authors_e8701ad4 ON djangocms_blog_authorentriesplugin_authors USING btree (user_id);


--
-- Name: djangocms_blog_blogcategory_6be37982; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_blogcategory_6be37982 ON djangocms_blog_blogcategory USING btree (parent_id);


--
-- Name: djangocms_blog_blogcategory_language_code_6d38c82aaa83570a_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_blogcategory_language_code_6d38c82aaa83570a_like ON djangocms_blog_blogcategory_translation USING btree (language_code varchar_pattern_ops);


--
-- Name: djangocms_blog_blogcategory_translat_slug_6e348a9ab9a538a7_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_blogcategory_translat_slug_6e348a9ab9a538a7_like ON djangocms_blog_blogcategory_translation USING btree (slug varchar_pattern_ops);


--
-- Name: djangocms_blog_blogcategory_translation_2dbcba41; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_blogcategory_translation_2dbcba41 ON djangocms_blog_blogcategory_translation USING btree (slug);


--
-- Name: djangocms_blog_blogcategory_translation_60716c2f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_blogcategory_translation_60716c2f ON djangocms_blog_blogcategory_translation USING btree (language_code);


--
-- Name: djangocms_blog_blogcategory_translation_90349b61; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_blogcategory_translation_90349b61 ON djangocms_blog_blogcategory_translation USING btree (master_id);


--
-- Name: djangocms_blog_latestpostsplugin_categories_efb54956; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_latestpostsplugin_categories_efb54956 ON djangocms_blog_latestpostsplugin_categories USING btree (blogcategory_id);


--
-- Name: djangocms_blog_latestpostsplugin_categories_fda89e10; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_latestpostsplugin_categories_fda89e10 ON djangocms_blog_latestpostsplugin_categories USING btree (latestpostsplugin_id);


--
-- Name: djangocms_blog_latestpostsplugin_tags_76f094bc; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_latestpostsplugin_tags_76f094bc ON djangocms_blog_latestpostsplugin_tags USING btree (tag_id);


--
-- Name: djangocms_blog_latestpostsplugin_tags_fda89e10; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_latestpostsplugin_tags_fda89e10 ON djangocms_blog_latestpostsplugin_tags USING btree (latestpostsplugin_id);


--
-- Name: djangocms_blog_post_36b62cbe; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_36b62cbe ON djangocms_blog_post USING btree (main_image_id);


--
-- Name: djangocms_blog_post_4f331e2f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_4f331e2f ON djangocms_blog_post USING btree (author_id);


--
-- Name: djangocms_blog_post_53808359; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_53808359 ON djangocms_blog_post USING btree (main_image_full_id);


--
-- Name: djangocms_blog_post_9d0a35cc; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_9d0a35cc ON djangocms_blog_post USING btree (main_image_thumbnail_id);


--
-- Name: djangocms_blog_post_categories_efb54956; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_categories_efb54956 ON djangocms_blog_post_categories USING btree (blogcategory_id);


--
-- Name: djangocms_blog_post_categories_f3aa1999; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_categories_f3aa1999 ON djangocms_blog_post_categories USING btree (post_id);


--
-- Name: djangocms_blog_post_e14f02ad; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_e14f02ad ON djangocms_blog_post USING btree (content_id);


--
-- Name: djangocms_blog_post_sites_9365d6e7; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_sites_9365d6e7 ON djangocms_blog_post_sites USING btree (site_id);


--
-- Name: djangocms_blog_post_sites_f3aa1999; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_sites_f3aa1999 ON djangocms_blog_post_sites USING btree (post_id);


--
-- Name: djangocms_blog_post_transla_language_code_7ce952443f776c26_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_transla_language_code_7ce952443f776c26_like ON djangocms_blog_post_translation USING btree (language_code varchar_pattern_ops);


--
-- Name: djangocms_blog_post_translation_2dbcba41; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_translation_2dbcba41 ON djangocms_blog_post_translation USING btree (slug);


--
-- Name: djangocms_blog_post_translation_60716c2f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_translation_60716c2f ON djangocms_blog_post_translation USING btree (language_code);


--
-- Name: djangocms_blog_post_translation_90349b61; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_translation_90349b61 ON djangocms_blog_post_translation USING btree (master_id);


--
-- Name: djangocms_blog_post_translation_slug_5a481371b5483e29_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_blog_post_translation_slug_5a481371b5483e29_like ON djangocms_blog_post_translation USING btree (slug varchar_pattern_ops);


--
-- Name: djangocms_inherit_inheritpageplaceholder_ccbb37bf; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_inherit_inheritpageplaceholder_ccbb37bf ON djangocms_inherit_inheritpageplaceholder USING btree (from_page_id);


--
-- Name: djangocms_link_link_d916d256; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_link_link_d916d256 ON djangocms_link_link USING btree (page_link_id);


--
-- Name: djangocms_page_meta_pagemeta_f149115b; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_page_meta_pagemeta_f149115b ON djangocms_page_meta_pagemeta USING btree (og_author_id);


--
-- Name: djangocms_page_meta_pagemeta_f33175e6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_page_meta_pagemeta_f33175e6 ON djangocms_page_meta_pagemeta USING btree (image_id);


--
-- Name: djangocms_page_meta_titlemeta_f33175e6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_page_meta_titlemeta_f33175e6 ON djangocms_page_meta_titlemeta USING btree (image_id);


--
-- Name: djangocms_snippet_snippet_name_2d01e17f7fe649fb_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_snippet_snippet_name_2d01e17f7fe649fb_like ON djangocms_snippet_snippet USING btree (name varchar_pattern_ops);


--
-- Name: djangocms_snippet_snippetptr_cfd011c9; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_snippet_snippetptr_cfd011c9 ON djangocms_snippet_snippetptr USING btree (snippet_id);


--
-- Name: djangocms_teaser_teaser_d916d256; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX djangocms_teaser_teaser_d916d256 ON djangocms_teaser_teaser USING btree (page_link_id);


--
-- Name: easy_thumbnails_source_b068931c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_source_b068931c ON easy_thumbnails_source USING btree (name);


--
-- Name: easy_thumbnails_source_b454e115; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_source_b454e115 ON easy_thumbnails_source USING btree (storage_hash);


--
-- Name: easy_thumbnails_source_name_52f9bdf4bacaefed_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_source_name_52f9bdf4bacaefed_like ON easy_thumbnails_source USING btree (name varchar_pattern_ops);


--
-- Name: easy_thumbnails_source_storage_hash_74d89b9b49dfc360_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_source_storage_hash_74d89b9b49dfc360_like ON easy_thumbnails_source USING btree (storage_hash varchar_pattern_ops);


--
-- Name: easy_thumbnails_thumbnail_0afd9202; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_thumbnail_0afd9202 ON easy_thumbnails_thumbnail USING btree (source_id);


--
-- Name: easy_thumbnails_thumbnail_b068931c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_thumbnail_b068931c ON easy_thumbnails_thumbnail USING btree (name);


--
-- Name: easy_thumbnails_thumbnail_b454e115; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_thumbnail_b454e115 ON easy_thumbnails_thumbnail USING btree (storage_hash);


--
-- Name: easy_thumbnails_thumbnail_name_5cf9036e7f51237_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_thumbnail_name_5cf9036e7f51237_like ON easy_thumbnails_thumbnail USING btree (name varchar_pattern_ops);


--
-- Name: easy_thumbnails_thumbnail_storage_hash_1ef3b184ff542242_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX easy_thumbnails_thumbnail_storage_hash_1ef3b184ff542242_like ON easy_thumbnails_thumbnail USING btree (storage_hash varchar_pattern_ops);


--
-- Name: filer_clipboard_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_clipboard_e8701ad4 ON filer_clipboard USING btree (user_id);


--
-- Name: filer_clipboarditem_2655b062; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_clipboarditem_2655b062 ON filer_clipboarditem USING btree (clipboard_id);


--
-- Name: filer_clipboarditem_814552b9; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_clipboarditem_814552b9 ON filer_clipboarditem USING btree (file_id);


--
-- Name: filer_file_5e7b1936; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_file_5e7b1936 ON filer_file USING btree (owner_id);


--
-- Name: filer_file_a8a44dbb; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_file_a8a44dbb ON filer_file USING btree (folder_id);


--
-- Name: filer_file_d3e32c49; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_file_d3e32c49 ON filer_file USING btree (polymorphic_ctype_id);


--
-- Name: filer_folder_3cfbd988; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folder_3cfbd988 ON filer_folder USING btree (rght);


--
-- Name: filer_folder_5e7b1936; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folder_5e7b1936 ON filer_folder USING btree (owner_id);


--
-- Name: filer_folder_656442a0; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folder_656442a0 ON filer_folder USING btree (tree_id);


--
-- Name: filer_folder_6be37982; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folder_6be37982 ON filer_folder USING btree (parent_id);


--
-- Name: filer_folder_c9e9a848; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folder_c9e9a848 ON filer_folder USING btree (level);


--
-- Name: filer_folder_caf7cc51; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folder_caf7cc51 ON filer_folder USING btree (lft);


--
-- Name: filer_folderpermission_0e939a4f; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folderpermission_0e939a4f ON filer_folderpermission USING btree (group_id);


--
-- Name: filer_folderpermission_a8a44dbb; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folderpermission_a8a44dbb ON filer_folderpermission USING btree (folder_id);


--
-- Name: filer_folderpermission_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX filer_folderpermission_e8701ad4 ON filer_folderpermission USING btree (user_id);


--
-- Name: hosting_railsbetauser_email_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX hosting_railsbetauser_email_like ON hosting_railsbetauser USING btree (email varchar_pattern_ops);


--
-- Name: railshosting_railsbetauser_email_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX railshosting_railsbetauser_email_like ON railshosting_railsbetauser USING btree (email varchar_pattern_ops);


--
-- Name: reversion_revision_b16b0f06; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_revision_b16b0f06 ON reversion_revision USING btree (manager_slug);


--
-- Name: reversion_revision_c69e55a4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_revision_c69e55a4 ON reversion_revision USING btree (date_created);


--
-- Name: reversion_revision_e8701ad4; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_revision_e8701ad4 ON reversion_revision USING btree (user_id);


--
-- Name: reversion_revision_manager_slug_26483faf947fe72_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_revision_manager_slug_26483faf947fe72_like ON reversion_revision USING btree (manager_slug varchar_pattern_ops);


--
-- Name: reversion_version_0c9ba3a3; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_version_0c9ba3a3 ON reversion_version USING btree (object_id_int);


--
-- Name: reversion_version_417f1b1c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_version_417f1b1c ON reversion_version USING btree (content_type_id);


--
-- Name: reversion_version_5de09a8d; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX reversion_version_5de09a8d ON reversion_version USING btree (revision_id);


--
-- Name: taggit_tag_name_7a358e5647db501d_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX taggit_tag_name_7a358e5647db501d_like ON taggit_tag USING btree (name varchar_pattern_ops);


--
-- Name: taggit_tag_slug_f7782df9b8e9952_like; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX taggit_tag_slug_f7782df9b8e9952_like ON taggit_tag USING btree (slug varchar_pattern_ops);


--
-- Name: taggit_taggeditem_417f1b1c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX taggit_taggeditem_417f1b1c ON taggit_taggeditem USING btree (content_type_id);


--
-- Name: taggit_taggeditem_76f094bc; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX taggit_taggeditem_76f094bc ON taggit_taggeditem USING btree (tag_id);


--
-- Name: taggit_taggeditem_af31437c; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX taggit_taggeditem_af31437c ON taggit_taggeditem USING btree (object_id);


--
-- Name: ungleich_ungleichpage_f33175e6; Type: INDEX; Schema: public; Owner: app; Tablespace: 
--

CREATE INDEX ungleich_ungleichpage_f33175e6 ON ungleich_ungleichpage USING btree (image_id);


--
-- Name: D045d6bc5122c2888af1542cc85348c8; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY ungleich_ungleichpage
    ADD CONSTRAINT "D045d6bc5122c2888af1542cc85348c8" FOREIGN KEY (public_extension_id) REFERENCES ungleich_ungleichpage(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D18f0a3c282c7e09eda221cbd5e3192e; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta
    ADD CONSTRAINT "D18f0a3c282c7e09eda221cbd5e3192e" FOREIGN KEY (public_extension_id) REFERENCES djangocms_page_meta_titlemeta(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D3323943931e6fc209aaf657e5453aec; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_categories
    ADD CONSTRAINT "D3323943931e6fc209aaf657e5453aec" FOREIGN KEY (blogcategory_id) REFERENCES djangocms_blog_blogcategory(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D3db5af841b6175efb68810a56f3d71b; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_image_filerimage
    ADD CONSTRAINT "D3db5af841b6175efb68810a56f3d71b" FOREIGN KEY (thumbnail_option_id) REFERENCES cmsplugin_filer_image_thumbnailoption(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D66526b231f7a5f4dd31be609e8c2a2c; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_file
    ADD CONSTRAINT "D66526b231f7a5f4dd31be609e8c2a2c" FOREIGN KEY (polymorphic_ctype_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D70a0e683976d19ea7ec2a8ac566f4da; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_categories
    ADD CONSTRAINT "D70a0e683976d19ea7ec2a8ac566f4da" FOREIGN KEY (latestpostsplugin_id) REFERENCES djangocms_blog_latestpostsplugin(cmsplugin_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D74750ca7467fe005f3b759498e07742; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT "D74750ca7467fe005f3b759498e07742" FOREIGN KEY (public_extension_id) REFERENCES djangocms_page_meta_pagemeta(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D7d4fd4f888fa778d59b23a32707cfc6; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post
    ADD CONSTRAINT "D7d4fd4f888fa778d59b23a32707cfc6" FOREIGN KEY (main_image_thumbnail_id) REFERENCES cmsplugin_filer_image_thumbnailoption(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D80eb6ef4faf703498501f55a54f6eb8; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_categories
    ADD CONSTRAINT "D80eb6ef4faf703498501f55a54f6eb8" FOREIGN KEY (blogcategory_id) REFERENCES djangocms_blog_blogcategory(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D853b646b925fe8119395ff740595b86; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_tags
    ADD CONSTRAINT "D853b646b925fe8119395ff740595b86" FOREIGN KEY (latestpostsplugin_id) REFERENCES djangocms_blog_latestpostsplugin(cmsplugin_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: D97a776782851d9a83cf6d8b89948e53; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_globalpagepermission_sites
    ADD CONSTRAINT "D97a776782851d9a83cf6d8b89948e53" FOREIGN KEY (globalpagepermission_id) REFERENCES cms_globalpagepermission(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: a0937697f9892da17fff283dc2ca2cf4; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin_authors
    ADD CONSTRAINT a0937697f9892da17fff283dc2ca2cf4 FOREIGN KEY (authorentriesplugin_id) REFERENCES djangocms_blog_authorentriesplugin(cmsplugin_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_content_type_id_64e1719ce5ca8a6d_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_permission
    ADD CONSTRAINT auth_content_type_id_64e1719ce5ca8a6d_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_group_p_permission_id_13f9ff776e0046_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_group_permissions
    ADD CONSTRAINT auth_group_p_permission_id_13f9ff776e0046_fk_auth_permission_id FOREIGN KEY (permission_id) REFERENCES auth_permission(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_group_permissio_group_id_3e5a5d7789ec3752_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_group_permissions
    ADD CONSTRAINT auth_group_permissio_group_id_3e5a5d7789ec3752_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_user__permission_id_60b91b178f4c450d_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user_user_permissions
    ADD CONSTRAINT auth_user__permission_id_60b91b178f4c450d_fk_auth_permission_id FOREIGN KEY (permission_id) REFERENCES auth_permission(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_user_groups_group_id_605b0fc1af15748a_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user_groups
    ADD CONSTRAINT auth_user_groups_group_id_605b0fc1af15748a_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_user_groups_user_id_6109f0f81ace7fe6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user_groups
    ADD CONSTRAINT auth_user_groups_user_id_6109f0f81ace7fe6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: auth_user_user_permiss_user_id_485c61d21b4b4409_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY auth_user_user_permissions
    ADD CONSTRAINT auth_user_user_permiss_user_id_485c61d21b4b4409_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_alias_cmsplugin_ptr_id_721e0f43634b6398_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_aliaspluginmodel
    ADD CONSTRAINT cms_alias_cmsplugin_ptr_id_721e0f43634b6398_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_alias_placeholder_id_3c065afe5855786b_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_aliaspluginmodel
    ADD CONSTRAINT cms_alias_placeholder_id_3c065afe5855786b_fk_cms_placeholder_id FOREIGN KEY (alias_placeholder_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_aliaspluginm_plugin_id_286ef06289c39b5c_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_aliaspluginmodel
    ADD CONSTRAINT cms_aliaspluginm_plugin_id_286ef06289c39b5c_fk_cms_cmsplugin_id FOREIGN KEY (plugin_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_cmsplu_placeholder_id_8718fbc4cd46e71_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_cmsplugin
    ADD CONSTRAINT cms_cmsplu_placeholder_id_8718fbc4cd46e71_fk_cms_placeholder_id FOREIGN KEY (placeholder_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_cmsplugin_parent_id_24b76873a88be0cb_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_cmsplugin
    ADD CONSTRAINT cms_cmsplugin_parent_id_24b76873a88be0cb_fk_cms_cmsplugin_id FOREIGN KEY (parent_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_globalpagepermis_group_id_7066bf1ccd6d7390_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_globalpagepermission
    ADD CONSTRAINT cms_globalpagepermis_group_id_7066bf1ccd6d7390_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_globalpagepermis_site_id_4e96f7bfd1093c12_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_globalpagepermission_sites
    ADD CONSTRAINT cms_globalpagepermis_site_id_4e96f7bfd1093c12_fk_django_site_id FOREIGN KEY (site_id) REFERENCES django_site(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_globalpagepermissi_user_id_56bf56d4a8d5b0a0_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_globalpagepermission
    ADD CONSTRAINT cms_globalpagepermissi_user_id_56bf56d4a8d5b0a0_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_p_placeholder_ref_id_7f5842a61f70973e_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_placeholderreference
    ADD CONSTRAINT cms_p_placeholder_ref_id_7f5842a61f70973e_fk_cms_placeholder_id FOREIGN KEY (placeholder_ref_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_page__placeholder_id_5d6de1e3049053b0_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page_placeholders
    ADD CONSTRAINT cms_page__placeholder_id_5d6de1e3049053b0_fk_cms_placeholder_id FOREIGN KEY (placeholder_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_page_parent_id_16d483330f2786b9_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_parent_id_16d483330f2786b9_fk_cms_page_id FOREIGN KEY (parent_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_page_placeholders_page_id_5c1aabecb20513f1_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page_placeholders
    ADD CONSTRAINT cms_page_placeholders_page_id_5c1aabecb20513f1_fk_cms_page_id FOREIGN KEY (page_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_page_publisher_public_id_7e7bca24d658a61c_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_publisher_public_id_7e7bca24d658a61c_fk_cms_page_id FOREIGN KEY (publisher_public_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_page_site_id_51bc8ebff4261a88_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_page
    ADD CONSTRAINT cms_page_site_id_51bc8ebff4261a88_fk_django_site_id FOREIGN KEY (site_id) REFERENCES django_site(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pagepermission_group_id_14871c942c1ced3f_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pagepermission
    ADD CONSTRAINT cms_pagepermission_group_id_14871c942c1ced3f_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pagepermission_page_id_2b0ce7bdc2ae5b8_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pagepermission
    ADD CONSTRAINT cms_pagepermission_page_id_2b0ce7bdc2ae5b8_fk_cms_page_id FOREIGN KEY (page_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pagepermission_user_id_5feeedd6af240c6f_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pagepermission
    ADD CONSTRAINT cms_pagepermission_user_id_5feeedd6af240c6f_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pageuser_created_by_id_71ea121116e84ad3_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pageuser
    ADD CONSTRAINT cms_pageuser_created_by_id_71ea121116e84ad3_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pageuser_user_ptr_id_340d3049fdd6daeb_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pageuser
    ADD CONSTRAINT cms_pageuser_user_ptr_id_340d3049fdd6daeb_fk_auth_user_id FOREIGN KEY (user_ptr_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pageusergrou_created_by_id_16b7873a739cdd41_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pageusergroup
    ADD CONSTRAINT cms_pageusergrou_created_by_id_16b7873a739cdd41_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_pageusergroup_group_ptr_id_bbdd4a06a74d2ec_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_pageusergroup
    ADD CONSTRAINT cms_pageusergroup_group_ptr_id_bbdd4a06a74d2ec_fk_auth_group_id FOREIGN KEY (group_ptr_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_place_cmsplugin_ptr_id_66379faa6a33f4ab_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_placeholderreference
    ADD CONSTRAINT cms_place_cmsplugin_ptr_id_66379faa6a33f4ab_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_staticplace_draft_id_32d5495aee4468b4_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_staticplaceholder
    ADD CONSTRAINT cms_staticplace_draft_id_32d5495aee4468b4_fk_cms_placeholder_id FOREIGN KEY (draft_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_staticplace_public_id_e26322c4c62bd7e_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_staticplaceholder
    ADD CONSTRAINT cms_staticplace_public_id_e26322c4c62bd7e_fk_cms_placeholder_id FOREIGN KEY (public_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_staticplaceholde_site_id_68762690d28d01d4_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_staticplaceholder
    ADD CONSTRAINT cms_staticplaceholde_site_id_68762690d28d01d4_fk_django_site_id FOREIGN KEY (site_id) REFERENCES django_site(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_title_page_id_4ebd393d277199bf_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_title
    ADD CONSTRAINT cms_title_page_id_4ebd393d277199bf_fk_cms_page_id FOREIGN KEY (page_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_title_publisher_public_id_27cecc46e5451469_fk_cms_title_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_title
    ADD CONSTRAINT cms_title_publisher_public_id_27cecc46e5451469_fk_cms_title_id FOREIGN KEY (publisher_public_id) REFERENCES cms_title(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_userset_clipboard_id_720bd6f30e60bca8_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_usersettings
    ADD CONSTRAINT cms_userset_clipboard_id_720bd6f30e60bca8_fk_cms_placeholder_id FOREIGN KEY (clipboard_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cms_usersettings_user_id_33ee1d79f067dbe5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cms_usersettings
    ADD CONSTRAINT cms_usersettings_user_id_33ee1d79f067dbe5_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin__image_id_2dd8c49eaf000c4a_fk_filer_image_file_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_teaser_filerteaser
    ADD CONSTRAINT cmsplugin__image_id_2dd8c49eaf000c4a_fk_filer_image_file_ptr_id FOREIGN KEY (image_id) REFERENCES filer_image(file_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin__image_id_6dcedb8ebed43032_fk_filer_image_file_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_video_filervideo
    ADD CONSTRAINT cmsplugin__image_id_6dcedb8ebed43032_fk_filer_image_file_ptr_id FOREIGN KEY (image_id) REFERENCES filer_image(file_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_cmsplugin_ptr_id_1614b969cfa257f1_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_teaser_filerteaser
    ADD CONSTRAINT cmsplugin_cmsplugin_ptr_id_1614b969cfa257f1_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_cmsplugin_ptr_id_1cc2a8f998c320bb_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_link_filerlinkplugin
    ADD CONSTRAINT cmsplugin_cmsplugin_ptr_id_1cc2a8f998c320bb_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_cmsplugin_ptr_id_2fef045737576d39_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_folder_filerfolder
    ADD CONSTRAINT cmsplugin_cmsplugin_ptr_id_2fef045737576d39_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_cmsplugin_ptr_id_3c44385c377a4db5_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_file_filerfile
    ADD CONSTRAINT cmsplugin_cmsplugin_ptr_id_3c44385c377a4db5_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_cmsplugin_ptr_id_4d6c50b300069d13_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_video_filervideo
    ADD CONSTRAINT cmsplugin_cmsplugin_ptr_id_4d6c50b300069d13_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_cmsplugin_ptr_id_686142e0c134e1d5_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_image_filerimage
    ADD CONSTRAINT cmsplugin_cmsplugin_ptr_id_686142e0c134e1d5_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_f_image_id_15a8d69b387a316_fk_filer_image_file_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_image_filerimage
    ADD CONSTRAINT cmsplugin_f_image_id_15a8d69b387a316_fk_filer_image_file_ptr_id FOREIGN KEY (image_id) REFERENCES filer_image(file_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer__file_link_id_7ae9937fd6074fe7_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_image_filerimage
    ADD CONSTRAINT cmsplugin_filer__file_link_id_7ae9937fd6074fe7_fk_filer_file_id FOREIGN KEY (file_link_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_file__file_id_1e92194b4cff1490_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_file_filerfile
    ADD CONSTRAINT cmsplugin_filer_file__file_id_1e92194b4cff1490_fk_filer_file_id FOREIGN KEY (file_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_fo_folder_id_b462dcd7da81054_fk_filer_folder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_folder_filerfolder
    ADD CONSTRAINT cmsplugin_filer_fo_folder_id_b462dcd7da81054_fk_filer_folder_id FOREIGN KEY (folder_id) REFERENCES filer_folder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_im_page_link_id_3ed262a1cd901da2_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_image_filerimage
    ADD CONSTRAINT cmsplugin_filer_im_page_link_id_3ed262a1cd901da2_fk_cms_page_id FOREIGN KEY (page_link_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_lin_page_link_id_332ee75546fa438_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_link_filerlinkplugin
    ADD CONSTRAINT cmsplugin_filer_lin_page_link_id_332ee75546fa438_fk_cms_page_id FOREIGN KEY (page_link_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_link__file_id_1c204ca30e9bcb80_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_link_filerlinkplugin
    ADD CONSTRAINT cmsplugin_filer_link__file_id_1c204ca30e9bcb80_fk_filer_file_id FOREIGN KEY (file_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_te_page_link_id_1140fe9baec531be_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_teaser_filerteaser
    ADD CONSTRAINT cmsplugin_filer_te_page_link_id_1140fe9baec531be_fk_cms_page_id FOREIGN KEY (page_link_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: cmsplugin_filer_vide_movie_id_1fa177f4e1f9a991_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY cmsplugin_filer_video_filervideo
    ADD CONSTRAINT cmsplugin_filer_vide_movie_id_1fa177f4e1f9a991_fk_filer_file_id FOREIGN KEY (movie_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: dj_master_id_318c301265b12642_fk_djangocms_blog_blogcategory_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_blogcategory_translation
    ADD CONSTRAINT dj_master_id_318c301265b12642_fk_djangocms_blog_blogcategory_id FOREIGN KEY (master_id) REFERENCES djangocms_blog_blogcategory(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: dj_parent_id_5baa74cf2c7eca1d_fk_djangocms_blog_blogcategory_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_blogcategory
    ADD CONSTRAINT dj_parent_id_5baa74cf2c7eca1d_fk_djangocms_blog_blogcategory_id FOREIGN KEY (parent_id) REFERENCES djangocms_blog_blogcategory(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: dja_snippet_id_210c13c4c9097500_fk_djangocms_snippet_snippet_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_snippet_snippetptr
    ADD CONSTRAINT dja_snippet_id_210c13c4c9097500_fk_djangocms_snippet_snippet_id FOREIGN KEY (snippet_id) REFERENCES djangocms_snippet_snippet(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djan_content_type_id_11d37054df52e2d0_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_admin_log
    ADD CONSTRAINT djan_content_type_id_11d37054df52e2d0_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djang_main_image_id_521a5527f10a814f_fk_filer_image_file_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post
    ADD CONSTRAINT djang_main_image_id_521a5527f10a814f_fk_filer_image_file_ptr_id FOREIGN KEY (main_image_id) REFERENCES filer_image(file_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: django_admin_log_user_id_376347ab24b09885_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY django_admin_log
    ADD CONSTRAINT django_admin_log_user_id_376347ab24b09885_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms__cmsplugin_ptr_id_3fe997e5bc4d562_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_snippet_snippetptr
    ADD CONSTRAINT djangocms__cmsplugin_ptr_id_3fe997e5bc4d562_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms__master_id_7202c6040792c48e_fk_djangocms_blog_post_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_translation
    ADD CONSTRAINT djangocms__master_id_7202c6040792c48e_fk_djangocms_blog_post_id FOREIGN KEY (master_id) REFERENCES djangocms_blog_post(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_bl_post_id_66886096ffa28c0e_fk_djangocms_blog_post_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_categories
    ADD CONSTRAINT djangocms_bl_post_id_66886096ffa28c0e_fk_djangocms_blog_post_id FOREIGN KEY (post_id) REFERENCES djangocms_blog_post(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_bl_post_id_7985888d2c6a9ec1_fk_djangocms_blog_post_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_sites
    ADD CONSTRAINT djangocms_bl_post_id_7985888d2c6a9ec1_fk_djangocms_blog_post_id FOREIGN KEY (post_id) REFERENCES djangocms_blog_post(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_blog_authore_user_id_75933ceb510fae55_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin_authors
    ADD CONSTRAINT djangocms_blog_authore_user_id_75933ceb510fae55_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_blog_content_id_75fcd6363f2c3a9_fk_cms_placeholder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post
    ADD CONSTRAINT djangocms_blog_content_id_75fcd6363f2c3a9_fk_cms_placeholder_id FOREIGN KEY (content_id) REFERENCES cms_placeholder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_blog_latestpo_tag_id_b469f143145b2e5_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin_tags
    ADD CONSTRAINT djangocms_blog_latestpo_tag_id_b469f143145b2e5_fk_taggit_tag_id FOREIGN KEY (tag_id) REFERENCES taggit_tag(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_blog_post__site_id_1acb65392bcb9089_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post_sites
    ADD CONSTRAINT djangocms_blog_post__site_id_1acb65392bcb9089_fk_django_site_id FOREIGN KEY (site_id) REFERENCES django_site(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_blog_post_author_id_4dd2cb42bb560601_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post
    ADD CONSTRAINT djangocms_blog_post_author_id_4dd2cb42bb560601_fk_auth_user_id FOREIGN KEY (author_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_216af445d5b32f9b_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_link_link
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_216af445d5b32f9b_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_2a9169bca11bd317_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_latestpostsplugin
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_2a9169bca11bd317_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_3d1c8e1bb8a67ebf_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_flash_flash
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_3d1c8e1bb8a67ebf_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_4d6edbd3251ff534_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_teaser_teaser
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_4d6edbd3251ff534_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_507d115df608064c_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_authorentriesplugin
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_507d115df608064c_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_5764a299a32edfd1_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_googlemap_googlemap
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_5764a299a32edfd1_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_5ed06a923d87711b_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_inherit_inheritpageplaceholder
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_5ed06a923d87711b_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_cmsplugin_ptr_id_7f18aebaad9a37e6_fk_cms_cmsplugin_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_text_ckeditor_text
    ADD CONSTRAINT djangocms_cmsplugin_ptr_id_7f18aebaad9a37e6_fk_cms_cmsplugin_id FOREIGN KEY (cmsplugin_ptr_id) REFERENCES cms_cmsplugin(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_inherit_i_from_page_id_c7fc5ae030e1aa5_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_inherit_inheritpageplaceholder
    ADD CONSTRAINT djangocms_inherit_i_from_page_id_c7fc5ae030e1aa5_fk_cms_page_id FOREIGN KEY (from_page_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_link_lin_page_link_id_6910251473b4ce98_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_link_link
    ADD CONSTRAINT djangocms_link_lin_page_link_id_6910251473b4ce98_fk_cms_page_id FOREIGN KEY (page_link_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_p_extended_object_id_7f9e0a7f0b35accf_fk_cms_title_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta
    ADD CONSTRAINT djangocms_p_extended_object_id_7f9e0a7f0b35accf_fk_cms_title_id FOREIGN KEY (extended_object_id) REFERENCES cms_title(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_pag_extended_object_id_f30787f7ab972e3_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT djangocms_pag_extended_object_id_f30787f7ab972e3_fk_cms_page_id FOREIGN KEY (extended_object_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_page_me_og_author_id_362eb37f4966a474_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT djangocms_page_me_og_author_id_362eb37f4966a474_fk_auth_user_id FOREIGN KEY (og_author_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_page_meta__image_id_51134b68e1252deb_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_pagemeta
    ADD CONSTRAINT djangocms_page_meta__image_id_51134b68e1252deb_fk_filer_file_id FOREIGN KEY (image_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_page_meta__image_id_7ea790a6ce828f17_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_page_meta_titlemeta
    ADD CONSTRAINT djangocms_page_meta__image_id_7ea790a6ce828f17_fk_filer_file_id FOREIGN KEY (image_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: djangocms_teaser_t_page_link_id_7b28cbfa16b7dd61_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_teaser_teaser
    ADD CONSTRAINT djangocms_teaser_t_page_link_id_7b28cbfa16b7dd61_fk_cms_page_id FOREIGN KEY (page_link_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: e5684ebf0a2e88961aa0d3ae5147b3d3; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY djangocms_blog_post
    ADD CONSTRAINT e5684ebf0a2e88961aa0d3ae5147b3d3 FOREIGN KEY (main_image_full_id) REFERENCES cmsplugin_filer_image_thumbnailoption(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: e_thumbnail_id_540969c01e4bfdd3_fk_easy_thumbnails_thumbnail_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions
    ADD CONSTRAINT e_thumbnail_id_540969c01e4bfdd3_fk_easy_thumbnails_thumbnail_id FOREIGN KEY (thumbnail_id) REFERENCES easy_thumbnails_thumbnail(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: easy_th_source_id_697e1cd7af5c204a_fk_easy_thumbnails_source_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY easy_thumbnails_thumbnail
    ADD CONSTRAINT easy_th_source_id_697e1cd7af5c204a_fk_easy_thumbnails_source_id FOREIGN KEY (source_id) REFERENCES easy_thumbnails_source(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_clipbo_clipboard_id_6af7d05a36e14dd_fk_filer_clipboard_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_clipboarditem
    ADD CONSTRAINT filer_clipbo_clipboard_id_6af7d05a36e14dd_fk_filer_clipboard_id FOREIGN KEY (clipboard_id) REFERENCES filer_clipboard(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_clipboard_user_id_50f26ea9a9fedaa0_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_clipboard
    ADD CONSTRAINT filer_clipboard_user_id_50f26ea9a9fedaa0_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_clipboarditem_file_id_7730cc2c9168b9c5_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_clipboarditem
    ADD CONSTRAINT filer_clipboarditem_file_id_7730cc2c9168b9c5_fk_filer_file_id FOREIGN KEY (file_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_file_folder_id_2ff5711011ec5cbb_fk_filer_folder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_file
    ADD CONSTRAINT filer_file_folder_id_2ff5711011ec5cbb_fk_filer_folder_id FOREIGN KEY (folder_id) REFERENCES filer_folder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_file_owner_id_34fc79468bea26b7_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_file
    ADD CONSTRAINT filer_file_owner_id_34fc79468bea26b7_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_folder_owner_id_29a2ac62fb21e298_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folder
    ADD CONSTRAINT filer_folder_owner_id_29a2ac62fb21e298_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_folder_parent_id_17f5ace114139133_fk_filer_folder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folder
    ADD CONSTRAINT filer_folder_parent_id_17f5ace114139133_fk_filer_folder_id FOREIGN KEY (parent_id) REFERENCES filer_folder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_folderpermi_folder_id_60747a43810f1cd2_fk_filer_folder_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folderpermission
    ADD CONSTRAINT filer_folderpermi_folder_id_60747a43810f1cd2_fk_filer_folder_id FOREIGN KEY (folder_id) REFERENCES filer_folder(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_folderpermissi_group_id_764df4dc0a7b9451_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folderpermission
    ADD CONSTRAINT filer_folderpermissi_group_id_764df4dc0a7b9451_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_folderpermission_user_id_38fa74b7f36fc801_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_folderpermission
    ADD CONSTRAINT filer_folderpermission_user_id_38fa74b7f36fc801_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: filer_image_file_ptr_id_7d0adb8d6c9b8011_fk_filer_file_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY filer_image
    ADD CONSTRAINT filer_image_file_ptr_id_7d0adb8d6c9b8011_fk_filer_file_id FOREIGN KEY (file_ptr_id) REFERENCES filer_file(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: reve_content_type_id_49be33e388776bc1_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY reversion_version
    ADD CONSTRAINT reve_content_type_id_49be33e388776bc1_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: reversion_revision_id_1589de84f8370d65_fk_reversion_revision_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY reversion_version
    ADD CONSTRAINT reversion_revision_id_1589de84f8370d65_fk_reversion_revision_id FOREIGN KEY (revision_id) REFERENCES reversion_revision(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: reversion_revision_user_id_3cb6e6a5acf9ad5f_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY reversion_revision
    ADD CONSTRAINT reversion_revision_user_id_3cb6e6a5acf9ad5f_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES auth_user(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: tagg_content_type_id_647783b6f2ffd739_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY taggit_taggeditem
    ADD CONSTRAINT tagg_content_type_id_647783b6f2ffd739_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: taggit_taggeditem_tag_id_732e18aba056f370_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY taggit_taggeditem
    ADD CONSTRAINT taggit_taggeditem_tag_id_732e18aba056f370_fk_taggit_tag_id FOREIGN KEY (tag_id) REFERENCES taggit_tag(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: ungleich_u_image_id_377a61544fc69cef_fk_filer_image_file_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY ungleich_ungleichpage
    ADD CONSTRAINT ungleich_u_image_id_377a61544fc69cef_fk_filer_image_file_ptr_id FOREIGN KEY (image_id) REFERENCES filer_image(file_ptr_id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: ungleich_ung_extended_object_id_6304137b758d935b_fk_cms_page_id; Type: FK CONSTRAINT; Schema: public; Owner: app
--

ALTER TABLE ONLY ungleich_ungleichpage
    ADD CONSTRAINT ungleich_ung_extended_object_id_6304137b758d935b_fk_cms_page_id FOREIGN KEY (extended_object_id) REFERENCES cms_page(id) DEFERRABLE INITIALLY DEFERRED;


--
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--

REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;


--
-- PostgreSQL database dump complete
--