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&page=1168&registration__remaining_waiting_list_capacity__isnull=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27030,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1169&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1167&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:60833",
            "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:29/?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: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:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4266,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:30.631163Z",
                    "last_modified_time": "2023-09-07T14:22:30.631197Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735140.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:29.868404Z",
            "last_modified_time": "2023-11-14T06:13:09.694601Z",
            "date_published": null,
            "start_time": "2023-09-22T12: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D03BF445E45409EA59F839C0B05366DB/Venetsian_aaveet_12_",
                "en": "http://www.malmitalo.fi/en/events/event/D03BF445E45409EA59F839C0B05366DB/A_Haunting_in_Venice_12_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.</p><p>Eläkkeelle jäätyään Poirot vetäytynyt viettämään hiljaiseloa maailman kiehtovimmassa kaupungissa, missä hän hyvin vastahakoisesti suostuu osallistumaan spiritistiseen istuntoon rapistuvassa palazzossa, jossa kummittelee. Kun yksi vieraista joutuu murhan uhriksi, etsivämme tempautuu pahuuden pyörteisiin tuossa varjojen ja salaisuuksien maailmassa.</p><p>Ikäraja: 12<br>Kesto: 96 min<br>Ensi-ilta 15.9.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "en": "<p>“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot.</p><p>Now retired and living in self-imposed exile in the world’s most glamorous city, Poirot reluctantly attends a séance at a decaying, haunted palazzo. When one of the guests is murdered, the detective is thrust into a sinister world of shadows and secrets.</p><p>Age rating: 12<br>Duration: 96 minutes</p>"
            },
            "name": {
                "fi": "Venetsian aaveet (12) – Kino Helios",
                "en": "A Haunting in Venice (12) – Kino Helios"
            },
            "short_description": {
                "fi": "Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.",
                "en": "“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60833/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60354",
            "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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4264,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:28.614187Z",
                    "last_modified_time": "2023-09-07T14:22:28.614208Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731333.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4264/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:22:28.464159Z",
            "last_modified_time": "2023-11-14T06:13:09.618250Z",
            "date_published": null,
            "start_time": "2023-09-22T06: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/344D6E7376A309B024EC8B4E683BCDDA/Zodiak-nuoret_Something_like_this_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/344D6E7376A309B024EC8B4E683BCDDA/Zodiak-unga_Something_like_this_",
                "en": "http://www.vuotalo.fi/en/events/event/344D6E7376A309B024EC8B4E683BCDDA/Zodiak_Youth_Something_Like_This_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.</p><p>Nuorille suunnatussa teoksessa neljä katutanssitaustaista esiintyjää kohtaavat näyttämöllä. Yksinkertaisesta lähtökohdasta rakentuu rikas kokonaisuus, jossa kohtaukset rakentuvat katsojien silmien edessä. Moninaisista taustoista tulevat esiintyjät tanssivat, kertovat tarinoita ja pitävät hauskaa – yhdessä. Tällä näyttämöllä monenlaisille tarinoille on tilaa.</p><p>Something like this tekee näyttämöstä tanssilattian, jossa moninaiset tarinat, identiteetit ja tekemisen tavat voivat kohdata. Teos kysyy yhdessä katsojien kanssa: Miten esitys tulisi katsoa tai kokea, miten tanssi tai liike siirtyy kehosta toiseen, millaisia asioita tanssilla tai liikkeellä voi kertoa? Millainen on yhteisöllinen dramaturgia? <br> <br>Työryhmä: <br>Konsepti ja ohjaus: Sonya Lindfors <br>Koreografia: Sonya Lindfors & työryhmä<br>Äänisuunnittelu: Sebastian Kurtén<br>Valosuunnittelu: Erno Aaltonen<br>Esiintyjät: Akim Bakhtaoui, Linda Ilves, Ramona Panula ja Sophia Wekesa<br>Tuotanto: Zodiak – Uuden tanssin keskus <br>Esitys ja kiertue toteutetaan Jane ja Aatos Erkon säätiön tuella, osana Zodiak-nuoret-hanketta</p><p>Kohderyhmä: 13-vuotiaista / 7.lk ylöspäin<br>Esityksen kesto: noin 40 minuuttia</p><p>21.9. klo 13 ja 22.9. klo 9.30 opiskelijanäytöksiin ilmoittautuminen osoitteessa kultus.fi.</p>",
                "sv": "<p>Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>",
                "en": "<p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>"
            },
            "name": {
                "fi": "Zodiak-nuoret: Something like this",
                "sv": "Zodiak-unga: Something like this",
                "en": "Zodiak Youth: Something Like This"
            },
            "short_description": {
                "fi": "Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.",
                "sv": "Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.",
                "en": "Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60423",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV",
                        "en": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:29.228167Z",
                    "last_modified_time": "2023-09-07T14:22:29.228190Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734740.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4265/?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": "2023-09-07T14:22:28.878286Z",
            "last_modified_time": "2023-11-14T06:13:09.538588Z",
            "date_published": null,
            "start_time": "2023-09-22T06: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C9EE1E0A3C2CCC3ED2C17A55A97819D7/Unelmien_puutarha_LOPPUUNVARATTU",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C9EE1E0A3C2CCC3ED2C17A55A97819D7/Drommarnas_tradgard_FULLBOKAT",
                "en": "http://www.caisa.fi/en/events/event/C9EE1E0A3C2CCC3ED2C17A55A97819D7/Garden_of_Dreams_FULLY_BOOKED"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Unelmien puutarha on lastenteatteriesitys unelmoinnista ja haaveista, omaan itseen uskomisesta ja omannäköisen elämän elämisestä.</p><p>Tanssia, teatteria ja klovneriaa sisältävä lastenteatteriesitys herää henkiin musiikin, vahvan visuaalisen ilmeen ja yleisökontaktin kautta. <br>  <br>Unelmien puutarha vie katsojan matkalle paikkaan, jossa on lupa olla aivan oma itsensä ja sanoa ääneen omat unelmansa. Kuten puutarhan kauniita kukkia, myös unelmia pitää hoitaa, helliä sekä ravita ja niihin pitää uskoa, jotta ne kasvavat ja puhkeavat kukkaan.</p><p>Hyvästä hoidosta huolimatta osa unelmista kuihtuu pois ja niiden tilalle kasvaa jotain uutta, erilaista. Joskus unelmiemme puutarhaan voi myös eksyä yllättävä vieras, tuntematon siemen, josta voikin kasvaa jotain, mistä emme osanneet edes unelmoida. Jotain vielä ihanampaa! <br>  <br>Unelmien puutarha kutsuu katsojansa unelmoimaan ja leikkimään mielikuvituksellaan. Esitys saa inspiraatiota puutarhojen värikylläisyydestä, yllätyksellisyydestä ja kauneudesta. Teos luodaan aktiivisessa yhteistyössä päiväkotilasten kanssa. <br> <br>Esityksen jälkeen järjestetään osallistava työpaja. Työpaja mahdollistaa esityksessä käsiteltyjen teemojen parissa työskentelyn heti esityksen jälkeen. Työpaja on tarkoitettu esityksen katsoneille 3–6-vuotiaille lapsille. Lapsi osallistuu työpajaan yhdessä oman aikuisen kanssa. Työpajassa käsitellään liikkeen ja kehollisen lähestymistavan avulla paikkaa, jossa on lupa olla aivan oma itsensä ja sanoa ääneen omat unelmansa. Työpajan ohjaavat Minttu-Maaria Makkonen ja Marjukka Myllyntaus.</p><p>Työpajan kesto 30 min, paikkoja rajoitetusti. Työpaja on maksuton ja voit valita työpajaosion sisältävän pääsylipun lippu.fi-sivulta.<br>   <br>Työryhmä <br>Esiintyjät: Minttu-Maaria Makkonen, Marjukka Myllyntaus ja Veera Pulkkinen <br>Käsikirjoitus ja ohjaus: Makkonen, Myllyntaus, Pulkkinen <br>Musiikki ja laulu: Veera Pulkkinen <br>Visuaalinen suunnittelu ja toteutus: Ines Masanti <br>Valosuunnittelu: Aku Lahti <br>Tuottaja: Marjukka Myllyntaus <br>  <br>Kesto: max 45 min <br>Ikäsuositus: 3+ vuotta <br>Kieli: suomi, sanaton<br>Liput: 6 €, lippu.fi</p>",
                "sv": "<p>Drömmarnas trädgård är en barnteaterföreställning om drömmande och önsketänkande, att tro på sig själv och att leva ett liv såsom man vill att det ska se ut.</p><p>Denna barnteaterföreställning, som innehåller dans, teater och clowneri, väcks till liv via musik, stark visualitet och publikkontakt.</p><p>Efter föreställningen ordnas en inkluderande verkstad. Verkstaden möjliggör arbete med temana som behandlats under föreställningen genast efter föreställningen. Verkstaden är avsedd för 3–6-åriga barn som sett föreställningen. Barnet deltar i verkstaden tillsammans med en egen vuxen.</p><p>Verkstaden varar i 30 minuter, det finns begränsat antal platser. Verkstaden är avgiftsfri och du kan välja en inträdesbiljett med verkstad via webbplatsen lippu.fi.</p>",
                "en": "<p>Garden of Dreams is a children’s theatre performance about dreams and fantasies, belief in oneself and living a life of one’s own.</p><p>This children’s theatre performance, which includes dance, theatre and clownery, is brought to life through music, strong visuals and interaction with the audience.</p><p>The performance is followed by a participatory workshop. The workshop allows the audience to work on the themes explored in the performance immediately after it. The workshop is intended for children aged 3–6 who watched the performance. The child participates in the workshop with their accompanying adult.</p><p>The workshop lasts for 30 minutes, and the number of participants is limited. The workshop is free of charge, and you may purchase a ticket including the admission to the workshop on the lippu.fi website.</p>"
            },
            "name": {
                "fi": "Unelmien puutarha | LOPPUUNVARATTU – Esitys päiväkotiryhmille",
                "sv": "Drömmarnas trädgård | FULLBOKAT",
                "en": "Garden of Dreams | FULLY BOOKED"
            },
            "short_description": {
                "fi": "Unelmien puutarha on lastenteatteriesitys unelmoinnista ja haaveista, omaan itseen uskomisesta ja omannäköisen elämän elämisestä.",
                "sv": "Drömmarnas trädgård är en barnteaterföreställning om drömmande och önsketänkande, att tro på sig själv och att leva ett liv såsom man vill att det ska se ut.",
                "en": "Garden of Dreams is a children’s theatre performance about dreams and fantasies, belief in oneself and living a life of one’s own."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60423/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60689",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3923,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:34.516818Z",
                    "last_modified_time": "2023-09-07T14:18:34.516843Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735428.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3923/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:18:34.320526Z",
            "last_modified_time": "2023-11-14T06:13:09.464364Z",
            "date_published": null,
            "start_time": "2023-09-21",
            "end_time": "2023-10-30",
            "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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7943E12748B931F7026B088ECC217B7C/Maailman_ympari"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Peli pelattavissa Helsinki-päivästä (12.6.) lähtien koko kesän!</p><p>Vuotalo pääsi mukaan 19 Euroopan kaupungin kera Bloombergin Asphalt Art –hankkeeseen edustamaan Helsinkiä. Hanke toteutettiin yhteistyössä Helsinki Urban Artin kanssa.</p><p>Vuotalon etupihalle maalattuun Maailman ympäri -jättilautapelin suunnitteluun osallistui noin 500 lasta ja nuorta omine ehdotuksineen ja ideoineen. Pelissä seikkaillaan eri mantereilla erilaisia tehtäviä suorittaen ja pelaaja toimii itse pelinappulana. Peli on nyt pelattavissa, pelin jättiarpakuutiot on lainattavissa Vuotalon infosta.</p>"
            },
            "name": {
                "fi": "Maailman ympäri – Jättilautapeli Vuotalon pihalla"
            },
            "short_description": {
                "fi": "Peli pelattavissa Helsinki-päivästä (12.6.) lähtien koko kesän!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60689/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60917",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/",
                        "en": "https://tickets.hiff.fi/fi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4263,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:28.238138Z",
                    "last_modified_time": "2023-09-07T14:22:28.238160Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737013.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4263/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:28.078270Z",
            "last_modified_time": "2023-11-14T06:13:09.375282Z",
            "date_published": null,
            "start_time": "2023-09-21T17:45: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9D7A3EA3BE7BB6A9F56709B0CDDF2210/Marcel_the_shell_with_shoes_on_2021_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9D7A3EA3BE7BB6A9F56709B0CDDF2210/Marcel_the_shell_with_shoes_on_2021_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "description": {
                "fi": "<p>Mitä jos perheesi ja ystäväsi vain yhtäkkiä katoaisivat jäljettömiin?</p><p>Vaikea tilanne kelle tahansa, mutta erityisen haastava, jos sattuu olemaan ihmisille suunnitellussa asunnossa elävä pikkuruinen simpukankuori, jolla on yksi silmä ja kengät. Toveriksi jäävät viisas isoäiti Connie (äänenä Isabella Rossellini) sekä kämpässä ennen asuneen pariskunnan tilalle muuttanut mies. Mies on haluton kertomaan itsestään mutta kuvaa Marcelin elämästä dokkaripätkiä, jotka hän lataa YouTubeen. Yllättäen lapsenomaisen ja neuvokkaan kuorikaverin tuntevat miljoonat katsojat ympäri maailman.</p><p>Parhaan animaatioelokuvan Oscar- ja Golden Globe-ehdokkuudet saanut animoitu muka-dokumentti sai alkunsa miljoonia katselukertoja YouTubessa keränneistä Marcel the Shell with Shoes on -lyhytelokuvista ja niiden kylkeen tehdyistä lastenkirjoista. Aluksi se hurmaa sympaattisuudellaan, sitten taituruudellaan. Miten ihmeessä stop motion -animaatio on saatu yhdistettyä näyteltyyn elokuvaan niin, että lopputulos näyttää YouTubeen ladatulta amatööridokkarilta? Tekijöiden työ vertautuu Marcelin kekseliäisyyteen, jolla tämän onnistuu selviytyä hänelle kaikin tavoin liian suuressa maailmassa apunaan vaikkapa sähkövatkain ja lattialle valunut vaahterasiirappi. Tai kuten kengällinen kuori pohtii: ”Ei vain selviytyä, vaan elää hyvää elämää.”</p><p>Katri Tenhola</p><p>Teema: Animoituja unia<br>Maa: Yhdysvallat<br>Ohjaus: Dean Fleischer Camp<br>Käsikirjoitus: Dean Fleischer Camp, Jenny Slate, Nick Paley<br>Näyttelijät: Jenny Slate, Isabella Rossellini, Dean Fleischer Camp, Rosa Salazar, Thomas Mann, Lesley Stahl<br>Tuotanto: Dean Fleischer Camp, Andrew Goldman, Elisabeth Holm, Caroline Kaplan, Terry Leonard, Paul Mezey, Jenny Slate / Cinereach<br>Kesto: 90 min<br>Ikäraja: S<br>Kieli: englanti<br>Levittäjä: Park Circus<br>Esityskopio: Park Circus<br>Kuvaus: Eric Adkins, Bianca Cline<br>Leikkaus: Dean Fleischer Camp, Nick Paley<br>Musiikki: Disasterpeace<br>Äänisuunnittelu: Phillip Fuller, Ruy García<br>Lavastus: Liz Toonkel, Jake Tremblay<br>Pukusuunnittelu: Jamie Catino<br>Maskeeraus: Stacey Hummell</p>",
                "en": "<p>This feature film, directed by Dean Fleischer Camp and starring the voice of Jenny Slate, is a dazzlingly clever blend of live action and stop-motion animation. It’s based on—and alludes to—a series of short films that the two made and posted to YouTube. Marcel (Slate) is a tiny seashell with one eye, a mouth, a pair of feet, a sharp mind, and a very big heart. A filmmaker named Dean (Fleischer Camp) rents a house, finds Marcel there, and decides to make a documentary about him. Marcel lives with his grandmother, Connie (voiced by Isabella Rossellini), in a state of grief, after the disappearance of the many members of their extended family, and Dean helps him to look for them. Along the way, Dean makes short videos that turn Marcel into a Web sensation with tens of millions of viewers—and with toxic fans.</p><p>Richard Brody, The New Yorker</p><p>Dean’s relationship with this imaginary tiny mollusc is absolutely convincing, and their odd-couple rapport is so strong it takes an effort of will to remember that Marcel doesn’t exist. He’s not big enough to hug … but I sort of felt like it.</p><p>Peter Bradshaw, The Guardian</p><p>Theme: Animated Dreams<br>Country: United States<br>Director: Dean Fleischer Camp<br>Screenplay: Dean Fleischer Camp, Jenny Slate, Nick Paley<br>Starring: Jenny Slate, Isabella Rossellini, Dean Fleischer Camp, Rosa Salazar, Thomas Mann, Lesley Stahl<br>Production: Dean Fleischer Camp, Andrew Goldman, Elisabeth Holm, Caroline Kaplan, Terry Leonard, Paul Mezey, Jenny Slate / Cinereach<br>Duration: 90 min<br>Age limit: S<br>Language: English<br>Distribution: Park Circus<br>Print source: Park Circus<br>Cinematography: Eric Adkins, Bianca Cline<br>Editing: Dean Fleischer Camp, Nick Paley<br>Music: Disasterpeace<br>Sound: Phillip Fuller, Ruy García<br>Production design: Liz Toonkel, Jake Tremblay<br>Costume design: Jamie Catino<br>Make-up: Stacey Hummell</p>"
            },
            "name": {
                "fi": "Marcel the shell with shoes on (2021) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Marcel the shell with shoes on (2021) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Mitä jos perheesi ja ystäväsi vain yhtäkkiä katoaisivat jäljettömiin?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60917/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59425",
            "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:31/?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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "31,50€",
                        "sv": "31,50€",
                        "en": "31,50€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/topmost/",
                        "sv": "https://www.lippu.fi/artist/topmost/",
                        "en": "https://www.lippu.fi/artist/topmost/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4262,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:27.852679Z",
                    "last_modified_time": "2023-09-07T14:22:27.852708Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728158.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4262/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:27.261054Z",
            "last_modified_time": "2023-11-14T06:13:09.300458Z",
            "date_published": null,
            "start_time": "2023-09-21T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_LOPPUUNMYYTY",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_SLUTSALD",
                "en": "http://www.malmitalo.fi/en/events/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_SOLD_OUT"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vierivät kivet eivät vieläkään sammaloidu!</p><p>Kevään 2019 <i>Topmost 55 v Happy together</i> -konserttikiertue oli suurmenestys. Topmost esittäytyy vuoden 2019 loppuunmyytyjen konserttien <i>Happy Together</i> ja <i>Hold Me</i> innoittamana jälleen kaikille 60’s-musan diggareille ja ikuisesti uskollisille Topmost-faneille.</p><p>Koulupojista koostunut Topmost oli heti perustamisestaan lähtien kovaa vauhtia matkalla kohti Suomen popmaailman huippua. Vuonna 1967 Topmost oli Suomen suosituin nuorisoyhtye ja keikkamatkat ulottuivat myös ulkomaille, Ruotsiin ja Tanskaan saakka. Topmostin suosio perustui suurelta osin puhtaaseen yhteislaulantaan sekä rhythm and blues- ja soul-musiikin hallitsemiseen. Nuoret soittajat olivat myös tyttöjen mieleen, tätä edesauttoi huoliteltu pukeutuminen sillä esiintymisasut ostettiin Tukholman sen ajan huippuvaatekaupoista.</p><p>Yhtyeen levytyksistä <i>Merisairaat kasvot</i>, <i>Näen mustaa vain</i> ja <i>Hän sinut jättää</i> nousivat listoille ja saavuttivat suuren suosion. Koko Topmostin levytyshistoria löytyy vuonna 2012 julkaistulta albumilta Topmost Years. Albumi on kokoelma yhtyeen levytyksistä ja live-nauhoituksista 1960-luvulta. Topmostin tuorein single <i>Hold Me</i> on vuodelta 2019 se on tullut tutuksi mm. Happy Together ja Hold Me -kiertueilta.</p><p>Topmostin kokoonpanoon kuuluvat <b>Gugi Kokljuschkin</b> (laulu), <b>Harri Saksala</b> (laulu), <b>Kisu Jernström</b> (rummut ja laulu), <b>Holle Holopainen</b> (basso ja laulu), <b>Eero Lupari</b> (kitara ja laulu) ja <b>Tommi Lindell</b> (koskettimet v. 2004-). Yhtyeen alkuperäinen kosketinsoittaja <b>Arto ”Poku” Tarkkonen</b> menehtyi syksyllä 2007.</p><p>Esityksen kesto n. 2 tuntia, sisältäen väliajan.</p>",
                "sv": "<p>Topmost har blivit uppmuntrat av de slutsålda konserterna i 2019 och uppträder igen för alla som diggar 60-talsmusik och för evigt trogna Topmost-fans.</p><p>Topmost bestod av skolpojkar, och sedan det grundades gick det snabbt mot popeliten i Finland. I 1967 var Topmost Finlands populäraste ungdomsband och reste till gig även utomlands, till Sverige och Danmark.</p>",
                "en": "<p>Inspired by their sold-out concerts in 2019, Topmost is back to play for the lovers of 1960s music and the eternally loyal Topmost fans.</p><p>At the time of its founding, Topmost consisted of school boys. The band was immediately headed to the top of Finland’s pop world. In 1967, Topmost was Finland’s most popular youth group, and the band even toured all the way in Sweden and Denmark.</p>"
            },
            "name": {
                "fi": "Topmost: Hold me & Love me | LOPPUUNMYYTY",
                "sv": "Topmost: Hold me & Love me | SLUTSÅLD",
                "en": "Topmost: Hold me & Love me | SOLD OUT"
            },
            "short_description": {
                "fi": "Vierivät kivet eivät vieläkään sammaloidu!",
                "sv": "Topmost har blivit uppmuntrat av de slutsålda konserterna i 2019 och uppträder igen för alla som diggar 60-talsmusik och för evigt trogna Topmost-fans.",
                "en": "Inspired by their sold-out concerts in 2019, Topmost is back to play for the lovers of 1960s music and the eternally loyal Topmost fans."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59425/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59879",
            "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:33/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3409163/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3409163/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3409163/?affiliate=ADV"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4261,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:26.541949Z",
                    "last_modified_time": "2023-09-07T14:22:26.541970Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730825.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4261/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:25.760136Z",
            "last_modified_time": "2023-11-14T06:13:09.217344Z",
            "date_published": null,
            "start_time": "2023-09-21T16: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/30BA0CD718C8919BE3375A67B3716957/Kauri_Honkakoski_Company_HINTERLAND_joutomaa_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/30BA0CD718C8919BE3375A67B3716957/Kauri_Honkakoski_Company_HINTERLAND_odemark_",
                "en": "http://www.stoa.fi/en/events/event/30BA0CD718C8919BE3375A67B3716957/Kauri_Honkakoski_Company_HINTERLAND_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.</p><p>Hinterland on välähdys mielen joutomaasta – maisemasta, jonne varastoimme pitkät varjomme. Yhteisö sinnittelee tukalissa olosuhteissa ei-kenenkään-maalla, sokeina tekojensa seurauksille.<br> <br>Esitys edustaa miimin Corporeal Mime -tyyliä, jota Suomessa harvoin nähdään. Inspiraationa on ollut Samuel Beckettin toisen maailmansodan jälkeen kirjoittama tummanpuhuva novellituotanto.<br> <br>Kansainvälisesti palkittu Kauri Honkakoski Company tunnetaan tunnelmallisista fyysisen teatterin teoksista, joissa rikas kehollinen ilmaisu yhdistyy inhimillisiin teemoihin. Hinterlandissä esiintyy Companyn taitava kansainvälinen ensemble.</p><p>Lisätiedot: <u><a href=\"https://www.kaurihonkakoski.com\">www.kaurihonkakoski.com</u></a><br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company<br> <br>La 23.9. ja su 24.9. esitysten jälkeen järjestetään taiteilijatapaaminen.</p><p>Teos on sanaton.<br> <br>Ohjaus, dramaturgia: Kauri Honkakoski<br>Esiintyjät: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui <br>Valosuunnittelu, lavastus: Sisu Nojonen<br>Äänisuunnittelu: Tuuli Kyttälä<br>Puvustus: Kauri Honkakoski, Liv Meijer Nordgren<br>Kuvat: Laura Vuoma<br>Traileri: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä<br>Yhteistuotanto: Kauri Honkakoski Company & Stoa<br>Tukijat: Taiteen edistämiskeskus, Jenny & Antti Wihurin rahasto, Svenska kulturfonden, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Pohjoismainen kulttuuripiste, Per Jonsson Dance Centre, Vantaan tanssiopisto<br> <br>Liput 20/15 €<br>Kesto 50 min<br>Ikäsuositus 12+</p>",
                "sv": "<p>En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.</p><p>Hinterland är en glimt av sinnets impediment – ett landskap där vi lagrar våra långa skuggor. Gemenskapen hankar sig fram i obekväma förhållanden i ingenmansland, blinda för följderna av sina gärningar.</p><p>Föreställningen representerar stilen Corporeal Mime, som vi sällan ser i Finland. Inspirationen har varit Samuel Becketts mörka novellproduktion som han skrev efter andra världskriget.<br>Internationellt prisade Kauri Honkakoski Company känns igen på sina stämningsfulla verk av fysisk teater, där ett rikt kroppsligt uttryck förenas med mänskliga teman.  I Hinterland uppträder Companys begåvade internationella ensemble.</p><p>Verket är ordlöst.</p><p><u><a href=\"https://www.kaurihonkakoski.com\">www.kaurihonkakoski.com</u></a><br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company</p>",
                "en": "<p>A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows.</p><p>A community perseveres under dire circumstances on no man’s land, blind to the consequences of its own actions. A show emerging from our time but created in a timeless style, Hinterland explores painful collective themes in tragicomical tones.<br> <br>The show was created through the art of Corporeal Mime, a form of physical theatre rarely seen in Finland. The starting point was a collection of sombre short stories by Samuel Beckett written immediately after the Second World War. <br> <br>Kauri Honkakoski Company is an internationally awarded physical theatre group. They are known for their atmospheric shows that combine rich physical expression with deep human themes. Hinterland features the Company’s talented international ensemble.</p><p><u><a href=\"https://www.kaurihonkakoski.com\">www.kaurihonkakoski.com</u></a><br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company</p><p>LANGUAGE: non-verbal<br>LENGTH: 50 min<br>AGE RECOMMENDATION: 12 yrs +<br>GENRE: physical theatre, dance theatre</p><p>ARTISTIC TEAM:<br>Director, dramaturg: Kauri Honkakoski<br>Performers: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui <br>Lighting design, set design: Sisu Nojonen<br>Sound design: Tuuli Kyttälä<br>Costume: Kauri Honkakoski, Liv Meijer Nordgren<br>Photos: Laura Vuoma<br>Trailer: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä<br>Co-production: Kauri Honkakoski Company & Cultural Centre Stoa<br> <br>Supporters: Arts Promotion Centre Finland, Jenny and Antti Wihuri Foundation, The Swedish Cultural Foundation in Finland, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Nordic Culture Point, Per Jonsson Dance Centre, Vantaan tanssiopisto</p><p>MORE INFO and SOCIAL MEDIA: <br>Homepage: www.kaurihonkakoski.com<br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company</p>"
            },
            "name": {
                "fi": "Kauri Honkakoski Company: HINTERLAND [joutomaa]",
                "sv": "Kauri Honkakoski Company: HINTERLAND [ödemark]",
                "en": "Kauri Honkakoski Company: HINTERLAND"
            },
            "short_description": {
                "fi": "Ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.",
                "sv": "En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.",
                "en": "A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59879/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60916",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca03f4b4c5350038b4567",
                        "en": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca03f4b4c5350038b4567"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:25.319605Z",
                    "last_modified_time": "2023-09-07T14:22:25.319629Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737012.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:25.154692Z",
            "last_modified_time": "2023-11-14T06:13:09.139416Z",
            "date_published": null,
            "start_time": "2023-09-21T15: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9E81A584A51880C83D2292B5EB38F2D7/Living_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9E81A584A51880C83D2292B5EB38F2D7/Living_2022_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "description": {
                "fi": "<p>Lontoolainen virkamies Williams (Oscar-ehdokkuuden roolistaan saanut Bill Nighy) sairastuu parantumattomasti. Pölyyntyvät asiakirjapinot saavat jäädä, kun Williams selvittää, mitä tarkoittikaan olla elossa. Perheessä asioista on oltu hiljaa, ja myös epäselvä syyllisyys kalvaa, joten sairaudesta kertominen pojalle ei onnistu.</p><p>Oppaaksi elämään löytyvät kuitenkin kirjailijanrenttu Sutherland (Tom Burke, The Souvenir) ja kunnantalon elämäniloinen neiti Harris (Aimee Lou Wood; Sex Education). Myös toimiston tulokas herra Wakeling (Alex Sharp) saa Williamsin ajattelemaan asioita uudelleen.</p><p>Lopulta kunnantalon hierarkiaa ikänsä kunnioittanut Williams tietää, mitä haluaa. Hän poikkeaa byrokraattien kohteliaasta tavasta välttää vastuuta saadakseen rauhan.</p><p>Eteläafrikkalaisen Oliver Hermanusin uudelleenohjaus Kurosawan Tolstoi-sovituksesta Ikiru (1952) kylpee ihastuttavissa 50-luvun väreissä. Käsikirjoittaja on Nobel-voittaja Kazuo Ishiguro.</p><p>Hermanusin pääasiana ei tällä kertaa ole ahdistavien normien kuvaus vaan ylistys kunnollisuudelle. Silti teeman voi nähdä samana kuin ohjaajan Cannesissa Queer Palmin voittaneessa Beautyssa (2011). Paikkansa löytänyt yksilö onkin kyvytön elämään haluamaansa elämää.</p><p>Justus Pitkänen</p><p>Teema: Lifestyle<br>Maa: Japani, Ruotsi<br>Ohjaus: Oliver Hermanus<br>Käsikirjoitus: Kazuo Ishiguro<br>Näyttelijät: Bill Nighy, Aimee Lou Wood, Alex Sharp, Tom Burke, Adrian Rawlins, Oliver Chris, Michael Cochrane<br>Tuotanto: Elizabeth Karlsen, Stephen Woolley / Film4, Number 9 Films, County Hall<br>Kesto: 102 min<br>Ikäraja: S<br>Kieli: englanti<br>Levittäjä: Park Circus<br>Esityskopio: Park Circus<br>Kuvaus: Jamie Ramsay<br>Leikkaus: Chris Wyatt<br>Musiikki: Emilie Levienaise-Farrouch<br>Äänisuunnittelu: Stephen Griffiths, Andy Shelley<br>Lavastus: Helen Scott<br>Pukusuunnittelu: Ashleigh Lennox, Sinead Smith, Kate-Beth Walling<br>Maskeeraus: Carolyn Cousins, Nadia Stacey</p>",
                "en": "<p>Exquisitely directed by Oliver Hermanus from a spare, elegant script by the Nobel Prize-winning novelist Kazuo Ishiguro, the movie is a faithful English-language reimagining of Ikiru, Akira Kurosawa’s 1952 film about a Tokyo widower who receives a terminal stomach-cancer diagnosis and turns over a startling new leaf.</p><p>Justin Chang, Los Angeles Times</p><p>The terrible conversation in the hospital consulting room – that final rite of passage – is the starting point for this deeply felt, beautifully acted movie from screenwriter Kazuo Ishiguro and director Oliver Hermanus: a remake of Akira Kurosawa’s 1952 film Ikiru, or To Live.</p><p>A buttoned-up civil servant works joylessly in the town planning department; he is a lonely widower estranged from his grasping son and daughter-in-law. In the original, he was Mr Watanabe, played by Takashi Shimura. Now he is Mr Williams, played by Bill Nighy. (…)</p><p>Nighy is heartbreakingly shy and sensitive, his refined, almost birdlike profile presented to the camera in occasional stark and enigmatic closeups. This is a man who has had to suppress a natural wit and affectionate raillery all his life in the service of a dull job which meant nothing.</p><p>Peter Bradshaw, The Guardian</p><p>Theme: Lifestyle<br>Country: Japan, Sweden<br>Director: Oliver Hermanus<br>Screenplay: Kazuo Ishiguro<br>Starring: Bill Nighy, Aimee Lou Wood, Alex Sharp, Tom Burke, Adrian Rawlins, Oliver Chris, Michael Cochrane<br>Production: Elizabeth Karlsen, Stephen Woolley / Film4, Number 9 Films, County Hall<br>Duration: 102 min<br>Age limit: S<br>Language: English<br>Distribution: Park Circus<br>Print source: Park Circus<br>Cinematography: Jamie Ramsay<br>Editing: Chris Wyatt<br>Music: Emilie Levienaise-Farrouch<br>Sound: Stephen Griffiths, Andy Shelley<br>Production design: Helen Scott<br>Costume design: Ashleigh Lennox, Sinead Smith, Kate-Beth Walling<br>Make-up: Carolyn Cousins, Nadia Stacey</p>"
            },
            "name": {
                "fi": "Living (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Living (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Lontoolainen virkamies Williams (Oscar-ehdokkuuden roolistaan saanut Bill Nighy) sairastuu parantumattomasti. Pölyyntyvät asiakirjapinot saavat jäädä, kun Williams selvittää, mitä tarkoittikaan olla elossa. Perheessä asioista on oltu hiljaa, ja myös epäselvä syyllisyys kalvaa, joten sairaudesta kertominen pojalle ei onnistu."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60916/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60352",
            "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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-17457072",
                        "sv": "https://www.lippu.fi/event/name-17457072",
                        "en": "https://www.lippu.fi/event/name-17457072"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:24.912425Z",
                    "last_modified_time": "2023-09-07T14:22:24.912446Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731331.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:22:24.766116Z",
            "last_modified_time": "2023-11-14T06:13:09.059274Z",
            "date_published": null,
            "start_time": "2023-09-21T15: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6D1221700F9EAD1F037E3DE3BB7DFFAD/Zodiak-nuoret_Something_like_this_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6D1221700F9EAD1F037E3DE3BB7DFFAD/Zodiak-unga_Something_like_this_",
                "en": "http://www.vuotalo.fi/en/events/event/6D1221700F9EAD1F037E3DE3BB7DFFAD/Zodiak_Youth_Something_Like_This_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.</p><p>Nuorille suunnatussa teoksessa neljä katutanssitaustaista esiintyjää kohtaavat näyttämöllä. Yksinkertaisesta lähtökohdasta rakentuu rikas kokonaisuus, jossa kohtaukset rakentuvat katsojien silmien edessä. Moninaisista taustoista tulevat esiintyjät tanssivat, kertovat tarinoita ja pitävät hauskaa – yhdessä. Tällä näyttämöllä monenlaisille tarinoille on tilaa.</p><p><i>Something like this</i> tekee näyttämöstä tanssilattian, jossa moninaiset tarinat, identiteetit ja tekemisen tavat voivat kohdata. Teos kysyy yhdessä katsojien kanssa: Miten esitys tulisi katsoa tai kokea, miten tanssi tai liike siirtyy kehosta toiseen, millaisia asioita tanssilla tai liikkeellä voi kertoa? Millainen on yhteisöllinen dramaturgia? <br> <br>Työryhmä: <br>Konsepti ja ohjaus: Sonya Lindfors <br>Koreografia: Sonya Lindfors & työryhmä<br>Äänisuunnittelu: Sebastian Kurtén<br>Valosuunnittelu: Erno Aaltonen<br>Esiintyjät: Akim Bakhtaoui, Linda Ilves, Ramona Panula ja Sophia Wekesa<br>Tuotanto: Zodiak – Uuden tanssin keskus <br>Esitys ja kiertue toteutetaan Jane ja Aatos Erkon säätiön tuella, osana Zodiak-nuoret-hanketta</p><p>Kohderyhmä: 13-vuotiaista / 7. lk ylöspäin<br>Esityksen kesto: noin 40 minuuttia</p><p>21.9. klo 13 ja 22.9. klo 9.30 opiskelijanäytöksiin ilmoittautuminen osoitteessa kultus.fi.</p><p>21.9. klo 18 liput myynnissä lippu.fi hintaan 15/11 €</p>",
                "sv": "<p>Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>",
                "en": "<p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>"
            },
            "name": {
                "fi": "Zodiak-nuoret: Something like this",
                "sv": "Zodiak-unga: Something like this",
                "en": "Zodiak Youth: Something Like This"
            },
            "short_description": {
                "fi": "Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.",
                "sv": "Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.",
                "en": "Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60352/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60410",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "14 €",
                        "sv": "14 €",
                        "en": "14 €"
                    },
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4258,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:24.512394Z",
                    "last_modified_time": "2023-09-07T14:22:24.512419Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732130.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4258/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:24.357133Z",
            "last_modified_time": "2023-11-14T06:13:08.970612Z",
            "date_published": null,
            "start_time": "2023-09-21T12:30:00Z",
            "end_time": "2023-09-21T15:00:00Z",
            "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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8321F40C63DC277E7448E541C67F497E/Queer-lintukavelyt",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8321F40C63DC277E7448E541C67F497E/Queer-fagelpromenader",
                "en": "http://www.kanneltalo.fi/en/events/event/8321F40C63DC277E7448E541C67F497E/Queer_Bird_Walk"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.</p><p>Esimerkiksi kyyhkyä on pidetty uskollisuuden ja romanttisen rakkauden symbolina sen pitkän parisiteen takia, minkä perusteella avioliittoa ja ydinperhettä on pidetty luonnollisina. Miksi vaikkapa lutkamaista rautiaista ei pidetä polyamorian symbolina tai kalalokkia lesbouden?</p><p>Queer-linturetkellä katsotaan ja kuunnellaan lähiluonnossa esiintyviä lintuja ja perehdytään siihen, miten läpikotaisesti yleiset käsitykset \"luonnollisesta\" ja katsomisen tavat ovat rakentuneet cis- ja heteronormien ympärille. Oppaana toimii Camille Auer.</p><p>Kurssi järjestetään yhteistyössä Helsingin työväenopiston, Baltic Circle -teatterifestivaalin ja Kanneltalon kanssa.</p><p>Linturetket ovat osa työväenopiston kurssitarjontaa ja niille ilmoittaudutaan osoitteessa https://www.ilmonet.fi. Ilmoittautuminen avautuu myöhemmin. Löydät kunkin retken seuraavien kurssitunnisteiden avulla:</p><p>H235444 Töölönlahti, ke 13.9. klo 7.30–10, kurssimaksu 14 €<br>H235445 Vanhankaupunginlahti, to 14.9. klo 16.30–19, kurssimaksu 14 €<br>H235446 Vanhankaupunginlahti, ke 20.9. klo 8–10.30, kurssimaksu 14 €<br>H235447 Mätäjoki, to 21.9. klo 15.30–18, kurssimaksu 14 €</p><p><b>Camille Auer</b> on monialainen taiteilija ja kirjoittaja. Tällä hetkellä hän tutkii lintujen tarkkailun fenomenologiaa sekä cis- ja heteronormien vaikutusta lintuja koskevan tiedon tuottamisessa. Hän näkee esimerkiksi liikkuvan kuvan, äänen ja esityksen keinoilla tapahtuvan toiminnan teoreettisen ajattelun muotoina siinä missä tekstinkin. Auerin tuotantoa yhdistää toiseuden ja toiseuttamisen tutkiminen suhteessa itseen posthumanistisesta trans- ja queer-näkökulmasta. Auerin työskentelyä tukee Suomen kulttuurirahasto.</p><p>Retki on osa Camille Auerin esityksen Ruff Knowledge taustatyötä. Ruff Knowledge esitetään 22., 24. ja 25. marraskuuta Kanneltalossa osana kansainvälisen Baltic Circle -teatterifestivaalin ohjelmistoa.</p>",
                "sv": "<p>Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.</p><p>Under Queer-fågelpromenaden tittar och lyssnar vi på fåglar i den närliggande naturen och sätter oss in i hur ingående allmänna uppfattningar av ”naturligt” och att se på saker har byggts upp kring cis- och heteronormer. Camille Auer är vår guide.</p><p>Kursen ordnas i samarbete med Helsingfors medborgarinstitut, teaterfestivalen Baltic Circle och Gamlasgården.</p><p>Camille Auer är en mångsidig konstnär och författare. För närvarande forskar hon i fågelskådningens fenomenologi samt cis- och heteronormernas inverkan på produktionen av information gällande fåglar. Utflykten är en del av bakgrundsarbetet till Auers föreställning Ruff Knowledge. Ruff Knowledge visas 22, 24 och 25 november i Gamlasgården som en del av programmet för den internationella teaterfestivalen Baltic Circle.</p><p>Registrering via https://www.ilmonet.fi:<br>H235444 Töölönlahti, Wed 13. Sept 7.30–10, 14 €<br>H235445 Vanhankaupunginlahti, Thu 14 Sept 16.30–19, 14 €<br>H235446 Vanhankaupunginlahti, Wed 20 Sept 8–10.30, 14 €<br>H235447 Mätäjoki, Thu 21 Sept 15.30–18, 14 €</p>",
                "en": "<p>People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values.</p><p>For example, the dove has been considered a symbol of loyalty and romantic love because of its long-lasting pair bonds, on the basis of which marriage and the nuclear family have been seen as natural. Why then haven’t people considered the slutty dunnock a symbol of polyamory, or the seagull of lesbianism? On the Queer Bird Walk, you will observe and listen to the birds in the nearby nature and get to know how the general concepts of “natural” and ways of looking are built around cis and hetero norms. Your guide on the trip is Camille Auer.</p><p>Registration via https://www.ilmonet.fi:<br>H235444 Tölöviken, ons. 13.9 kl. 7.30–10, kursavgift 14 euro<br>H235445 Gammelstadsviken, tors. 14.9 kl. 16.30–19, kursavgift 14 euro<br>H235446 Gammelstadsviken, ons. 20.9 kl. 8–10.30, kursavgift 14 euro<br>H235447 Rutiån, tors. 21.9 kl. 15.30–18, kursavgift 14 euro</p><p>Camille Auer is a trans-disciplinary artist and writer. Her art practice has always been theory driven, but instead of illustrating existing theories, she uses forms ranging from sound, moving image, performance and text-based installations to contribute to theoretical discourse as modes of thinking in their own right. A common theme in her diverse body of work is the othering of trans and nonhuman bodies, such as herself or queer birds. Her work has been shown and published in The Finnish Museum of Photography (Helsinki), Wäinö Aaltonen Museum (Turku) and Atlas Arts (Skye, Scotland) among others. Her work is currently supported by the Finnish Cultural Foundation.</p>"
            },
            "name": {
                "fi": "Queer-lintukävelyt",
                "sv": "Queer-fågelpromenader",
                "en": "Queer Bird Walk"
            },
            "short_description": {
                "fi": "Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.",
                "sv": "Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.",
                "en": "People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60923",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4257,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:23.829675Z",
                    "last_modified_time": "2023-09-07T14:22:23.829705Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737047.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4257/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:23.350372Z",
            "last_modified_time": "2023-11-14T06:13:08.885740Z",
            "date_published": null,
            "start_time": "2023-09-21T10: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0AD480865AA2D80BF1FFD32803D45ABA/Titina-terrieri_Pohjoisnavalla_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/0AD480865AA2D80BF1FFD32803D45ABA/Titina-terrieri_Pohjoisnavalla_2023_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Italialainen ilmalaivainsinööri Umberto Nobile nauttii rauhallisesta elämästä rakkaan koiransa Titinan kanssa, jonka hän pelasti Rooman kaduilta.</p><p>Eräänä päivänä norjalainen tutkimusmatkailun supertähti Roald Amundsen ottaa yhteyttä ja tilaa ilmalaivan valloittamaan Pohjoisnavan.</p><p>Nobile tarttuu tilaisuuteen jäädä historiaan. Hän ottaa Titinan mukaansa, ja erikoinen kolmikko lähtee tutkimusmatkalle viimeiseen löytämättömään paikkaan maapallolla.</p><p>Tositarina menestyksestä ja tappioista nelijalkaisen Titinan silmin.</p><p>Black Lion Pictures</p><p>Teema: Pulpettikino<br>Maa: Belgia, Norja<br>Ohjaus: Kajsa Næss<br>Käsikirjoitus: Kajsa Næss, Per Schreiner<br>Näyttelijät: Jan Gunnar Røise, Kåre Conradi, Silje Torp, Nader Khademi<br>Tuotanto: Lise Fearnley, Tonje Skar Reiersen, Viviane Vanfleteren / Mikrofilm, Vivi Film<br>Kesto: 91 min<br>Ikäraja: S<br>Alkup. nimi: Titina<br>Kieli: ruotsi, suomi<br>Levittäjä: Black Lion Pictures<br>Esityskopio: Black Lion Pictures<br>Kuvaus: Cecilie Semec<br>Leikkaus: Anders Bergland, Jens Christian Fodstad, Zaklina Stojcevska<br>Musiikki: Kåre Vestrheim<br>Äänisuunnittelu: Gisle Tveito<br>Lavastus: Emma McCann</p>",
                "en": "<p>Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups.</p><p>Italian airship engineer Umberto Nobile enjoys a quiet life with his beloved dog Titina, who charmed him into rescuing her from the streets of Rome.</p><p>One day, Norwegian explorer superstar Roald Amundsen contacts him and orders an airship to conquer The North Pole.</p><p>Nobile seizes the opportunity to go down in history. He brings Titina along, and the unlikely trio sets out on an expedition to the last undiscovered place on Earth. Their quest is successful but, in the aftermath, the two men start to quarrel over the glory…</p><p>Through the eyes of the four-legged celebrity Titina, (re)discover a true story of triumph and defeat!</p><p>Production notes</p><p>Theme: School Kino Selection<br>Country: Belgium, Norway<br>Director: Kajsa Næss<br>Screenplay: Kajsa Næss, Per Schreiner<br>Starring: Jan Gunnar Røise, Kåre Conradi, Silje Torp, Nader Khademi<br>Production: Lise Fearnley, Tonje Skar Reiersen, Viviane Vanfleteren / Mikrofilm, Vivi Film<br>Duration: 91 min<br>Age limit: S<br>Orig. title: Titina<br>Language: Swedish, Finnish<br>Distribution: Black Lion Pictures<br>Print source: Black Lion Pictures<br>Cinematography: Cecilie Semec<br>Editing: Anders Bergland, Jens Christian Fodstad, Zaklina Stojcevska<br>Music: Kåre Vestrheim<br>Sound: Gisle Tveito<br>Production design: Emma McCann</p>"
            },
            "name": {
                "fi": "Titina-terrieri Pohjoisnavalla (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Titina-terrieri Pohjoisnavalla (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.",
                "en": "Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60923/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60353",
            "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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4256,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:22.426915Z",
                    "last_modified_time": "2023-09-07T14:22:22.426934Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733546.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4256/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:22:22.147782Z",
            "last_modified_time": "2023-11-14T06:13:08.795632Z",
            "date_published": null,
            "start_time": "2023-09-21T10: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8292700EA1F6F5868E14906BB0839D5F/Zodiak-nuoret_Something_like_this_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8292700EA1F6F5868E14906BB0839D5F/Zodiak-unga_Something_like_this_",
                "en": "http://www.vuotalo.fi/en/events/event/8292700EA1F6F5868E14906BB0839D5F/Zodiak_Youth_Something_Like_This_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.</p><p>Nuorille suunnatussa teoksessa neljä katutanssitaustaista esiintyjää kohtaavat näyttämöllä. Yksinkertaisesta lähtökohdasta rakentuu rikas kokonaisuus, jossa kohtaukset rakentuvat katsojien silmien edessä. Moninaisista taustoista tulevat esiintyjät tanssivat, kertovat tarinoita ja pitävät hauskaa – yhdessä. Tällä näyttämöllä monenlaisille tarinoille on tilaa.</p><p>Something like this tekee näyttämöstä tanssilattian, jossa moninaiset tarinat, identiteetit ja tekemisen tavat voivat kohdata. Teos kysyy yhdessä katsojien kanssa: Miten esitys tulisi katsoa tai kokea, miten tanssi tai liike siirtyy kehosta toiseen, millaisia asioita tanssilla tai liikkeellä voi kertoa? Millainen on yhteisöllinen dramaturgia? <br> <br>Työryhmä: <br>Konsepti ja ohjaus: Sonya Lindfors <br>Koreografia: Sonya Lindfors & työryhmä<br>Äänisuunnittelu: Sebastian Kurtén<br>Valosuunnittelu: Erno Aaltonen<br>Esiintyjät: Akim Bakhtaoui, Linda Ilves, Ramona Panula ja Sophia Wekesa<br>Tuotanto: Zodiak – Uuden tanssin keskus <br>Esitys ja kiertue toteutetaan Jane ja Aatos Erkon säätiön tuella, osana Zodiak-nuoret-hanketta</p><p>Kohderyhmä: 13-vuotiaista / 7.lk ylöspäin<br>Esityksen kesto: noin 40 minuuttia</p><p>21.9. klo 13 ja 22.9. klo 9.30 opiskelijanäytöksiin ilmoittautuminen osoitteessa kultus.fi.</p>",
                "sv": "<p>Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>",
                "en": "<p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>"
            },
            "name": {
                "fi": "Zodiak-nuoret: Something like this",
                "sv": "Zodiak-unga: Something like this",
                "en": "Zodiak Youth: Something Like This"
            },
            "short_description": {
                "fi": "Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.",
                "sv": "Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.",
                "en": "Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60353/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60468",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:p39924/?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:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4255,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:21.935068Z",
                    "last_modified_time": "2023-09-07T14:22:21.935086Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725255.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4255/?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": "2023-09-07T14:22:21.785603Z",
            "last_modified_time": "2023-11-14T06:13:08.707662Z",
            "date_published": null,
            "start_time": "2023-09-21T07:00:00Z",
            "end_time": "2023-09-21T09:00:00Z",
            "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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60468/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60422",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV",
                        "en": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4254,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:21.550666Z",
                    "last_modified_time": "2023-09-07T14:22:21.550694Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734739.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4254/?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": "2023-09-07T14:22:21.394951Z",
            "last_modified_time": "2023-11-14T06:13:08.607821Z",
            "date_published": null,
            "start_time": "2023-09-21T06: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/474F10810714CFF4CEFC5B039EE1F051/Unelmien_puutarha_LOPPUUNVARATTU",
                "sv": "http://www.caisa.fi/sv/evenemang/event/474F10810714CFF4CEFC5B039EE1F051/Drommarnas_tradgard_FULLBOKAT",
                "en": "http://www.caisa.fi/en/events/event/474F10810714CFF4CEFC5B039EE1F051/Garden_of_Dreams_FULLY_BOOKED"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Unelmien puutarha on lastenteatteriesitys unelmoinnista ja haaveista, omaan itseen uskomisesta ja omannäköisen elämän elämisestä.</p><p>Tanssia, teatteria ja klovneriaa sisältävä lastenteatteriesitys herää henkiin musiikin, vahvan visuaalisen ilmeen ja yleisökontaktin kautta. <br>  <br>Unelmien puutarha vie katsojan matkalle paikkaan, jossa on lupa olla aivan oma itsensä ja sanoa ääneen omat unelmansa. Kuten puutarhan kauniita kukkia, myös unelmia pitää hoitaa, helliä sekä ravita ja niihin pitää uskoa, jotta ne kasvavat ja puhkeavat kukkaan.</p><p>Hyvästä hoidosta huolimatta osa unelmista kuihtuu pois ja niiden tilalle kasvaa jotain uutta, erilaista. Joskus unelmiemme puutarhaan voi myös eksyä yllättävä vieras, tuntematon siemen, josta voikin kasvaa jotain, mistä emme osanneet edes unelmoida. Jotain vielä ihanampaa! <br>  <br>Unelmien puutarha kutsuu katsojansa unelmoimaan ja leikkimään mielikuvituksellaan. Esitys saa inspiraatiota puutarhojen värikylläisyydestä, yllätyksellisyydestä ja kauneudesta. Teos luodaan aktiivisessa yhteistyössä päiväkotilasten kanssa. <br> <br>Esityksen jälkeen järjestetään osallistava työpaja. Työpaja mahdollistaa esityksessä käsiteltyjen teemojen parissa työskentelyn heti esityksen jälkeen. Työpaja on tarkoitettu esityksen katsoneille 3–6-vuotiaille lapsille. Lapsi osallistuu työpajaan yhdessä oman aikuisen kanssa. Työpajassa käsitellään liikkeen ja kehollisen lähestymistavan avulla paikkaa, jossa on lupa olla aivan oma itsensä ja sanoa ääneen omat unelmansa. Työpajan ohjaavat Minttu-Maaria Makkonen ja Marjukka Myllyntaus.</p><p>Työpajan kesto 30 min, paikkoja rajoitetusti. Työpaja on maksuton ja voit valita työpajaosion sisältävän pääsylipun lippu.fi-sivulta.<br>   <br>Työryhmä <br>Esiintyjät: Minttu-Maaria Makkonen, Marjukka Myllyntaus ja Veera Pulkkinen <br>Käsikirjoitus ja ohjaus: Makkonen, Myllyntaus, Pulkkinen <br>Musiikki ja laulu: Veera Pulkkinen <br>Visuaalinen suunnittelu ja toteutus: Ines Masanti <br>Valosuunnittelu: Aku Lahti <br>Tuottaja: Marjukka Myllyntaus <br>  <br>Kesto: max 45 min <br>Ikäsuositus: 3+ vuotta <br>Kieli: suomi, sanaton<br>Liput: 6 €, lippu.fi</p>",
                "sv": "<p>Drömmarnas trädgård är en barnteaterföreställning om drömmande och önsketänkande, att tro på sig själv och att leva ett liv såsom man vill att det ska se ut.</p><p>Denna barnteaterföreställning, som innehåller dans, teater och clowneri, väcks till liv via musik, stark visualitet och publikkontakt.</p><p>Efter föreställningen ordnas en inkluderande verkstad. Verkstaden möjliggör arbete med temana som behandlats under föreställningen genast efter föreställningen. Verkstaden är avsedd för 3–6-åriga barn som sett föreställningen. Barnet deltar i verkstaden tillsammans med en egen vuxen.</p><p>Verkstaden varar i 30 minuter, det finns begränsat antal platser. Verkstaden är avgiftsfri och du kan välja en inträdesbiljett med verkstad via webbplatsen lippu.fi.</p>",
                "en": "<p>Garden of Dreams is a children’s theatre performance about dreams and fantasies, belief in oneself and living a life of one’s own.</p><p>This children’s theatre performance, which includes dance, theatre and clownery, is brought to life through music, strong visuals and interaction with the audience.</p><p>The performance is followed by a participatory workshop. The workshop allows the audience to work on the themes explored in the performance immediately after it. The workshop is intended for children aged 3–6 who watched the performance. The child participates in the workshop with their accompanying adult.</p><p>The workshop lasts for 30 minutes, and the number of participants is limited. The workshop is free of charge, and you may purchase a ticket including the admission to the workshop on the lippu.fi website.</p>"
            },
            "name": {
                "fi": "Unelmien puutarha | LOPPUUNVARATTU – Esitys päiväkotiryhmille",
                "sv": "Drömmarnas trädgård | FULLBOKAT",
                "en": "Garden of Dreams | FULLY BOOKED"
            },
            "short_description": {
                "fi": "Unelmien puutarha on lastenteatteriesitys unelmoinnista ja haaveista, omaan itseen uskomisesta ja omannäköisen elämän elämisestä.",
                "sv": "Drömmarnas trädgård är en barnteaterföreställning om drömmande och önsketänkande, att tro på sig själv och att leva ett liv såsom man vill att det ska se ut.",
                "en": "Garden of Dreams is a children’s theatre performance about dreams and fantasies, belief in oneself and living a life of one’s own."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60422/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60924",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4253,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:21.161108Z",
                    "last_modified_time": "2023-09-07T14:22:21.161139Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737050.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4253/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:20.555511Z",
            "last_modified_time": "2023-11-14T06:13:08.520126Z",
            "date_published": null,
            "start_time": "2023-09-21T06: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2F04AA62AA1DF75FED9F8A187992D6A6/Supermarsu_2_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/2F04AA62AA1DF75FED9F8A187992D6A6/Supermarsu_2_2022_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Supermarsu 2 on Paula Norosen suosittuun kirjasarjaan pohjautuva uuden ajan supersankarielokuva, joka sisältää animaatiota ja tehosteita. Elokuva on jatkoa Supermarsulle, joka oli vuonna 2018 yksi vuoden katsotuimpia elokuvia.</p><p>Supermarsu 2 -elokuva kertoo mehiläisten pelastamisesta maailman monimuotoisuuden säilyttämiseksi. Pelastaakseen mehiläiset on Supermarsun ensin kuitenkin pelastettava koulun pahin kiusaaja. Elokuvassa tartutaan ajankohtaisesti tärkeisiin yhteiskunnallisiin ja ekologisiin aiheisiin ymmärrettävällä ja humoristisella tavalla.</p><p>SF Studios</p><p>Teema: Pulpettikino<br>Maa: Suomi<br>Ohjaus: Joona Tena<br>Käsikirjoitus: Paula Noronen, Joona Tena<br>Näyttelijät: Senni Peltoniemi, Lucas Timperi, Lumo Levy, Kaius Österman, Essi Hellén, Eero Ritala<br>Tuotanto: Anni Pänkäälä, Marko Talli / Yellow Film & TV, SF Studios<br>Kesto: 90 min<br>Ikäraja: S<br>Kieli: suomi<br>Tekstitys: ruotsi<br>Levittäjä: SF Studios<br>Esityskopio: SF Studios<br>Leikkaus: Jyrki Levä<br>Musiikki: Panu Aaltio<br>Äänisuunnittelu: Juha Hakanen<br>Lavastus: Toni Kari<br>Pukusuunnittelu: Anna Vilppunen<br>Maskeeraus: Laura Rantaniemi</p>",
                "en": "<p>Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups.</p><p>Based on the popular book series, the film features Emilia, an ordinary girl from a single parent family, who gained special powers after her pet guinea pig bit her finger. Instantly she could be transformed into Hyper Hamster, a furry heroine with extraordinary powers. In this film, Emilia will be called upon to ride a time machine to travel to and from the future, in order to save bees and by doing so saving humankind. It’s a fun film about bravery, friendship and understanding.</p><p>Production notes</p><p>Theme: School Kino Selection<br>Country: Finland<br>Director: Joona Tena<br>Screenplay: Paula Noronen, Joona Tena<br>Starring: Senni Peltoniemi, Lucas Timperi, Lumo Levy, Kaius Österman, Essi Hellén, Eero Ritala<br>Production: Anni Pänkäälä, Marko Talli / Yellow Film & TV, SF Studios<br>Duration: 90 min<br>Age limit: S<br>Language: Finnish<br>Subtitles: Swedish<br>Distribution: SF Studios<br>Print source: SF Studios<br>Editing: Jyrki Levä<br>Music: Panu Aaltio<br>Sound: Juha Hakanen<br>Production design: Toni Kari<br>Costume design: Anna Vilppunen<br>Make-up: Laura Rantaniemi</p>"
            },
            "name": {
                "fi": "Supermarsu 2 (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Supermarsu 2 (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.",
                "en": "Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60924/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60915",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca0364b4c5341038b4567",
                        "en": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca0364b4c5341038b4567"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4252,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:19.868429Z",
                    "last_modified_time": "2023-09-07T14:22:19.868452Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737011.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4252/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:19.187636Z",
            "last_modified_time": "2023-11-14T06:13:08.424197Z",
            "date_published": null,
            "start_time": "2023-09-20T17:45: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/031D724D634721BFD50B7503495039DD/Kubi_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/031D724D634721BFD50B7503495039DD/Kubi_2023_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "description": {
                "fi": "<p>Takeshi Kitano halusi tehdä Kubin jo ohjaajanuransa alkutaipaleella 30 vuotta sitten. Välissä hän ehti julkaista tarinasta romaaninkin, mutta samuraieepoksen maailmanensi-iltaa juhlittiin tänä vuonna Cannesissa.</p><p>Kubin palaset loksahtavat kohdalleen yhtä vääjäämättä, kyynisesti ja koomisesti kuin Kitanon varhaistöissä. Elokuva iskee silmää jo nimellään: Kubi tarkoittaa niskaa viitaten anatomiaan, kohtaan, johon samurain miekka iskee. Mennään kohti genren äärilaitaa, parodian rajalle.</p><p>Taistelun jälkeistä kalmomaisemaa hartaasti esittelevällä kamera-ajolla alkava Kubi on ohjaajan ehkä verisin elokuva, klassinen ja armoton moraalitarina, jossa vallanhimoisten juonittelijoiden lojaliteetit ovat silmänlumetta. Päät putoavat vuoroillaan, eikä kukaan saa enempää kuin ansionsa mukaan. Samurairomantiikan homoseksuaaliset piirteet eivät ole tällä kertaa latentteja, päinvastoin.</p><p>Inspiraationa on historiallinen valtataistelu, joka alkoi vuonna 1579. Höyrypäinen paikallishallitsija Oda Nobunaga (Ryo Kase) yritetään murhata. Motiiviksi paljastuu Nobunagan kenraalien välinen salainen rakkaus. Kitano esittää virnuilevaa vanhempaa sotaherraa Toyotomi Hideyoshia, jonka pitkän iän salaisuus on poikkeuksellinen manipulaatiokyky. Keskeisissä rooleissa nähdään muiden muassa Tadanobu Asano ja Drive My Carin (R&A 2022) Hidetoshi Nishijima.</p><p>Kalle Kinnunen</p><p>Teema: Asian Cuts<br>Maa: Japani<br>Ohjaus: Takeshi Kitano<br>Käsikirjoitus: Takeshi Kitano<br>Näyttelijät: Takeshi Beat, Hidetoshi Nishijima, Ryo Kase, Shido Nakamura, Tadanobu Asano, Nao Omori<br>Tuotanto: Takeshi Kitano / KADOKAWA CORPORATION<br>Kesto: 131 min<br>Ikäraja: K16<br>Kieli: japani<br>Tekstitys: englanti<br>Levittäjä: Kadokawa<br>Esityskopio: Kadokawa<br>Leikkaus: Yoshinori Ota<br>Äänisuunnittelu: Kenji Shibasaki<br>Lavastus: Yukiharu Seshimo</p>",
                "en": "<p>A re-imagining of real events in the late 16th century, the film’s eye-popping, blood-soaked vistas are a marvelous sight, as are a number of its era-specific details, and its handful of striking moments of queer samurai imagery. (…)</p><p>If there’s one thing Kitano knows how to do, it’s extract fun performances from his cast. The central plot concerns the disappearance of one of Oda’s vassals, Murashige Araki (Endo Kenichi), accused by his lordship of rebellious sympathies, followed by Oda’s subsequent attempts to both capture him and suss out dissent within his empire, in a game of territorial chess.</p><p>Siddhant Adlakha, IndieWire</p><p>Adapted from his own book, Kubi is an outrageously exhilarating update of the samurai epic, dialing up the blood and guts and sprinkling in the sick humor to match. (…)</p><p>Kubi was once rumored to be Kitano’s final film, though other reports since then have suggested that this is no longer the case. If it was though, it would’ve been one hell of a swan song. For a director in his late 70s, Kitano stages this blood-soaked epic with the intoxicating energy of an artist who’s only just getting started. We can only be grateful, then, that Kitano is only just shifting gears.</p><p>Iana Murray, The Playlist</p><p>Theme: Asian Cuts<br>Country: Japan<br>Director: Takeshi Kitano<br>Screenplay: Takeshi Kitano<br>Starring: Takeshi Beat, Hidetoshi Nishijima, Ryo Kase, Shido Nakamura, Tadanobu Asano, Nao Omori<br>Production: Takeshi Kitano / KADOKAWA CORPORATION<br>Duration: 131 min<br>Age limit: K1<br>Language: Japanese<br>Subtitles: English<br>Distribution: Kadokawa<br>Print source: Kadokawa<br>Editing: Yoshinori Ota<br>Sound: Kenji Shibasaki<br>Production design: Yukiharu Seshimo</p>"
            },
            "name": {
                "fi": "Kubi (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Kubi (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Takeshi Kitano halusi tehdä Kubin jo ohjaajanuransa alkutaipaleella 30 vuotta sitten. Välissä hän ehti julkaista tarinasta romaaninkin, mutta samuraieepoksen maailmanensi-iltaa juhlittiin tänä vuonna Cannesissa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60915/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60441",
            "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:31/?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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22 € / 14,50 €",
                        "sv": "22 € / 14,50 €",
                        "en": "22 € / 14,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4251,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:18.759586Z",
                    "last_modified_time": "2023-09-07T14:22:18.759614Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720850.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4251/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:18.583988Z",
            "last_modified_time": "2023-11-14T06:13:08.347329Z",
            "date_published": null,
            "start_time": "2023-09-20T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_",
                "en": "http://www.malmitalo.fi/en/events/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>The Great Helsinki Swing Big Band esittää Count Basie Big Bandin vuoden 1968 albumin kokonaisuudessaan.</p><p>Kapellimestarina Antti Rissanen.</p>",
                "sv": "<p>The Great Helsinki Swing Big Band framför Count Basie Big Bands album från 1968 i sin helhet.</p><p>Kapellmästare är Antti Rissanen.</p>",
                "en": "<p>The Great Helsinki Swing Big Band performs Count Basie Big Band’s 1968 album in its entirety.</p><p>Conducted by Antti Rissanen.</p>"
            },
            "name": {
                "fi": "The Great Helsinki Swing Big Band: Basie, Straight Ahead",
                "sv": "The Great Helsinki Swing Big Band: Basie, Straight Ahead",
                "en": "The Great Helsinki Swing Big Band: Basie, Straight Ahead"
            },
            "short_description": {
                "fi": "The Great Helsinki Swing Big Band esittää Count Basie Big Bandin vuoden 1968 albumin kokonaisuudessaan.",
                "sv": "The Great Helsinki Swing Big Band framför Count Basie Big Bands album från 1968 i sin helhet.",
                "en": "The Great Helsinki Swing Big Band performs Count Basie Big Band’s 1968 album in its entirety."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60902",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca04049e0f3ea008b4567",
                        "en": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca04049e0f3ea008b4567"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4250,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:18.363768Z",
                    "last_modified_time": "2023-09-07T14:22:18.363790Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737010.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4250/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:18.183636Z",
            "last_modified_time": "2023-11-14T06:13:08.270792Z",
            "date_published": null,
            "start_time": "2023-09-20T15:15: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9BEE5F79D2F03414F8444B51EF34F16F/Peluri_Kuolema_on_elavien_ongelma_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9BEE5F79D2F03414F8444B51EF34F16F/Death_is_a_problem_for_the_living_2023_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "description": {
                "fi": "<p>Ruumisautobisneksen halvimmat kuskit Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat umpikujassa. Kivi on menettänyt pelaamalla kaiken eikä silti osaa lopettaa. Niska puolestaan saa kuulla, ettei hänellä ole juurikaan aivoja. Kun radanvarresta ruumiin palasia työkseen poimiva kaksikko kohtaa laittomia uhkapelejä järjestävän hämäräperäisen liikenaisen Ullan (Elina Knihtilä), on tie taas auki. Vai onko?</p><p>Ohjaaja-käsikirjoittaja Teemu Nikki kutsuu katsojansa venäläiseen rulettiin, jossa ei säästetä panoksia. Äkkiväärää huumoria ja nokkeluuden ylärajoja hipovia aivottomuuksia ladellaan nyt liukuhihnalta. Nauruhermojen kutittelun lisäksi koneessa on tällä kertaa myös voimakas tunnelma. Se pitää otteessaan, herkistää ja ravistelee sitä vähää, mitä omista aivoista on jäljellä.</p><p>Hirtehinen huumori, pirullinen jännitys ja paikoittainen graafinen väkivalta tuovat mieleen Tarantinon eivätkä jää jälkeen lajin mestarista. Elokuvan ytimessä on kuitenkin terävä kuvaus addiktiosta ja elämänvalinnoista. Yhtä täysipainoista ja sekopäistä settiä näkee hyvin harvoin suomalaisessa elokuvassa.</p><p>Nikki on sanonut elokuvan syntyneen ajatuksesta kaveruksista, joista toisella ei ole aivoja ja toisella sydäntä. Hänen elokuvallaan niitä kumpaakin on roppakaupalla.</p><p>Janne Sundqvist</p><p>Teema: Gaalaelokuvat<br>Maa: Italia, Suomi<br>Ohjaus: Teemu Nikki<br>Käsikirjoitus: Teemu Nikki<br>Näyttelijät: Pekka Strang, Jari Virman, Elina Knihtilä, Hannamaija Nikander, Pihla Penttinen<br>Tuotanto: Jani Pösö / It's Alive Films<br>Kesto: 97 min<br>Ikäraja: K7<br>Kieli: suomi<br>Tekstitys: englanti<br>Levittäjä: Scandinavian Film Distribution<br>Esityskopio: Scandinavian Film Distribution<br>Kuvaus: Jyrki Arnikari<br>Leikkaus: Teemu Nikki<br>Musiikki: Marco Biscarini<br>Äänisuunnittelu: Marco Biscarini, Alessio Vanni, Giovanni Tioli<br>Lavastus: Santtu Toivola<br>Pukusuunnittelu: Anna Vilppunen<br>Maskeeraus: Suvi Lukkala-Mäkinen</p>",
                "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start. Death Is a Problem for the Living is a film about addiction, friendship and carrying dead bodies.</p><p>Production notes</p><p>Director-screenwriter Teemu Nikki invites the audience to a Russian roulette with no holds barred. The assembly line consists of quirky humour and brainless gags that approach the limits of wit. In addition to the laughs, the machine is also stocked with a powerful atmosphere. It holds you glued to your seat, makes you emotional, and shakes up what little you have left of your own brain.</p><p>The macabre comedy, the devilish thrills, and the at times graphic violence recall the works of Quentin Tarantino and do not pale in comparison to the master of the genre. At the core of the film are the sharp depictions of addiction and life choices. It is rare to see such fully formed and insane work in Finnish cinema.</p><p>Janne Sundqvist (translated by Inari Ylinen)</p><p>Theme: Gala Films<br>Country: Italy, Finland<br>Director: Teemu Nikki<br>Screenplay: Teemu Nikki<br>Starring: Pekka Strang, Jari Virman, Elina Knihtilä, Hannamaija Nikander, Pihla Penttinen<br>Production: Jani Pösö / It's Alive Films<br>Duration: 97 min<br>Age limit: K7<br>Language: Finnish<br>Subtitles: English<br>Distribution: Scandinavian Film Distribution<br>Print source: Scandinavian Film Distribution<br>Cinematography: Jyrki Arnikari<br>Editing: Teemu Nikki<br>Music: Marco Biscarini<br>Sound: Marco Biscarini, Alessio Vanni, Giovanni Tioli<br>Production design: Santtu Toivola<br>Costume design: Anna Vilppunen<br>Make-up: Suvi Lukkala-Mäkinen</p>"
            },
            "name": {
                "fi": "Peluri – Kuolema on elävien ongelma (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Death is a problem for the living (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Ruumisautobisneksen halvimmat kuskit Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat umpikujassa. Kivi on menettänyt pelaamalla kaiken eikä silti osaa lopettaa. Niska puolestaan saa kuulla, ettei hänellä ole juurikaan aivoja. Kun radanvarresta ruumiin palasia työkseen poimiva kaksikko kohtaa laittomia uhkapelejä järjestävän hämäräperäisen liikenaisen Ullan (Elina Knihtilä), on tie taas auki. Vai onko?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60902/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60119",
            "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: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:596/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4249,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:17.935546Z",
                    "last_modified_time": "2023-09-07T14:22:17.935569Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733059.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4249/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:17.787150Z",
            "last_modified_time": "2023-11-14T06:13:08.197761Z",
            "date_published": null,
            "start_time": "2023-09-20T15: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoan_kuoro",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoas_kor_",
                "en": "http://www.stoa.fi/en/events/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoa_Choir_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea! Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18-19.30.</p><p>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p>",
                "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel. <br>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.<br>Datum: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>",
                "en": "<p>Would you like to learn Finnish by singing in Finnish?</p><p>If so, please join us!  <br>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.<br>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Autumn season: <br>6 Sept <br>13 Sept<br>20 Sept<br>27 Sept<br>11 Oct<br>25 Oct<br>1 Nov<br>15 Nov<br>22 Nov<br>29 Nov</p>"
            },
            "name": {
                "fi": "Stoan kuoro",
                "sv": "Stoas kör",
                "en": "Stoa Choir"
            },
            "short_description": {
                "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?",
                "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?",
                "en": "Would you like to learn Finnish by singing in Finnish?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60119/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60703",
            "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:29/?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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4248,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:17.223669Z",
                    "last_modified_time": "2023-09-07T14:22:17.223693Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735134.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4248/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:16.563948Z",
            "last_modified_time": "2023-11-14T06:13:08.128297Z",
            "date_published": null,
            "start_time": "2023-09-20T15: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A660993E01A553660224C2B746D06BD8/Kesyttamaton_12_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa.</p><p>Maren leimataan huonotapaiseksi ja hänet sijoitetaan Sprogøn saarelle laitokseen, joka on tarkoitettu henkisesti heikoille ja yhteiskuntaan sopeutumattomille naisille. Saarella Maren solmii ystävyyssuhteen kanssasisarensa Sørinen kanssa ja naiset alkavat kapinoida – kauaskantoisin ja kohtalokkain seurauksin.</p><p>Malou Reymannin väkevä draamaelokuva kuvaa kappaleen tummasävyistä Tanskan historiaa ja sitä kuinka yhteiskunta petti aikansa kesyttämättömät naiset.</p><p>Kesyttämätön (Ustyrlig) palkittiin parhaan pohjoismaisen elokuvan palkinnolla Göteborgin elokuvajuhlilla 2023.</p><p>Ikäraja 12<br>Kesto 134 min<br>Ensi-ilta 4.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>"
            },
            "name": {
                "fi": "Kesyttämätön (12) – Kino Helios"
            },
            "short_description": {
                "fi": "Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60703/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}