Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_recurring_children=true&page=174
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19223,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=175",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=173"
    },
    "data": [
        {
            "id": "kulke:63594",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little",
                        "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151482,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T13:13:05.042410Z",
                    "last_modified_time": "2024-06-17T13:13:05.042425Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751706.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151482/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T13:13:05.027501Z",
            "last_modified_time": "2024-08-29T05:13:20.569998Z",
            "date_published": null,
            "start_time": "2024-08-31T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0749F57B5BAE772E29FCE78BD8F87B2E/Ter_n_Brno_Pienia_vierailuja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0749F57B5BAE772E29FCE78BD8F87B2E/SAMPO_Festivaali_Little_Visitor",
                "en": "http://www.annantalo.fi/en/events/event/0749F57B5BAE772E29FCE78BD8F87B2E/Ter_n_Brno_Little_Visitors"
            },
            "short_description": {
                "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.",
                "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali",
                "sv": "SAMPO Festivaali:Little Visitor",
                "en": "Terén Brno: Little Visitors – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>",
                "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63594/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63856",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T13:13:04.943913Z",
                    "last_modified_time": "2024-06-17T13:13:04.943928Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753226.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151481/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T13:13:04.917061Z",
            "last_modified_time": "2024-08-29T05:13:20.515743Z",
            "date_published": null,
            "start_time": "2024-08-31T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EBF70AEDED8E8E7D04F48EA274AB06AC/Ornan_Braier_Raatalin_taikaseikkailu",
                "en": "http://www.annantalo.fi/en/events/event/EBF70AEDED8E8E7D04F48EA274AB06AC/Ornan_Braier_Tailor_made"
            },
            "short_description": {
                "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”",
                "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaali",
                "en": "Ornan Braier: Tailor made – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun! Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti (käännetään suomeksi)<br>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p>Adaptaatio, suunnittelu, musiikki ja manipulointi: Ornan Braier<br>Taiteellinen valvonta: Marit Benisrael<br>Vaate- ja tekstiilisuunnittelu: Vali Mintzi<br>Nukenrakennus: Sharon Silver-Merrett<br>Valosuunnittelu: Shahar Maron<br>Mekaaniset rakennelmat: Shaul Mograbi-Berger, Ornan Braier<br>Kuvat: Dor Kedmi</p><p><b>Ornan Braier</b> on nukeillanäyttelijä, näyttelijä ja muusikko. Hän yhdistää esityksissään laajan valikoiman esittäviä taiteita ja on siten tullut tunnetuksi ainutlaatuisena ja omaperäisenä taiteilijana Israelissa ja ympäri maailmaa. Hänen näyttämökielensä perustuu voimakkaisiin visuaalisiin kuviin yhdistettynä omaleimaiseen musiikkiin, joten esitykset läpäisevät katsojan kaikki aistit. Hänen työnsä ovat voittaneet kansallisia ja kansainvälisiä palkintoja. Yhdessä Train Theatren kanssa tehty Tailor Made on kiertänyt ympäri maailmaa, ja se on voittanut lukuisia kansainvälisiä palkintoja. Ornanin toinen esitys, Little Love Machine eli Pieni Lempilaite (2019) nähtiin vuoden 2023 SAMPO Festivaalilla.</p>",
                "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and<br>music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English (translated in Finnish)<br>Tickets: 15 €, from Nukketeatteri Sampo: nukketeatterisampo.fi/esityskalenteri<br>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Adaptation, design, music and manipulation: Ornan Braier<br>Artistic supervision: Marit Benisrael<br>Costume and fabric design: Vali Mintzi<br>Puppet design: Sharon Silver-Merrett<br>Lighting design: Shahar Maron<br>Mechanical constructions: Shaul Mograbi-Berger, Ornan Braier<br>Photo: Dor Kedmi</p><p><b>Ornan Braier</b> is a puppeteer, actor and musician. He combines a wide variety of performing arts in his shows and thus has become a unique and original artist in Israel and around the world. His stage language is based on powerful visual images combined with distinctive music, which sweeps all the senses of the audience. His work has won local and international prizes. Tailor Made, produced together with the Train Theatre, has been performed around the world and has won local and international prizes. Another show by Ornan, Little Love Machine (2019) was seen on SAMPO Festival 2023 and it has also received several awards.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63856/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63592",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little",
                        "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151480,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T13:13:04.831428Z",
                    "last_modified_time": "2024-06-17T13:13:04.831442Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751705.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151480/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T13:13:04.814109Z",
            "last_modified_time": "2024-08-29T05:13:20.436107Z",
            "date_published": null,
            "start_time": "2024-08-31T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F84DA7B08CA9F1235075E6911534DABC/Ter_n_Brno_Pienia_vierailuja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F84DA7B08CA9F1235075E6911534DABC/SAMPO_Festivaali_Little_Visitor",
                "en": "http://www.annantalo.fi/en/events/event/F84DA7B08CA9F1235075E6911534DABC/Ter_n_Brno_Little_Visitors"
            },
            "short_description": {
                "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.",
                "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali",
                "sv": "SAMPO Festivaali:Little Visitor",
                "en": "Terén Brno: Little Visitors – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>",
                "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63592/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64065",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151498,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-19T15:12:59.232771Z",
                    "last_modified_time": "2024-06-19T15:12:59.232786Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753763.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151498/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-19T15:12:59.201139Z",
            "last_modified_time": "2024-08-29T05:13:20.384010Z",
            "date_published": null,
            "start_time": "2024-08-31T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2F039B42A82A7BB3E3E81E2436C854C4/Suomen_luonnon_paivan_Megamuskari",
                "sv": "http://www.stoa.fi/sv/evenemang/event/2F039B42A82A7BB3E3E81E2436C854C4/Megamusikskola_pa_finska_naturens_dag_",
                "en": "http://www.stoa.fi/en/events/event/2F039B42A82A7BB3E3E81E2436C854C4/Megamuskari_on_Finnish_Nature_Day_"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan Suomen luonnon päivää yhdessä muskariope Tuuli Paasolaisen kanssa laulamalla, leikkimällä, liikkumalla, loruttelemalla ja kehosoittimia soittamalla!",
                "sv": "Välkommen med att fira den finska naturens dag tillsammans med musikskoleläraren Tuuli Paasolainen! Vi sjunger, leker, rör på oss, rimmar och spelar kroppsinstrument!",
                "en": "Welcome to celebrate Finnish Nature Day together with music teacher Tuuli Paasolainen by singing, playing, moving, rhyming and playing body instruments!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Suomen luonnon päivän Megamuskari",
                "sv": "Megamusikskola på finska naturens dag",
                "en": "Megamuskari on Finnish Nature Day"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan Suomen luonnon päivää yhdessä muskariope Tuuli Paasolaisen kanssa laulamalla, leikkimällä, liikkumalla, loruttelemalla ja kehosoittimia soittamalla!</p><p>Suomen luonnon päivän Megamuskari on suunnattu 0–8-vuotiaille aikuisen kanssa, mutta kaikenikäiset ovat lämpimästi tervetulleita mukaan. Pidetään yhdessä ääntä luonnon päivän kunniaksi! Pianistina Sergei Sokolov.</p><p>Kesto: 40 min<br>Ikäsuositus: 0–8-v aikuisen kanssa<br>Paikka: Stoan aukion viherlava, huonon sään sattuessa Stoan aulassa</p><p>Vapaa pääsy</p>",
                "sv": "<p>Välkommen med att fira den finska naturens dag tillsammans med musikskoleläraren Tuuli Paasolainen! Vi sjunger, leker, rör på oss, rimmar och spelar kroppsinstrument!</p><p>Megamusikskolan på den finska naturens dag riktar sig till 0–8-åriga i sällskap av en vuxen, men alla åldrar är varmt välkomna att delta. Vi musicerar tillsammans till ära för naturens dag! Pianist är Sergei Sokolov.</p><p>Längd: 40 min.</p><p>Åldersrekommendation: 0–8-åringar i sällskap av en vuxen</p><p>Plats: Stoaplatsens gröna scen, i händelse av dåligt väder foajén i Stoa</p><p>Fritt inträde!</p>",
                "en": "<p>Welcome to celebrate Finnish Nature Day together with music teacher Tuuli Paasolainen by singing, playing, moving, rhyming and playing body instruments!</p><p>The Megamuskari on Finnish Nature Day is intended for 0-8-year-olds with an adult, but all ages are welcome to join. Let's make some noise together to celebrate Nature Day! Pianist Sergey Sokolov.</p><p>Duration: 40 mins.</p><p>Age recommendation: 0-8 yrs with adult</p><p>Location: Green stage in Stoa Square, Stoa lobby in case of bad weather</p><p>Free of charge!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64065/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63590",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little",
                        "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T13:13:04.697872Z",
                    "last_modified_time": "2024-06-17T13:13:04.697886Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751703.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T13:13:04.680954Z",
            "last_modified_time": "2024-08-29T05:13:20.305889Z",
            "date_published": null,
            "start_time": "2024-08-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D43266A6BD750AB6A401C68BE668A4E0/Ter_n_Brno_Pienia_vierailuja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D43266A6BD750AB6A401C68BE668A4E0/SAMPO_Festivaali_Llittle_Visitors",
                "en": "http://www.annantalo.fi/en/events/event/D43266A6BD750AB6A401C68BE668A4E0/Ter_n_Brno_Little_Visitors"
            },
            "short_description": {
                "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.",
                "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali",
                "sv": "SAMPO Festivaali: Llittle Visitors",
                "en": "Terén Brno: Little Visitors – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>",
                "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63590/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64031",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T11:14:36.422680Z",
                    "last_modified_time": "2024-07-24T11:14:36.422698Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753710.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T11:14:36.357433Z",
            "last_modified_time": "2024-08-29T05:13:20.245653Z",
            "date_published": null,
            "start_time": "2024-08-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "en": "http://www.malmitalo.fi/en/events/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta"
            },
            "short_description": {
                "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.",
                "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.",
                "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "sv": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "en": "M - Merkintöjä yhden malmilaisen tapauksesta"
            },
            "description": {
                "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b>  https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64031/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64141",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/",
                        "sv": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151546,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T12:13:06.819076Z",
                    "last_modified_time": "2024-06-26T12:13:06.819095Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752379.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151546/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T12:13:06.785520Z",
            "last_modified_time": "2024-08-29T05:13:20.193570Z",
            "date_published": null,
            "start_time": "2024-08-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C745651DB748A182B2F73DA5797A98BD/Liisa_Akimof_Yokerho",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/C745651DB748A182B2F73DA5797A98BD/Liisa_Akimof_Yokerho",
                "en": "http://www.espanlava.fi/en/events/event/C745651DB748A182B2F73DA5797A98BD/Liisa_Akimof_Yokerho"
            },
            "short_description": {
                "fi": "Liisa Akimof julkaisi vuoden alussa pitkästä aikaa uuden albumin, Kaikenlaista uutta tulossa.",
                "sv": "Efter en lång paus släppte Liisa Akimof ett nytt album i början av året – Kaikenlaista uutta tulossa.",
                "en": "Early this year, Liisa Akimof released a new album, Kaikenlaista uutta tulossa."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Liisa Akimof & Yökerho",
                "sv": "Liisa Akimof & Yökerho",
                "en": "Liisa Akimof & Yökerho"
            },
            "description": {
                "fi": "<p>Liisa Akimof julkaisi vuoden alussa pitkästä aikaa uuden albumin, Kaikenlaista uutta tulossa.</p><p>Levy sai innostuneen vastaanoton:</p><p>”Akimof putsaa pöydän anarkiallaan” (Riffi)</p><p>“Liisa Akimof osuu uuden levynsä ajankuvassa napakymppiin” (Demokraatti)</p><p>“Liisa Akimof on kokonaisvaltaisesti rock” (Keskisuomalainen)</p><p>Uuden albumin myötä albumilla soittavat muusikot muodostivat Yökerhon.</p><p>“Mukana on nuoremman polven nimekkäitä indiemuusikoita, joiden omissa tekemisissä ironisuus, tiedostavuus ja vilpittömyys yhdistyvät vähän samaan tapaan kuin Akimofilla itsellään” (Ahti Väntänen, Musiikkikirjastot).</p><p>Yökerhossa soittavat Mikko Siltanen (basso), Pekka Tuomi (kitara), Antti Vuorenmaa (kosketinsoittimet ja Sebastian Krühn (rummut).<br> <br>Liisa Akimof & Yökerhon kevään keikat ovat olleet puheenaiheita, energisiä ja yllätyksellisiä. Uusien biisien lisäksi settiin kuuluu joitakin Akimofin klassikoita kuten Tavaramarkkinoiden Kevät vuodelta 1986.</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>",
                "sv": "<p>Efter en lång paus släppte Liisa Akimof ett nytt album i början av året – Kaikenlaista uutta tulossa.</p><p>Albumet fick ett entusiastiskt mottagande:</p><p>“Akimof gör rent bord med sin anarki” (Riffi)</p><p>“Liisa Akimof träffar mitt i prick med tidsbilden på sitt nya album” (Demokraatti) “Liisa Akimof är total rock” (Keskisuomalainen)</p><p>Musikerna som spelar på albumet bildade bandet <b>Yökerho</b>. <br>“Med finns välkända indiemusiker av den yngre generationen som i sitt musicerande kombinerar ironi, medvetenhet och uppriktighet, på samma sätt som Akimof själv” (Ahti Väntänen, Musiikkikirjastot).</p><p>Yökerho består av <b>Mikko Siltanen</b> (bas), <b>Pekka Tuomi</b> (gitarr),<b> Antti Vuorenmaa </b>(keyboard) och <b>Sebastian Krühn</b> (trummor).<br> <br>Liisa Akimof & Yökerhos spelningar i våras har varit väckt diskussion och varit energiska och överraskande. Förutom nya låtar innehåller setet även några av Akimofs klassiker, såsom Tavaramarkkinoiden <i>Kevät</i> från 1986.</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>",
                "en": "<p>Early this year, Liisa Akimof released a new album, Kaikenlaista uutta tulossa.</p><p>The album was very well received:</p><p>\"Akimof wipes the slate clean with her anarchy\" (Riffi)</p><p>“Liisa Akimof hits the bull's-eye with the period portrayal on her new album” (Demokraatti) “Liisa Akimof is entirely rock” (Keskisuomalainen)</p><p>With the new album, its musicians formed the band, <b>Yökerho</b>.</p><p>\"They include renowned indie musicians from the younger generation, who combine irony, awareness and sincerity in what they do in a way similar to Akimof herself\" (Ahti Väntänen, Musiikkikirjastot).</p><p>Yökerho features <b>Mikko Siltanen</b> (bass), <b>Pekka Tuomi</b> (guitar), <b>Antti Vuorenmaa</b> (keyboards) and <b>Sebastian Krühn</b> (drums).<br> <br>Liisa Akimof & Yökerho's spring gigs have become talking points with their surprising energy. In addition to new songs, the set includes some of Akimof's classics, such as 1986’s <i>Kevät</i>, by Tavaramarkkinat.</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64141/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64140",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151545,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T12:13:06.714474Z",
                    "last_modified_time": "2024-06-26T12:13:06.714490Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752378.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151545/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T12:13:06.696576Z",
            "last_modified_time": "2024-08-29T05:13:20.144583Z",
            "date_published": null,
            "start_time": "2024-08-30T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9B4C5487560694BC1FEFADE0D1291A4C/Brian",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/9B4C5487560694BC1FEFADE0D1291A4C/Brian",
                "en": "http://www.espanlava.fi/en/events/event/9B4C5487560694BC1FEFADE0D1291A4C/Brian"
            },
            "short_description": {
                "fi": "Suomen Musiikki julkaisi kulttimaineeseen nousseen Brian-yhtyeen (ent. Brian & Helvetin Peruna) kolmannen albumin maaliskuussa 2024.",
                "sv": "Bandet Brian (tidigare Brian & Helvetin Peruna) har i det närmaste uppnått kultstatus. I mars 2024 släppte Suomen Musiikki bandets tredje album.",
                "en": "Suomen Musiikki released cult band Brian’s (formerly Brian & Helvetin Peruna) third album in March 2024."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Brian",
                "sv": "Brian",
                "en": "Brian"
            },
            "description": {
                "fi": "<p>Suomen Musiikki julkaisi kulttimaineeseen nousseen Brian-yhtyeen (ent. Brian & Helvetin Peruna) kolmannen albumin maaliskuussa 2024.</p><p><i>Ei tunnu kipua enää</i> seuraa vuonna 2023 julkaistua, yhtyeen luovuuden uuden kukoistuksen käynnistänyttä <i>Viime aikoina minulla on ollut jotenkin alakuloinen olo</i> -albumia. Tulevan levyn ensimmäinen single Turussa kaikki on toisin voitti Radio Suomen Levylautakunnan. Tuorein single Vuosia myöhemmin jatkaa hittiputkea.</p><p>Tappavan tarttuvista kertosäkeistään tunnetun yhtyeen keikkakokoonpanon täydentää Miron rumpaliveli Aarni Palokallio sekä maamme eturivin muusikoista koostuva, vaihteleva valikoima basisteja ja vierailevia rumpaleita.</p>",
                "sv": "<p>Bandet Brian (tidigare Brian & Helvetin Peruna) har i det närmaste uppnått kultstatus. I mars 2024 släppte Suomen Musiikki bandets tredje album.</p><p>\"Ei tunnu kipua enää\" följer på albumet \"Viime aikoina minulla on ollut jotenkin alakuloinen olo\" från år 2023, som utgjorde starten på bandets nya skapande blomstringsperiod. Den första singeln på det kommande albumet \"Turussa kaikki on toisin\" vann Radio Suomis program Levylautakunta. Den senaste singeln \"Vuosia myöhemmin\" fortsätter raden av hittar.</p><p>Bandet är känt för sina dödligt smittsamma refränger, och spelningsensemblen kompletteras av Miros trummisbror Aarni Palokallio samt ett urval varierande basister och gästande trummisar som består av Finlands mest framstående musiker.</p>",
                "en": "<p>Suomen Musiikki released cult band Brian’s (formerly Brian & Helvetin Peruna) third album in March 2024.</p><p>\"Ei tunnu kipua enää\" follows the 2023 release of \"Viime aikoina minulla on ollut jotenkin alakuloinen olo\", which propelled the band to its new success. The first single from the upcoming album is \"Turussa kaikki on toisin\", which won the hearts of Radio Suomi’s Levylautakunta podcast hosts. The latest single, \"Vuosia myöhemmin\", continues the hit streak.</p><p>Known for their infectious choruses, the band's gig line-up is complemented by Miro's drummer brother, Aarni Palokallio, as well as a varied selection of bassists and guest drummers from a lineup of Finland's foremost musicians.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64140/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63588",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151559,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T14:13:37.738522Z",
                    "last_modified_time": "2024-06-27T14:13:37.738563Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751699.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151559/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-27T14:13:37.707401Z",
            "last_modified_time": "2024-08-29T05:13:20.097055Z",
            "date_published": null,
            "start_time": "2024-08-30T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B54769EDDFF3EF86D2D332478B341831/Ornan_Braier_Raatalin_taikaseikkailu",
                "en": "http://www.annantalo.fi/en/events/event/B54769EDDFF3EF86D2D332478B341831/Ornan_Braier_Tailor_made"
            },
            "short_description": {
                "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”",
                "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaalin esitys lapsiryhmille, ilmoittautuminen kultus.fi",
                "en": "Ornan Braier: Tailor made – SAMPO Festival's performance for children groups"
            },
            "description": {
                "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun!</p><p>Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti</p><p>Maksuton, ilmoittautuminen vaaditaan.</p><p>Ilmoittautuminen esitykseen aukeaa 8.8. klo 8 osoitteessa https://kultus.fi/</p>",
                "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English</p><p>Free of charge, registration: https://kultus.fi/en from 8 August at 8 am</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63588/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63587",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151558,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T14:13:37.446957Z",
                    "last_modified_time": "2024-06-27T14:13:37.446973Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751698.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151558/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-27T14:13:37.387847Z",
            "last_modified_time": "2024-08-29T05:13:20.046019Z",
            "date_published": null,
            "start_time": "2024-08-30T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4A025B1AFF62E81F59BB8CAD98766885/Ornan_Braier_Raatalin_taikaseikkailu",
                "en": "http://www.annantalo.fi/en/events/event/4A025B1AFF62E81F59BB8CAD98766885/Ornan_Braier_Tailor_made"
            },
            "short_description": {
                "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”",
                "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaalin esitys lapsiryhmille, ilmoittautuminen kultus.fi",
                "en": "Ornan Braier: Tailor made – SAMPO Festival's performance for children groups"
            },
            "description": {
                "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun!</p><p>Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti</p><p>Maksuton, ilmoittautuminen vaaditaan.</p><p>Ilmoittautuminen esitykseen aukeaa 8.8. klo 8 osoitteessa https://kultus.fi/</p>",
                "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English</p><p>Free of charge, registration: https://kultus.fi/en from 8 August at 8 am</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63591",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151478,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T13:13:04.574755Z",
                    "last_modified_time": "2024-06-17T13:13:04.574771Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751702.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151478/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T13:13:04.542690Z",
            "last_modified_time": "2024-08-29T05:13:19.993711Z",
            "date_published": null,
            "start_time": "2024-08-30T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/216591890C96D0195EB8C583AEA3308D/Ter_n_Brno_Pienia_vierailuja",
                "en": "http://www.annantalo.fi/en/events/event/216591890C96D0195EB8C583AEA3308D/Ter_n_Brno_Little_Visitors"
            },
            "short_description": {
                "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.",
                "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaalin esitys lapsiryhmille, ilmoittautuminen kultus.fi",
                "en": "Terén Brno: Little Visitors – SAMPO Festival's performance for children groups"
            },
            "description": {
                "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Maksuton, ilmoittautuminen vaaditaan.</p><p>Ilmoittautuminen ryhmille aukeaa 8.8. klo 8 osoitteessa https://kultus.fi/</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>",
                "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Free of charge, registration: kultus.fi from 8 August at 8 am</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63591/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64084",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152034,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-06T12:15:28.911159Z",
                    "last_modified_time": "2024-08-06T12:15:28.911178Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753197.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152034/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-06T12:15:28.876720Z",
            "last_modified_time": "2024-08-29T05:13:19.937161Z",
            "date_published": null,
            "start_time": "2024-08-30T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E050C4C6120D441249190670EAC07438/Les_Ombres_Portees_NATCHAV_FRA_",
                "en": "http://www.stoa.fi/en/events/event/E050C4C6120D441249190670EAC07438/Les_Ombres_Portees_NATCHAV_FRA_"
            },
            "short_description": {
                "fi": "Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.",
                "en": "Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Les Ombres Portees: NATCHAV (FRA) – esitys kouluryhmille",
                "en": "Les Ombres Portees: NATCHAV (FRA) – for school groups"
            },
            "description": {
                "fi": "<p>Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.</p><p>Sirkus on saapunut kaupunkiin! Karavaani ottaa paikkansa keskusaukiolla ja lekavasaran iskut jylisevät, kun maahan lyödään tolppia valtavien, tuulessa pyörivien telttakankaiden kesyttämiseksi. Kaupunginjohtajat vastustavat vierailua, joten sirkus määrätään siirtymään kaupungin laitamille, akrobaatti pidätetään, ja hänen myötään koko maailma tuntuu olevan vangittuna.</p><p>Sirkusryhmä päättää toteuttaa mahtavan pakomatkan, joka on täynnä kekseliäitä käänteitä. Natchav (juosta pois, juosta karkuun romanikielellä) sekoittaa fantasiaa ja todellisuutta ja antaa maistiaisen vapauden tunteesta.</p><p>Varjon ja valon leikin kautta esitys kertoo yhteiskunnan marginaaliin sijoittuvan tarinan, jossa kaksi pohjimmiltaan vastakkaista maailmaa – sirkus ja vankila – sekoittuvat. Sanaton esitys yhdistää elävää musiikkia ja tarinan edetessä rakentuvaa visuaalisuutta ja luo näin uudenlaisen, provokatiivisen sommitelman todellisuuden ja fantasian välimaastoon.</p><p>Kesto: 60 min<br>Ikäsuositus: 8+<br>Kieli: sanaton</p><p>Arkiaamujen näytöksiin koululuokille vapaa pääsy, pakolliset ilmoittautumiset: https://kultus.fi/fi 19.8. klo 10 alkaen.</p>",
                "en": "<p>Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free.</p><p>In the darkness of the early morning, the Natchav circus arrives to town. Its caravan of trailers and lorries take their place in the central square. The sledge gang begins its concert of steady blows, pounding the first stakes into the ground; the sound of the immense canvas whips through the air as the tent poles are hoisted to the sky.</p><p>Suddenly, out of concern for security, the authorities order the circus to leave, forcing them onto a vacant lot in the outskirts of town. Following a scuffle, one of the acrobats is arrested and jailed for contempt and rebellion. So, the circus troupe, along with the other prisoners, decide to carry out a spectacular escape, one full of ingenuity and twists and turns...</p><p>Through an extraordinary play of shadow and light, Natchav (go away, run away in Romani) recounts a story in which, on the margins of society, two fundamentally opposed worlds mingle — that of the circus and of the prison.</p><p>It is a story of intrigue that unfolds through a dynamic scenography. With no spoken dialogue, the visuals and music generated and performed live guide the narration, creating an original and provocative composition between reality and fantasy.</p><p>Idea and design: Les ombres portées<br>Puppets and lights: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Music and sound effects: Séline Gülgönen (clarinet), Simon Plane (trumpet, tuba, accordion, percussion)<br>Lighting: Nicolas Dalban-Moreynas<br>Sound: Yaniz Mango<br>Costumes: Zoé Caugant<br>Touring: Claire Van Zande</p><p>Margot Chamberlin helped build the puppets and performed with us until 2023.<br>With help from: Léo Maurel (sound effect machines), Baptiste Bouquin (outside ear), Jean-Yves Pénafiel (outside eye)</p><p>Also thanks to: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande<br>We dedicate this show to Olivier Cueto, a cherished member of the company who passed away in March 2020. He imagined, created and performed this show with us until the very end.</p><p>Duration: 60 min<br>Age recommendation: 8+<br>Language: nonverbal</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64084/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64062",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151497,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-19T14:13:31.012970Z",
                    "last_modified_time": "2024-06-19T14:13:31.012988Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753761.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-19T14:13:30.995210Z",
            "last_modified_time": "2024-08-29T05:13:19.882203Z",
            "date_published": null,
            "start_time": "2024-08-30T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2B5CDF0D55F117275C0FBB01C7D639A/Metsamuskari_Karhukalliolla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E2B5CDF0D55F117275C0FBB01C7D639A/Skogsmusikskola_pa_finska_naturens_dag_",
                "en": "http://www.stoa.fi/en/events/event/E2B5CDF0D55F117275C0FBB01C7D639A/Music_playschool_in_the_forest_on_Finnish_Nature_Day_"
            },
            "short_description": {
                "fi": "”Jos metsään haluat mennä nyt, niin takuulla yllätyt...”",
                "sv": "”Jos metsään haluat mennä nyt, niin takuulla yllätyt...” Välkommen till skogsmusikskola!",
                "en": "”Jos metsään haluat mennä nyt, niin takuulla yllätyt...” Join the music playschool!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Metsämuskari Karhukalliolla – 0–7-vuotiaille, ilmoittautuminen kultus.fi",
                "sv": "Skogsmusikskola på finska naturens dag – till 0–7-åringar, förhandsanmälan: kultus.fi",
                "en": "Music playschool in the forest on Finnish Nature Day – for 0-7 year olds, pre-registration at kultus.fi"
            },
            "description": {
                "fi": "<p>”Jos metsään haluat mennä nyt, niin takuulla yllätyt...”</p><p>Tervetuloa Metsämuskariin Suomen luonnon päivänä laulamaan, leikkimään, loruttelemaan, liikkumaan ja soittamaan kehosoittimia yhdessä muskariopettaja Tuuli Paasolaisen kanssa. Vettä reppuun ja istuinalustat mukaan tai hyvät ulkkarit jalkaan. Iloisiin näkemisiin metsän keskellä!</p><p>Metsämuskari on suunnattu 0–7-vuotiaille<br>Kesto: 30–40 min<br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi 19.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi<br>Paikka: Karhukallion metsä Roihupellossa.</p><p>Huom! Huonon sään sattuessa varapäivä Metsämuskarille on maanantai 2.9.2024 klo 9.30.</p>",
                "sv": "<p>”Jos metsään haluat mennä nyt, niin takuulla yllätyt...” Välkommen till skogsmusikskola!</p><p>Välkommen till skogsmusikskola på finska naturens dag för att sjunga, leka, rimma, röra på dig och spela kroppsinstrument tillsammans med musikskoleläraren Tuuli Paasolainen. Ta med dig vatten och sittunderlag i en ryggsäck och bra utomhusskor på dig. Det blir kul att ses mitt ute i skogen!</p><p>Skogsmusikskolan riktar sig till 0–7-åringar<br>Längd: 30–40 minuter<br>Språk: finska <br>Fritt inträde. Obligatorisk förhandsanmälan: kultus.fi från och med 19.8. kl. 10.00<br>Mer information: hanna.westerholm@hel.fi<br>Plats: Björnklippans skog i Kasåkern.</p><p>Obs! I händelse av dåligt väder är reservdagen för skogsmusikskolan måndag 2.9.2024 kl. 9.30.</p>",
                "en": "<p>”Jos metsään haluat mennä nyt, niin takuulla yllätyt...” Join the music playschool!</p><p>Join the music playschool on the Finnish Nature Day to sing, play, rhyme, move and play body instruments together with music teacher Tuuli Paasolainen. Bring water and seating pads with you, or put on some good outdoors trousers. See you in the forest!</p><p>The forest music playschool is intended for 0-7 year olds<br>Duration: 30–40 mins.<br>Language: Finnish <br>Admission is free. Pre-registration required at kultus.fi, from 19 August at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64062/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64091",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "32,50 € / 21,50 €",
                        "en": "32,50 € / 21,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-sampo-festivaali-stoa-18735992/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-sampo-festivaali-stoa-18735992/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151491,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-18T13:13:31.583820Z",
                    "last_modified_time": "2024-06-18T13:13:31.583839Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753195.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151491/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-18T13:13:31.546034Z",
            "last_modified_time": "2024-08-29T05:13:19.828710Z",
            "date_published": null,
            "start_time": "2024-08-29T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FA75BDB58AF5D38C530E41339494E7EC/Les_ombres_port_es_NATCHAV_FRA_",
                "en": "http://www.stoa.fi/en/events/event/FA75BDB58AF5D38C530E41339494E7EC/Les_ombres_port_es_NATCHAV_FRA_"
            },
            "short_description": {
                "fi": "Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.",
                "en": "Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Les ombres portées: NATCHAV (FRA) – SAMPO Festivaali",
                "en": "Les ombres portées: NATCHAV (FRA) – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.</p><p>Sirkus on saapunut kaupunkiin! Karavaani ottaa paikkansa keskusaukiolla ja lekavasaran iskut jylisevät, kun maahan lyödään tolppia valtavien, tuulessa pyörivien telttakankaiden kesyttämiseksi. Kaupunginjohtajat vastustavat vierailua, joten sirkus määrätään siirtymään kaupungin laitamille, akrobaatti pidätetään, ja hänen myötään koko maailma tuntuu olevan vangittuna.</p><p>Sirkusryhmä päättää toteuttaa mahtavan pakomatkan, joka on täynnä kekseliäitä käänteitä. Natchav (juosta pois, juosta karkuun romanikielellä) sekoittaa fantasiaa ja todellisuutta ja antaa maistiaisen vapauden tunteesta.</p><p>Varjon ja valon leikin kautta esitys kertoo yhteiskunnan marginaaliin sijoittuvan tarinan, jossa kaksi pohjimmiltaan vastakkaista maailmaa – sirkus ja vankila – sekoittuvat. Sanaton esitys yhdistää elävää musiikkia ja tarinan edetessä rakentuvaa visuaalisuutta ja luo näin uudenlaisen, provokatiivisen sommitelman todellisuuden ja fantasian välimaastoon.</p><p>Kesto: 60 min<br>Ikäsuositus: 8+<br>Kieli: sanaton</p><p><b>NATCHAV esitetään to 29.8. klo 10 päiväkoti- ja kouluryhmille</b><br>Arkiaamujen näytöksiin päiväkotiryhmille ja koululuokille vapaa pääsy, pakolliset ilmoittautumiset: www.kultus.fi 19.8. klo 10 alkaen. Lisätiedot: hanna.westerholm@hel.fi</p><p>Esitys on osa SAMPO Festivaalin ohjelmistoa. Nukketeatteri Sampon kahdeksatta kertaa järjestämä festivaali esittelee kansainvälistä nukketeatteria eri paikoissa Helsingissä 28.8.–1.9.2024.</p><p>Festivaaliviikon aikana Stoan aulassa on esillä Les ombres porteés -ryhmän esityksen Natchav suunnitteluun ja toteutukseen liittyvä näyttely.</p><p>Idea ja suunnittelu: Les ombres portées, ryhmän nettisivut: www.lesombresportees.fr<br>Nuket ja valot: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Musiikki ja äänitehosteet: Séline Gülgönen (klarinetti), Simon Plane (trumpetti, tuuba, haitari, perkussiot)<br>Valot: Nicolas Dalban-Moreynas<br>Äänet: Yaniz Mango<br>Puvut: Zoé Caugant<br>Kiertuemanageri: Claire Van Zande</p><p>Margot Chamberlin avusti nukkien rakentamisessa ja esiintyi kanssamme vuoteen 2023 saakka. Apua antoivat myös Léo Maurel (ääniefektilaitteisto), Baptiste Bouquin (ulkopuolinen korva), Jean-Yves Pénafiel (ulkopuolinen korva).</p><p>Kiitokset myös seuraaville: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande</p><p>Esitys on omistettu ryhmämme arvostetulle jäsenelle Olivier Cuetolle, joka menehtyi maaliskuussa 2020. Hän oli mukana ideoimassa ja luomassa tätä esitystä ja esiintyi siinä aivan loppuun saakka.</p>",
                "en": "<p>Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free.</p><p>In the darkness of the early morning, the Natchav circus arrives to town. Its caravan of trailers and lorries take their place in the central square. The sledge gang begins its concert of steady blows, pounding the first stakes into the ground; the sound of the immense canvas whips through the air as the tent poles are hoisted to the sky.</p><p>Suddenly, out of concern for security, the authorities order the circus to leave, forcing them onto a vacant lot in the outskirts of town. Following a scuffle, one of the acrobats is arrested and jailed for contempt and rebellion. So, the circus troupe, along with the other prisoners, decide to carry out a spectacular escape, one full of ingenuity and twists and turns...</p><p>Through an extraordinary play of shadow and light, Natchav (go away, run away in Romani) recounts a story in which, on the margins of society, two fundamentally opposed worlds mingle — that of the circus and of the prison.</p><p>It is a story of intrigue that unfolds through a dynamic scenography. With no spoken dialogue, the visuals and music generated and performed live guide the narration, creating an original and provocative composition between reality and fantasy.</p><p>Duration: 60 min<br>Age recommendation: 8+<br>Language: nonverbal</p><p>Tickets: 29 € / 19 € <br>Tickets from Nukketeatteri Sampo.<br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Idea and design: Les ombres portées<br>Puppets and lights: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Music and sound effects: Séline Gülgönen (clarinet), Simon Plane (trumpet, tuba, accordion, percussion)<br>Lighting: Nicolas Dalban-Moreynas<br>Sound: Yaniz Mango<br>Costumes: Zoé Caugant<br>Touring: Claire Van Zande</p><p>Margot Chamberlin helped build the puppets and performed with us until 2023.<br>With help from: Léo Maurel (sound effect machines), Baptiste Bouquin (outside ear), Jean-Yves Pénafiel (outside eye)</p><p>Also thanks to: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande</p><p>We dedicate this show to Olivier Cueto, a cherished member of the company who passed away in March 2020. He imagined, created and performed this show with us until the very end.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64091/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63600",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-03T11:13:00.492849Z",
                    "last_modified_time": "2024-06-03T11:13:00.492867Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750142.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-03T11:13:00.453081Z",
            "last_modified_time": "2024-08-29T05:13:19.772029Z",
            "date_published": null,
            "start_time": "2024-08-29T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/021183DABF34435A22447BC0BE426BF2/Brages_spelmanslag_ja_Brages_folkdansare",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/021183DABF34435A22447BC0BE426BF2/Brages_Spelmanslag_och_folkdansare",
                "en": "http://www.vuotalo.fi/en/events/event/021183DABF34435A22447BC0BE426BF2/Brages_Spelmanslag_Brages_folkdansare"
            },
            "short_description": {
                "fi": "Brages spelmanslag ja Brages folkdanslagetin kansantanssijat palaavat kolmannen kerran Vuotorille Elokuun iltasoitto -tapahtumaan.",
                "sv": "Brages spelmanslag och folkdansarna från Brages folkdanslag återvänder för tredje gången till Nortorget och Nordhusets Kvällsspel i augusti.",
                "en": "Bragen spelmanslag and the folk dancers Brage folkdanslag returns to Vuotori for the third time for some Evening music in August!"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Brages spelmanslag ja Brages folkdansare – Elokuun iltasoitto",
                "sv": "Brages Spelmanslag och folkdansare – Kvällsspel i augusti",
                "en": "Brages Spelmanslag & Brages folkdansare – Evening music in August"
            },
            "description": {
                "fi": "<p>Brages spelmanslag ja Brages folkdanslagetin kansantanssijat palaavat kolmannen kerran Vuotorille Elokuun iltasoitto -tapahtumaan.</p><p>Bragen pitkäaikainen viulunsoittajatiimi on aktivoitunut jälleen muutaman vuoden tauon jälkeen. Brage spelmanslagin taiteellinen johtaja on Lotta Ahlbeck.</p><p>Brages folkdanslag koostuu eri-ikäisistä tanssijoista. Tanssiryhmälle ominaista on menuettien, polskojen, hambojen ja laululeikkien monipuolinen käyttö.</p><p>Kansantanssimestari Eivor Wallinvirta on kehittänyt ohjelmistoa yksinkertaisista peräkkäisistä tanssisarjoista kokonaisiin ohjelmiin, joissa laulu, tanssi ja musiikki kuvaavat yhtä paljon elämän tapahtumia, kuten juhlia ja juhlia, kuten ennenkin.</p><p>Helsingin Brage-yhdistys perustettiin vuonna 1906 säilyttämään ja vaalimaan suomalais-ruotsalaista kansankulttuuria laulun ja tanssin, myöhemmin myös pukujen avulla. Brage on dynaaminen yhdistys, joka noudattaa alkuperäisiä tavoitteitaan: yhdistää akateemista ja käytännönläheistä ja edistää aktiivisesti suomalais-ruotsalaisen kansankulttuurin harjoittamista.</p>",
                "sv": "<p>Brages spelmanslag och folkdansarna från Brages folkdanslag återvänder för tredje gången till Nortorget och Nordhusets Kvällsspel i augusti.</p><p>Brages spelmanslag som har anor långt tillbaka i tiden har blivit aktivt igen efter att verksamheten legat nere några år. Den grekiska folkkulturföreningen Artemis på ön Leros i Grekland inbjöd spelmanslaget på besök i oktober 2019. Inför besöket på Leros samlades spelmännen som en projektgrupp bestående av skickliga amatör- och professionella musiker. Efter besöket fortsatte gruppen som Brages spelmanslag och övar tillsammans inför olika evenemang där gruppen uppträder. Spelmanslagets huvudsakliga motto är att uppföra finlandssvensk folkmusik. Brage spelmanslags konstnärliga ledare är Lotta Ahlbeck.</p><p>Brages folkdanslag består av dansare i olika åldrar. I Brage kan man börja redan som 4-åring i lekkursen och sedan dansa tills benen inte mera bär. Folkdanslagets medlemmar träffas varje vecka för att finslipa sina dansfärdigheter och umgås med dansvänner. Utmärkande för danslaget är ett mångsidigt bruk av menuetter, polskor, hambo och sånglekar i sina programhelheter.</p><p>Folkdansmästare Eivor Wallinvirta har utvecklat repertoaren från enkla uppställningar av danser efter varandra till programhelheter, där sång, dans och musik jämbördigt beskriver händelser i livet, däribland fester och högtider, så som det var tidigare.</p><p>Danslaget strävar efter att utveckla underhållande uppvisningar, som samtidigt på ett genuint sätt beskriver en tid som varit. Dansarna glömmer ändå inte att dansen är en hobby och en källa till många glada stunder. Vi lever idag det som blir våra barnbarns gårdag och kulturarv.</p><p>Föreningen Brage i Helsingfors grundades 1906 för att bevara och vårda den finlandssvenska folkkulturen, genom sång och dans, senare även dräkter. Brage är en dynamisk förening som lever upp till sina ursprungliga målsättningar: att förena det akademiska och det praktiska samt att aktivt stimulera utövandet av finlandssvensk folkkultur.</p><p>Längd: ca. 60 min.</p>",
                "en": "<p>Bragen spelmanslag and the folk dancers Brage folkdanslag returns to Vuotori for the third time for some Evening music in August!</p><p>Brage’s veteran violin ensemble has started performing again after a few years of absence. Brage spelmanslag’s artistic director is Lotta Ahlbeck.</p><p>Brages folkdanslag consists of dancers of varying ages. The dance group typically performs a wide range of minuets, polskas, hambos and singing games.</p><p>Master folk dancer Eivor Wallinvirta has developed repertoires from simple consecutive dance routines into full programmes in which the song, dance and music depict life events, such as celebrations.</p><p>Duration apx 60 min.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63600/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63586",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151476,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T12:13:22.740734Z",
                    "last_modified_time": "2024-06-17T12:13:22.740751Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751696.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T12:13:22.687030Z",
            "last_modified_time": "2024-08-29T05:13:19.715540Z",
            "date_published": null,
            "start_time": "2024-08-29T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/31D87DD62FF57FD6265FE756EEF19E53/Ornan_Braier_Raatalin_taikaseikkailu",
                "en": "http://www.annantalo.fi/en/events/event/31D87DD62FF57FD6265FE756EEF19E53/Ornan_Braier_Tailor_made"
            },
            "short_description": {
                "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”",
                "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaali",
                "en": "Ornan Braier: Tailor made – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun! Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti (käännetään suomeksi)<br>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p>Adaptaatio, suunnittelu, musiikki ja manipulointi: Ornan Braier<br>Taiteellinen valvonta: Marit Benisrael<br>Vaate- ja tekstiilisuunnittelu: Vali Mintzi<br>Nukenrakennus: Sharon Silver-Merrett<br>Valosuunnittelu: Shahar Maron<br>Mekaaniset rakennelmat: Shaul Mograbi-Berger, Ornan Braier<br>Kuvat: Dor Kedmi</p><p><b>Ornan Braier</b> on nukeillanäyttelijä, näyttelijä ja muusikko. Hän yhdistää esityksissään laajan valikoiman esittäviä taiteita ja on siten tullut tunnetuksi ainutlaatuisena ja omaperäisenä taiteilijana Israelissa ja ympäri maailmaa. Hänen näyttämökielensä perustuu voimakkaisiin visuaalisiin kuviin yhdistettynä omaleimaiseen musiikkiin, joten esitykset läpäisevät katsojan kaikki aistit. Hänen työnsä ovat voittaneet kansallisia ja kansainvälisiä palkintoja. Yhdessä Train Theatren kanssa tehty Tailor Made on kiertänyt ympäri maailmaa, ja se on voittanut lukuisia kansainvälisiä palkintoja. Ornanin toinen esitys, Little Love Machine eli Pieni Lempilaite (2019) nähtiin vuoden 2023 SAMPO Festivaalilla.</p>",
                "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and<br>music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English (translated in Finnish)<br>Tickets: 15 €, from Nukketeatteri Sampo: nukketeatterisampo.fi/esityskalenteri<br>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Adaptation, design, music and manipulation: Ornan Braier<br>Artistic supervision: Marit Benisrael<br>Costume and fabric design: Vali Mintzi<br>Puppet design: Sharon Silver-Merrett<br>Lighting design: Shahar Maron<br>Mechanical constructions: Shaul Mograbi-Berger, Ornan Braier<br>Photo: Dor Kedmi</p><p><b>Ornan Braier</b> is a puppeteer, actor and musician. He combines a wide variety of performing arts in his shows and thus has become a unique and original artist in Israel and around the world. His stage language is based on powerful visual images combined with distinctive music, which sweeps all the senses of the audience. His work has won local and international prizes. Tailor Made, produced together with the Train Theatre, has been performed around the world and has won local and international prizes. Another show by Ornan, Little Love Machine (2019) was seen on SAMPO Festival 2023 and it has also received several awards.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63586/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64139",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151544,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T12:13:06.410447Z",
                    "last_modified_time": "2024-06-26T12:13:06.410462Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746698.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151544/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T12:13:06.391410Z",
            "last_modified_time": "2024-08-29T05:13:19.661915Z",
            "date_published": null,
            "start_time": "2024-08-29T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F4D77D660089920A46F91362E41F2656/Antero_Raimo_Ovet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/F4D77D660089920A46F91362E41F2656/Antero_Raimo_Ovet",
                "en": "http://www.espanlava.fi/en/events/event/F4D77D660089920A46F91362E41F2656/Antero_Raimo_Ovet"
            },
            "short_description": {
                "fi": "Antero Raimo & Ovet on vuonna 1992 perustettu yhtye. Musiikki on lämpimän humoristista, syvästi koskettavaa ja saanut vaikutteita eri musiikin tyylilajeista.",
                "sv": "Antero Raimo & Ovet är ett band som grundades 1992. Musiken är varmt humoristisk, djupt rörande och influerad av olika musikgenrer.",
                "en": "Antero Raimo & Ovet was founded 1992. The players had been working as teachers in Vantaa and Helsinki."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Antero Raimo & Ovet – Open Stage",
                "sv": "Antero Raimo & Ovet – Open Stage",
                "en": "Antero Raimo & Ovet – Open Stage"
            },
            "description": {
                "fi": "<p>Antero Raimo & Ovet on vuonna 1992 perustettu yhtye. Musiikki on lämpimän humoristista, syvästi koskettavaa ja saanut vaikutteita eri musiikin tyylilajeista.</p><p>Yhtyeen jäsenet ovat vantaalaisia ja helsinkiläisiä opettajia, monet opiskeluaikoina toisiinsa tutustuneita. Soittajilla on monia yhtyeitä takanaan mm. Jukebox, Zetor, Jordnöts, Myrkky.</p><p><b>Yhtyeen jäsenet ovat tällä hetkellä:</b><br>Jari Rönkkö: rummut<br>Raimo Laine: laulu<br>Petri Sinivuori : basso<br>Tero Ylevä: harmonikka<br>Kimmo Salmela: kitara<br>Matti Kervinen: keyboard</p><p>Ensimmäisen kokoonpanon muodostivat Matti Jordman, Mikko Jordman, Jari Rönkkö, Raimo Laine, Tuomo Korpela ja Tero Siivonen. Hannele Voutilainen soitti viulua yhtyeessä 90-luvun loppupuoleen asti. Petri Sinivuori tuli basson varteen v. 2000 Tuomo Korpelan tilalle, ja Tero Ylevä v. 2005 Tero Siivosen tuuraajaksi ja vakijäseneksi. 2018 Matti ja Mikko Jordmanin tilalle astuivat Kimmo Salmela ja Matti Kervinen.<br>Yhtyeen kappaleet ovat pääasiassa Jari Rönkön säveltämiä ja Raimo Laineen sanoittamia.</p><p>Näin ura urkeni: vuonna 1993 yhtye äänitti naapurin 50 m² kaksiossa ensisinglensä. Rumpali paukutteli olohuoneessa, basisti makuuhuoneessa ja kitaristi eteisessä. Tarkkaamo sijaitsi makuuhuoneessa. Vinyylisinglelle päätyivät kappaleet \"Mustikanpoiminta\" ja \"Jalkapallosankarit\". Levyä ei markkinoitu mitenkään, se vain jaettiin radioihin.</p><p>Keväällä -95 julkaistiin kuuden kappaleen omakustanne; CD-single ”Uushumppaa”, jolle \"Mustikanpoiminta\" laitettiin mukaan. Sieltä kappale löydettiin ja se sai suuren suosion Radio Suomessa päätyen aina soitetuimpien listalle useiksi viikoiksi. \"Mökille mennään\" saavutti samanlaisen suosion seuraavana keväänä. Sittemmin radioasemat ovat soittaneet lisäksi mm. seuraavia kappaleita \"Kesäloma maalla, \"Ai, ai, ahdistaa\", \"Nassulan saunavuoro\", \"Kiiitos Minä\", \"Rasvat pois\" ja \"Ei tästä maailmasta\".</p><p>Yhtye keikkailee valikoidusti, sillä jäsenillä on leipätyöt ja perheet, ja soittohommia halutaan tehdä sopivasti.</p>",
                "sv": "<p>Antero Raimo & Ovet är ett band som grundades 1992. Musiken är varmt humoristisk, djupt rörande och influerad av olika musikgenrer.</p><p>Medlemmarna i gruppen är lärare från Vanda och Helsingfors. Flera av dem blev bekanta med varandra under studietiden. Musikerna har många band bakom sig, bland annat Jukebox, Zetor, Jordnöts, Myrkky.</p><p><b>Bandmedlemmarna är för närvarande:</b></p><p>Jari Rönkkö: trummor<br> Raimo Laine: sång<br> Petri Sinivuori: bas<br> Tero Ylevä: dragspel<br> Kimmo Salmela: gitarr<br> Matti Kervinen: keybord</p><p>Den första ensemblen bestod av Matti Jordman, Mikko Jordman, Jari Rönkkö, Raimo Laine, Tuomo Korpela och Tero Siivonen. Hannele Voutilainen spelade violin i bandet fram till slutet av 1990-talet. Petri Sinivuori tog tag i basen år 2000 för att ersätta Tuomo Korpela, och Tero Ylevä kom med år 2005 för att ersätta Tero Siivonen och sedan bli permanent medlem. År 2018 ersattes Matti och Mikko Jordman av Kimmo Salmela och Matti Kervinen.</p><p>Bandets låtar är huvudsakligen komponerade av Jari Rönkkö och texterna är skrivna av Raimo Laine.</p><p>Så här fick karriären sin begynnelse: år 1993 spelade bandet in sin första singel i en grannes lägenhet på 50 m². Trummisen spelade i vardagsrummet, basisten i sovrummet och gitarristen i tamburen. Kontrollrummet låg i sovrummet. Låtarna “Mustikanpoiminta” och “Jalkapallosankarit” hamnade på vinylsingeln. Albumet marknadsfördes inte på något sätt, utan distribuerades bara till radiostationerna.</p><p>Våren -95 släpptes sex låtar på den självutgivna CD-singeln “Uusihumppaa”, där även “Mustikanpoimintaa” ingick. Där upptäcktes låten och uppnådde stor popularitet på Radio Suomi, och hamnade på listan över mest spelade låtar i flera veckors tid. “Mökille mennään” uppnådde en liknande popularitet följande vår. Sedan dess har radiostationerna även spelat bland annat låtarna: “Kesäloma maalla”, “Ai, ai, ahdistaa”, “Nassulan saunavuoro”, “Kiiitos Minä”, “Rasvat pois” och “Ei tästä maailmasta”.</p><p>Eftersom bandets medlemmar förvärvsarbetar, har familjer, och vill spela i lämplig utsträckning uppträder bandet selektivt.</p>",
                "en": "<p>Antero Raimo & Ovet was founded 1992. The players had been working as teachers in Vantaa and Helsinki.</p><p>Many of them got to know each other during their studies in Helsinki University. They had played before in bands like Jukebox, Zetor, Myrkky.</p><p><b>The members of Antero Raimo & Ovet are in this moment:</b><br>Jari Rönkkö: drums <br>Raimo Laine:vocals<br>Petri Sinivuori : bass<br>Tero Ylevä: accordion<br>Kimmo Salmela: guitar<br>Matti Kervinen: keyboard</p><p>Matti, Mikko, Jari and Raimo are the original members of the band. Petri joined the band as a bassplayer 2000 replacing tuomo Korpela, and Tero Ylevä replaced Tero Siivonen year 2005. Hannele Voutilainen left the band at the end of 90’s. 2018 Matti and Mikko Jordman were replaced by Kimmo Salmela and Matti Kervinen.</p><p>The songs are composed by Jari Rönkkö and the lyrics are written by Raimo Laine with a few exceptions.</p><p>The story begins: 1993 Antero Raimo & Ovet was recording the first single in an apartment of their neighbour. The drummer was playing in a livingroom, bass was recorded in a bedroom and guitar in a corridor. The monitoring room was also in the bedroom. There were songs “Mustikanpoiminta” (Blaubeeren sammeln) and “Jalkapallosankarit” in the single. The single was just spreaded into radiostations without any promotion.</p><p>In the spring 1995 was puplished an EP with 6 songs. EP was named UUSHUMPPAA (Einen neues humppa), and “Mustikanpoiminta” (Blaubeeren sammeln) was one of the songs in the EP. Now this song was found in radiowaves and it became very popular in Radio Suomi. Song “Mökille mennään” achieved the same popularity in the next spring 1996. After that the most played songs with those two mentioned have been “Kesäloma maalla”, “Ai, ai, ahdistaa”, Nassulan saunavuoro” (Das Saunalied der Ferkel), “Kiitos minä” (Ich bin Klasse) and “Rasvat pois” (Das Fett muss weg).</p><p>Antero Raimo & Ovet plays gigs infrequently, because the members have regular jobs and families.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64139/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64138",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151543,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T12:13:06.287118Z",
                    "last_modified_time": "2024-06-26T12:13:06.287138Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746697.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151543/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T12:13:06.236697Z",
            "last_modified_time": "2024-08-29T05:13:19.611134Z",
            "date_published": null,
            "start_time": "2024-08-29T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E43E1179F92C25F44A90B7FD5269272C/Finnair_Singers_Around_the_World",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/E43E1179F92C25F44A90B7FD5269272C/Finnair_Singers_Around_the_World",
                "en": "http://www.espanlava.fi/en/events/event/E43E1179F92C25F44A90B7FD5269272C/Finnair_Singers_Around_the_World"
            },
            "short_description": {
                "fi": "Finnair Singers on Finnairin henkilökunnan naiskuoro. Ensimmäinen kuoro Finnairille perustettiin vuonna 1949 ja me jatkamme tätä perinnettä vielä 75 vuoden jälkeen.",
                "sv": "Finnair Singers är en damkör som består av Finnairs personal. Finnairs första kör grundades år 1949, och vi för vidare denna tradition ännu 75 år senare.",
                "en": "Finnair Singers is a female choir of Finnair staff. The first choir for Finnair was founded in 1949 and we continue this 75-year tradition."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Finnair Singers – Around the World – Open Stage",
                "sv": "Finnair Singers – Around the World – Open Stage",
                "en": "Finnair Singers – Around the World – Open Stage"
            },
            "description": {
                "fi": "<p>Finnair Singers on Finnairin henkilökunnan naiskuoro. Ensimmäinen kuoro Finnairille perustettiin vuonna 1949 ja me jatkamme tätä perinnettä vielä 75 vuoden jälkeen.</p><p>Suurin osa jäsenistämme viettää työpäivänsä pilvien yläpuolella Finnairin lennoilla palvelemassa asiakkaita ja joskus jopa laulaen. Mukaan mahtuu myös maassa eri tehtävissä toimivia finnairilaisia mm. asiakaspalvelusta, kaupallisista toiminnoista, viestinnästä ja IT:stä.</p><p>Kuoro on meille kaikille rakas tavoitteellinen harrastus, mahdollisuus tavata kollegoita työn ulkopuolella ja nauttia laulun iloisesta voimasta yhdessä.</p>",
                "sv": "<p>Finnair Singers är en damkör som består av Finnairs personal. Finnairs första kör grundades år 1949, och vi för vidare denna tradition ännu 75 år senare.</p><p>De flesta av våra medlemmar tillbringar sina arbetsdagar genom att betjäna kunder ovan om molnen på Finnairs flygningar, ibland även sjungande. Vi har också körmedlemmar som arbetar inom Finnairs kundtjänst, affärsfunktioner, kommunikation och IT.</p><p>För oss alla är kören en kär och målinriktad hobby, och en möjlighet att träffa kollegor utanför jobbet och njuta av sångens glädjande kraft tillsammans.</p>",
                "en": "<p>Finnair Singers is a female choir of Finnair staff. The first choir for Finnair was founded in 1949 and we continue this 75-year tradition.</p><p>Most of our members spend their working days above the clouds on Finnair flights serving customers – sometimes they even sing. The choir also includes Finnair employees working in different positions on the ground, from customer service, commercial operations, communications and IT, among others.</p><p>The choir is a goal-oriented hobby for all of us, an opportunity to meet colleagues outside of work and enjoy the joyful power of singing together.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64138/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63585",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "en": "15 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151474,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T11:13:41.560992Z",
                    "last_modified_time": "2024-06-17T11:13:41.561006Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751695.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151474/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T11:13:41.533509Z",
            "last_modified_time": "2024-08-29T05:13:19.534858Z",
            "date_published": null,
            "start_time": "2024-08-29T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9715364B1161B65DE3E609C898A4CD0E/SAMPO_Festivaali_Babygonia",
                "en": "http://www.annantalo.fi/en/events/event/9715364B1161B65DE3E609C898A4CD0E/SAMPO_Festival_Babygonia"
            },
            "short_description": {
                "fi": "Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.",
                "en": "We invite babies from eight months to two and a half years old to arrive at a theatre."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "SAMPO Festivaali: Babygonia",
                "en": "SAMPO Festival: Babygonia"
            },
            "description": {
                "fi": "<p>Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.</p><p>Pienimmät saapuvat esitykseen kuin kuninkaalliset, vaunuissa seurueensa saattelemina. Teatteritilaa ei jaeta katsomoon ja näyttämöön, vaan vieras astuu sisään esityksen maailmaan. Esityksessä on lupa kulkea rohkeasti esityksen virran mukana tai sitä vastaan, voi katsella kuinka tila muuttuu, osallistua, tunnustella tai vain olla ja kuunnella ääniä ympärillään.</p><p>Vauvakatsoja on kuin pieni Buddha: hän ei tiedä sitä mitä aikuiset tietävät, mutta hän muistaa vielä sen, minkä aikuiset ovat unohtaneet. Hänellä on hämmästyttävä uteliaisuus kaikkea ympärillä olevaa kohtaan. Hän kyseenalaistaa ja tutkii jokaista pientä huomaamaansa asiaa jonka ja nauttii tutkimisen ja jakamisen prosessista.</p><p>Esityksessä syntyvät mikro- ja makrouniversumit muodostuvat erivärisistä, -kokoisista ja -tuntuisista objekteista. Esiintyjät luovat assosiatiivisia kuvia, sommitelmia, tunnelmia ja tapahtumia live-muusikon avustuksella. Jokainen Babygonia-näytös on ainutlaatuinen.</p><p><b>TYÖRYHMÄ</b><br>Esiintyjät: Anna Nekrassova ja Jenni Rutanen<br>Konsepti, ohjaus: Anna Ivanova<br>Visuaalisuus, tila ja objektit: Jenni Rutanen<br>Äänisuunnittelu, muusikko lavalla: Roosa Halme<br>Valosuunnittelu: Antton Kainulainen<br>Koreografia: Mantas Stabačinskas</p><p>Kesto: 30 min<br>Ikäsuositus: 8 kk – 2,5-v (aikuisten kanssa)<br>Kielet: sanaton</p><p>Lippuvaraukset: 020 735 2235, toimisto@nukketeatterisampo.fi<br>Lipputoimisto: Nukketeatteri Sampo, Erottajankatu 7, Helsinki</p><p><b>SAMPO Festivaali</b> <br>Kansainvälinen nukketeatteritapahtuma SAMPO Festivaali toteutuu nyt jo kahdeksatta kertaa! Luvassa sanatonta nukketeatteria aikuisille ja lapsille, elävää musiikkia, vauvateatteria, sirkusta, absurdia minimalismia ja suuren näyttämön varjoteatteria.</p><p>Ohjelmassa on kotimaisia uutuuksia ja kansainvälisiä huippunimiä ensimmäistä kertaa Suomessa!<br> <br>Tutustu koko ohjelmaan: https://sampofestival.fi/</p>",
                "en": "<p>We invite babies from eight months to two and a half years old to arrive at a theatre.</p><p>They always come like royalty in carriages, accompanied by an adult retinue. And they enter the show as a river can be entered – they can bravely go with its flow or against it; they can watch how it flows; they can lie down and look into it, or just listen to the sound of water.</p><p>The theatre is not divided into an auditorium and a stage. The actors create a variety of images and compositions in space, where, if desired and ready, large and small spectators can enter. The audience chooses the degree of their participation and activity in the action organized by the actors.<br> <br>Baby spectator is a little Buddha: s/he does not know what adults do know. But s/he still remembers what grown-ups have forgotten. S/he has an amazing curiosity about everything around. S/he questions and explores every tiny thing s/he notices. S/he enjoys this devising process.</p><p>The performance is based on associative forms, shapes and tactile-sensory perception of space, in which micro- and macro-universes are formed, assembled from objects of different colors, sizes, textures and sounds (the visual story is accompanied by live music).</p><p>We borrow from little buddhas their method of communication with reality and we are using it as a professional approach in creating baby theatre.</p><p><b>WORKING GROUP</b><br>Performers: Anna Nekrassova and Jenni Rutanen<br>Concept, directing: Anna Ivanova<br>Visual realization, space and objects: Jenni Rutanen<br>Sound designer and musician on stage: Roosa Halme<br>Light designer: Antton Kainulainen<br>Movement designer: Mantas Stabačinskas</p><p>Duration: 30 minutes<br>Age recommendation: 8 months – 2,5 years old (with adults)<br>Language: Non-verbal<br>Tickets: 15 €, from Nukketeatteri Sampo: nukketeatterisampo.fi/esityskalenteri<br>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p><b>SAMPO Festival in Helsinki</b></p><p>The international puppet theatre event SAMPO Festival is coming for the eighth time! There will be nonverbal puppet theatre for adults and children, live music, circus, theatre for babies, absurd minimalism and shadow theatre of grand proportions!</p><p>New domestic performances and international top names for the first time in Finland!<br> <br>Check out the entire program: sampofestival.fi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64080",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,50 €",
                        "sv": "17,50 €",
                        "en": "17,50 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151489,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-18T12:13:40.304896Z",
                    "last_modified_time": "2024-06-18T12:13:40.304914Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753192.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151489/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-18T12:13:40.268196Z",
            "last_modified_time": "2024-08-29T05:13:19.447237Z",
            "date_published": null,
            "start_time": "2024-08-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/CF0EBA46115EE4AEAF59B2A92CC60C59/Tunnel",
                "sv": "http://www.stoa.fi/sv/evenemang/event/CF0EBA46115EE4AEAF59B2A92CC60C59/Tunnel",
                "en": "http://www.stoa.fi/en/events/event/CF0EBA46115EE4AEAF59B2A92CC60C59/Tunnel"
            },
            "short_description": {
                "fi": "Varjoteatteria ja livemusiikkia yhdistävä esitys vie tutkimaan, miten koemme valon, pimeyden ja varjojen leikin. Millaisia tunteita se meissä herättää?",
                "sv": "En föreställning som kombinerar skuggteater och levande musik får oss att utforska hur vi upplever leken mellan ljus, mörker och skuggor. Hurdana känslor väcker den hos oss?",
                "en": "Tunnel is an unusual production that seeks comfort in the dark and treats light like a delicious dessert."
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tunnel – SAMPO Festivaali",
                "sv": "Tunnel – SAMPO-festivalen",
                "en": "Tunnel – SAMPO Festival"
            },
            "description": {
                "fi": "<p>Varjoteatteria ja livemusiikkia yhdistävä esitys vie tutkimaan, miten koemme valon, pimeyden ja varjojen leikin. Millaisia tunteita se meissä herättää?</p><p>Aluksi näyttää siltä, että valoa voidaan hallita, kun taas pimeyttä – tuntematonta, vaarallista – ei voi. Tilanne kuitenkin kääntyy pian päinvastaiseksi: tarvitaan vain ripaus rohkeutta sekä yhteistyötä ja voimme turvallisesti nauttia pimeydestä ja annostella sitä itse!</p><p>Tunnelissa asuu sekä valo että pimeys. Pimeässä emme näe värejä, emme voi havaita todellisia muotoja ja kokoja, emme tunnista rakennetta koskematta, emmekä pysty määrittämään etäisyyksiä. Valossa kylpenyt maailma katoaa, äänet vääristyvät epämääräisiksi ja moni tuntee olonsa epämukavaksi. Ehkä pelokkaaksikin?</p><p>Valolla voi leikkiä, mutta valolla leikkiminen tarkoittaa myös pimeyden kanssa leikkimistä. Tiedämmekö yhä minkä värinen ja muotoinen maailma ympärillämme on? Millainen se on tekstuuriltaan? Missä me olemme? Entä keitä olemme – menetämmekö myös me pimeydessä värimme, muotomme, rakenteemme, syvyytemme ja kokomme?</p><p>Valon ja pimeyden animaatioon perustuva varjoteatteriesitys luo ”leikkipaikan pimeydelle”. Pimeässä ympäristössä luodaan assosiatiivisia visuaalisia ja äänikuvia, jotka leikkisästi esittävät kysymyksiä pelosta ja rohkeudesta. Tunneli on epätavallinen esitys, joka etsii mukavuutta pimeässä ja kohtelee valoa kuin se olisi herkullinen jälkiruoka.</p><p>Esitys sisältää valotehosteita.</p><p>Yhteistuotanto Klaipėdan nukketeatterin (Liettua) kanssa osana eurooppalaista Mapping-projektia.</p><p>Kesto: 50 min<br>Ikäsuositus: 5+<br>Kieli: sanaton, Suomi (tallenteelta)</p><p>Ohjaaja, AD, lavastaja: Miha Golob<br>Dramaturgi: Mojca Redjko<br>Pukusuunnittelija: Dajana Ljubičić<br>Musiikki: Andrius Šiurys<br>Virtuaalisen sisällön toteutus: Borut Kumperščak<br>Valosuunnittelija: Gregor Kuhar<br>Näyttelijät: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Lämmin kiitos yhteistyöstä: Ada, Ana, Brin, Jonatan, Lara, Luisa, Oliver, Timeja,<br>Varja, Veno, Vid, Zora<br>Tuotantopäällikkö, äänisuunnittelija ja videoteknikko: Aleš Erjavec<br>Keskustelujen äänitys ja äänimateriaalin editointi: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Tuottajat: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Valot: Gregor Kuhar/Kristjan Vidner<br>Lavatekniikka: Sašo Kitić<br>Lavastus, nuket, rekvisiitta ja puvut: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror-tuotanto: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> on palkittu teatteri- ja nukkeohjaaja. Hänen alkuperäiset konseptinsa perustuvat usein ajatukseen tutkimisesta ja materiaalilla leikkimisestä, mikä antaa myös katsojalle aktiivisen ja luovan roolin teoksissa. Osana European Mapping -projektia Golob on tuonut Ljubljanan nukketeatteriin alkuperäisen Tunnel-projektinsa, jossa tutkitaan valoa ja pimeyttä teatterin keinoin.</p><p><b>Klaipėdan nukketeatteri</b> (1991) keskittyy rohkeasti uusien ilmaisutapojen löytämiseen nukeille, ja sen ohjelmisto koostuu sekä paikallisten että ulkomaisten kirjailijoiden tulkinnoista. Teatterin päätehtävä on esittää klassista ja modernia nukketeatteria Klaipėdan ja sen lähialueen lapsille ja nuorille, mutta Länsi-Liettuan ainoana ammattimaisena nukketeatterina se tuottaa teoksia kaikenikäisille yleisöille.</p><p><b>Mapping – Kartta esittävän taiteen estetiikasta nuorille katsojille</b> on laajamittainen Luova Eurooppa -ohjelman 2018–2022 tukema kansainvälinen hanke, joka keskittyy tataiteelliseen tutkimukseen ja aistisuhteen luomiseen nuoren yleisön (0–6-vuotiaiden) kanssa.</p>",
                "sv": "<p>En föreställning som kombinerar skuggteater och levande musik får oss att utforska hur vi upplever leken mellan ljus, mörker och skuggor. Hurdana känslor väcker den hos oss?</p><p>Först verkar det som om ljuset kan kontrolleras, medan mörkret – okänt, farligt – inte kan. Situationen förvandlas dock snart till det motsatta: Allt som krävs är en nypa mod och samarbete, och vi kan tryggt njuta av mörkret och själva välja hur stora doser vi vill ha!</p><p>I Tunneln bor både ljuset och mörkret. I mörkret kan vi inte se färger, vi kan inte upptäcka verkliga former och storlekar, vi kan inte identifiera en struktur utan att röra den och vi kan inte bestämma avstånd. En värld som badade i ljus försvinner, ljuden förvrängs och många känner sig obekväma. Kanske till och med rädda?<br>Man kan leka med ljuset, men att leka med ljuset innebär att man också leker med mörkret. Vet vi fortfarande vilken färg och form världen omkring oss har? Hurdan är dess textur? Var är vi? Och vem är vi – förlorar vi också vår färg, form, struktur, djup och storlek i mörkret?</p><p>Skuggteaterföreställningen som baserar sig på ljusets och mörkrets animation skapar en \"lekplats för mörkret\". I den mörka miljön skapas associativa visuella bilder och ljudbilder som lekfullt ställer frågor om rädsla och mod. Tunnel är en ovanlig föreställning som söker komfort i mörkret och behandlar ljuset som om det var en utsökt efterrätt.</p><p>Föreställningen innehåller ljuseffekter.<br>Samproduktion med Klaipėda dockteater (Litauen) som en del av det europeiska projektet Mapping.</p><p>Längd: 50 min.<br>Åldersrekommendation: 5+<br>Språk: ordlös, finska (från inspelning)</p><p>Regissör, AD, scenograf: Miha Golob<br>Dramaturg: Mojca Redjko<br>Kostymdesigner: Dajana Ljubičić<br>Musik: Andrius Šiurys<br>Virtuellt innehåll: Borut Kumperščak<br>Ljusdesigner: Gregor Kuhar<br>I rollerna: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Varmt tack för samarbetet: Ada, Ana, Brin, Jonathan, Lara, Luisa, Oliver, Timeja,<br>Göm, Veno, Vid, Zora<br>Produktionschef, ljuddesigner och videotekniker: Aleš Erjavec<br>Inspelning av dialogerna och ljudredigering: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Producenter: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Belysning: Gregor Kuhar/Kristjan Vidner<br>Scenteknik: Sašo Kitić<br>Scenografi, dockor, rekvisita och kostymer: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror-produktion: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> är en prisbelönt teater- och dockregissör. Hans ursprungliga koncept bygger ofta på idén om att utforska material och leka med det, vilket ger också åskådaren en aktiv och skapande roll i verken. Som en del av projektet European Mapping har Golob tagit med sig sitt ursprungliga projekt Tunnel till dockteatern i Ljubljana. I projektet utforskas ljus och mörker genom teater.</p><p><b>Klaipėda dockteater</b> (1991) fokuserar djärvt på att hitta nya uttryckssätt för dockor, och dess repertoar består av tolkningar av både lokala och utländska författare. Teaterns huvudsakliga uppgift är att framföra klassisk och modern dockteater för barn och ungdomar i Klaipėda och dess omgivning, men som den enda professionella dockteatern i västra Litauen producerar den verk för publik i alla åldrar.</p><p><b>Mapping – En karta över scenkonstens estetik för ung publik</b> är ett storskaligt internationellt projekt som stöds av programmet Kreativa Europa 2018–2022. Projektet fokuserar på konstnärlig forskning och på att skapa ett sensoriskt förhållande till ung publik (0–6-åringar).</p>",
                "en": "<p>Tunnel is an unusual production that seeks comfort in the dark and treats light like a delicious dessert.</p><p>Based on the animation of light and darkness, the performance creates a playground for darkness, where associative visual and sound images are created that playfully raise questions about fear and courage.</p><p>At first it seems that the light can be controlled, while the darkness— unknown, dangerous —cannot. However, in the performance, the situation is soon reversed – with a pinch of courage and a pinch of cooperation, we can safely enjoy the darkness as we dose it ourselves.</p><p>Tunnel is inhabited by both light and darkness. Light is inseparably linked to colour, shape, structure, depth, distance, and activity. In darkness the world revealed in the light disappears, sounds become distorted without a clear picture and many people feel discomfort. Fear?</p><p>Playing with light also means playing with darkness. Do we then still know what colour, shape, texture, size the world is? Where are we? And who are we – do we also change, lose our colour, shape, structure, depth and size?</p><p>Based on the animation of light and darkness, the performance creates a playground for darkness, where associative visual and sound images are created that playfully raise questions about fear and courage.</p><p>The performance includes lighting effects that may disturb sensitive viewers.</p><p>Co-produced with the Klaipėda Puppet Theatre (Lithuania) as part of the European project<br>Mapping.</p><p>Age recommendation 5+<br>Duration: 50 min<br>Language: nonverbal, Finnish (from recording)</p><p>Director, art director, set designer: Miha Golob<br>Dramaturgy: Mojca Redjko<br>Costume designer: Dajana Ljubičić<br>Music: Andrius Šiurys<br>Virtual content designer: Borut Kumperščak<br>Lighting designer: Gregor Kuhar<br>Actors: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Sincere thanks for kind cooperation: Ada, Ana, Brin, Jonatan, Lara, Luisa, Oliver, Timeja,<br>Varja, Veno, Vid, Zora<br>Performance manager, sound designer and video technician: Aleš Erjavec<br>Recording conversations and editing audio recordings: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Producer: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Lighting control: Gregor Kuhar/Kristjan Vidner<br>Stage technician: Sašo Kitić<br>Set, puppets, props and costumes: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror production: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> is a theatre and puppet director. His original concepts are often based on the idea of exploration and play with material, which consistently ensures an active and creative role of the spectator. As part of the European Mapping project, he returns to the Ljubljana Puppet Theatre with his original project Tunnel, in which light and darkness are the key theatrical symbols and the field of research.<br> <br><b>The Klaipėda Puppet Theatre</b> (1991) boldly focuses on discovering new ways of puppet expression, and its repertoire consists of interpretations by both local and foreign authorsThe theatre's main mission is to present classical and contemporary puppetry to children and young people from Klaipėda and the region, but as the only professional puppet theatre in western Lithuania it produces works for audiences of all ages.</p><p><b>Mapping – A Map on the aesthetics of performing arts for early years</b> – is a large-scale international project supported by the Creative Europe Programme 2018–2022.The project focuses on artistic research and the creation of a sensory relationship with young audiences (0–6 years old), resulting in four exhibitions, 16 premieres for younger audiences and five illustrated expert publications.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64080/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}