Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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=1160
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1161", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1159" }, "data": [ { "id": "kulke:60449", "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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4386, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:07.814726Z", "last_modified_time": "2023-09-07T14:24:07.814751Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734961.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4386/?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:24:07.653598Z", "last_modified_time": "2023-11-14T06:13:20.141434Z", "date_published": null, "start_time": "2023-10-11T06: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, "name": { "fi": "Shamaanit - päiväkodeille ja 1. ja 2. luokan oppilaille – Tarina ystävyydestä ja taikuudesta", "sv": "Schamaner – En berättelse om vänskap och magi", "en": "Shamans – A story of friendship and magic" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/23471CEFE34214C71EA75E94495B3557/Shamaanit_-_paivakodeille_ja_1_ja_2_luokan_oppilaille", "sv": "http://www.caisa.fi/sv/evenemang/event/23471CEFE34214C71EA75E94495B3557/Schamaner", "en": "http://www.caisa.fi/en/events/event/23471CEFE34214C71EA75E94495B3557/Shamans" }, "provider_contact_info": null, "description": { "fi": "<p>Monikielinen ja vuorovaikutuksellinen tarina kolmesta shamaanikoulun oppilaasta, jotka päättävät pelastaa shamaanikoulun ystävyyden ja taikuuden avulla.</p><p>Kaukana pohjoisen metsissä sijaitsee kansainvälinen shamaanikoulu, jonka oppilaat tulevat joka puolelta maailmaa. Jokaisella oppilaalla on erityinen voima, mutta koulussa on tiukat säännöt oppilaiden välisestä vuorovaikutuksesta, äidinkielen käytöstä, loitsuista ja taikuudesta kouluajan ulkopuolella.</p><p>Eräänä päivänä tapahtuu jotain odottamatonta ja oppilaat päättävät rikkoa sääntöjä pelastaakseen koulun. Pystyvätkö kolme oppilasta Ursula, Tremar ja Šams pelastamaan mestarinsa ja murtamaan koulunsa loitsun?<br> <br>Esityksen kolme päähenkilöä löytävät – yleisön avustuksella – ystävyyden ja monimuotoisuuden taian.<br> <br>Tämä monikielinen ja interaktiivinen esitys on kunnianosoitus shamanismille, taikuudelle ja ystävyydelle.</p><p>Ohjaus ja näytelmäkirjoittaja: Ilaria Tucci<br>Taiteellinen tuottaja ja dramaturgi: Juliane Mikkonen<br>Näyttelijät: Leandro Lefa, Taru Huokkola, Jalal Hajali<br>Kertojaääni: Markku Mäkiranta<br>Äänet ja musiikki: Behnam Sanei<br>Äänieditointi: Headline Recording Studio | Jani Viitanen<br>Valosuunnittelu: Veli-Ville Siven & Perttu Sinervo<br>Lavasuunnittelu: Ilaria Tucci & Perttu Sinervo<br> <br>Yhteistyökumppanit: Suomen Kulttuurirahasto, Taiteen edistämiskeskus ja Lastenkulttuurikeskus Rulla.</p><p>Kesto: n. 45 min<br>Ikäsuositus: 5+ vuotiaille, mutta esitys soveltuu myös pienemmille<br>Kielet: suomi, lisäksi brasilian portugali, arabia, kurdi ja englanti.<br>Maksuton päiväkodeille ja ala-asteen 1. ja 2. luokkalaisille.</p>", "sv": "<p>En flerspråkig och interaktiv berättelse om tre elever i en schamanskola som bestämmer sig för att rädda schamanskolan med hjälp av vänskap och magi.</p><p>Långt uppe i skogarna i norr finns en internationell schamanskola med elever från hela världen. Varje elev har en särskild kraft, men skolan har strikta regler om umgänget mellan eleverna, användningen av det egna modersmålet, besvärjelser och magi utanför skoltiden.</p><p>Denna flerspråkiga och interaktiva föreställning är en hyllning till schamanism, magi och vänskap.</p><p>Längd: n. 45 min<br>Åldersrekommendation: 5+ år, också yngre<br>Språk: finska, brasiliansk portugisiska, arabiskt, kurdiska och engelska</p>", "en": "<p>Somewhere in the far North, there is an international shamanic school in the middle of the forest.</p><p>The students come from every corner of the world to become shamans. Everyone already has a special power, but there are strict rules in the school about interactions among the students, regarding the use of native languages, spells and magic outside the school time.</p><p>However, one day something unexpected happens and the students decide to break the rules to save the school. Will the three students Ursula, Tremar, and Šams be able to rescue their master and break the enchantment on their school?</p><p>With the help of the audience, the three main characters will discover the magic of friendship and diversity. This multilingual and interactive play is a homage to shamanism, magic, and friendship.</p><p>FinNomads consists of theatre professionals with Finnish and foreign backgrounds.<br>Its members implement multilingual and intercultural theatre productions and workshops in Finland and abroad.</p><p>Director and playwright: Ilaria Tucci<br>Artistic producer and dramaturg: Juliane Mikkonen<br>Performers: Leandro Lefa, Taru Huokkola, Jalal Hajali<br>Voice-over: Markku Mäkiranta<br>Sound & music: Behnam Sanei<br>Sound editing: Headline Recording Studio | Jani Viitanen<br>Lighting design: obias Lönnquist, Ilaria Tucci<br>Stage design: Ilaria Tucci & Perttu Sinervo</p><p>Duration: approx. 45 min<br>Age recommendation: 5+ yrs, also for younger children <br>Languages: Finnish, Brazilian Portuguese, Arabic, Kurd and English</p>" }, "provider": null, "short_description": { "fi": "Monikielinen ja vuorovaikutuksellinen tarina kolmesta shamaanikoulun oppilaasta, jotka päättävät pelastaa shamaanikoulun ystävyyden ja taikuuden avulla.", "sv": "En flerspråkig och interaktiv berättelse om tre elever i en schamanskola som bestämmer sig för att rädda schamanskolan med hjälp av vänskap och magi.", "en": "Somewhere in the far North, there is an international shamanic school in the middle of the forest." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60449/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60226", "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:205/?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:734/?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:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4384, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:07.015767Z", "last_modified_time": "2023-09-07T14:24:07.015791Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734236.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4384/?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:24:06.848475Z", "last_modified_time": "2023-11-14T06:13:20.062167Z", "date_published": null, "start_time": "2023-10-11T06: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, "name": { "fi": "Yläkoulukino: Anna joen virrata" }, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7B2CFD499F58A55C4B04263CAB32DDD2/Ylakoulukino_Anna_joen_virrata_" }, "provider_contact_info": null, "description": { "fi": "<p>1970–80-lukujen taitteessa saamelaisyhteisön johtama kansanliike nousi vastustamaan Pohjois-Norjan Altajoelle rakennettavaa vesivoimalaa – ja samalla puolustamaan saamelaisten oikeutta olla olemassa.</p><p>Elokuvassa saamelaisuutensa kätkemiseen tottunut opettaja Ester päätyy Altan tapahtumien myötä tilanteeseen, jossa oman taustan piilottaminen ympäröivältä yhteiskunnalta ei enää tunnu mahdolliselta. Lopulta Ester olisi valmis jopa uhraamaan henkensä kansansa puolesta. Ole Giæverin elokuva on pysäyttävä kuvaus oman äänen löytämisestä ja rohkeudesta nousta puolustamaan itseään ja oikeuksiaan. Se kertoo historiallisesti käänteentekevistä tapahtumista, jotka johtivat universaaliin keskusteluun alkuperäiskansojen oikeuksista.<br>(Lähde: B-Plan Distribution)</p><p>Alkuperäinen nimi: Ellos eatnu – La elva leve<br>Tuotantomaat: Norja, Ruotsi, Suomi<br>Ohjaus ja käsikirjoitus: Ole Giaever<br>Näyttelijät: Ella Marie Hætta Isaksen, Gard Emil, Sofia Jannok, Beaska Niillas<br>Levittäjä: B-Plan Distribution</p><p>Ikäsuositus: 12+<br>Paikka: teatterisali<br>Kesto: 123 min<br>Kieli: norja, pohjoissaame. Elokuvaan on saatavilla tekstitys suomeksi, ruotsiksi tai pohjoissaameksi.</p><p>Vapaa pääsy. Opiskelijaryhmille pakolliset ilmoittautumiset: <u>https://kultus.fi/event/kultus:age6jrjwni</u></p>" }, "provider": null, "short_description": { "fi": "1970–80-lukujen taitteessa saamelaisyhteisön johtama kansanliike nousi vastustamaan Pohjois-Norjan Altajoelle rakennettavaa vesivoimalaa – ja samalla puolustamaan saamelaisten oikeutta olla olemassa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60814", "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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/girlschool-uk-support-wishing-well-malmitalo-17516396/", "sv": "https://www.lippu.fi/event/girlschool-uk-support-wishing-well-malmitalo-17516396/", "en": "https://www.lippu.fi/event/girlschool-uk-support-wishing-well-malmitalo-17516396/" }, "price": { "fi": "39,50 €", "sv": "39,50 €", "en": "39,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4382, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:04.334849Z", "last_modified_time": "2023-09-07T14:24:04.334869Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736368.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4382/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:04.048250Z", "last_modified_time": "2023-11-14T06:13:19.986965Z", "date_published": null, "start_time": "2023-10-10T16: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, "name": { "fi": "Girlschool (UK) | Wishing Well (FIN)", "sv": "Girlschool (UK) | Wishing Well (FIN)", "en": "Girlschool (UK) | Wishing Well (FIN)" }, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE89DE36E9B89D8A6E2DEE31FE3099E4/Girlschool_UK_Wishing_Well_FIN_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE89DE36E9B89D8A6E2DEE31FE3099E4/Girlschool_UK_Wishing_Well_FIN_", "en": "http://www.malmitalo.fi/en/events/event/BE89DE36E9B89D8A6E2DEE31FE3099E4/Girlschool_UK_Wishing_Well_FIN_" }, "provider_contact_info": null, "description": { "fi": "<p>Girlschool on tunnetuimpia ja pitkäikäisimpiä naismuusikoista koostuvia yhtyeitä. Itse asiassa kyseessä lienee maailman ainoa yli 40-vuotias pelkästään naisista koostuva yhtye.</p><p>Yhtyettä on toisinaan tituleerattu ”naispuoliseksi Motörheadiksi” ja se saikin uralleen vauhtia <b>Lemmy Kilmisterin</b> siipien suojissa. Girlschool soitti <b>Motörheadin</b> kevään 1979 kiertueen lämmittelybändinä.</p><p>Punkahtavaa hard rockia ja heavya soittava yhtye on perustettu Englannissa vuonna 1978, aluksi nimellä <b>Painted Lady</b>.</p><p>Girlschoolin toinen albumi <i>Hit and Run</i> oli parhaimmillaan Britannian albumilistan viidentenä.</p><p>Pisimpään yhtyeessä ovat soittaneet alusta asti mukana olleet kitaristi <b>Kim McAuliffe</b> ja rumpali <b>Denise Dufort</b>. Kokoonpanossa mukana ovat myös 25 vuotta bändissä kitaraa soittanut <b>Jackie Chambers</b> (59).</p><p>Neljä vuotta sitten bändistä lähtenyt perustajajäsen, basisti <b>Enid Williams</b> on 63-vuotias. Hänen tilalleen yhtyeeseen tuli nyt 60-vuotias <b>Tracey Lamb</b>, joka on soittanut Girlschoolin riveissä Williamsin tilalla useita vuosia 1980-luvun lopulla ja 1990-luvulla.</p><p>Illan lämppärinä toimii helsinkiläinen <b>Wishing Well</b>.</p><p><b>Illan aikataulu:</b></p><p>19.00 WISHING WELL <br>19.45 Väliaika<br>20.00 GIRLSCHOOL</p>", "sv": "<p>Girlschool (UK) är ett av de mest kända och långlivade banden som består av kvinnliga musiker.</p><p>I själva verket är det sannolikt fråga om världens enda band som är över 40 år gammalt och består endast av kvinnor. Bandet har ibland titulerats \"kvinnligt Motörhead\", och bandet fick fart på sin karriär i skydd av Lemmy Kilmisters vingar. Girlschool var förband för Motörheads turné på våren 1979.</p><p>Kvällens förband är Wishing Well från Helsingfors.</p><p>kl. 19 Wishing Well<br>kl. 19.45 paus<br>klo 20 Girlschool</p>", "en": "<p>Girlschool (UK) is one of the best-known and long-lived all-female bands.</p><p>Indeed, it’s probably the only band in the world that’s over 40 years old and consists only of women. The band has sometimes been dubbed “the female Motörhead” as it stepped into the limelight under the wings of Lemmy Kilmister. Girlschool was the warm-up act for Motörhead during its 1979 spring tour.</p><p>At Malmitalo, the evening will be opened by Helsinki-based Wishing Well playing as the warm up.</p><p>7 pm Wishing Well<br>7.45 pm intermission <br>8 pm Girlschool</p>" }, "provider": null, "short_description": { "fi": "Girlschool on tunnetuimpia ja pitkäikäisimpiä naismuusikoista koostuvia yhtyeitä. Itse asiassa kyseessä lienee maailman ainoa yli 40-vuotias pelkästään naisista koostuva yhtye.", "sv": "Girlschool (UK) är ett av de mest kända och långlivade banden som består av kvinnliga musiker.", "en": "Girlschool (UK) is one of the best-known and long-lived all-female bands." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60814/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60767", "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: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: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: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-2694655", "sv": "https://www.lippu.fi/eventseries/name-2694655", "en": "https://www.lippu.fi/eventseries/name-2694655" }, "price": { "fi": "95/75/43,50 €", "sv": "95/75/43,50 €", "en": "95/75/43,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4381, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:03.808800Z", "last_modified_time": "2023-09-07T14:24:03.808823Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736361.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4381/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:03.643226Z", "last_modified_time": "2023-11-14T06:13:19.905557Z", "date_published": null, "start_time": "2023-10-10T16: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, "name": { "fi": "Carmina Burana – Szeged Contemporary Dance Company", "sv": "Carmina Burana – Szeged Contemporary Dance Company", "en": "Carmina Burana – Szeged Contemporary Dance Company" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CAAF5E8F6C7EBF365E73671D5E212690/_Carmina_Burana", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CAAF5E8F6C7EBF365E73671D5E212690/_Carmina_Burana", "en": "http://www.savoyteatteri.fi/en/events/event/CAAF5E8F6C7EBF365E73671D5E212690/_Carmina_Burana" }, "provider_contact_info": null, "description": { "fi": "<p>Huippukoreografin kansainvälinen Carmina Burana -tanssiesitys Suomeen lokakuussa!</p><p>Unkarilaisen huippukoreografin, Tamás Juronicsin, kansainvälinen Carmina Burana -tanssiesitys saapuu Suomeen lokakuussa. Nyt ensimmäistä kertaa maassamme nähtävän Szeged Contemporary Dance Companyn esitys yhdistää balettia ja nykytanssia omalla ainutkertaisella tavallaan. Tanssiryhmän Carmina Burana -esitys nähdään Helsingissä, Savoy-teatterissa neljästi 9.-12. lokakuuta.</p><p>Nyt Suomeen saapuva esitys on kerännyt jo yli 200 000 katsojaa ympäri maailman runsaalla 350 näytöksellään. Ryhmässä on mukana yhteensä kaksikymmentä tanssijaa Italiasta ja Unkarista. Savoy-teatterissa nähtävä Carmina Burana on samalla kyseisen ryhmän kaikkien aikojen suosituin esitys.</p><p>– Viemme katsojat menneiden aikojen maailmaan, jossa barbaarisuus ja rituaalinen elämä liittyvät elannon etsimiseen sivilisaation raunioilta. Katsojat kohtaavat Carl Orffin upean musiikin säestämänä elämästä selviytymistä, mutta samalla myös rakkautta, iloa ja toivoa. Ilmennämme tanssin herkin keinoin, kuinka kohtalo voi olla julma ja epävakaa. Samalla voimme oppia paljon itsestämme, omasta kohtalostamme, mahdollisuuksistamme ja omasta ihmisyydestämme, kertoo koreografi Tamás Juronics.</p><p>Contemporary Dance Company on perustettu vuonna 1993, ja siitä on tullut vuosien kuluessa Unkarin johtava nykytanssin ryhmä. Kokoonpanon ainutlaatuinen tyyli yhdistää akrobatiaa, modernin tanssin liikkeitä, teatterielementtejä ja taiturimaisen voimakkaita visioita. Näytöksille ovat tyypillisiä tanssijoiden taidokkaat liikkeet sekä esityksen dramaattinen voima ja filosofinen syvyys.</p><p>Carmina Burana -esityksen kesto on 1 tunti 15 minuuttia, ja sen tuotannosta vastaa kansainvälinen Ballets-yhtiö. Esitysten liput ovat jo myynnissä Lippu.fi:ssä.</p><p>Carmina Burana Savoy-teatterissa:</p><p>MA 9.10. klo 19.00<br>TI 10.10. klo 19.00<br>KE 11.10. klo 19.00<br>TO 12.10. klo 19.00</p><p>Esityksen nettisivut: https://www.ballets.com</p><p>Ikäsuositus: 5+</p>", "sv": "<p>Över 350 bejublade föreställningar världen runt och fler än 200 000 hänförda åskådare!</p><p>\"Kraftfull och episk!\" \"En riktig höjdare!\" \"Mycket musikalisk, väl avpassad, helt magisk och djupt rituell.\" \"Tio minuters stående ovation från publiken på Maison de la Danse\" ...</p><p>I en dramatisk föreställning får vi möta livets hårda verklighet. Livet är kärlek och glädje, men också sorg och död. En barbarisk främling slåss för sin överlevnad på civilisationens ruiner samtidigt som han möter sina värsta rädslor och kämpar mot sitt öde. En ung kvinna upplever stunder av lycka när kärleken till främlingen gör så att hon glömmer det svåra. Istället börjar hon drömma om något annorlunda, ett bättre liv...<br> <br>Genom att uppleva besvikelse, glädje och rädsla kan vi lära oss mycket om oss själva, vårt öde och vår potential - vår egen mänsklighet\" (koreograf Tamás Juronics).</p><p>Szeged Contemporary Dance Companys mest populära föreställning CARMINA BURANA, Carl Orffs mest kända komposition.</p><p>Carl Orffs monumentala musikaliska mästerverk väcktes till liv som en spektakulär dansteaterversion av det prisbelönta Szeged Contemporary Dance Company år 2000. På ett levande sätt fångar föreställningen den gemensamma rädslan och glädjen i ett fiktivt barbariskt samhälle. Den kämpar för sin överlevnad och mänsklighet genom mystiska ritualer ända till sitt sista andetag.</p><p>JAG FÖRSTÅR INTE DEN SISTA MENINGEN! Je ne comprends pas la dernière phrase! \"Den kämpar- qui lutte??\"</p><p>Szeged Contemporary Dance Company:s historia</p><p>Dansarna Tamás Juronics och András Pataki Szeged grundade Contemporary Dance Company 1993, med Szegedbaletten och dess berömda koreograf Zoltán Imre i bakgrunden.</p><p>Modern dansteknik och teatraliska ambitioner definierar kompaniets image och understryker vikten av ett mångsidigt program. Szeged Contemporary Dance Company har blivit det ledande kompaniet för samtida dans i Ungern och har blivit känt och uppskattad över hela världen. Gruppens unika stil består av en blandning av akrobatik, moderna dansrörelser, teatrala element och kraftfulla visioner som presenteras med både teknisk och konstnärlig kvalitet.</p><p>Szeged Dance Companys framgångar började på 1990-talet och fortsätter i oförminskad takt. Föreställningarna kännetecknas av dansarnas skickliga rörelser, dramatisk kraft och filosofiskt djup i föreställningen, känslig användning av teatrala effekter samt ett fylligt ämne och kraftfullt uttryck.</p><p>Tamás Juronics<br>Dansare, koreograf, regissör</p><p>Tamás Juronics föddes i Tata i Ungern 1969. Efter att ha tagit examen från fakulteten för folkdans vid det ungerska universitetet för danskonst accepterade han en inbjudan från Zoltán Imre att gå med i Szegedbaletten. Han dansade huvudroller i stora verk. Den viktigaste var den ungerske musikern Béla Bartóks Den mirakulösa mandarinen, som Juronics hade koreograferat till. Han började presentera sina egna koreografier 1991 och blev konstnärlig ledare för Szeged Contemporary Dance Company 1993. Han var en av de första som använde sig av element från den moderna dansen i sina koreografier som utförs av professionella dansare. Juronics har blivit en internationellt erkänd mästare och har skapat över 70 koreografier. Hans omsorgsfulla integrering av handlingslinjer, tydliga, sammanhängande användning av form och dramatisk struktur gör hans verk inspirerande. Spektakulär iscensättning, belysning, effekter och musik är också viktiga inslag i hans verk. Juronics har fått flera internationella utmärkelser, bland annat priset \"Best creator\" Niveau Prize, \"Best performer\" International Contemporary Choreography Competition och Ungerns högsta statliga pris, \"Kossuth Prize\". Juronics inledde framgångsrikt sin karriär som prosa-regissör och har blivit en populär koreograf och regissör av musikaler och operor på många teatrar. Han har också regisserat Hoffmanns berättelser, Rigoletto, West Side Story, La Traviata och många andra.</p><p>Gör dig redo för den stora upplevelsen!</p><p>Längd: Ca 1 h 15 minuter</p>", "en": "<p>Top choreographer's international Carmina Burana dance performance to Finland in October!</p><p>The international Carmina Burana dance performance by top Hungarian choreographer Tamás Juronics will arrive in Finland in October. Szeged Contemporary Dance Company's performance, which will be seen for the first time in Hungary, combines ballet and contemporary dance in its own unique way. The dance company's Carmina Burana performance will be performed four times in Helsinki, at the Savoy Theatre from 9 to 12 October.</p><p>Now coming to Finland, the show has already attracted over 200 000 spectators around the world in more than 350 performances. The company includes a total of twenty dancers from Italy and Hungary. Carmina Burana at the Savoy Theatre is also the group's most popular performance ever.</p><p>- We take viewers into a bygone world where barbarism and ritual life are linked to the search for a living from the ruins of civilisation. To the accompaniment of Carl Orff's magnificent music, viewers are confronted with the struggle to survive, but also with love, joy and hope. Through dance, we show how fate can be cruel and unstable. At the same time, we can learn a lot about ourselves, our destiny, our possibilities and our humanity,\" says choreographer Tamás Juronics.</p><p>The Contemporary Dance Company was founded in 1993 and over the years has become Hungary's leading contemporary dance company. The company's unique style combines acrobatics, modern dance movements, theatrical elements and artistically intense visions. The shows are characterized by the dancers' skillful movements and the dramatic power and philosophical depth of the performance.</p><p>Carmina Burana will last 1 hour 15 minutes and will be produced by BALLETS. Tickets for the performances are already on sale at Lippu.fi.<br> <br>Carmina Burana at the Savoy Theatre:</p><p>Mon 9.10. at 19.00<br>Tue 10.10. at 19.00<br>Wed 11.10. at 19.00<br>Thu 12.10. at 19.00</p><p>The production's website: https://www.ballets.com</p><p>Age limit recommendation: +5</p>" }, "provider": { "fi": "Ballets", "sv": "Ballets", "en": "Ballets" }, "short_description": { "fi": "Huippukoreografin kansainvälinen Carmina Burana -tanssiesitys Suomeen lokakuussa!", "sv": "Över 350 bejublade föreställningar världen runt och fler än 200 000 hänförda åskådare!", "en": "Top choreographer's international Carmina Burana dance performance to Finland in October!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60767/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60058", "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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4378, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:01.222460Z", "last_modified_time": "2023-09-07T14:24:01.222482Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732393.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4378/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:00.373771Z", "last_modified_time": "2023-11-14T06:13:19.826130Z", "date_published": null, "start_time": "2023-10-10T14:00:00Z", "end_time": "2023-10-10T15:30: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, "name": { "fi": "Keskustelu: Chileläisten toinen sukupolvi – Chile50-teemaisia tapahtumia Caisassa", "sv": "Samtal: Den andra generationens chilenare – Evenemang med Chile50-tema i Caisa", "en": "Discussion: The Second Generation of Chileans – Chile50 themed events at Caisa" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/440F9DCACA4FFFD3A5219CEB3D357642/Keskustelu_Chilelaisten_toinen_sukupolvi_", "sv": "http://www.caisa.fi/sv/evenemang/event/440F9DCACA4FFFD3A5219CEB3D357642/Samtal_Den_andra_generationens_chilenare", "en": "http://www.caisa.fi/en/events/event/440F9DCACA4FFFD3A5219CEB3D357642/Discussion_The_Second_Generation_of_Chileans" }, "provider_contact_info": null, "description": { "fi": "<p>Suomen chileläinen yhteisö on muuttunut ja kasvanut vuoden 1973 jälkeen paljon. Nyt Suomessa asuu satoja chileläistaustaisia ihmisiä.</p><p>Täällä syntyneet nuoret ovat kasvaneet kahden kulttuurin välissä. Monet heistä tuntevat itsensä enemmän suomalaisiksi kuin chileläisiksi. Chileläisnuoret ovat yleisesti ottaen sopeutuneet hyvin Suomeen ja useimmat heistä ovat menestyneet erinomaisesti suomalaisessa yhteiskunnassa.</p><p>Mitä kaksi kulttuuria heille tarkoittaa – kulttuurista rikkautta vai kodittomuutta? Millaisen trauman vanhempien kokema poliittinen väkivalta on mahdollisesti heille synnyttänyt? Mukana tässä keskustelussa: <b>Sebastián Coloma</b>, <b>Marisa Aravena-Kivistö</b> ja <b>Kirsi Mallea</b>. Juontaja: <b>Jaana Kanninen</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi/espanja<br>Vapaa pääsy</p><p>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Den chilenska gemenskapen i Finland har förändrats och vuxit mycket efter år 1973. Idag bor det hundratals människor med chilenskt ursprung i Finland.</p><p>Vad betyder två kulturer för dem – kulturell rikedom eller hemlöshet? Hurdana trauman har det politiska våldet som deras föräldrar blivit utsatta för skapat hos dem? I samtalet deltar: Sebastián Coloma, Marisa Aravena-Kivistö, Kirsi Mallea. Programledare: Jaana Kanninen.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska/spanska<br>Fritt inträde<br>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Chilean community in Finland has changed and grown a lot since 1973. There are now hundreds of people of Chilean origin living in Finland.</p><p>What do two cultures mean to them – cultural richness or homelessness? What kind of trauma might the political violence experienced by their parents have created for them? Participating in the discussion are: Sebastián Coloma, Marisa Aravena-Kivistö, Kirsi Mallea. Host: Jaana Kanninen.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish/Spanish<br>Free entry<br>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>" }, "provider": null, "short_description": { "fi": "Suomen chileläinen yhteisö on muuttunut ja kasvanut vuoden 1973 jälkeen paljon. Nyt Suomessa asuu satoja chileläistaustaisia ihmisiä.", "sv": "Den chilenska gemenskapen i Finland har förändrats och vuxit mycket efter år 1973. Idag bor det hundratals människor med chilenskt ursprung i Finland.", "en": "The Chilean community in Finland has changed and grown a lot since 1973. There are now hundreds of people of Chilean origin living in Finland." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60058/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60018", "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:45/?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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4379, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:02.964735Z", "last_modified_time": "2023-09-07T14:24:02.964767Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731451.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4379/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:02.167582Z", "last_modified_time": "2023-11-14T06:13:19.748330Z", "date_published": null, "start_time": "2023-10-10T14:00:00Z", "end_time": "2023-10-10T15:15: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, "name": { "fi": "Arkkitehtuurikävely: 1970-luvun Vuosaari", "en": "Architecture Walking Tour: 1970s Vuosaari" }, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DB8F9D5FD4AD8794D46D970806168003/Arkkitehtuurikavely_1970-luvun_Vuosaari_", "en": "http://www.vuotalo.fi/en/events/event/DB8F9D5FD4AD8794D46D970806168003/Architecture_Walking_Tour_1970s_Vuosaari_" }, "provider_contact_info": null, "description": { "fi": "<p>Kävelykierroksella tutustutaan Vuosaaren arkkitehtuuriin ja lähiöön 1970-luvun näkökulmasta.</p><p>Vaikka Vuosaari onkin melko tyypillinen 1960-luvun metsäkaupunki, alueella on myös kiinnostavia esimerkkejä 1970-luvun arkkitehtuurista sekä kaupunkisuunnittelun muuttuvista ihanteista. Lähiöiden teemaa käsittelevä kierros pohtii myös, miten aikakauden yhteiskunnalliset muutokset säilyvät arkkitehtuurissa ja toisaalta vaikuttavat nykyaikaan.</p><p>Kierros alkaa Vuotalon pääovilta (Mosaiikkitori 2, Helsinki) ja päättyy viimeiseen kohteeseen osoitteessa Merikorttikuja 6, Helsinki. Kesto on noin 1 tunti 15 minuuttia.</p><p>Arkkitehtuurimuseossa syvennytään tänä kesänä 1970-luvun arkkitehtuuriin: vuoden päänäyttely on Betoniunelmia – ja muita näkymiä 1970-luvun arkkitehtuuriin, joka on auki 17.5.2023–15.10.2023 Arkkitehtuurimuseossa.</p><p><b>Aikataulu </b><br>Tiistai 6.6.2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 6.6.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu)</p><p>Maanantai 12.6.2023 | Helsinki-päivä 2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: maksuton</p><p>Maanantai 12.6.2023 | Helsinki-päivä 2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: maksuton</p><p>Tiistai 4.7.2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 4.7.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 1.8.2023 | klo 15.00 <br>Kieli: englanti | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 1.8.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 12.9.2023 | Helsinki Design Week | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Keskiviikko 13.9.2023 | Helsinki Design Week | klo 17.00 <br>Kieli: englanti| Osallistuminen: 10/5/0 € (vain korttimaksu) <br> <br>Tiistai 10.10.2023 | klo 17.00 <br>Kieli: suomi | Osallistuminen: 10/5/0 € (vain korttimaksu)</p><p><b>Osallistuminen</b><br>Varaa paikkasi opastuksille tällä lomakkeella: https://q.surveypal.com/Arkkitehtuurikavely-1970-luvun-Vuosaari</p><p>Yhdelle arkkitehtuurikävelylle otetaan yhteensä 25 osallistujaa. Paikat täytetään varausjärjestyksessä. Maksullisilla kierroksilla opastusmaksu kerätään kierroksen alkamispaikalla etukäteen (15 minuuttia ennen kävelyn alkua) kannettavalla korttimaksupäätteellä. Käteinen ei käy maksuvälineenä. Tulethan paikalle ajoissa ennen kierroksen alkamisaikaa – kierros alkaa tasalta. Huomioithan, että varaus on sitova ja henkilökohtainen: yhdellä lomakkeella voi tehdä ainoastaan yhden varauksen yhdelle henkilölle. Lomakkeen onnistunut lähettäminen on merkki onnistuneesta varauksesta. Osallistumisohjeet toimitetaan osallistujille sähköpostitse noin vuorokautta ennen teemaopastusta. Jos joudut perumaan osallistumisesi, ota yhteyttä: kaura.raudaskoski@mfa.fi</p><p><b>Saavutettavuus</b><br>Kierros tapahtuu ulkona. Opas käyttää mikrofonia kuulemisen helpottamiseksi.</p><p>Reitin pituus n. 2 km yhteen suuntaan. Reitti päättyy viimeiseen kohteeseen osoitteessa Merikorttikuja 6, josta on n. 1,8 kilometrin kävelymatka takaisin metroasemalle.</p><p>Kävelykierroksen reitti on päällystettyä tietä. Tienylityspaikoilla jalkakäytävän reunat ovat madallettuja. Reitin varrella on muutama loiva tai melko melko jyrkkä rinne. Reitillä ei ole portaita. Kohteissa, joihin kierroksella pysähdytään, ei ole istumapaikkoja. Oman retkituolin voi halutessaan ottaa mukaan.</p><p>Lähin julkinen WC on kävelykierroksen aloituspisteessä Vuotalolla katutasossa. Vuotalolla on myös esteetön WC, ja sisäänkäynti Vuotaloon on esteetön sähköpainikkeella. Esteetön WC on lukossa ja sen voi pyytää avaamaan aulan infotiskiltä tai kahvilasta. Esteetön WC on sukupuolittamaton, muuten WC:t ovat binäärisesti sukupuolitetut</p>", "en": "<p>This walking tour offers a look at Vuosaari's architecture and neighborhood from the perspective of the 1970s.</p><p>While Vuosaari is a typical 1960s forest town, the area also features interesting examples of 1970s architecture that reflect the changing ideals of urban planning. The tour examines how the social aspirations of that era are preserved in architecture and how they continue to impact modern times.</p><p>The walking tour delves into the architectural heritage of Helsinki, providing a deeper understanding of the values and ideals that shaped the urban landscape of Helsinki in the 1970s and beyond. The tour starts at Vuotalo (Mosaiikkitori 2, Helsinki) and ends at Merikorttikuja 6, Helsinki. The duration of the tour is approximately 1 hour and 15 minutes.</p><p>This summer, the Museum of Finnish Architecture will focus on the architecture of the 1970s. The main exhibition of the year, titled Concrete Dreams – And Other Perspectives on 1970s Architecture, will be open from May 17 to October 15, 2023, at the Museum of Finnish Architecture.</p><p><b>Schedule </b><br> <br>Tuesday June 6, 2023 | at 3 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday June 6, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Monday June 12, 2023 | Helsinki Day 2023 | at 3 pm <br>Language: English | Participation: free of charge <br> <br>Monday June 12, 2023 | Helsinki Day 2023 | at 5 pm <br>Language: Finnish | Participation: free of charge <br> <br>Tuesday July 4, 2023 | at 3 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday July 4, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday August 1, 2023 | at 3 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday August 1, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday September 12, 2023 | Helsinki Design Week | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br>Wednesday September 13, 2023 | Helsinki Design Week | at 5 pm <br>Language: English | Participation: 10/5/0 € (card payment only) <br> <br>Tuesday October 10, 2023 | at 5 pm <br>Language: Finnish | Participation: 10/5/0 € (card payment only) <br> <br> <br><b>Participation </b><br>To book your place, please use this form: https://q.surveypal.com/Arkkitehtuurikavely-1970-luvun-Vuosaari.</p><p>A total of 25 participants will be admitted to each themed guided tour. Places are filled on a first-come, first-served basis. For paid tours, card payments will be collected in advance at the starting point of the walk (15 minutes before the tour begins) using a portable payment terminal. Cash will not be accepted. Please arrive on time for the tour, which starts on the hour.</p><p>Please note that the booking is binding and personal: only one booking can be made per person per form. A successful submission of the form indicates a successful booking. Instructions for participation will be sent to participants by email approximately one day before the tour. If you need to cancel your participation, please contact: kaura.raudaskoski@mfa.fi.</p><p><b>Accessibility</b> <br>The tour takes place outdoors, and the guide uses a microphone to make it easier to hear.</p><p>The length of the route is approximately 2.1 km one way. The route ends at the last destination on Merikorttikuja 6, from where it is about a 1.8 km walk back to the Vuosaari metro station.</p><p>The walking tour route is on a paved road, and the edges of the curbs at road crossings are sloped. There are a few gentle or moderately steep slopes along the route, but no stairs. There are no seats at the tour stops, but you may bring your own portable chair if you wish.</p><p>The nearest public toilet is at the starting point of the walking tour in Vuotalo, at street level. The Vuotalo also has an accessible toilet, and the entrance is accessible with an electric button. The accessible toilet is locked by default, but you can ask to have it opened at the information desk in the lobby or the cafe. The accessible toilet is non-gendered, while the other toilets are binary gendered</p>" }, "provider": null, "short_description": { "fi": "Kävelykierroksella tutustutaan Vuosaaren arkkitehtuuriin ja lähiöön 1970-luvun näkökulmasta.", "en": "This walking tour offers a look at Vuosaari's architecture and neighborhood from the perspective of the 1970s." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60018/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60458", "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-2/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4376, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:59.537397Z", "last_modified_time": "2023-09-07T14:23:59.537420Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725183.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4376/?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:23:59.381577Z", "last_modified_time": "2023-11-14T06:13:19.661510Z", "date_published": null, "start_time": "2023-10-10T10:30:00Z", "end_time": "2023-10-10T12:30: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, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0213E65BD140A319A80199AE06DCCF36/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/0213E65BD140A319A80199AE06DCCF36/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/0213E65BD140A319A80199AE06DCCF36/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider_contact_info": 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>" }, "provider": null, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59905", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4375, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:59.167094Z", "last_modified_time": "2023-09-07T14:23:59.167119Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731097.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4375/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:58.981349Z", "last_modified_time": "2023-11-14T06:13:19.587950Z", "date_published": null, "start_time": "2023-10-10T07:30:00Z", "end_time": "2023-10-10T08:30: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, "name": { "fi": "Aamupäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Förmiddagsdans", "en": "Dances in the Morning" }, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5A9145E104023E21F60536D967B3B619/Aamupaivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/5A9145E104023E21F60536D967B3B619/Formiddagsdans", "en": "http://www.stoa.fi/en/events/event/5A9145E104023E21F60536D967B3B619/Dances_in_the_Morning" }, "provider_contact_info": null, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.</p><p>Aiempaa osaamista et tarvitse eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona. Vapaa pääsy. <br> <br>Ohjauskieli: suomi</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska <br>Fritt inträde.</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish <br>Free entry</p>" }, "provider": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60905", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:59.387875Z", "last_modified_time": "2023-10-09T13:29:59.387903Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736322.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:59.097178Z", "last_modified_time": "2023-11-14T06:13:19.515915Z", "date_published": null, "start_time": "2023-10-10T07: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, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka" }, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7E41328D6020DB97674919E8DDC8FD50/Ko-kollektiivi_Tanssikorttipakka" }, "provider_contact_info": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen.</p><p>Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p><b>Mukana</b> <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen: kultus.fi</p>" }, "provider": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60906", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5154, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:58.887238Z", "last_modified_time": "2023-10-09T13:29:58.887259Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736323.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5154/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:58.200752Z", "last_modified_time": "2023-11-14T06:13:19.438460Z", "date_published": null, "start_time": "2023-10-10T06: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, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka" }, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/16661EBD70A8426705374A097F97F773/Ko-kollektiivi_Tanssikorttipakka" }, "provider_contact_info": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen.</p><p>Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p><b>Mukana</b> <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen: kultus.fi</p>" }, "provider": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60906/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60766", "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: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: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: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-2694655", "sv": "https://www.lippu.fi/eventseries/name-2694655", "en": "https://www.lippu.fi/eventseries/name-2694655" }, "price": { "fi": "95/75/43,50 €", "sv": "95/75/43,50 €", "en": "95/75/43,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:58.222115Z", "last_modified_time": "2023-09-07T14:23:58.222143Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736360.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:57.261136Z", "last_modified_time": "2023-11-14T06:13:19.356113Z", "date_published": null, "start_time": "2023-10-09T16: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, "name": { "fi": "Carmina Burana – Szeged Contemporary Dance Company", "sv": "Carmina Burana – Szeged Contemporary Dance Company", "en": "Carmina Burana – Szeged Contemporary Dance Company" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6F5FBCC055CA04077EBC307BDFC9CEA9/_Carmina_Burana", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/6F5FBCC055CA04077EBC307BDFC9CEA9/_Carmina_Burana", "en": "http://www.savoyteatteri.fi/en/events/event/6F5FBCC055CA04077EBC307BDFC9CEA9/_Carmina_Burana" }, "provider_contact_info": null, "description": { "fi": "<p>Huippukoreografin kansainvälinen Carmina Burana -tanssiesitys Suomeen lokakuussa!</p><p>Unkarilaisen huippukoreografin, Tamás Juronicsin, kansainvälinen Carmina Burana -tanssiesitys saapuu Suomeen lokakuussa. Nyt ensimmäistä kertaa maassamme nähtävän Szeged Contemporary Dance Companyn esitys yhdistää balettia ja nykytanssia omalla ainutkertaisella tavallaan. Tanssiryhmän Carmina Burana -esitys nähdään Helsingissä, Savoy-teatterissa neljästi 9.-12. lokakuuta.</p><p>Nyt Suomeen saapuva esitys on kerännyt jo yli 200 000 katsojaa ympäri maailman runsaalla 350 näytöksellään. Ryhmässä on mukana yhteensä kaksikymmentä tanssijaa Italiasta ja Unkarista. Savoy-teatterissa nähtävä Carmina Burana on samalla kyseisen ryhmän kaikkien aikojen suosituin esitys.</p><p>– Viemme katsojat menneiden aikojen maailmaan, jossa barbaarisuus ja rituaalinen elämä liittyvät elannon etsimiseen sivilisaation raunioilta. Katsojat kohtaavat Carl Orffin upean musiikin säestämänä elämästä selviytymistä, mutta samalla myös rakkautta, iloa ja toivoa. Ilmennämme tanssin herkin keinoin, kuinka kohtalo voi olla julma ja epävakaa. Samalla voimme oppia paljon itsestämme, omasta kohtalostamme, mahdollisuuksistamme ja omasta ihmisyydestämme, kertoo koreografi Tamás Juronics.</p><p>Contemporary Dance Company on perustettu vuonna 1993, ja siitä on tullut vuosien kuluessa Unkarin johtava nykytanssin ryhmä. Kokoonpanon ainutlaatuinen tyyli yhdistää akrobatiaa, modernin tanssin liikkeitä, teatterielementtejä ja taiturimaisen voimakkaita visioita. Näytöksille ovat tyypillisiä tanssijoiden taidokkaat liikkeet sekä esityksen dramaattinen voima ja filosofinen syvyys.</p><p>Carmina Burana -esityksen kesto on 1 tunti 15 minuuttia, ja sen tuotannosta vastaa kansainvälinen Ballets-yhtiö. Esitysten liput ovat jo myynnissä Lippu.fi:ssä.</p><p>Carmina Burana Savoy-teatterissa:</p><p>MA 9.10. klo 19.00<br>TI 10.10. klo 19.00<br>KE 11.10. klo 19.00<br>TO 12.10. klo 19.00</p><p>Esityksen nettisivut: https://www.ballets.com</p><p>Ikäsuositus: 5+</p>", "sv": "<p>Över 350 bejublade föreställningar världen runt och fler än 200 000 hänförda åskådare!</p><p>\"Kraftfull och episk!\" \"En riktig höjdare!\" \"Mycket musikalisk, väl avpassad, helt magisk och djupt rituell.\" \"Tio minuters stående ovation från publiken på Maison de la Danse\" ...</p><p>I en dramatisk föreställning får vi möta livets hårda verklighet. Livet är kärlek och glädje, men också sorg och död. En barbarisk främling slåss för sin överlevnad på civilisationens ruiner samtidigt som han möter sina värsta rädslor och kämpar mot sitt öde. En ung kvinna upplever stunder av lycka när kärleken till främlingen gör så att hon glömmer det svåra. Istället börjar hon drömma om något annorlunda, ett bättre liv...<br> <br>Genom att uppleva besvikelse, glädje och rädsla kan vi lära oss mycket om oss själva, vårt öde och vår potential - vår egen mänsklighet\" (koreograf Tamás Juronics).</p><p>Szeged Contemporary Dance Companys mest populära föreställning CARMINA BURANA, Carl Orffs mest kända komposition.</p><p>Carl Orffs monumentala musikaliska mästerverk väcktes till liv som en spektakulär dansteaterversion av det prisbelönta Szeged Contemporary Dance Company år 2000. På ett levande sätt fångar föreställningen den gemensamma rädslan och glädjen i ett fiktivt barbariskt samhälle. Den kämpar för sin överlevnad och mänsklighet genom mystiska ritualer ända till sitt sista andetag.</p><p>JAG FÖRSTÅR INTE DEN SISTA MENINGEN! Je ne comprends pas la dernière phrase! \"Den kämpar- qui lutte??\"</p><p>Szeged Contemporary Dance Company:s historia</p><p>Dansarna Tamás Juronics och András Pataki Szeged grundade Contemporary Dance Company 1993, med Szegedbaletten och dess berömda koreograf Zoltán Imre i bakgrunden.</p><p>Modern dansteknik och teatraliska ambitioner definierar kompaniets image och understryker vikten av ett mångsidigt program. Szeged Contemporary Dance Company har blivit det ledande kompaniet för samtida dans i Ungern och har blivit känt och uppskattad över hela världen. Gruppens unika stil består av en blandning av akrobatik, moderna dansrörelser, teatrala element och kraftfulla visioner som presenteras med både teknisk och konstnärlig kvalitet.</p><p>Szeged Dance Companys framgångar började på 1990-talet och fortsätter i oförminskad takt. Föreställningarna kännetecknas av dansarnas skickliga rörelser, dramatisk kraft och filosofiskt djup i föreställningen, känslig användning av teatrala effekter samt ett fylligt ämne och kraftfullt uttryck.</p><p>Tamás Juronics<br>Dansare, koreograf, regissör</p><p>Tamás Juronics föddes i Tata i Ungern 1969. Efter att ha tagit examen från fakulteten för folkdans vid det ungerska universitetet för danskonst accepterade han en inbjudan från Zoltán Imre att gå med i Szegedbaletten. Han dansade huvudroller i stora verk. Den viktigaste var den ungerske musikern Béla Bartóks Den mirakulösa mandarinen, som Juronics hade koreograferat till. Han började presentera sina egna koreografier 1991 och blev konstnärlig ledare för Szeged Contemporary Dance Company 1993. Han var en av de första som använde sig av element från den moderna dansen i sina koreografier som utförs av professionella dansare. Juronics har blivit en internationellt erkänd mästare och har skapat över 70 koreografier. Hans omsorgsfulla integrering av handlingslinjer, tydliga, sammanhängande användning av form och dramatisk struktur gör hans verk inspirerande. Spektakulär iscensättning, belysning, effekter och musik är också viktiga inslag i hans verk. Juronics har fått flera internationella utmärkelser, bland annat priset \"Best creator\" Niveau Prize, \"Best performer\" International Contemporary Choreography Competition och Ungerns högsta statliga pris, \"Kossuth Prize\". Juronics inledde framgångsrikt sin karriär som prosa-regissör och har blivit en populär koreograf och regissör av musikaler och operor på många teatrar. Han har också regisserat Hoffmanns berättelser, Rigoletto, West Side Story, La Traviata och många andra.</p><p>Gör dig redo för den stora upplevelsen!</p><p>Längd: Ca 1 h 15 minuter</p>", "en": "<p>Top choreographer's international Carmina Burana dance performance to Finland in October!</p><p>The international Carmina Burana dance performance by top Hungarian choreographer Tamás Juronics will arrive in Finland in October. Szeged Contemporary Dance Company's performance, which will be seen for the first time in Hungary, combines ballet and contemporary dance in its own unique way. The dance company's Carmina Burana performance will be performed four times in Helsinki, at the Savoy Theatre from 9 to 12 October.</p><p>Now coming to Finland, the show has already attracted over 200 000 spectators around the world in more than 350 performances. The company includes a total of twenty dancers from Italy and Hungary. Carmina Burana at the Savoy Theatre is also the group's most popular performance ever.</p><p>- We take viewers into a bygone world where barbarism and ritual life are linked to the search for a living from the ruins of civilisation. To the accompaniment of Carl Orff's magnificent music, viewers are confronted with the struggle to survive, but also with love, joy and hope. Through dance, we show how fate can be cruel and unstable. At the same time, we can learn a lot about ourselves, our destiny, our possibilities and our humanity,\" says choreographer Tamás Juronics.</p><p>The Contemporary Dance Company was founded in 1993 and over the years has become Hungary's leading contemporary dance company. The company's unique style combines acrobatics, modern dance movements, theatrical elements and artistically intense visions. The shows are characterized by the dancers' skillful movements and the dramatic power and philosophical depth of the performance.</p><p>Carmina Burana will last 1 hour 15 minutes and will be produced by BALLETS. Tickets for the performances are already on sale at Lippu.fi.<br> <br>Carmina Burana at the Savoy Theatre:</p><p>Mon 9.10. at 19.00<br>Tue 10.10. at 19.00<br>Wed 11.10. at 19.00<br>Thu 12.10. at 19.00</p><p>The production's website: https://www.ballets.com</p><p>Age limit recommendation: +5</p>" }, "provider": { "fi": "Ballets", "sv": "Ballets", "en": "Ballets" }, "short_description": { "fi": "Huippukoreografin kansainvälinen Carmina Burana -tanssiesitys Suomeen lokakuussa!", "sv": "Över 350 bejublade föreställningar världen runt och fler än 200 000 hänförda åskådare!", "en": "Top choreographer's international Carmina Burana dance performance to Finland in October!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60766/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60506", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:56.629174Z", "last_modified_time": "2023-09-07T14:23:56.629201Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730678.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:56.304451Z", "last_modified_time": "2023-11-14T06:13:19.276301Z", "date_published": null, "start_time": "2023-10-09T12:00:00Z", "end_time": "2023-10-09T13: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, "name": { "fi": "Kirjailijavieraana Marja Kyllönen – Maksuttomat maanantait", "sv": "Författargäst Marja Kyllönen – Kostandsfria måndagar", "en": "Author guest Marja Kyllönen – Free Mondays" }, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/721875D3FE6AA49F6DD80F935B8A407D/Kirjailijavieraana_Marja_Kyllonen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/721875D3FE6AA49F6DD80F935B8A407D/Forfattargast_Marja_Kyllonen", "en": "http://www.kanneltalo.fi/en/events/event/721875D3FE6AA49F6DD80F935B8A407D/Author_guest_Marja_Kyllonen" }, "provider_contact_info": null, "description": { "fi": "<p>Vainajaiset (Teos, 2022) on tarina lapsettomuudesta ja sen seurauksista, sukupolvien ketjusta ja selittämättömistä voimista.</p><p>Haastattelijana FM Katri Sola.</p><p>Lasta odotettaessa jokin osaton on alati läsnä ja sen sormet kurottelevat kohti äitiä, isää, isoäitiä, naapurintyttöä, veljeä. Ihmiskohtalot kietoutuvat elliptisesti yhteen, tyhjän ympärille, ja tuota autiutta kukin heistä kokee parhaansa mukaan täyttää – kuka tihutöillä, kuka satuja sepitellen, kuka etsien syntymätöntä sisarustaan.</p><p><b>Marja Kyllönen</b> on kajaanilaislähtöinen, nykyisin Tampereella asuva kirjailija. Hänen ylistetty romaaninsa <i>Vainajaiset</i> (2022) voitti Runeberg-palkinnon ja oli ehdolla myös Finlandia-palkinnon saajaksi. Ennen Vainajaisia Kyllönen on julkaissut kaksi romaania, Helsingin Sanomien esikoiskirjapalkinnolla palkitun <i>Lyijyuuman</i> (WSOY, 1997) ja <i>Rikot</i> (WSOY, 2001). Hänen kuunnelmansa <i>Äänetön osakas</i> (2010) valittiin Suomen edustajaksi Prix Italiaan.</p><p>Yhteistyössä Kannelmäen kirjaston ja Työväenopiston kanssa.<br>Kieli: suomi</p><p>Vapaa päsy</p>", "sv": "<p>Vainajaiset (Teos, 2022) är en berättelse av barnlöshet och dess följder, om kedjan av generationer och oförklarliga krafter.</p><p>Intervjuare FM Katri Sola.</p>", "en": "<p>The Undeparted (Teos, 2022) is a story about infertility and its consequences, a chain of generations and unexplained forces.</p><p>Interviewed by MA Katri Sola.</p>" }, "provider": null, "short_description": { "fi": "Vainajaiset (Teos, 2022) on tarina lapsettomuudesta ja sen seurauksista, sukupolvien ketjusta ja selittämättömistä voimista.", "sv": "Vainajaiset (Teos, 2022) är en berättelse av barnlöshet och dess följder, om kedjan av generationer och oförklarliga krafter.", "en": "The Undeparted (Teos, 2022) is a story about infertility and its consequences, a chain of generations and unexplained forces." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60506/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60495", "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:32/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:56.094413Z", "last_modified_time": "2023-09-07T14:23:56.094440Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731774.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4372/?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:23:55.946044Z", "last_modified_time": "2023-11-14T06:13:19.193368Z", "date_published": null, "start_time": "2023-10-09T07:15:00Z", "end_time": "2023-10-09T08: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, "name": { "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar", "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C0073C76906B6D1D541879C3AE847963/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset", "sv": "http://www.caisa.fi/sv/evenemang/event/C0073C76906B6D1D541879C3AE847963/Dans_och_lek_verkstad_Barn_i_lekaldern", "en": "http://www.caisa.fi/en/events/event/C0073C76906B6D1D541879C3AE847963/Dance_and_play_workshops_Play-age" }, "provider_contact_info": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "provider": null, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60495/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60483", "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: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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4371, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:55.620198Z", "last_modified_time": "2023-09-07T14:23:55.620220Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731758.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4371/?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:23:55.476507Z", "last_modified_time": "2023-11-14T06:13:19.114815Z", "date_published": null, "start_time": "2023-10-09T06:15:00Z", "end_time": "2023-10-09T07: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, "name": { "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar", "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/71EE82944F7164E02C171B99B54BB369/Tanssi_ja_leikki_-tyopaja_Taaperot", "sv": "http://www.caisa.fi/sv/evenemang/event/71EE82944F7164E02C171B99B54BB369/Dans_och_lek_verkstad_Smabarn", "en": "http://www.caisa.fi/en/events/event/71EE82944F7164E02C171B99B54BB369/Dance_and_play_workshops_Toddlers" }, "provider_contact_info": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "provider": null, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60796", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3476002" }, "price": { "fi": "35 €, ovelta 40 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4370, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:55.241849Z", "last_modified_time": "2023-09-07T14:23:55.241871Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736543.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4370/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:54.366551Z", "last_modified_time": "2023-11-14T06:13:19.042275Z", "date_published": null, "start_time": "2023-10-08T16: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, "name": { "fi": "Bottenviken (SE)" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7D20E1D4E2A7AEC2D5D7FF39EC39F9A0/Bottenviken_SE_" }, "provider_contact_info": null, "description": { "fi": "<p>Suomalaiset hitit ruotsiksi kääntänyt Bottenviken saapuu Suomeen levvynjulkaisukeikalle Savoy-teatteriin!</p><p>Pohjoismaissa suurta ihastusta ja arvostelumenestystä herättänyt Bottenviken saapuu ensimmäistä kertaa Suomeen keikoille lokakuussa 7.10. Tampereen Tavara-asemalle ja 8.10. Helsingin Savoy-teatteriin.</p><p>Love Antellin, Mattias Björkasin ja Thella Johnsonin perustaman Bottenvikenin tavoitteena on tuoda yhteen muusikoita, taiteilijoita ja kirjailijoita ruotsin ja suomen kielialueilta vuoropuheluun Itämeren yli musiikin ja sanoitusten avulla. Projektin tuloksena on syntynyt täyspitkä albumi \"Du och jag - ett rike - ett land\". Kehuttu albumi on saanut Suomessa positiivisen vastaanoton ja levy oli ilmestyessään muun muassa Radio Helsingin viikon levynä. Levyllä Bottenviken on tehnyt käännökset ruotsiksi mm. Maustetyttöjen, Samuli Putron, Ultra Bran ja Maija Vilkkumaan kappaleista.</p><p>Hanke perustuu kysymykseen, kuinka kielen ja kansallisen identiteetin välinen kuilu saa erilaisia ilmaisuja. Onko Ruotsin ja Suomen välillä henkinen etäisyys? Jos on, mitä tässä välissä on? Tulkintojen lisäksi Antell, Björkas ja Johnson tuovat mukanaan henkilökohtaisia näkemyksiään Ruotsista, Suomesta ja ruotsalais-suomalaisesta kulttuuri-identiteetistä. Heillä on yhteinen identiteetti, mutta heillä on myös erilaisia kokemuksia.</p><p>Thella Johnson on toimittaja, muusikko ja kirjailija. Hän työskentelee juontajana ja tuottajana Ruotsin radiossa. Hän on toiminut SR:n kirjeenvaihtajana Helsingissä ja debytoi kirjailijana keväällä 2023 romaanilla \"Peace\" (Norstedts). Mattias Björkas on muusikko ja kirjailija. Hän on keulahahmo ja lauluntekijä Vasas Flora och Fauna -yhtyeessä ja hän on vaikuttanut myös indie-suosikki Cats On Fire -yhtyeessä. Love Antell on musiikkitaiteilija ja kuvataiteilija. Hän on aktiivinen sekä sooloartistina että Florence Valentin -yhtyeessä. Hän on esiintynyt palkitussa elokuvassa \"Ingen riktig finne\" (2013) ja ruotsalaisen television Love in Finland -sarjassa (2015).</p><p>Bottenviken on nähty kesän aikana muun muassa Göteborgin Way Out West -festivaaleilla ja yhtye tekee syksyn aikana keikkoja Ruotsissa. Lokakuussa Bottenviken esiintyy ensimmäistä kertaa Suomessa lauantaina 7.10. Tampereen Tavara-asemalla osana Lost In Music -festivaalia ja sunnuntaina 8.10. Helsingissä omalla keikallaan Savoy-teatterissa.</p><p>LIPUT: Ennakkoon alk. 35 EUR + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Ovelta 40 EUR, mikäli esitys ei ole loppuunmyyty.</p><p>Kesto n. 60-70min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>Helsingin keikan viralliset mediakumppanit ovat Radio Helsinki ja Soundi.</p><p>www.facebook.com/bottenvikenartistproject <br>www.sunbornlive.fi</p>" }, "provider": { "fi": "Sunborn Events Oy" }, "short_description": { "fi": "Suomalaiset hitit ruotsiksi kääntänyt Bottenviken saapuu Suomeen levvynjulkaisukeikalle Savoy-teatteriin!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60796/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59930", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4369, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:53.530137Z", "last_modified_time": "2023-09-07T14:23:53.530158Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731641.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4369/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:52.862164Z", "last_modified_time": "2023-11-14T06:13:18.965078Z", "date_published": null, "start_time": "2023-10-08T12: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, "name": { "fi": "Meanwhile – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Meanwhile – Decade of Deviations: Nuua Company 10 år", "en": "Meanwhile – Decade of Deviations: Nuua Company 10 years" }, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile", "sv": "http://www.stoa.fi/sv/evenemang/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile", "en": "http://www.stoa.fi/en/events/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile" }, "provider_contact_info": null, "description": { "fi": "<p>Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Meanwhile</b><br>Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.<br> <br>Se on sekoitus mukaansa tempaavia ja dramaattisia tunnelmia, jotka yhdistyvät minimalistiseen komiikkaan jongleerauksen, esinemanipulaation ja visuaalisen teatterin keinoin. <br> <br>Surrealistinen ja vinksahtanut <i>Meanwhile</i> ruotii kokemustamme ajan kulusta ja sen käytöstä. Esityksessä nykymaailman absurdi tärkeysjärjestys saa uusia ulottuvuuksia, sillä se ylistää asioita, joiden tekeminen koetaan yhteiskunnallisella tasolla tyhjänpäiväiseksi. Kaksi jonglööriä koettelevat kokijan ymmärrystä ja sitä, kuinka kaikki turhaksi kokemamme tekeminen voi synnyttää arvomaailman muutosta.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p>Kesto: 60 min<br>Ohjaus: Olli Vuorinen<br>Esiintyminen: Merri Heikkilä, Onni Toivonen <br>Valosuunnittelu: Teo Laverna, <br>Äänisuunnittelu: Konsta Leinonen <br>Tukijat: Kallo Collective, Cirko, Taiteen keskustoiminta, Koneen säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Meanwhile är en värld som speglar vår tids kultur och raljerar med människornas triviala tidsfördriv.</p><p>Förställningen är en blandning medryckande och dramatiska stämningar som kombineras med minimalistisk komik skapad med jongleringens, objektmanipulationens och den visuella teaterns medel.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>‘Meanwhile’ is a world that mirrors our culture today and delights in all the futile ways people spend their time.</p><p>It is a mix of captivating and dramatic atmospheres combined with minimalist comedy through juggling, object manipulation and visual theatre.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider": null, "short_description": { "fi": "Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.", "sv": "Meanwhile är en värld som speglar vår tids kultur och raljerar med människornas triviala tidsfördriv.", "en": "‘Meanwhile’ is a world that mirrors our culture today and delights in all the futile ways people spend their time." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59930/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59973", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4368, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:52.466032Z", "last_modified_time": "2023-09-07T14:23:52.466052Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731999.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4368/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:52.312590Z", "last_modified_time": "2023-11-14T06:13:18.885911Z", "date_published": null, "start_time": "2023-10-07T17: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, "name": { "fi": "Kulovalkea – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Kulovalkea – Decade of Deviations: Nuua Company 10 år", "en": "Kulovalkea – Wildfire – Decade of Deviations: Nuua Company 10 years" }, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/92350955236C5501304F388951E53CAC/Kulovalkea", "sv": "http://www.stoa.fi/sv/evenemang/event/92350955236C5501304F388951E53CAC/Kulovalkea", "en": "http://www.stoa.fi/en/events/event/92350955236C5501304F388951E53CAC/Kulovalkea_Wildfire" }, "provider_contact_info": null, "description": { "fi": "<p>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Kulovalkea </b><br>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle. <br> <br>Esitys tarjoaa eteerisiä tunnelmia ja unenomaisia näyttämökuvia, kuin liikkuvia maalauksia. Luoden tilaa luoville liikkeille, jotka vievät katsojan uteliaiseen tilaan, jonka kautta arkiselta tuntuvat asiat muuttuvat odottamattomiksi ja kieroutuneiksi. <br> <br>Totuus ei aina ole sitä, mitä todellisuus välittää, vaan enemmän se, mikä on peräisin alitajunnastamme, unelmistamme ja näkemyksistämme, jotka ovat haudattu syvälle psyykeisiimme. Kulovalkea tarjoaa pirstaleisen joukon näyttämökuvia, jotka ruokkivat kekseliäisyyttä ja uhmaavat rationaalisuutta. Kahdeksan sirkustaiteilijan voimin luomme virtuoottisen ja absurdin matkan tietoisuuden rajamaille.</p><p><u>https://nuua.company/project/kulovalkea/</u><br> <br>Kesto: 70 min <br>Ohjaus: Olli Vuorinen <br>Esiintyminen: Valpuri Kaarninen, Maria Peltola, Jaime Allen, Juho Yrjölä, Merri Heikkilä, Nelli Kujansivu, Rosa Autio, Petteri Savikorpi <br>Valosuunnittelu: Teo Laverna <br>Äänisuunnittelu: Katri Salmenoja <br>Tukijat: Dynamo, Cirko, Circus Cirkör, Suntopia, Sorin Sirkus, Latitude 50, Circa Auch, Taiteen keskustoiminkunta, Koneen Säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.</p><p>Den eteriska föreställningens drömlika scener är som rörliga målningar. Det skapas utrymme för kreativa rörelser som väcker åskådarens nyfikenhet och gör att vardagliga fenomen känns oväntade och skruvade.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new.</p><p>The performance offers ethereal atmospheres and dreamlike stage images, like moving paintings. It creates space for creative movements that take the viewer into a curious state, through which things that seem mundane become unexpected and twisted.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider": null, "short_description": { "fi": "Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.", "sv": "Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.", "en": "Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59973/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59929", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/", "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:51.717268Z", "last_modified_time": "2023-09-07T14:23:51.717288Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731640.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:51.562287Z", "last_modified_time": "2023-11-14T06:13:18.809175Z", "date_published": null, "start_time": "2023-10-07T16: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, "name": { "fi": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 vuotta", "sv": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 år", "en": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 years" }, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock", "sv": "http://www.stoa.fi/sv/evenemang/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock", "en": "http://www.stoa.fi/en/events/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock" }, "provider_contact_info": null, "description": { "fi": "<p>Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Blueberry Burdock</b><br>Blueberry Burdock on ylenpalttisten vaihtoehtojen hukuttaman hahmon matka, jossa ristiriidat ja sisäiset konfliktit ilmenevät kehollisina kertomuksina. Teoksen hahmo sotkeutuu harhaanjohtaviin opasteisiin ja rakentaa huonetta liikkuvista seinistä ja puolikkaista esineistä. Kooten eletyn elemän ja pirstaleisen todellisuuden palapeliä. <br> <br>Visuaalisen kerronnan, esinemanipulaation ja koomisen absurdiuden yhdistelmä Blueberry Burdock, tanssii ihmismielen limbomaisessa tilassa.<br> <br>Esitys herättää uudenlaista arvostusta elämän syvällisyyttä kohtaan. Se rohkaisee yleisöä hyväksymään elettyjen kokemusten ristiriitaisuuksia ja juhlimaan olemassaolon kaunista arvoituksellisuutta.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p>Ohjaus: Thomas Monckton<br>Esiintyminen: Olli Vuorinen<br>Valosuunnittelu: Teo Lanerva<br>Äänisuunnittelu: Konsta Leinonen<br>Pukusuunnittelu: Iida Ukkola<br>Lavastus: Olli Vuorinen<br>Lavasteiden rakennus: Kalle Oja<br>Tuotanto: Nuua Company<br>Yhteistuotanto: Kallo Collective <br>Tukijat: Taiteen edistämiskeskus, Helsingin kaupunki,Tanssiteatteri Hurjaruuth, Koneen säätiö, Tero Saarinen Company, Stoa</p><p>Kesto: 50 min</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>", "sv": "<p>Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.</p><p>Med ett urval av konkreta och metaforiska uttryck och ett överflöd av riktningar kombinerar Blueberry Burdock surrealistiska scener och kroppsliga berättelser som uttrycker komplexiteten i det levda livet.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company 10 år </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>", "en": "<p>Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions.</p><p>In an abundance of concrete and metaphorical choices and directions, ‘Blueberry Burdock’ combines surrealist scenes and embodied narratives that express the complexity of a life lived.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>" }, "provider": null, "short_description": { "fi": "Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.", "sv": "Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.", "en": "Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59929/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59734", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3377055", "sv": "https://www.lippu.fi/eventseries/name-3377055", "en": "https://www.lippu.fi/eventseries/name-3377055" }, "price": { "fi": "59/47/15 €, Premium 69 €", "sv": "59/47/15 €, Premium 69 €", "en": "59/47/15 €, Premium 69 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4367, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:52.094061Z", "last_modified_time": "2023-09-07T14:23:52.094083Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730033.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4367/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:51.942689Z", "last_modified_time": "2023-11-14T06:13:18.728432Z", "date_published": null, "start_time": "2023-10-07T16: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, "name": { "fi": "Flamenco Luxurîa (Espanja) – by Barcelona Flamenco Ballet", "sv": "Flamenco Luxurîa (Spanien) – by Barcelona Flamenco Ballet", "en": "Flamenco Luxurîa (Spain) – by Barcelona Flamenco Ballet" }, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Espanja_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Spanien_", "en": "http://www.savoyteatteri.fi/en/events/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Spain_" }, "provider_contact_info": null, "description": { "fi": "<p>Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta</p><p>Arvostettu Barcelona Flamenco Ballet tuo lokakuussa Savoy-teatteriin tuoreen tanssispektaakkelinsa Flamenco Luxurîa.</p><p>Nimi Luxurîa tarkoittaa suomeksi hekumaa, intohimoa. Teoksen on luonut palkittu tanssija ja koreografi David Gutiérrez, jonka esittämä päähenkilö joutuu valitsemaan rakkauden sekä vapauden ja intohimon välillä. Esityksen naispääroolin tanssii Paula Reyes. Viime vuonna ensi-iltansa saanut Luxurîa on jo kerännyt menestystä ympäri maailmaa, muun muassa Yhdysvalloissa, Etelä-Koreassa, Italiassa ja tietenkin myös Espanjan Kataloniassa.</p><p>David Gutierrezin koreografiat yhdistävät niin perinteistä kuin ja modernia flamencotanssia. Hänen juurensa ovat vahvasti Katalonian sydämessä Barcelonassa, jossa Gutierrez aloitti tanssiopintonsa nelivuotiaana. Katalonialaisen kulttuurin esiintuominen on yksi merkityksellisimpiä asioita Gutierrezin työssä.</p><p>Seitsemän tanssijan ja viiden muusikon ensemble tuo Savoyn lavalle näyttäviä tanssinumeroita, sykähdyttävää flamenco-musiikkia sekä loisteliaita pukuja. Luvassa on viihdyttävä ja vahva esitys, joka painuu yleisön mieliin pitkäksi aikaa.</p><p>Esiintyjät:<br>Pääosissa: David Gutiérrez, Montserrat María Martínez<br>Tanssija-ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Kitara: Jordi Centeno<br>Laulu: Rafael Bueno<br>Perkussiot: Alberto Garrido<br>Piano: José Miguel Castaño<br>Huilu ja saksofoni: Rafael Palomares</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>En spansk flamencoshow full med spänning, passion och virtuositet</p><p>Renommerade Barcelona Flamenco Ballet kommer till Savoyteatern i oktober med sitt färska dansspektakel Flamenco Luxurîa.</p><p>Namnet Luxurîa betyder rus, passion på svenska. Verket är skapat av den prisbelönta dansaren och koreografen David Gutiérrez som spelar huvudrollen, en karaktär som tvingas välja mellan kärlek och frihet och passion. Föreställningens kvinnliga huvudroll dansas av Paula Reyes. Luxurîa som hade premiär i fjol har redan rönt framgångar runtom i världen, bland annat i USA, Sydkorea, Italien och naturligtvis Katalonien i Spanien.</p><p>David Gutierrez koreografier kombinerar både traditionell och modern flamencodans. Hans rötter är stadigt i hjärtat av Katalonien, Barcelona, där Gutierrez inledde dansstudierna i fyraårsåldern. Att lyfta fram den katalanska kulturen är ett av de viktigaste elementen i Gutierrez arbete.</p><p>Ensemblen med sju dansare och fem musiker fyller Savoys scen med imponerande dansnummer, bedårande flamencomusik och storslagna kostymer. Det utlovas en underhållande och kraftfull föreställning som publiken sent kommer att glömma.</p><p>På scenen:<br>I huvudrollerna: David Gutiérrez, Montserrat María Martínez<br>Dansensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Gitarr: Jordi Centeno<br>Sång: Rafael Bueno<br>Perkussion: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flöjt och saxofon: Rafael Palomares</p><p>Längd ca 2,5 timmar med paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>A Spanish flamenco show full of excitement, passion and virtuosity</p><p>The esteemed Barcelona Flamenco Ballet will be bringing its fresh dance spectacle Flamenco Luxurîa to Savoy Theatre in October.</p><p>In English, the name Luxurîa means lust and passion. The piece was created by the award-winning dancer and choreograph David Gutiérrez, who plays the protagonist who is forced to choose between love, freedom and passion. The leading female role is performed by dancer Paula Reyes. After its premiere last year, Luxurîa has already found success in countless countries, such as the United States, South Korea, Italy and of course Catalonia, Spain.</p><p>David Gutierrez’s choreographies combine traditional and modern flamenco. His roots strongly are planted in the heart of Catalonia, Barcelona, where he began his dance studies at four years old. Highlighting the Catalonian culture is one of the most important aspects of Gutierrez’s work.</p><p>The ensemble of seven dancers and five musicians will fill the Savoy stage with spectacular dance numbers, stirring Flamenco music and stunning outfits. Audiences will get to enjoy an entertaining and powerful performance that they will remember for a long time.</p><p>Performers:<br>Leading roles: David Gutiérrez, Montserrat María Martínez<br>Dance ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Guitar: Jordi Centeno<br>Vocals: Rafael Bueno<br>Percussions: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flute and saxophone: Rafael Palomares</p><p>Duration approx. 2 h with intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "short_description": { "fi": "Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta", "sv": "En spansk flamencoshow full med spänning, passion och virtuositet", "en": "A Spanish flamenco show full of excitement, passion and virtuosity" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60056", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/" }, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4365, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:50.524538Z", "last_modified_time": "2023-09-07T14:23:50.524560Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4365/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:49.773907Z", "last_modified_time": "2023-11-14T06:13:18.644421Z", "date_published": null, "start_time": "2023-10-07T16: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, "name": { "fi": "Machu Picchu – Chile50-teemaisia tapahtumia Caisassa", "sv": "Machu Picchu-konsert – Evenemang med Chile50-tema i Caisa", "en": "Machu Picchu concert – Chile50 themed events at Caisa" }, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu", "sv": "http://www.caisa.fi/sv/evenemang/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu-konsert_", "en": "http://www.caisa.fi/en/events/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu_concert_" }, "provider_contact_info": null, "description": { "fi": "<p>Machu Picchu -ryhmä juhlistaa chileläisten 50-vuotista taivalta Suomessa.</p><p>Ohjelmisto koostuu ”chileläisen uuden laulun” klassikoista kuten Violetta Parran ja Victor Jaran musiikista. Mukana on myös lauluja muista Latinalaisen Amerikan maista. Konserttiin tuodaan visuaalisia elementtejä chileläisestä maisemasta ja Chilen kansan lähihistoriasta.</p><p>Machu Picchu perustettiin Ruotsissa 35 vuotta sitten. Viisi vuotta myöhemmin se siirtyi Suomeen soittamaan latinalaisamerikkalaista musiikkia. Ryhmä on julkaissut 3 levyä, esiintynyt useita kertoja televisiossa ja tehnyt kiertueita festivaaleille ja kouluihin eri puolilla Suomea. Instrumentteina käytetään muiden muassa Etelä-Amerikan kansanmusiikille tyypillisiä lyömä- ja puhallinsoittimia.</p><p>Ryhmän ammattimuusikot ovat: Roberto Cueto (Chile), Rodrigo Rodriguez (Chile), Pedro Castellon (Bolivia), Tito Chauca (Peru) ja Mikko Nousiainen (Suomi).</p><p>Kesto: 1,5 h (lyhyt väliaika)<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi, espanja ja englanti</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Gruppen Machu Picchu firar chilenarnas 50-åriga historia i Finland.</p><p>På repertoaren står klassiker inom genren ”ny chilensk sång”, såsom musik av Violetta Parra och Victor Jara. På konserten framförs också sånger från andra länder i Latinamerika. Konsertens visuella element knyter an till det chilenska landskapet och det chilenska folkets närhistoria.</p><p>Längd: 1,5 t, med kort paus<br>Åldersrekommendation: för alla åldrar<br>Språk: finska, spanska och engelska</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Machu Picchu group celebrates the 50-year history of Chileans in Finland.</p><p>The programme consists of classics of the “new Chilean song”, such as the music of Violetta Parra and Victor Jara. It also includes songs from other Latin American countries. The concert includes visual elements from the Chilean landscape and the recent history of the Chilean people.</p><p>Duration: 1,5 h with short intermission<br>Age recommendation: for all ages<br>Language: Finnish, Spanish and English</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme.</i></p>" }, "provider": null, "short_description": { "fi": "Machu Picchu -ryhmä juhlistaa chileläisten 50-vuotista taivalta Suomessa.", "sv": "Gruppen Machu Picchu firar chilenarnas 50-åriga historia i Finland.", "en": "The Machu Picchu group celebrates the 50-year history of Chileans in Finland." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60056/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27002, "next": "