sql
stringlengths
6
1.05M
SELECT * FROM actor LIMIT 100; SELECT * FROM address LIMIT 100; SELECT * FROM city LIMIT 100; SELECT * FROM country LIMIT 100; SELECT * FROM customer LIMIT 100; SELECT * FROM customer_list LIMIT 100; SELECT * FROM film LIMIT 100; SELECT * FROM film_actor LIMIT 100; SELECT * FROM inventory LIMIT 100; SELECT * FROM payment LIMIT 100; SELECT * FROM rental LIMIT 100; SELECT * FROM staff LIMIT 100; SELECT * FROM store LIMIT 100; Select count (film_id) from film; Select count (Distinct film_id) from film; -- this changes the column name of the output Select count (Distinct film_id) as NUM_FILMS from film; -- this is an example of Group by Select rating, count (film_id) as NUM_FILMS from film group by rating; -- Now we have an example using "Having" - which is an equivalent of "Where" for Groupby Select rating, count (film_id) as NUM_FILMS from film group by rating having count (film_id)>200;
<reponame>cognitir/advanced_sql<gh_stars>0 -- with our higher-price orders, do we tend to give more frequent discounts? SELECT CORR(unitprice, discount) FROM order_details; -- Are there any countries that we ship to where we tend to give more -- frequent discounts for our higher priced orders? SELECT o.shipcountry, CORR(unitprice, discount) AS price_discount_correlation, COUNT(*) AS order_count FROM order_details od JOIN orders o ON o.orderid = od.orderid GROUP BY o.shipcountry ORDER BY price_discount_correlation DESC;
<reponame>frank780117/spring-data-rest-example<gh_stars>1-10 insert into Customer (id, email, firstname, lastname) values (1, '<EMAIL>', 'Dave', 'Matthews'); insert into Customer (id, email, firstname, lastname) values (2, '<EMAIL>', 'Carter', 'Beauford'); insert into Customer (id, email, firstname, lastname) values (3, '<EMAIL>', 'Boyd', 'Tinsley'); insert into Address (id, street, city, country, customer_id) values (1, '27 Broadway', 'New York', 'United States', 1); insert into Address (id, street, city, country, customer_id) values (2, '27 Broadway', 'New York', 'United States', 1); insert into Product (id, name, description, price) values (1, 'iPad', 'Apple tablet device', 499.0); insert into Product (id, name, description, price) values (2, 'MacBook Pro', 'Apple notebook', 1299.0); insert into Product (id, name, description, price) values (3, 'Dock', 'Dock for iPhone/iPad', 49.0); insert into Product_Attributes (attributes_key, product_id, attributes) values ('connector', 1, 'socket'); insert into Product_Attributes (attributes_key, product_id, attributes) values ('connector', 3, 'plug'); insert into Orders (id, customer_id, shippingaddress_id) values (1, 1, 2); insert into LineItem (id, product_id, amount, order_id, price) values (1, 1, 2, 1, 499.0); insert into LineItem (id, product_id, amount, order_id, price) values (2, 2, 1, 1, 1299.0); insert into role (name) values ('PM'); insert into role (name) values ('STP');
<reponame>4O4/crossforms-stdlib CREATE OR REPLACE PACKAGE STD_RECORD_PROPS IS /* * STDLIB for Oracle Forms 10g * Copyright (c) 2017, <NAME> * License: MIT */ ------------------------------------------------------------------------------ -- Public namespace for Built-in Record Properties ------------------------------------------------------------------------------ STATUS CONSTANT NUMBER := STD_RECORD_PROPS_PRIVATE.RS#STATUS; CHANGED_STATUS CONSTANT NUMBER := STD_RECORD_PROPS_PRIVATE.RS#CHANGED_STATUS; INSERT_STATUS CONSTANT NUMBER := STD_RECORD_PROPS_PRIVATE.RS#INSERT_STATUS; NEW_STATUS CONSTANT NUMBER := STD_RECORD_PROPS_PRIVATE.RS#NEW_STATUS; QUERY_STATUS CONSTANT NUMBER := STD_RECORD_PROPS_PRIVATE.RS#QUERY_STATUS; END STD_RECORD_PROPS;
-- +migrate up CREATE TABLE IF NOT EXISTS "public"."ev_races" ( "id" serial, "event_id" integer, "game_id" integer, "category_id" integer, "description" text, "video_link" text, "estimate" integer, "created_at" timestamp without time zone, "updated_at" timestamp without time zone, FOREIGN KEY ("event_id") REFERENCES "public"."ev_events"("id"), FOREIGN KEY ("game_id") REFERENCES "public"."inv_games"("id"), FOREIGN KEY ("category_id") REFERENCES "public"."inv_categories"("id"), PRIMARY KEY ("id") ); CREATE TABLE IF NOT EXISTS "public"."ev_race_runs" ( "id" serial, "race_id" integer, "run_id" integer, FOREIGN KEY ("race_id") REFERENCES "public"."ev_races"("id"), FOREIGN KEY ("run_id") REFERENCES "public"."ev_runs"("id"), PRIMARY KEY ("id") ); ALTER TABLE "public"."ev_schedules" DROP COLUMN "run_id"; ALTER TABLE "public"."ev_schedulings" ADD COLUMN "race_id" integer, ADD CONSTRAINT ev_schedulings_race_id FOREIGN KEY ("race_id") REFERENCES "public"."ev_races"("id"); -- +migrate down ALTER TABLE "public"."ev_schedulings" DROP COLUMN "race_id"; ALTER TABLE "public"."ev_schedules" ADD COLUMN "run_id" integer, ADD CONSTRAINT ev_schedules_run_id FOREIGN KEY ("run_id") REFERENCES "public"."ev_runs"("id"); DROP TABLE IF EXISTS "public"."ev_race_runs"; DROP TABLE IF EXISTS "public"."ev_races";
<reponame>mcagov/beacons -- Create a trigger to refresh the beacon search materialized view on update into the legacy beacon table CREATE TRIGGER refresh_beacon_search_on_update_into_legacy_beacons AFTER UPDATE ON legacy_beacon FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on update into the beacon table CREATE TRIGGER refresh_beacon_search_on_update_into_beacons AFTER UPDATE ON beacon FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on update into the beacon use table CREATE TRIGGER refresh_beacon_search_on_update_into_beacon_uses AFTER UPDATE ON beacon_use FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on update into the beacon person table CREATE TRIGGER refresh_beacon_search_on_update_into_beacon_uses AFTER UPDATE ON person FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on delete from the legacy beacon table CREATE TRIGGER refresh_beacon_search_on_delete_from_legacy_beacons AFTER DELETE ON legacy_beacon FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on delete from the beacon table CREATE TRIGGER refresh_beacon_search_on_delete_from_beacons AFTER DELETE ON beacon FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on delete from the beacon use table CREATE TRIGGER refresh_beacon_search_on_delete_from_beacon_uses AFTER DELETE ON beacon_use FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view(); -- Create a trigger to refresh the beacon search materialized view on delete from the beacon person table CREATE TRIGGER refresh_beacon_search_on_delete_from_beacon_uses AFTER DELETE ON person FOR EACH STATEMENT EXECUTE PROCEDURE refresh_beacon_search_view();
UPDATE t_question SET correct = 3 where id = 918;
<reponame>emwalker/digraph<gh_stars>10-100 create extension if not exists "uuid-ossp"; create extension if not exists citext; create table organizations ( id uuid primary key default uuid_generate_v1mc(), name varchar(256) not null ); create table users ( id uuid primary key default uuid_generate_v1mc(), name varchar(256) not null, email citext unique ); create table topics ( organization_id uuid not null references organizations(id) on delete cascade, id uuid primary key default uuid_generate_v1mc(), description varchar(256) not null );
<reponame>Shuttl-Tech/antlr_psql<filename>src/test/resources/sql/select/41bdc6c5.sql<gh_stars>10-100 -- file:oidjoins.sql ln:332 expect:true SELECT ctid, oprleft FROM pg_catalog.pg_operator fk WHERE oprleft != 0 AND NOT EXISTS(SELECT 1 FROM pg_catalog.pg_type pk WHERE pk.oid = fk.oprleft)
<gh_stars>1-10 --liquibase formatted sql --changeset vrafael:framework_20200225_02_dboLinkSet logicalFilePath:path-independent splitStatements:true stripComments:false endDelimiter:\nGO runOnChange:true SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON GO --------- framework "RecordSQL" v2 (https://github.com/vrafael/recordsql-database) --------- CREATE OR ALTER PROCEDURE [dbo].[LinkSet] @LinkID dbo.[identifier] = NULL OUTPUT ,@TypeID dbo.[link] = NULL ,@TypeTag dbo.[string] = NULL ,@OwnerID dbo.[link] = NULL ,@TargetID dbo.link = NULL ,@CaseID dbo.link = NULL ,@Order int = NULL AS EXEC dbo.ContextProcedurePush @ProcID = @@PROCID BEGIN SET NOCOUNT ON; SET XACT_ABORT ON; DECLARE @Inserted dbo.list; SELECT @LinkID = IIF(@LinkID > 0, @LinkID, NULL) ,@TypeID = COALESCE(@TypeID, dbo.TypeIDByTag(@TypeTag), dbo.TypeIDByTag(N'Value')); BEGIN TRAN; ---------Value--------- WITH CTE as ( SELECT @LinkID as [LinkID] ,@TypeID as [TypeID] ,@OwnerID as [OwnerID] ,@TargetID as [TargetID] ,@CaseID as [CaseID] ,@Order as [Order] ) MERGE [dbo].[TLink] [target] USING CTE [source] ON [target].[LinkID] = [source].[LinkID] WHEN MATCHED THEN UPDATE SET [TypeID] = [source].[TypeID] ,[OwnerID] = [source].[OwnerID] ,[TargetID] = [source].[TargetID] ,[CaseID] = [source].[CaseID] ,[Order] = [source].[Order] WHEN NOT MATCHED THEN INSERT ( [TypeID] ,[OwnerID] ,[TargetID] ,[CaseID] ,[Order] ) VALUES ( [source].[TypeID] ,[source].[OwnerID] ,[source].[TargetID] ,[source].[CaseID] ,[source].[Order] ) OUTPUT inserted.[LinkID] INTO @Inserted; SELECT TOP (1) @LinkID = I.[ID] FROM @Inserted I; COMMIT TRAN; END GO
-- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; -- ----------------------------------------------------- -- Schema proyecto_ourclub_db -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema proyecto_ourclub_db -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `proyecto_ourclub_db` DEFAULT CHARACTER SET utf8 ; USE `proyecto_ourclub_db` ; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`categoria` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`categoria` ( `idcategorias` INT NOT NULL AUTO_INCREMENT, `nombre` VARCHAR(45) NOT NULL, PRIMARY KEY (`idcategorias`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`producto` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`producto` ( `idproducto` INT NOT NULL AUTO_INCREMENT, `nombre` VARCHAR(45) NOT NULL, `descripcion` VARCHAR(200) NOT NULL, `talla` FLOAT NOT NULL, `precio` FLOAT NOT NULL, `existencia` INT(50) NOT NULL, `categoria_idcategorias` INT NOT NULL, PRIMARY KEY (`idproducto`, `categoria_idcategorias`), INDEX `fk_producto_categoria_idx` (`categoria_idcategorias` ASC) VISIBLE, CONSTRAINT `fk_producto_categoria` FOREIGN KEY (`categoria_idcategorias`) REFERENCES `proyecto_ourclub_db`.`categoria` (`idcategorias`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`rol` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`rol` ( `idrol` INT NOT NULL AUTO_INCREMENT, `nombre` VARCHAR(45) NOT NULL, PRIMARY KEY (`idrol`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`usuario` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`usuario` ( `idusuario` INT NOT NULL AUTO_INCREMENT, `correo` VARCHAR(45) NOT NULL, `contrasena` VARCHAR(45) NOT NULL, `nombre` VARCHAR(45) NOT NULL, `telefono` VARCHAR(14) NOT NULL, `rol_idrol` INT NOT NULL, PRIMARY KEY (`idusuario`, `rol_idrol`), INDEX `fk_usuario_rol1_idx` (`rol_idrol` ASC) VISIBLE, CONSTRAINT `fk_usuario_rol1` FOREIGN KEY (`rol_idrol`) REFERENCES `proyecto_ourclub_db`.`rol` (`idrol`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`pedido` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`pedido` ( `idpedido` INT NOT NULL AUTO_INCREMENT, `subtotal` FLOAT NOT NULL, `total` FLOAT NOT NULL, `iva` FLOAT NOT NULL, `usuario_idusuario` INT NOT NULL, PRIMARY KEY (`idpedido`, `usuario_idusuario`), INDEX `fk_pedido_usuario1_idx` (`usuario_idusuario` ASC) VISIBLE, CONSTRAINT `fk_pedido_usuario1` FOREIGN KEY (`usuario_idusuario`) REFERENCES `proyecto_ourclub_db`.`usuario` (`idusuario`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`infousuario` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`infousuario` ( `idinfousuario` INT NOT NULL AUTO_INCREMENT, `direccion` VARCHAR(150) NOT NULL, `ciudad` VARCHAR(45) NOT NULL, `cp` INT(10) NOT NULL, `numtarjeta` VARCHAR(16) NOT NULL, `expmes` INT(2) NOT NULL, `expano` INT(4) NOT NULL, `usuario_idusuario` INT NOT NULL, PRIMARY KEY (`idinfousuario`, `usuario_idusuario`), INDEX `fk_infousuario_usuario1_idx` (`usuario_idusuario` ASC) VISIBLE, CONSTRAINT `fk_infousuario_usuario1` FOREIGN KEY (`usuario_idusuario`) REFERENCES `proyecto_ourclub_db`.`usuario` (`idusuario`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `proyecto_ourclub_db`.`infopedido` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `proyecto_ourclub_db`.`infopedido` ( `idinfopedido` INT NOT NULL AUTO_INCREMENT, `cantidad` INT(50) NOT NULL, `preciounitario` INT(100) NOT NULL, `pedido_idpedido` INT NOT NULL, `producto_idproducto` INT NOT NULL, PRIMARY KEY (`idinfopedido`, `pedido_idpedido`, `producto_idproducto`), INDEX `fk_infopedido_pedido1_idx` (`pedido_idpedido` ASC) VISIBLE, INDEX `fk_infopedido_producto1_idx` (`producto_idproducto` ASC) VISIBLE, CONSTRAINT `fk_infopedido_pedido1` FOREIGN KEY (`pedido_idpedido`) REFERENCES `proyecto_ourclub_db`.`pedido` (`idpedido`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_infopedido_producto1` FOREIGN KEY (`producto_idproducto`) REFERENCES `proyecto_ourclub_db`.`producto` (`idproducto`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
<gh_stars>1-10 /*EP*/ /* Création de vues sur les données éclairage public*/ /* Objectif : Offrir la possibilité de visualiser les données globales dans GCE (impossible via des vues matéralisées) via des jointures entre tables relationnelles pour répondre aux enjeux de gestion par la Communauté de Commune Thann-Cernay (CCTC)*/ /*Auteur : <NAME>*/ /***************************************************************************************************************/ /****** SCHEMA ******/ /**************************************************************************************************************/ CREATE SCHEMA IF NOT EXISTS ep_apps; GRANT USAGE ON SCHEMA ep_apps TO "SIG"; /******************************************/ /* VUE ARMOIRES */ /******************************************/ CREATE VIEW ep_apps.EP_armoires AS SELECT o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, a.id_armoire, a.puissancesou_armoire, a.puissanceth_armoire, a.puissancemes_armoire, a.nbdeplibre_armoire, a.nbdeptotal_armoire, a.typeferm_armoire, a.typealim_armoire, a.protection_armoire, a.typecompteur_armoire, a.numcompteur_armoire, a.terre_armoire, a.confip2x_armoire, a.confcalibre_armoire, a.differentiel_armoire, a.commande_armoire, com.valeur AS "commandearmoire_v", a.num_pdl_armoire, a.nomposte_armoire, a.coupure_armoire, a.fixation_armoire, a.cosphi_armoire, a.tarifedf_armoire, a.tension_armoire, n.id_noeud, n.idgce_noeud, n.adrue_noeud, n.x_noeud, n.y_noeud, n.z_noeud, n.prof_noeud, n.insee_noeud, ins.nom AS "ville_v", n.origeoloc_noeud, ori.valeur AS "originegeoloc_v", n.qualglocxy_noeud, xy.valeur AS "qualglocxy_v", n.qualglocz_noeud, z.valeur AS "qualglocz_v", n.id_tronc, n.geom FROM ep.armoire a LEFT JOIN ep.objet o ON o.id_objet = a.id_objet LEFT JOIN ep.geo_noeud n ON o.id_noeud = n.id_noeud LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_typecommande com ON a.commande_armoire = com.code LEFT JOIN ep.val_commune ins ON n.insee_noeud = ins.insee LEFT JOIN ep.val_origine_geoloc ori ON n.origeoloc_noeud = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON n.qualglocxy_noeud = xy.code LEFT JOIN ep.val_qualite_geoloc z ON n.qualglocz_noeud = z.code ORDER BY o.id_objet; COMMENT ON VIEW ep_apps.EP_armoires IS 'Vue permettant l''affichage des informations liées aux armoire du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_armoires TO "SIG"; /******************************************/ /* VUE MOBILIER */ /******************************************/ CREATE VIEW ep_apps.EP_mobiliers AS SELECT o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, m.id_mobilier, m.type_mobilier, mob.valeur AS "typemobilier_v", n.id_noeud, n.idgce_noeud, n.adrue_noeud, n.x_noeud, n.y_noeud, n.z_noeud, n.prof_noeud, n.insee_noeud, ins.nom AS "ville_v", n.origeoloc_noeud, ori.valeur AS "originegeoloc_v", n.qualglocxy_noeud, xy.valeur AS "qualglocxy_v", n.qualglocz_noeud, z.valeur AS "qualglocz_v", n.id_tronc, n.geom FROM ep.mobilier m LEFT JOIN ep.objet o ON o.id_objet = m.id_objet LEFT JOIN ep.geo_noeud n ON o.id_noeud = n.id_noeud LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_typemobilier mob ON m.type_mobilier = mob.code LEFT JOIN ep.val_commune ins ON n.insee_noeud = ins.insee LEFT JOIN ep.val_origine_geoloc ori ON n.origeoloc_noeud = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON n.qualglocxy_noeud = xy.code LEFT JOIN ep.val_qualite_geoloc z ON n.qualglocz_noeud = z.code ORDER BY o.id_objet; COMMENT ON VIEW ep_apps.EP_mobiliers IS 'Vue permettant l''affichage des informations liées aux mobiliers du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_mobiliers TO "SIG"; /******************************************/ /* VUE CHAMBRES */ /******************************************/ CREATE VIEW ep_apps.EP_chambres AS SELECT o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, c.id_chambre, c.type_chambre, cha.valeur AS "typechambre", c.couv_chambre, coc.valeur AS "typecouvercle", c.class_couv_chambre, ccc.valeur AS "classecouvercle", n.id_noeud, n.idgce_noeud, n.adrue_noeud, n.x_noeud, n.y_noeud, n.z_noeud, n.prof_noeud, n.insee_noeud, ins.nom AS "ville_v", n.origeoloc_noeud, ori.valeur AS "originegeoloc_v", n.qualglocxy_noeud, xy.valeur AS "qualglocxy_v", n.qualglocz_noeud, z.valeur AS "qualglocz_v", n.id_tronc, n.geom FROM ep.chambre c LEFT JOIN ep.objet o ON o.id_objet = c.id_objet LEFT JOIN ep.geo_noeud n ON o.id_noeud = n.id_noeud LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_typechambre cha ON c.type_chambre = cha.code LEFT JOIN ep.val_typecouvercle coc ON c.couv_chambre = coc.code LEFT JOIN ep.val_classecouvercle ccc ON c.class_couv_chambre = ccc.code LEFT JOIN ep.val_commune ins ON n.insee_noeud = ins.insee LEFT JOIN ep.val_origine_geoloc ori ON n.origeoloc_noeud = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON n.qualglocxy_noeud = xy.code LEFT JOIN ep.val_qualite_geoloc z ON n.qualglocz_noeud = z.code ORDER BY o.id_objet; COMMENT ON VIEW ep_apps.EP_chambres IS 'Vue permettant l''affichage des informations liées aux chambres du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_chambres TO "SIG"; /******************************************/ /* VUE SUPPORTS */ /******************************************/ CREATE VIEW ep_apps.EP_supports AS SELECT o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, s.id_support, s.modele_support, s.nbfoyer_support, s.depart_support, s.typeboitier_support, s.hauteur_support, s.ral_support, s.zonage_support, zon.valeur AS "zonage_v", s.massif_support, mas.valeur AS "typemassifsupport_v", s.regallumage_support, reg.valeur AS "regimeallumage_v", s.type_support, sup.valeur AS "typesupport_v", s.forme_support, fsup.valeur AS "formesupport_v", CASE WHEN s.protectpied_support = 't' THEN 'Oui' WHEN s.protectpied_support = 't' THEN 'Non' ELSE 'Indéterminé' END AS "protectpied_v", s.protec_support, pro.valeur AS "protectionsupport_v", CASE WHEN s.terre_support = 't' THEN 'Oui' WHEN s.terre_support = 't' THEN 'Non' ELSE 'Indéterminé' END AS "terre_v", s.arm_support, n.id_noeud, n.idgce_noeud, n.adrue_noeud, n.x_noeud, n.y_noeud, n.z_noeud, n.prof_noeud, n.insee_noeud, ins.nom AS "ville_v", n.origeoloc_noeud, ori.valeur AS "originegeoloc_v", n.qualglocxy_noeud, xy.valeur AS "qualglocxy_v", n.qualglocz_noeud, z.valeur AS "qualglocz_v", n.id_tronc, n.geom FROM ep.support s LEFT JOIN ep.objet o ON o.id_objet = s.id_objet LEFT JOIN ep.geo_noeud n ON o.id_noeud = n.id_noeud LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_zonagesupport zon ON s.zonage_support = zon.code LEFT JOIN ep.val_massifsupport mas ON s.massif_support = mas.code LEFT JOIN ep.val_regallumage reg ON s.regallumage_support = reg.code LEFT JOIN ep.val_typesupport sup ON s.type_support = sup.code LEFT JOIN ep.val_formesupport fsup ON s.forme_support = fsup.code LEFT JOIN ep.val_typeprotec pro ON s.protec_support = pro.code LEFT JOIN ep.val_commune ins ON n.insee_noeud = ins.insee LEFT JOIN ep.val_origine_geoloc ori ON n.origeoloc_noeud = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON n.qualglocxy_noeud = xy.code LEFT JOIN ep.val_qualite_geoloc z ON n.qualglocz_noeud = z.code ORDER BY o.id_objet; COMMENT ON VIEW ep_apps.EP_supports IS 'Vue permettant l''affichage des informations liées aux supports du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_supports TO "SIG"; /******************************************/ /* VUE TRONCONS */ /******************************************/ CREATE VIEW ep_apps.EP_troncons AS SELECT o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, t.id_tronc, t.idgce_tronc, t.adrue_tronc, t.longcalc_tronc, t.longmes_tronc, t.insee_tronc, ins.nom AS "ville_v", t.fonction_tronc, fon.valeur AS "fonction_v", t.typeres_tronc, res.valeur AS "typereseau_v", t.typegaine_tronc, gai.valeur AS "typegaine_v", t.typecable_tronc, cab.valeur AS "typecable_v", t.origeoloc_tronc, ori.valeur AS "originegeoloc_v", t.qualglocxy_tronc, xy.valeur AS "qualglocxy_v", t.qualglocz_tronc, z.valeur AS "qualglocz_v", t.arm_tronc, t.geom FROM ep.geo_tronc t LEFT JOIN ep.objet o ON t.id_tronc = o.id_tronc LEFT JOIN ep.val_commune ins ON t.insee_tronc = ins.insee LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_foncreseau fon ON t.fonction_tronc = fon.code LEFT JOIN ep.val_typeres res on t.typeres_tronc = res.code LEFT JOIN ep.val_typegaine gai ON t.typegaine_tronc = gai.code LEFT JOIN ep.val_typecable cab ON t.typecable_tronc = cab.code LEFT JOIN ep.val_origine_geoloc ori ON t.origeoloc_tronc = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON t.qualglocxy_tronc = xy.code LEFT JOIN ep.val_qualite_geoloc z ON t.qualglocz_tronc = z.code ORDER BY t.id_tronc; COMMENT ON VIEW ep_apps.EP_troncons IS 'Vue permettant l''affichage des informations liées aux tronçons du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_troncons TO "SIG"; /******************************************/ /* VUE POINTS LUMINEUX */ /******************************************/ CREATE VIEW ep_apps.EP_pointslumineux AS SELECT p.id_pl, p.marque_pl, mar.valeur AS "marquepl_v", p.modele_pl, p.type_pl, tpl.valeur AS "typepl_v", p.ral_pl, p.class_pl, cla.valeur AS "classepl_v", p.typebal_pl, bal.valeur AS "typeballast_v", p.typesour_pl, sou.valeur AS "typesourcelumiere_v", p.refsour_pl, p.couleursour_pl, p.puisour_pl, p.angle_pl, p.culosour_pl, p.typefix_pl, fix.valeur AS "typefixation_v", p.modelefix_pl, p.hauteur_pl, p.saillie_pl, p.etat_pl, etat.valeur AS "etatpl_v", p.dateposebal_pl, p.dateposesour_pl, p.id_support, o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, s.modele_support, s.nbfoyer_support, s.depart_support, s.typeboitier_support, s.hauteur_support, s.ral_support, s.zonage_support, zon.valeur AS "zonage_v", s.massif_support, mas.valeur AS "typemassifsupport_v", s.regallumage_support, reg.valeur AS "regimeallumage_v", s.type_support, sup.valeur AS "typesupport_v", s.forme_support, fsup.valeur AS "formesupport_v", CASE WHEN s.protectpied_support = 't' THEN 'Oui' WHEN s.protectpied_support = 't' THEN 'Non' ELSE 'Indéterminé' END AS "protectpied_v", s.protec_support, pro.valeur AS "protectionsupport_v", CASE WHEN s.terre_support = 't' THEN 'Oui' WHEN s.terre_support = 't' THEN 'Non' ELSE 'Indéterminé' END AS "terre_v", n.id_noeud, n.idgce_noeud, n.adrue_noeud, n.x_noeud, n.y_noeud, n.z_noeud, n.prof_noeud, n.insee_noeud, ins.nom AS "ville_v", n.origeoloc_noeud, ori.valeur AS "originegeoloc_v", n.qualglocxy_noeud, xy.valeur AS "qualglocxy_v", n.qualglocz_noeud, z.valeur AS "qualglocz_v", n.id_tronc, n.geom FROM ep.pointlumineux p LEFT JOIN ep.support s ON s.id_support = p.id_support LEFT JOIN ep.val_marquepl mar ON p.marque_pl = mar.code LEFT JOIN ep.val_typepl tpl ON p.type_pl = tpl.code LEFT JOIN ep.val_classepl cla ON p.class_pl = cla.code LEFT JOIN ep.val_typebalpl bal ON p.typebal_pl = bal.code LEFT JOIN ep.val_typesourpl sou ON p.typesour_pl = sou.code LEFT JOIN ep.val_typefixationpl fix ON p.typefix_pl = fix.code LEFT JOIN ep.val_etat etat ON p.etat_pl = etat.code LEFT JOIN ep.objet o ON o.id_objet = s.id_objet LEFT JOIN ep.geo_noeud n ON o.id_noeud = n.id_noeud LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_zonagesupport zon ON s.zonage_support = zon.code LEFT JOIN ep.val_massifsupport mas ON s.massif_support = mas.code LEFT JOIN ep.val_regallumage reg ON s.regallumage_support = reg.code LEFT JOIN ep.val_typesupport sup ON s.type_support = sup.code LEFT JOIN ep.val_formesupport fsup ON s.forme_support = fsup.code LEFT JOIN ep.val_typeprotec pro ON s.protec_support = pro.code LEFT JOIN ep.val_commune ins ON n.insee_noeud = ins.insee LEFT JOIN ep.val_origine_geoloc ori ON n.origeoloc_noeud = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON n.qualglocxy_noeud = xy.code LEFT JOIN ep.val_qualite_geoloc z ON n.qualglocz_noeud = z.code ORDER BY p.id_pl; COMMENT ON VIEW ep_apps.EP_pointslumineux IS 'Vue permettant l''affichage des informations liées aux points lumineux du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_pointslumineux TO "SIG"; /******************************************/ /* VUE ACCESSOIRES */ /******************************************/ CREATE VIEW ep_apps.EP_accessoires AS SELECT a.id_accessoire, a.type_accessoire, acc.valeur AS "typeaccessoire_v", a.details_accessoire, a.id_support, o.id_objet, o.idsimpl_objet, o.datemaj_objet, o.observation_objet, o.gestionnaire_objet, o.anpose_objet, o.dim_objet, o.photo_objet, o.sourattrib_objet, o.materiau_objet, ma.valeur AS "materiau_v", CASE WHEN o.access_objet = 't' THEN 'Oui' WHEN o.access_objet = 't' THEN 'Non' ELSE 'Indéterminé' END AS "acces_v", o.etat_objet, eta.valeur AS "etat_v", o.type_objet, obj.valeur AS "typeobjet_v", CASE WHEN o.enservice_objet = 't' THEN 'Oui' WHEN o.enservice_objet = 'f' THEN 'Non' ELSE 'Indéterminé' END AS "enservice_v", o.id_plan, s.modele_support, s.nbfoyer_support, s.depart_support, s.typeboitier_support, s.hauteur_support, s.ral_support, s.zonage_support, zon.valeur AS "zonage_v", s.massif_support, mas.valeur AS "typemassifsupport_v", s.regallumage_support, reg.valeur AS "regimeallumage_v", s.type_support, sup.valeur AS "typesupport_v", s.forme_support, fsup.valeur AS "formesupport_v", CASE WHEN s.protectpied_support = 't' THEN 'Oui' WHEN s.protectpied_support = 't' THEN 'Non' ELSE 'Indéterminé' END AS "protectpied_v", s.protec_support, pro.valeur AS "protectionsupport_v", CASE WHEN s.terre_support = 't' THEN 'Oui' WHEN s.terre_support = 't' THEN 'Non' ELSE 'Indéterminé' END AS "terre_v", n.id_noeud, n.idgce_noeud, n.adrue_noeud, n.x_noeud, n.y_noeud, n.z_noeud, n.prof_noeud, n.insee_noeud, ins.nom AS "ville_v", n.origeoloc_noeud, ori.valeur AS "originegeoloc_v", n.qualglocxy_noeud, xy.valeur AS "qualglocxy_v", n.qualglocz_noeud, z.valeur AS "qualglocz_v", n.id_tronc, n.geom FROM ep.accessoire a LEFT JOIN ep.support s ON s.id_support = a.id_support LEFT JOIN ep.val_typeaccessoire acc ON a.type_accessoire = acc.code LEFT JOIN ep.objet o ON o.id_objet = s.id_objet LEFT JOIN ep.geo_noeud n ON o.id_noeud = n.id_noeud LEFT JOIN ep.val_materiau ma ON o.materiau_objet = ma.code LEFT JOIN ep.val_etat eta ON o.etat_objet = eta.code LEFT JOIN ep.val_typeobjet obj ON o.type_objet = obj.code LEFT JOIN ep.val_zonagesupport zon ON s.zonage_support = zon.code LEFT JOIN ep.val_massifsupport mas ON s.massif_support = mas.code LEFT JOIN ep.val_regallumage reg ON s.regallumage_support = reg.code LEFT JOIN ep.val_typesupport sup ON s.type_support = sup.code LEFT JOIN ep.val_formesupport fsup ON s.forme_support = fsup.code LEFT JOIN ep.val_typeprotec pro ON s.protec_support = pro.code LEFT JOIN ep.val_commune ins ON n.insee_noeud = ins.insee LEFT JOIN ep.val_origine_geoloc ori ON n.origeoloc_noeud = ori.code LEFT JOIN ep.val_qualite_geoloc xy ON n.qualglocxy_noeud = xy.code LEFT JOIN ep.val_qualite_geoloc z ON n.qualglocz_noeud = z.code ORDER BY a.id_accessoire; COMMENT ON VIEW ep_apps.EP_accessoires IS 'Vue permettant l''affichage des informations liées aux accessoires du réseau d''éclairage public'; GRANT ALL ON TABLE ep_apps.EP_accessoires TO "SIG";
-- PHP ARTISAN MIGRATION -- MySQL dump 10.13 Distrib 8.0.16, for osx10.14 (x86_64) -- -- Host: status.monitor.barnab.eu Database: cachet -- ------------------------------------------------------ -- Server version 5.5.5-10.4.5-MariaDB-1:10.4.5+maria~bionic /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; SET NAMES utf8mb4 ; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `actions` -- DROP TABLE IF EXISTS `actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `actions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `class_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `information` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `actions_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `actions` -- LOCK TABLES `actions` WRITE; /*!40000 ALTER TABLE `actions` DISABLE KEYS */; /*!40000 ALTER TABLE `actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache` -- DROP TABLE IF EXISTS `cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `cache` ( `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, `expiration` int(11) NOT NULL, UNIQUE KEY `cache_key_unique` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache` -- LOCK TABLES `cache` WRITE; /*!40000 ALTER TABLE `cache` DISABLE KEYS */; /*!40000 ALTER TABLE `cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `component_groups` -- DROP TABLE IF EXISTS `component_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `component_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `order` int(11) NOT NULL DEFAULT 0, `visible` tinyint(3) unsigned NOT NULL DEFAULT 0, `collapsed` int(10) unsigned NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `component_groups_order_index` (`order`), KEY `component_groups_visible_index` (`visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `component_groups` -- LOCK TABLES `component_groups` WRITE; /*!40000 ALTER TABLE `component_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `component_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `components` -- DROP TABLE IF EXISTS `components`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `components` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `link` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int(11) NOT NULL, `order` int(11) NOT NULL, `group_id` int(11) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT 1, `meta` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `components_group_id_index` (`group_id`), KEY `components_status_index` (`status`), KEY `components_order_index` (`order`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `components` -- LOCK TABLES `components` WRITE; /*!40000 ALTER TABLE `components` DISABLE KEYS */; /*!40000 ALTER TABLE `components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `failed_jobs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `incident_components` -- DROP TABLE IF EXISTS `incident_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `incident_components` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `incident_id` int(10) unsigned NOT NULL, `component_id` int(10) unsigned NOT NULL, `status_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `incident_components_incident_id_index` (`incident_id`), KEY `incident_components_component_id_index` (`component_id`), KEY `incident_components_status_id_index` (`status_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `incident_components` -- LOCK TABLES `incident_components` WRITE; /*!40000 ALTER TABLE `incident_components` DISABLE KEYS */; /*!40000 ALTER TABLE `incident_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `incident_templates` -- DROP TABLE IF EXISTS `incident_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `incident_templates` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `template` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `incident_templates` -- LOCK TABLES `incident_templates` WRITE; /*!40000 ALTER TABLE `incident_templates` DISABLE KEYS */; /*!40000 ALTER TABLE `incident_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `incident_updates` -- DROP TABLE IF EXISTS `incident_updates`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `incident_updates` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `incident_id` int(10) unsigned NOT NULL, `status` int(11) NOT NULL, `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `incident_updates_incident_id_index` (`incident_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `incident_updates` -- LOCK TABLES `incident_updates` WRITE; /*!40000 ALTER TABLE `incident_updates` DISABLE KEYS */; /*!40000 ALTER TABLE `incident_updates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `incidents` -- DROP TABLE IF EXISTS `incidents`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `incidents` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned DEFAULT NULL, `component_id` int(11) NOT NULL DEFAULT 0, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(11) NOT NULL, `visible` tinyint(1) NOT NULL DEFAULT 1, `stickied` tinyint(1) NOT NULL DEFAULT 0, `notifications` tinyint(1) NOT NULL DEFAULT 0, `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `occurred_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `incidents_component_id_index` (`component_id`), KEY `incidents_status_index` (`status`), KEY `incidents_visible_index` (`visible`), KEY `incidents_stickied_index` (`stickied`), KEY `incidents_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `incidents` -- LOCK TABLES `incidents` WRITE; /*!40000 ALTER TABLE `incidents` DISABLE KEYS */; /*!40000 ALTER TABLE `incidents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `invites` -- DROP TABLE IF EXISTS `invites`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `invites` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `claimed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invites_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `invites` -- LOCK TABLES `invites` WRITE; /*!40000 ALTER TABLE `invites` DISABLE KEYS */; /*!40000 ALTER TABLE `invites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jobs` -- DROP TABLE IF EXISTS `jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) unsigned NOT NULL, `reserved` tinyint(3) unsigned NOT NULL, `reserved_at` int(10) unsigned DEFAULT NULL, `available_at` int(10) unsigned NOT NULL, `created_at` int(10) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jobs` -- LOCK TABLES `jobs` WRITE; /*!40000 ALTER TABLE `jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meta` -- DROP TABLE IF EXISTS `meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `meta` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `meta_id` int(10) unsigned NOT NULL, `meta_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `meta_meta_id_meta_type_index` (`meta_id`,`meta_type`), KEY `meta_key_index` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meta` -- LOCK TABLES `meta` WRITE; /*!40000 ALTER TABLE `meta` DISABLE KEYS */; /*!40000 ALTER TABLE `meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metric_points` -- DROP TABLE IF EXISTS `metric_points`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `metric_points` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `metric_id` int(11) NOT NULL, `value` decimal(15,3) NOT NULL, `counter` int(10) unsigned NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `metric_points_metric_id_index` (`metric_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metric_points` -- LOCK TABLES `metric_points` WRITE; /*!40000 ALTER TABLE `metric_points` DISABLE KEYS */; /*!40000 ALTER TABLE `metric_points` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `metrics` -- DROP TABLE IF EXISTS `metrics`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `metrics` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `suffix` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `default_value` decimal(10,3) NOT NULL, `calc_type` tinyint(4) NOT NULL, `display_chart` tinyint(1) NOT NULL DEFAULT 1, `places` int(10) unsigned NOT NULL DEFAULT 2, `default_view` tinyint(3) unsigned NOT NULL DEFAULT 1, `threshold` int(10) unsigned NOT NULL DEFAULT 5, `order` tinyint(4) NOT NULL DEFAULT 0, `visible` tinyint(3) unsigned NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `metrics_display_chart_index` (`display_chart`), KEY `metrics_visible_index` (`visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `metrics` -- LOCK TABLES `metrics` WRITE; /*!40000 ALTER TABLE `metrics` DISABLE KEYS */; /*!40000 ALTER TABLE `metrics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'2015_01_05_201324_CreateComponentGroupsTable',1),(2,'2015_01_05_201444_CreateComponentsTable',1),(3,'2015_01_05_202446_CreateIncidentTemplatesTable',1),(4,'2015_01_05_202609_CreateIncidentsTable',1),(5,'2015_01_05_202730_CreateMetricPointsTable',1),(6,'2015_01_05_202826_CreateMetricsTable',1),(7,'2015_01_05_203014_CreateSettingsTable',1),(8,'2015_01_05_203235_CreateSubscribersTable',1),(9,'2015_01_05_203341_CreateUsersTable',1),(10,'2015_01_09_083419_AlterTableUsersAdd2FA',1),(11,'2015_01_16_083825_CreateTagsTable',1),(12,'2015_01_16_084030_CreateComponentTagTable',1),(13,'2015_02_28_214642_UpdateIncidentsAddScheduledAt',1),(14,'2015_05_19_214534_AlterTableComponentGroupsAddOrder',1),(15,'2015_05_20_073041_AlterTableIncidentsAddVisibileColumn',1),(16,'2015_05_24_210939_create_jobs_table',1),(17,'2015_05_24_210948_create_failed_jobs_table',1),(18,'2015_06_10_122216_AlterTableComponentsDropUserIdColumn',1),(19,'2015_06_10_122229_AlterTableIncidentsDropUserIdColumn',1),(20,'2015_08_02_120436_AlterTableSubscribersRemoveDeletedAt',1),(21,'2015_08_13_214123_AlterTableMetricsAddDecimalPlacesColumn',1),(22,'2015_10_31_211944_CreateInvitesTable',1),(23,'2015_11_03_211049_AlterTableComponentsAddEnabledColumn',1),(24,'2015_12_26_162258_AlterTableMetricsAddDefaultViewColumn',1),(25,'2016_01_09_141852_CreateSubscriptionsTable',1),(26,'2016_01_29_154937_AlterTableComponentGroupsAddCollapsedColumn',1),(27,'2016_02_18_085210_AlterTableMetricPointsChangeValueColumn',1),(28,'2016_03_01_174858_AlterTableMetricPointsAddCounterColumn',1),(29,'2016_03_08_125729_CreateIncidentUpdatesTable',1),(30,'2016_03_10_144613_AlterTableComponentGroupsMakeColumnInteger',1),(31,'2016_04_05_142933_create_sessions_table',1),(32,'2016_04_29_061916_AlterTableSubscribersAddGlobalColumn',1),(33,'2016_06_02_075012_AlterTableMetricsAddOrderColumn',1),(34,'2016_06_05_091615_create_cache_table',1),(35,'2016_07_25_052444_AlterTableComponentGroupsAddVisibleColumn',1),(36,'2016_08_23_114610_AlterTableUsersAddWelcomedColumn',1),(37,'2016_09_04_100000_AlterTableIncidentsAddStickiedColumn',1),(38,'2016_10_24_183415_AlterTableIncidentsAddOccurredAtColumn',1),(39,'2016_10_30_174400_CreateSchedulesTable',1),(40,'2016_10_30_174410_CreateScheduleComponentsTable',1),(41,'2016_10_30_182324_AlterTableIncidentsRemoveScheduledColumns',1),(42,'2016_12_04_163502_AlterTableMetricsAddVisibleColumn',1),(43,'2016_12_05_185045_AlterTableComponentsAddMetaColumn',1),(44,'2016_12_29_124643_AlterTableSubscribersAddPhoneNumberSlackColumns',1),(45,'2016_12_29_155956_AlterTableComponentsMakeLinkNullable',1),(46,'2017_01_03_143916_create_notifications_table',1),(47,'2017_02_03_222218_CreateActionsTable',1),(48,'2017_06_13_181049_CreateMetaTable',1),(49,'2017_07_18_214718_CreateIncidentComponents',1),(50,'2017_09_14_180434_AlterIncidentsAddUserId',1),(51,'2018_04_02_163328_CreateTaggablesTable',1),(52,'2018_04_02_163658_MigrateComponentTagTable',1),(53,'2018_06_14_201440_AlterSchedulesSoftDeletes',1),(54,'2018_06_17_182507_AlterIncidentsAddNotifications',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notifications` -- DROP TABLE IF EXISTS `notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `notifications` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `notifiable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `notifiable_id` bigint(20) unsigned NOT NULL, `data` text COLLATE utf8mb4_unicode_ci NOT NULL, `read_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notifications` -- LOCK TABLES `notifications` WRITE; /*!40000 ALTER TABLE `notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `schedule_components` -- DROP TABLE IF EXISTS `schedule_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `schedule_components` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `schedule_id` int(10) unsigned NOT NULL, `component_id` int(10) unsigned NOT NULL, `component_status` tinyint(3) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `schedule_components` -- LOCK TABLES `schedule_components` WRITE; /*!40000 ALTER TABLE `schedule_components` DISABLE KEYS */; /*!40000 ALTER TABLE `schedule_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `schedules` -- DROP TABLE IF EXISTS `schedules`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `schedules` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(3) unsigned NOT NULL DEFAULT 0, `scheduled_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `schedules` -- LOCK TABLES `schedules` WRITE; /*!40000 ALTER TABLE `schedules` DISABLE KEYS */; /*!40000 ALTER TABLE `schedules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `sessions` ( `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, `last_activity` int(11) NOT NULL, UNIQUE KEY `sessions_id_unique` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `settings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscribers` -- DROP TABLE IF EXISTS `subscribers`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `subscribers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `verify_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slack_webhook_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `verified_at` timestamp NULL DEFAULT NULL, `global` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `subscribers_email_unique` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscribers` -- LOCK TABLES `subscribers` WRITE; /*!40000 ALTER TABLE `subscribers` DISABLE KEYS */; /*!40000 ALTER TABLE `subscribers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscriptions` -- DROP TABLE IF EXISTS `subscriptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `subscriptions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `subscriber_id` int(10) unsigned NOT NULL, `component_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `subscriptions_subscriber_id_index` (`subscriber_id`), KEY `subscriptions_component_id_index` (`component_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscriptions` -- LOCK TABLES `subscriptions` WRITE; /*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */; /*!40000 ALTER TABLE `subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taggables` -- DROP TABLE IF EXISTS `taggables`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `taggables` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `tag_id` int(10) unsigned NOT NULL, `taggable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `taggable_id` bigint(20) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `taggables_taggable_type_taggable_id_index` (`taggable_type`,`taggable_id`), KEY `taggables_tag_id_index` (`tag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taggables` -- LOCK TABLES `taggables` WRITE; /*!40000 ALTER TABLE `taggables` DISABLE KEYS */; /*!40000 ALTER TABLE `taggables` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `tags` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tags_name_slug_unique` (`name`,`slug`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `google_2fa_secret` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `api_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `active` tinyint(1) NOT NULL DEFAULT 1, `level` tinyint(4) NOT NULL DEFAULT 2, `welcomed` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_username_unique` (`username`), UNIQUE KEY `users_api_key_unique` (`api_key`), UNIQUE KEY `users_email_unique` (`email`), KEY `users_remember_token_index` (`remember_token`), KEY `users_active_index` (`active`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'cachet' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2019-07-13 20:06:28 -- ACTUAL USER INPUTTED VALUES INSERT INTO cachet.component_groups (name,`order`,visible,collapsed,created_at,updated_at) VALUES ('API',0,1,0,'2019-06-30 17:21:15.000','2019-06-30 17:21:15.000') ,('Other own services',0,1,0,'2019-06-30 17:21:32.000','2019-06-30 17:22:03.000') ,('Cloud services',0,1,0,'2019-06-30 17:22:18.000','2019-06-30 17:22:18.000') ; INSERT INTO cachet.components (name,description,link,status,`order`,group_id,enabled,meta,created_at,updated_at,deleted_at) VALUES ('Core','The API providing members login and membership (in the future, only the membership)','',1,0,1,1,NULL,'2019-06-30 17:23:15.000','2019-06-30 17:23:15.000',NULL) ,('Events','The API providing members with events','',1,0,1,1,NULL,'2019-06-30 17:23:39.000','2019-06-30 17:23:39.000',NULL) ,('Statutory','The API providing members with the statutory events to apply to. In future, also voting','',1,0,1,1,NULL,'2019-06-30 17:24:16.000','2019-06-30 17:24:16.000',NULL) ,('Auth0','In the future, we will login through that','https://status.auth0.com/',0,0,3,1,NULL,'2019-06-30 17:24:34.000','2019-06-30 17:25:02.000',NULL) ,('Discounts','The API providing members with the discount codes coming from our partnerships','https://my.aegee.eu/discounts',1,0,1,1,NULL,'2019-06-30 17:26:21.000','2019-06-30 17:26:21.000',NULL) ,('Gsuite-wrapper','The API that link our system with Gsuite API','',1,0,1,1,NULL,'2019-06-30 17:27:01.000','2019-06-30 17:27:01.000',NULL) ,('Wiki','Our self-hosted knowledge management','https://wiki.aegee.eu',4,0,2,1,NULL,'2019-06-30 17:28:00.000','2019-06-30 17:29:29.000',NULL) ,('Website','The website of the organisation','https://www.aegee.eu',1,0,2,1,NULL,'2019-06-30 17:28:42.000','2019-06-30 17:28:42.000',NULL) ,('Forum','Where discussions happen','https://forum.aegee.eu',4,0,2,1,NULL,'2019-06-30 17:29:21.000','2019-06-30 17:33:39.000',NULL) ,('Survey','Where members make surveys for impact management or anything','https://survey.aegee.eu',4,0,2,1,NULL,'2019-06-30 17:30:06.000','2019-06-30 17:33:30.000',NULL) ; INSERT INTO cachet.components (name,description,link,status,`order`,group_id,enabled,meta,created_at,updated_at,deleted_at) VALUES ('Gsuite','The Gsuite API and services','https://www.google.com/appsstatus',1,0,3,1,NULL,'2019-06-30 17:31:21.000','2019-06-30 17:31:21.000',NULL) ,('Podio','We use it for too many things','https://status.podio.com/',1,0,3,1,NULL,'2019-06-30 17:32:01.000','2019-06-30 17:32:01.000',NULL) ,('Helpdesk','Where AEGEEans can ask their questions for support','https://status.atlassian.com/',1,0,3,1,NULL,'2019-06-30 17:33:04.000','2019-06-30 17:33:04.000',NULL) ,('Website','The AEGEE website','',4,0,2,1,NULL,'2019-06-30 17:24:16.000','2019-06-30 17:24:16.000',NULL) ,('MyAEGEE','The AEGEE members intranet service','',4,0,2,1,NULL,'2019-06-30 17:24:16.000','2019-06-30 17:24:16.000',NULL) ; INSERT INTO cachet.settings (name,value,created_at,updated_at) VALUES ('app_name','AEGEE Statuspage','2019-06-20 10:02:45.000','2019-06-21 11:50:52.000') ,('app_domain','https://status.monitor.barnab.eu','2019-06-20 10:02:45.000','2019-06-20 14:08:20.000') ,('app_timezone','UTC','2019-06-20 10:02:45.000','2019-06-21 13:36:52.000') ,('app_locale','en','2019-06-20 10:02:45.000','2019-06-20 10:02:45.000') ,('app_incident_days','3','2019-06-20 10:02:45.000','2019-06-20 10:08:20.000') ,('app_refresh_rate','60','2019-06-20 10:02:45.000','2019-06-21 11:50:53.000') ,('app_banner_type','image/png','2019-06-20 10:03:22.000','2019-06-21 13:25:53.000') ,('style_background_color','#f0f3f4','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_text_color','#333333','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_banner_background_color','','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ; INSERT INTO cachet.settings (name,value,created_at,updated_at) VALUES ('style_banner_padding','40px 0','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_fullwidth_header','0','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_reds','#ff6f6f','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_blues','#3498db','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_greens','#7ed321','2019-06-20 10:03:22.000','2019-06-20 10:03:22.000') ,('style_yellows','#f7ca18','2019-06-20 10:03:23.000','2019-06-20 10:03:23.000') ,('style_oranges','#ff8800','2019-06-20 10:03:23.000','2019-06-20 10:03:23.000') ,('style_metrics','#0dccc0','2019-06-20 10:03:23.000','2019-06-20 10:03:23.000') ,('style_links','#7ed321','2019-06-20 10:03:23.000','2019-06-20 10:03:23.000') ,('style_background_fills','#ffffff','2019-06-20 10:03:23.000','2019-06-20 10:03:23.000') ; INSERT INTO cachet.settings (name,value,created_at,updated_at) VALUES ('dashboard_login_link','1','2019-06-20 10:03:23.000','2019-06-20 10:03:23.000') ,('app_about','This page provides status information on the services that are part of **AEGEE-Europe**''s infrastructure.','2019-06-20 10:08:20.000','2019-06-21 12:09:29.000') ,('major_outage_rate','50','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('enable_subscribers','1','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('suppress_notifications_in_maintenance','1','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('skip_subscriber_verification','0','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('display_graphs','0','2019-06-20 10:08:20.000','2019-06-21 14:53:58.000') ,('show_support','0','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('enable_external_dependencies','1','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('show_timezone','1','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ; INSERT INTO cachet.settings (name,value,created_at,updated_at) VALUES ('only_disrupted_days','1','2019-06-20 10:08:20.000','2019-06-20 10:08:20.000') ,('always_authenticate','0','2019-06-20 13:53:34.000','2019-06-20 13:53:39.000') ,('allowed_domains','','2019-06-20 13:53:34.000','2019-06-20 13:53:34.000') ,('stylesheet','.banner-image { margin: 0 auto; height: 100px; } body.status-page .app-banner { margin-bottom: 0px; } body.tooltip { background: #fff; border: 1px dashed #999 }','2019-06-21 13:30:39.000','2019-06-28 07:49:58.000') ,('date_format','l jS F Y','2019-06-21 13:36:52.000','2019-06-21 13:36:52.000') ,('incident_date_format','l jS F Y H:i:s','2019-06-21 13:36:52.000','2019-06-21 13:36:52.000') ,('automatic_localization','0','2019-06-21 13:36:52.000','2019-06-21 13:36:52.000') ,('app_banner','<KEY>','2019-06-30 17:20:54.000','2019-06-30 17:20:54.000') ; INSERT INTO cachet.users (username,password,remember_token,google_2fa_secret,email,api_key,active,`level`,welcomed,created_at,updated_at) VALUES ('admin','$2y$10$/QBzoteG7cjYR4./LQCPeOzusOtJsthU7NXgfEKep6o..x1DGyS5i',NULL,NULL,'<EMAIL>','YiamoGVeQBI8xcNpG5FO',1,1,0,'2019-07-13 18:22:17.000','2019-07-13 18:22:17.000') ;
<gh_stars>0 CREATE TABLE "FINANCE"."HFD"."AMORTIZATION" ( "HFDID" VARCHAR, "PATIENTID" VARCHAR, "DOCDONYM" VARCHAR, "DUEDATE" VARCHAR, "PRINCIPALAMOUNT" VARCHAR, "INTEREST" VARCHAR, "TOTALPAYMENTAMOUNT" VARCHAR, "_ETL_FILENAME" VARCHAR, "_SF_INSERTEDDATETIME" DATETIME );
<reponame>eanderson-ei/nv-admin<gh_stars>0 INSERT INTO scoring_curves_v100 ( attr_value, b_sage_cover, b_shrub_cover, b_forb_cover_arid, b_forb_cover_mesic, b_forb_rich_arid, b_forb_rich_mesic, s_forb_cover_arid, s_forb_cover_mesic, s_forb_cover_meadow, s_forb_rich_arid, s_forb_rich_mesic, s_grass_cover_arid, s_grass_cover_mesic, s_grass_cover_meadow, w_sage_height_big, w_sage_height_low, w_sage_cover_big, w_sage_cover_low, brotec_cover, s_dist_sage_altered, s_dist_sage_unaltered) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
ALTER TABLE dialogs ADD COLUMN owner_last_received_at timestamp, ADD COLUMN owner_last_read_at timestamp; UPDATE dialogs SET owner_last_received_at = last_received_at; UPDATE dialogs SET owner_last_read_at = last_read_at; ALTER TABLE dialogs ALTER COLUMN owner_last_received_at SET NOT NULL, ALTER COLUMN owner_last_read_at SET NOT NULL;
DROP TABLE IF EXISTS project_type; DROP TABLE IF EXISTS project_nfa; DROP TABLE IF EXISTS project_stakeholder; DROP TABLE IF EXISTS stakeholder_factor; DROP TABLE IF EXISTS stakeholder; DROP TABLE IF EXISTS nfa_project; DROP TABLE IF EXISTS metric_nfa; DROP TABLE IF EXISTS type; DROP TABLE IF EXISTS new_nfa; DROP TABLE IF EXISTS nfa; DROP TABLE IF EXISTS criteria_metric; DROP TABLE IF EXISTS metric; DROP TABLE IF EXISTS factor_criteria; DROP TABLE IF EXISTS nfa_factor; DROP TABLE IF EXISTS nfa_criteria; CREATE TABLE public.nfa_project ( ID serial PRIMARY KEY, NFA_PROJECT_NUMBER character varying(40), CUSTOMER_NAME character varying(40), CONTACT_PERS_CUSTOMER character varying(40), CONTACT_PERS_MSG character varying(40), BRANCH character varying(40), DEVELOPMENT_PROCESS character varying(40), PROJECT_PHASE character varying(40), PROJECT_STATUS character varying(40) ); INSERT INTO nfa_project VALUES (1,'1234','ArbeitAgentur','Tom','Alex','Public Sector','Agile','None','On Process'); INSERT INTO nfa_project VALUES (2,'1234','XYZ','Bob','Alex','Public Sector','Classic','Specification Sheet','Archived'); INSERT INTO nfa_project VALUES (3,'1234','ABC','John','Alex','Public Sector','Agile','None','On Process'); INSERT INTO nfa_project VALUES (4,'1234','ASDF','Andre','Alex','Public Sector','Classic','Requirements Specification','Archived'); CREATE TABLE public.new_nfa ( nfa_id serial NOT NULL, factor varchar(45) NOT NULL, criteria varchar(45) NOT NULL, metric varchar(100) DEFAULT NULL, nfa_type varchar(100) DEFAULT NULL, PRIMARY KEY (nfa_id) ); INSERT INTO new_nfa VALUES (1,'any factor','any criteria','any metric','any nfatype'); CREATE TABLE public.stakeholder ( stakeholder_id bigserial NOT NULL, stakeholder_name varchar(45) NOT NULL, PRIMARY KEY (stakeholder_id) ); CREATE TABLE public.project_stakeholder ( project_id bigint NOT NULL, stakeholder_id bigint NOT NULL, CONSTRAINT project_fk FOREIGN KEY (project_id) REFERENCES public.nfa_project (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT stakeholder_fk FOREIGN KEY (stakeholder_id) REFERENCES public.stakeholder (stakeholder_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION ); CREATE TABLE public.type ( id bigserial NOT NULL, name character varying(100), PRIMARY KEY (id) ); INSERT INTO public.type VALUES (1,'Communication Project'); INSERT INTO public.type VALUES (2,'Data Exchange Project'); CREATE TABLE public.project_type ( project_id bigint NOT NULL, type_id bigint NOT NULL, CONSTRAINT project_fk FOREIGN KEY (project_id) REFERENCES public.nfa_project (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT type_fk FOREIGN KEY (type_id) REFERENCES public.type (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION ); INSERT INTO public.project_type VALUES (1,1); INSERT INTO public.project_type VALUES (1,2); INSERT INTO public.project_type VALUES (2,2); INSERT INTO public.project_type VALUES (3,1); INSERT INTO public.project_type VALUES (4,2); -------------------------------------------------------------- /* NFA CATALOG STUFF */ -------------------------------------------------------------- CREATE TABLE public.nfa_factor ( factor_id serial PRIMARY KEY, factor varchar(45) NOT NULL ); CREATE TABLE public.nfa_criteria ( criteria_id serial PRIMARY KEY, criteria_num int NOT NULL, criteria varchar(80) NOT NULL ); CREATE TABLE public.factor_criteria ( factor_id bigint NOT NULL, criteria_id bigint NOT NULL, CONSTRAINT factor_fk FOREIGN KEY (factor_id) REFERENCES public.nfa_factor (factor_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT criteria_fk FOREIGN KEY (criteria_id) REFERENCES public.nfa_criteria (criteria_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, PRIMARY KEY(factor_id, criteria_id) ); -- 1 Effektivität INSERT INTO nfa_factor VALUES (1,'Effektivität'); INSERT INTO nfa_criteria VALUES (43,1, 'Effektivität'); INSERT INTO public.factor_criteria VALUES (1,43); -- 2 Effizienz INSERT INTO nfa_factor VALUES (2,'Effizienz'); INSERT INTO nfa_criteria VALUES (44,1, 'Effizienz'); INSERT INTO public.factor_criteria VALUES (2,44); -- 3 Zufriedenheit INSERT INTO nfa_factor VALUES (3,'Zufriedenheit'); INSERT INTO nfa_criteria VALUES (1,1, 'Zufriedenheit'); INSERT INTO nfa_criteria VALUES (2,2, 'Nützlichkeit'); INSERT INTO nfa_criteria VALUES (3,3, 'Vertrauen'); INSERT INTO nfa_criteria VALUES (4,4, 'Freude im Umgang mit dem Systems'); INSERT INTO nfa_criteria VALUES (5,5, 'Komfort'); INSERT INTO public.factor_criteria VALUES (3,1); INSERT INTO public.factor_criteria VALUES (3,2); INSERT INTO public.factor_criteria VALUES (3,3); INSERT INTO public.factor_criteria VALUES (3,4); INSERT INTO public.factor_criteria VALUES (3,5); -- 4 Risikofreiheit INSERT INTO nfa_factor VALUES (4,'Risikofreiheit'); INSERT INTO nfa_criteria VALUES (6, 1, 'Verringerung der ökonomischen Risiken'); INSERT INTO nfa_criteria VALUES (7, 2, 'Verringerung der Risiken hinsichtlich Gesundheit und Sicherheit'); INSERT INTO nfa_criteria VALUES (8, 3, 'Verringerung der Umweltrisiken'); INSERT INTO public.factor_criteria VALUES (4,6); INSERT INTO public.factor_criteria VALUES (4,7); INSERT INTO public.factor_criteria VALUES (4,8); -- 5 Umgebungsabdeckung INSERT INTO nfa_factor VALUES (5,'Umgebungsabdeckung'); INSERT INTO nfa_criteria VALUES (9 ,1, 'Komplette Abdeckung aller Umgebungsanforderungen'); INSERT INTO nfa_criteria VALUES (10,2, 'Flexibilität'); INSERT INTO public.factor_criteria VALUES (5, 9); INSERT INTO public.factor_criteria VALUES (5, 10); -- 6 Funktionale Eignung INSERT INTO nfa_factor VALUES (6,'Funktionale Eignung'); INSERT INTO nfa_criteria VALUES (11, 1, 'Funktionale Vollständigkeit'); INSERT INTO nfa_criteria VALUES (12, 2, 'Funktionale Korrektheit'); INSERT INTO nfa_criteria VALUES (13, 3, 'Funktionale Angemessenheit'); INSERT INTO public.factor_criteria VALUES (6, 11); INSERT INTO public.factor_criteria VALUES (6, 12); INSERT INTO public.factor_criteria VALUES (6, 13); -- 7 Leistungseffizienz INSERT INTO nfa_factor VALUES (7,'Leistungseffizienz'); INSERT INTO nfa_criteria VALUES (14 , 1, 'Zeitverhalten'); INSERT INTO nfa_criteria VALUES (15 , 2, 'Ressourcennutzung'); INSERT INTO nfa_criteria VALUES (16 , 3, 'Kapazität'); INSERT INTO public.factor_criteria VALUES (7, 14); INSERT INTO public.factor_criteria VALUES (7, 15); INSERT INTO public.factor_criteria VALUES (7, 16); -- 8 Kompatibilität INSERT INTO nfa_factor VALUES (8,'Kompatibilität'); INSERT INTO nfa_criteria VALUES (17, 1, 'Koexistenz'); INSERT INTO nfa_criteria VALUES (18, 2, 'Interoperabilität'); INSERT INTO public.factor_criteria VALUES (8, 17); INSERT INTO public.factor_criteria VALUES (8, 18); -- 9 Usability INSERT INTO nfa_factor VALUES (9,'Usability'); INSERT INTO nfa_criteria VALUES (19, 1, 'Erkennbarkeit der Eignung'); INSERT INTO nfa_criteria VALUES (20, 2, 'Lernfähigkeit'); INSERT INTO nfa_criteria VALUES (21, 3, 'Bedienbarkeit'); INSERT INTO nfa_criteria VALUES (22, 4, 'Schutz der Nutzer, Fehler zu begehen'); INSERT INTO nfa_criteria VALUES (23, 5, 'Ästhetik des User-Interfaces'); INSERT INTO nfa_criteria VALUES (24, 6, 'Erreichbarkeit'); INSERT INTO public.factor_criteria VALUES (9, 19); INSERT INTO public.factor_criteria VALUES (9, 20); INSERT INTO public.factor_criteria VALUES (9, 21); INSERT INTO public.factor_criteria VALUES (9, 22); INSERT INTO public.factor_criteria VALUES (9, 23); INSERT INTO public.factor_criteria VALUES (9, 24); -- 10 Zuverlässigkeit INSERT INTO nfa_factor VALUES (10,'Zuverlässigkeit'); INSERT INTO nfa_criteria VALUES (25, 1, 'Reife'); INSERT INTO nfa_criteria VALUES (26, 2, 'Verfügbarkeit'); INSERT INTO nfa_criteria VALUES (27, 3, 'Fehlertoleranz'); INSERT INTO nfa_criteria VALUES (28, 4, 'Wiederherstellbarkeit'); INSERT INTO public.factor_criteria VALUES (10, 25); INSERT INTO public.factor_criteria VALUES (10, 26); INSERT INTO public.factor_criteria VALUES (10, 27); INSERT INTO public.factor_criteria VALUES (10, 28); -- 11 Sicherheit INSERT INTO nfa_factor VALUES (11,'Sicherheit'); INSERT INTO nfa_criteria VALUES (29, 1, 'Vertraulichkeit'); INSERT INTO nfa_criteria VALUES (30, 2, 'Integrität'); INSERT INTO nfa_criteria VALUES (31, 3, 'Nicht-Ablehnung'); INSERT INTO nfa_criteria VALUES (32, 4, 'Rechenschaft'); INSERT INTO nfa_criteria VALUES (33, 5, 'Authentizität'); INSERT INTO public.factor_criteria VALUES (11, 29); INSERT INTO public.factor_criteria VALUES (11, 30); INSERT INTO public.factor_criteria VALUES (11, 31); INSERT INTO public.factor_criteria VALUES (11, 32); INSERT INTO public.factor_criteria VALUES (11, 33); -- 12 Wartbarkeit INSERT INTO nfa_factor VALUES (12,'Wartbarkeit'); INSERT INTO nfa_criteria VALUES (34, 1, 'Modularität'); INSERT INTO nfa_criteria VALUES (35, 2, 'Wiederverwendbarkeit'); INSERT INTO nfa_criteria VALUES (36, 3, 'Analysierbarkeit'); INSERT INTO nfa_criteria VALUES (37, 4, 'Modifizierbarkeit'); INSERT INTO nfa_criteria VALUES (38, 5, 'Stabilität'); INSERT INTO nfa_criteria VALUES (39, 6, 'Testbarkeit'); INSERT INTO public.factor_criteria VALUES (12, 34); INSERT INTO public.factor_criteria VALUES (12, 35); INSERT INTO public.factor_criteria VALUES (12, 36); INSERT INTO public.factor_criteria VALUES (12, 37); INSERT INTO public.factor_criteria VALUES (12, 38); INSERT INTO public.factor_criteria VALUES (12, 39); -- 13 Übertragbarkeit INSERT INTO nfa_factor VALUES (13,'Übertragbarkeit'); INSERT INTO nfa_criteria VALUES (40, 1, 'Anpassbarkeit'); INSERT INTO nfa_criteria VALUES (41, 2, 'Installierbarkeit'); INSERT INTO nfa_criteria VALUES (42, 3, 'Ersetzbarkeit'); INSERT INTO public.factor_criteria VALUES (13, 40); INSERT INTO public.factor_criteria VALUES (13, 41); INSERT INTO public.factor_criteria VALUES (13, 42); CREATE TABLE public.metric ( ID serial PRIMARY KEY, METRIC_NUMBER int NOT NULL, BEZEICHNUNG character varying(100), FORMEL character varying(500), INTERPRETATION character varying(500), ERKLAERUNG_MESSGROESSE character varying(500) ); INSERT INTO metric VALUES (1,1,'Effektivität der Arbeit','{X = 1-ΣAi | X≥0}; Ai = Anteiliger Wert von jedem fehlenden oder fehlerhaften Ziel am Ende der Arbeit (maximaler Wert = 1)','{X | 0 ≤ X ≤ 1}; Je näher der Wert an "0" ist, desto besser.','Wie genau das spezifizierte Ziel erreicht ist. Hierbei wird die Anzahl der exakt vollendeten Aufgaben mit Gesamtanzahl aller Aufgaben verglichen.'); INSERT INTO metric VALUES (2,2,'Fehler bei der Arbeit','X = A; A = Anzahl der Fehler','{X | 0 < X}; Je kleiner der Wert ist, desto besser.','Wie hoch die Anzahl der Fehler ist. Hierbei wird die Anzahl der Fehler gemessen.'); INSERT INTO metric VALUES (3,3,'Fehlerhafte Arbeit','X = A/B; A = Anzahl der fehlerhaften Aufgaben; B = Gesamtzahl an Aufgaben','{X | 0 ≤ X ≤ 1}; Je näher der Wert an "0" ist, desto besser.','Bei wie vielen Aufgaben Fehler gemacht wurden. Hierbei wird die Anzahl der fehlerhaften Aufgaben mit der Gesamtzahl aller Aufgaben verglichen'); INSERT INTO metric VALUES (4,4,'Fehlerintensität','X = A/B; A = Anzahl der Nutzer, die einen Fehler gemacht haben; B = Gesamtzahl der Nutzer, die eine Aufgabe durchführen','{X | 0 ≤ X ≤ 1}; Je näher der Wert an "0" ist, desto besser.','Wie viele Nutzer einen Fehler gemacht haben. Hierbei wird die Anzahl der Nutzer, die einen Fehler gemacht haben, mit der Gesamtzahl der Nutzer, die eine Aufgabe durchführen, verglichen.'); -- 4 Risikofreiheit INSERT INTO metric VALUES (5,1,'Einnahmen durch den einzelnen Kunden','X = A; A = Einnahmen durch den einzelnen Kunden','{X | 0 ≤ X < ∞}; Je größer der Wert ist, desto besser.','Wie hoch die Einnahmen durch den einzelnen Kunden sind. Hierbei werden die Einnahmen jedes einzelnen Kunden gemessen, wobei anhand von verschiedenen Kundenmerkmalen Möglichkeiten zur Systemevaluierung für bestimmte Nutzergruppen abgeleitet werden können.'); INSERT INTO metric VALUES (6,1,'Häufigkeit an krankheitsbedingten Ausfällen der Nutzer','X = A/B; A = Anzahl der Nutzer, die von gesundheitlichen Beschwerden auf Grund der Nutzung berichten; B = Gesamtzahl aller Nutzer','{X | 0 ≤ X ≤ 1}; Je näher der Wert an "0" ist, desto besser.','Wie groß der Anteil an Nutzern eines Produkts oder Systems ist, die von gesundheitlichen Beschwerden auf Grund der Nutzung berichten. Hierbei wird die Anzahl an Nutzern, die von gesundheitlichen Beschwerden auf Grund der Nutzung berichten, mit der Gesamtzahl aller Nutzer verglichen, wobei die Berechnung anhand der Nutzungsdauer gewichtet werden kann.'); INSERT INTO metric VALUES (7,2,'Auswirkung auf Gesundheit und Sicherheit für den Nutzer','n = Anzahl der betroffenen Nutzer; Tai = Dauer, für die der ite Nutzer betroffen ist; Si = Grad der Auswirkung für den iten Nutzer; Länge der Zeit von Beginn der Systemnutzung an','{X | 0 ≤ X}; Je kleiner der Wert ist, desto besser.','Wie groß die Auswirkung auf Gesundheit und Sicherheit der Nutzer eines Produkts oder Systems ist. Hierbei wird die Summe aus den mulitplizierten Faktoren Länge und Grad der Auswirkung mit der Länge der Zeit von Beginn der Systemnutzung an verglichen.'); INSERT INTO metric VALUES (8,3,'Anteil der Sicherheitsgefährdungen','X = A/B; A = Anzahl der Nutzer, die gefährdet wurden; B = Gesamtzahl der Nutzer, die gefährdet werden könnten','{X | 0 ≤ X ≤ 1}; Je näher der Wert an "0" ist, desto besser.','Wie groß die Sicherheitsrisiken für die Nutzer des Systems gemessen an der Gesamtzahl der potentiell gefährdeten Nutzer sind. Hierbei wird die Anzahl der Nutzer, die gefährdet wurden, mit der Gesamtzahl der Nutzer, die gefährdet werden könnten, verglichen.'); CREATE TABLE public.criteria_metric ( criteria_id bigint NOT NULL, metric_id bigint NOT NULL, CONSTRAINT criteria_fk FOREIGN KEY (criteria_id) REFERENCES public.nfa_criteria (criteria_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT metric_fk FOREIGN KEY (metric_id) REFERENCES public.metric (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, PRIMARY KEY( criteria_id, metric_id) ); INSERT INTO public.criteria_metric VALUES (43, 1); INSERT INTO public.criteria_metric VALUES (43, 2); INSERT INTO public.criteria_metric VALUES (43, 3); INSERT INTO public.criteria_metric VALUES (43, 4); INSERT INTO public.criteria_metric VALUES (6, 5); INSERT INTO public.criteria_metric VALUES (7, 6); INSERT INTO public.criteria_metric VALUES (7, 7); INSERT INTO public.criteria_metric VALUES (7, 8); CREATE TABLE public.nfa ( nfa_id serial PRIMARY KEY, NFA_NUMBER int NOT NULL, NFA_TYPE character varying(40), RECHTLICHE_VERBINDLICHKEIT character varying(40), WERT character varying(200), FORMULIERUNG character varying(40), REFERENZ character varying(40), REFERENZIERTE_PROJEKTE character varying(40), KRITIKALITAET character varying(40), DOKUMENT character varying(40), BLUEPRINT character varying(500)); INSERT INTO nfa VALUES (2,1,'Type:1','Verbindlichkeit:1','12.22','Formulierung:1','JUAC','CbCR','kritikalitaet', 'document1', '{"de":{"bezeichnung":"Qualität der Arbeit","erklaerung":"Das System muss dem bzw. der Anwender_in dabei unterstützen, ihre bzw. seine Aufgaben mit hoher Qualität, Genauigkeit und Effizienz zu erledigen."}, "en":{"bezeichnung":null,"erklaerung":null}}'); INSERT INTO nfa VALUES (3,1,'Type:1','Verbindlichkeit:1','12.22','Formulierung:1','','','kritikalitaet', 'document1', '{"de":{"bezeichnung":"Fehleranteil","erklaerung":"Die Anzahl der Fehler darf nicht höher sein als 0,1% aller durchgeführten Operationen eines bzw. einer Anwender_in im System."}, "en":{"bezeichnung":null,"erklaerung":null}}'); INSERT INTO nfa VALUES (4,1,'Type:1','Verbindlichkeit:1','12.22','Formulierung:1','referenz:1','referenzierte_projekt:1','kritikalitaet', 'document1', '{"de":{"bezeichnung":"Entstehende Fehler","erklaerung":"Bei der Bearbeitung von Aufgaben mit dem System sollen möglichst keine Fehler entstehen."}, "en":{"bezeichnung":null,"erklaerung":null}}'); INSERT INTO nfa VALUES (5,1,'Type:1','Verbindlichkeit:1','12.22','Formulierung:1','referenz:1','referenzierte_projekt:1','kritikalitaet', 'document1', '{"de":{"bezeichnung":"Fehlerfreie Bedienung","erklaerung":"Der bzw. die Anwender_in muss das System möglichst fehlerfrei bedienen können."}, "en":{"bezeichnung":null,"erklaerung":null}}'); CREATE TABLE public.metric_nfa ( metric_id bigint NOT NULL, nfa_id bigint NOT NULL, CONSTRAINT metrik_fk FOREIGN KEY (metric_id) REFERENCES public.metric (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT nfa_fk FOREIGN KEY (nfa_id) REFERENCES public.nfa (nfa_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, PRIMARY KEY( metric_id, nfa_id) ); INSERT INTO public.metric_nfa VALUES (1, 2); INSERT INTO public.metric_nfa VALUES (2, 3); INSERT INTO public.metric_nfa VALUES (3, 4); INSERT INTO public.metric_nfa VALUES (4, 5); CREATE TABLE public.project_nfa ( project_id bigint NOT NULL, nfa_id bigint NOT NULL, CONSTRAINT project_fk FOREIGN KEY (project_id) REFERENCES public.nfa_project (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT nfa_fk FOREIGN KEY (nfa_id) REFERENCES public.nfa (nfa_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, PRIMARY KEY( project_id, nfa_id) ); INSERT INTO public.project_nfa VALUES (1, 2); INSERT INTO public.project_nfa VALUES (2, 3); INSERT INTO public.project_nfa VALUES (3, 4); INSERT INTO public.project_nfa VALUES (4, 5); CREATE TABLE public.stakeholder_factor ( stakeholder_id bigint NOT NULL, factor_id bigint NOT NULL, CONSTRAINT stakeholder_fk FOREIGN KEY (stakeholder_id) REFERENCES public.stakeholder (stakeholder_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION, CONSTRAINT factor_fk FOREIGN KEY (factor_id) REFERENCES public.nfa_factor (factor_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION );
<filename>star-tiger-framework-admin/database/sql/ddl/sys_dept.sql drop table if exists sys_dept; create table sys_dept ( dept_flow varchar(32) not null comment '部门流水号', org_flow varchar(32) not null comment '机构流水号', dept_code varchar(50) comment '部门代码', dept_name varchar(500) comment '部门名称', record_status varchar(2) default 'Y' comment '记录状态', primary key (dept_flow) );
USE `es_extended`; INSERT INTO `items` (`name`, `label`, `weight`) VALUES ('bread', 'Chleba', 1), ('water', 'Voda', 1) ;
-- Table structure for VERSION CREATE TABLE IF NOT EXISTS `VERSION` ( `VER_ID` BIGINT NOT NULL, `SCHEMA_VERSION` VARCHAR(127) NOT NULL, `VERSION_COMMENT` VARCHAR(255), PRIMARY KEY (`VER_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO VERSION (VER_ID, SCHEMA_VERSION, VERSION_COMMENT) VALUES (1, '', 'Initial value');
UPDATE alipay_gzentity SET <#if alipayGzentity.templateName ?exists && alipayGzentity.templateName ?length gt 0> template_name = :alipayGzentity.templateName, </#if> <#if alipayGzentity.templateId ?exists && alipayGzentity.templateId ?length gt 0> template_id = :alipayGzentity.templateId, </#if> <#if alipayGzentity.templateType ?exists && alipayGzentity.templateType ?length gt 0> template_type = :alipayGzentity.templateType, </#if> <#if alipayGzentity.isWork ?exists && alipayGzentity.isWork ?length gt 0> is_work = :alipayGzentity.isWork, </#if> <#if alipayGzentity.accountid ?exists && alipayGzentity.accountid ?length gt 0> accountid = :alipayGzentity.accountid, </#if> <#if alipayGzentity.createName ?exists && alipayGzentity.createName ?length gt 0> create_name = :alipayGzentity.createName, </#if> <#if alipayGzentity.createBy ?exists && alipayGzentity.createBy ?length gt 0> create_by = :alipayGzentity.createBy, </#if> <#if alipayGzentity.createDate ?exists> create_date = :alipayGzentity.createDate, </#if> <#if alipayGzentity.updateName ?exists && alipayGzentity.updateName ?length gt 0> update_name = :alipayGzentity.updateName, </#if> <#if alipayGzentity.updateBy ?exists && alipayGzentity.updateBy ?length gt 0> update_by = :alipayGzentity.updateBy, </#if> <#if alipayGzentity.updateDate ?exists> update_date = :alipayGzentity.updateDate, </#if> WHERE id = :alipayGzentity.id
select id, count(*) num from ( (select requester_id id from request_accepted) union all (select accepter_id id from request_accepted) ) as A group by id order by num desc limit 1;
<filename>migrations/4_add_email_to_users_table.sql<gh_stars>1-10 -- +migrate Up ALTER TABLE users ADD COLUMN email VARCHAR(128) DEFAULT "" AFTER id; -- +migrate Down ALTER TABLE users DROP COLUMN email;
<reponame>echo-xiaozhi/bmxt -- MySQL dump 10.13 Distrib 5.5.46, for Linux (x86_64) -- -- Host: localhost Database: b1bdb -- ------------------------------------------------------ -- Server version 5.5.46 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `bm_add_field` -- DROP TABLE IF EXISTS `bm_add_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_add_field` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `field_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `field_type` tinyint(1) unsigned NOT NULL, `field_content` longtext COLLATE utf8_unicode_ci NOT NULL, `event_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `extends_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `releser` tinyint(5) unsigned NOT NULL, `field_number` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=190 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_add_field` -- LOCK TABLES `bm_add_field` WRITE; /*!40000 ALTER TABLE `bm_add_field` DISABLE KEYS */; INSERT INTO `bm_add_field` VALUES (1,'1',1,'','2','extends1',0,0),(2,'里程',4,'1000米','3','extends1',1,0),(3,'里程',4,'2000米','3','extends1',1,0),(4,'服装',6,'xl','3','extends2',1,0),(5,'服装',6,'xxl','3','extends2',1,0),(6,'长度',3,'1000米','3','extends3',1,0),(7,'服装',5,'xl','225','extends1',0,0),(8,'服装',5,'lx','225','extends1',0,1),(9,'服装',5,'lm','225','extends1',0,2),(10,'年龄4',1,'这是年龄选项卡','225','extends2',0,0),(11,'dadad',3,'adad','227','extends1',0,0),(12,'服装',4,'xl','233','extends1',0,0),(13,'服装',4,'xxl','233','extends1',0,0),(14,'服装',4,'xxxxl','233','extends1',0,0),(15,'组别',4,'家庭组,少年组','233','extends2',0,0),(16,'T恤尺寸',6,'l','247','extends1',0,0),(17,'T恤尺寸',6,'ml','247','extends1',0,1),(18,'T恤尺寸',6,'xl','247','extends1',0,2),(19,'T恤尺寸',6,'xxl','247','extends1',0,3),(20,'T恤尺寸',6,'xxxl','247','extends1',0,4),(21,'T恤尺寸',6,'xxxxl','247','extends1',0,5),(22,'泳衣色彩',4,'蓝色,红色,粉色','255','extends1',0,0),(23,'组别',6,'男子组,女子组','255','extends2',0,0),(24,'跑步组别',5,'100m','255','extends1',0,0),(25,'跑步组别',5,'2000m','255','extends1',0,0),(26,'跑步组别',5,'1000m','255','extends1',0,0),(27,'跑步组别',5,'100m','255','extends1',0,0),(28,'跑步组别',5,'2000m','255','extends1',0,0),(29,'跑步',1,'','255','extends1',0,0),(30,'跑步组别',6,'1000m','255','extends1',0,0),(31,'跑步组别',6,'20000m','255','extends1',0,0),(32,'T恤',4,'xl,ml,xxl','255','extends1',0,0),(33,'泳衣',6,'xl','255','extends1',0,0),(34,'泳衣',6,'xll','255','extends1',0,0),(35,'泳衣',6,'xxll','255','extends1',0,0),(36,'safa',4,'saf,打发,大法师打发','255','extends1',0,0),(37,'zhangsan',1,'','255','extends1',0,0),(38,'1',4,'1231','255','extends1',0,0),(39,'1',4,'344','255','extends1',0,0),(40,'1231',5,'12312','255','extends1',0,0),(41,'1231',5,'231231','255','extends1',0,0),(42,'1231',5,'478','255','extends1',0,0),(43,'1231',5,'312','255','extends1',0,0),(44,'asdfa',5,'张三,历史,王五','255','extends1',0,0),(45,'11',6,'234','255','extends1',0,0),(46,'11',6,'23423','255','extends1',0,0),(47,'11',6,'32423','255','extends1',0,0),(48,'31231',6,'1231','255','extends1',0,0),(49,'31231',6,'12321','255','extends1',0,0),(50,'31231',6,'34223','255','extends1',0,0),(51,'1',5,'w','255','extends1',0,0),(52,'1',5,'x','255','extends1',0,0),(53,'1',5,'y','255','extends1',0,0),(54,'',1,'','255','extends1',0,0),(55,'',1,'','255','extends1',0,0),(56,'21',5,'xl','255','extends1',0,0),(57,'21',5,'xxl','255','extends1',0,0),(58,'21',5,'xxxl','255','extends1',0,0),(59,'123',4,'xl','255','extends1',0,0),(60,'123',4,'xxl','255','extends1',0,0),(61,'123',4,'xxxxl','255','extends1',0,0),(62,'12312',5,'1234','255','extends1',0,0),(63,'12312',5,'3432','255','extends1',0,0),(64,'12312',5,'32423','255','extends1',0,0),(65,'12312',5,'32424','255','extends1',0,0),(66,'121',5,'xl','255','extends1',0,0),(67,'121',5,'xxl','255','extends1',0,0),(68,'121',5,'xxxxl','255','extends1',0,0),(69,'12',5,'2131231','255','extends1',0,0),(70,'12',5,'1231','255','extends1',0,0),(71,'12',5,'123131','255','extends1',0,0),(72,'12',5,'1231231','255','extends1',0,0),(73,'T恤',4,'xl','225','extends3',0,0),(74,'T恤',4,'xl','225','extends3',0,0),(75,'T恤',4,'xl','225','extends3',0,0),(76,'张三',5,'姓名','255','extends20',0,0),(77,'张三',5,'性别','255','extends20',0,0),(78,'张三',5,'年龄','255','extends20',0,0),(79,'111',1,'','255','extends1',0,0),(80,'2222',5,'2222','255','extends1',0,0),(81,'人类',6,'组别','255','extends1',0,0),(82,'aakjdka',1,'','255','extends1',0,0),(83,'xiao',1,'','262','extends1',0,0),(84,'张三',5,'性别','255','extends25',0,0),(85,'张三',5,'年龄','255','extends25',0,0),(86,'张三',5,'长相','255','extends25',0,0),(87,'张三',5,'运气','255','extends25',0,0),(88,'张三',5,'长相','255','extends25',0,0),(89,'张三',5,'运气','255','extends25',0,0),(90,'张三',5,'实力','255','extends25',0,0),(91,'李四',5,'长相','255','extends25',0,0),(92,'李四',5,'实力','255','extends25',0,0),(93,'李四',5,'运气','255','extends25',0,0),(94,'男子组',5,'100','270','extends1',0,1),(95,'男子组',5,'200','270','extends1',0,2),(96,'男子',5,'500','225','extends4',0,0),(97,'男子',5,'200','225','extends4',0,1),(98,'男子',5,'300','225','extends4',0,2),(99,'男子组',6,'500','272','extends1',0,0),(100,'男子组',6,'700','272','extends1',0,1),(101,'男子组',6,'900','272','extends1',0,2),(102,'111',1,'','343','extends1',0,0),(103,'男子组',6,'男子100米','345','extends1',0,0),(104,'女子组',5,'100','345','extends2',0,0),(105,'女子组',5,'200','345','extends2',0,1),(106,'女子组',5,'300','345','extends2',0,2),(107,'铁人',1,'','357','extends1',0,0),(108,'比赛服装',5,'x','358','extends1',0,0),(109,'比赛服装',5,'xx','358','extends1',0,1),(110,'比赛服装',5,'xl','358','extends1',0,2),(111,'男子',4,'400米','363','extends1',0,0),(112,'男子',4,'800米','363','extends1',0,1),(113,'男子',4,'400米','364','extends1',0,0),(114,'男子',4,'800米','364','extends1',0,1),(115,'男子',4,'400米自由泳','367','extends1',0,0),(116,'男子',4,'800米自由泳','367','extends1',0,1),(117,'男子',4,'400米自由泳','369','extends1',0,0),(118,'男子',4,'800米自由泳','369','extends1',0,1),(119,'e',3,'fewafeaw','372','extends1',0,0),(120,'衣服',5,'xl','379','extends1',0,0),(121,'衣服',5,'xxxl','379','extends1',0,1),(122,'游泳',4,'400米','201','extends1',0,0),(123,'游泳',4,'800米','201','extends1',0,1),(124,'马拉松类别',4,'小型马拉松(2000米)','381','extends1',0,0),(125,'马拉松类别',4,'大型马拉松(6000米)','381','extends1',0,1),(126,'报名',4,'小型马拉松(1000米)','382','extends1',0,0),(127,'报名',4,'大型马拉松(3000米)','382','extends1',0,1),(128,' 服装',4,'xl','383','extends1',0,0),(129,' 服装',4,'xxl','383','extends1',0,1),(130,'类型',4,'400米','383','extends2',0,0),(131,'类型',4,'800米','383','extends2',0,1),(132,'服装',4,'l','384','extends1',0,0),(133,'服装',4,'xl','384','extends1',0,1),(134,'服装',4,'xxl','384','extends1',0,2),(135,'男女',4,'男子','201','extends2',0,0),(136,'男女',4,'女子','201','extends2',0,1),(137,'类型',4,'蝶泳','201','extends3',0,0),(138,'类型',4,'自由泳','201','extends3',0,1),(139,'mi',1,'','386','extends1',0,0),(140,'年龄组',4,'15以下','386','extends2',0,0),(141,'年龄组',4,'16-44','386','extends2',0,1),(142,'年龄组',4,'45以上','386','extends2',0,2),(143,'年龄组',4,'甲组:15岁(含)以下','389','extends1',0,0),(144,'年龄组',4,'乙组:16岁-44岁','389','extends1',0,1),(145,'年龄组',4,'丙组:45岁(含)以上','389','extends1',0,2),(146,'年龄',4,'15','390','extends1',0,0),(147,'年龄',4,'16-44','390','extends1',0,1),(148,'年龄',4,'45+','390','extends1',0,2),(149,'2342342332',1,'','391','extends1',0,0),(150,'2342',4,'23423432','391','extends2',0,0),(151,'23423',5,'42432432432','391','extends3',0,0),(152,'234234',6,'324432432','391','extends4',0,0),(153,'型号',4,'l','392','extends1',0,0),(154,'型号',4,'xl','392','extends1',0,1),(155,'型号',4,'xxl','392','extends1',0,2),(156,'分项',4,'男子组','392','extends2',0,0),(157,'分项',4,'女子组','392','extends2',0,1),(158,'分组',4,'男子1000米','393','extends1',0,0),(159,'分组',4,'男子500米','393','extends1',0,1),(160,'分组',4,'女子500米','393','extends1',0,2),(161,'米数',4,'800','394','extends1',0,0),(162,'米数',4,'1000','394','extends1',0,1),(163,'学段',5,'4','393','extends2',0,0),(164,'组别',6,'高中组','393','extends3',0,0),(165,'组别',6,'初中甲组','393','extends3',0,1),(166,'组别',6,'初中乙组','393','extends3',0,2),(167,'组别',6,'小学组','393','extends3',0,3),(168,'学校',1,'','394','extends2',0,0),(169,'姓名',1,'','394','extends3',0,0),(170,'性别',6,'男','394','extends4',0,0),(171,'性别',6,'女','394','extends4',0,1),(172,'组别',6,'高中组','394','extends5',0,0),(173,'组别',6,'初中甲组','394','extends5',0,1),(174,'组别',6,'初中乙组','394','extends5',0,2),(175,'组别',6,'小学组','394','extends5',0,3),(176,'联系人及电话',5,'联系人及电话','394','extends6',0,0),(177,'组别',6,'大学组','395','extends1',0,0),(178,'组别',6,'高中组','395','extends1',0,1),(179,'组别',6,'初中甲组','395','extends1',0,2),(180,'组别',6,'初中乙组','395','extends1',0,3),(181,'组别',6,'小学组','395','extends1',0,4),(182,'性别',6,'男','395','extends2',0,0),(183,'性别',6,'女','395','extends2',0,1),(184,'组别',5,'大学组','396','extends1',0,0),(185,'组别',5,'高中组','396','extends1',0,1),(186,'组别',5,'初中甲组','396','extends1',0,2),(187,'组别',5,'初中乙组','396','extends1',0,3),(188,'组别',5,'小学组','396','extends1',0,4),(189,'学校(完整全名)',1,'','396','extends2',0,0); /*!40000 ALTER TABLE `bm_add_field` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_admin_action` -- DROP TABLE IF EXISTS `bm_admin_action`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_admin_action` ( `action_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `parent_id` tinyint(3) unsigned NOT NULL DEFAULT '0', `action_code` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `relevance` varchar(20) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`action_id`), KEY `parent_id` (`parent_id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_admin_action` -- LOCK TABLES `bm_admin_action` WRITE; /*!40000 ALTER TABLE `bm_admin_action` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_admin_action` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_admin_log` -- DROP TABLE IF EXISTS `bm_admin_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_admin_log` ( `log_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `log_time` int(10) unsigned NOT NULL, `user_id` tinyint(3) unsigned NOT NULL DEFAULT '0', `log_info` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `ip_address` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`log_id`), KEY `log_time` (`log_time`) USING BTREE, KEY `user_id` (`user_id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=3928 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_admin_log` -- LOCK TABLES `bm_admin_log` WRITE; /*!40000 ALTER TABLE `bm_admin_log` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_admin_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_admin_user` -- DROP TABLE IF EXISTS `bm_admin_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_admin_user` ( `user_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `salt` varchar(8) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `password` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `add_time` int(11) DEFAULT '0', `last_login` int(11) DEFAULT '0', `last_ip` varchar(15) COLLATE utf8_unicode_ci DEFAULT '', `action_list` text COLLATE utf8_unicode_ci, `role_id` smallint(5) DEFAULT NULL, `status` tinyint(1) unsigned DEFAULT '0', PRIMARY KEY (`user_id`), KEY `user_name` (`user_name`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_admin_user` -- LOCK TABLES `bm_admin_user` WRITE; /*!40000 ALTER TABLE `bm_admin_user` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_admin_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_apply_info` -- DROP TABLE IF EXISTS `bm_apply_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_apply_info` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` tinyint(5) unsigned NOT NULL, `event_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `apply_status` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `is_end` tinyint(1) unsigned NOT NULL DEFAULT '0', `event_id` int(10) unsigned NOT NULL, `apply_user` tinyint(5) unsigned NOT NULL, `apply_money` double(10,2) NOT NULL DEFAULT '0.00', `id_number` varchar(18) COLLATE utf8_unicode_ci NOT NULL, `id_affirm` tinyint(1) NOT NULL DEFAULT '0', `phone` bigint(11) unsigned NOT NULL, `sex` tinyint(1) unsigned NOT NULL DEFAULT '0', `bm_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `position` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `is_paid` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=594 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_apply_info` -- LOCK TABLES `bm_apply_info` WRITE; /*!40000 ALTER TABLE `bm_apply_info` DISABLE KEYS */; INSERT INTO `bm_apply_info` VALUES (4,17,'济南国际马拉松赛','2',0,197,18,0.00,'111111111111111111',1,0,0,'qi','<EMAIL>','5',0),(5,18,'济南国际马拉松赛','1',0,197,18,0.00,'111111111111111111',1,0,0,'qi','<EMAIL>','2',0),(6,18,'济南国际马拉松赛','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(7,18,'济南国际马拉松赛','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(8,18,'测试3','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(9,18,'','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(10,18,'','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(11,18,'','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(12,18,'','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(13,18,'','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(14,18,'','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(15,18,'测试2','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(16,18,'测试2','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(17,18,'测试2','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(18,18,'测试文章','1',0,197,18,0.00,'0',1,0,0,'','','0',0),(27,18,'测试2','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(28,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(29,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(30,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(31,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(32,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(33,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(34,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(35,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(36,18,'测试3','1',0,197,18,230.00,'0',1,0,0,'','','0',0),(37,18,'puopioujoioioi','1',0,197,18,1.00,'0',1,0,0,'','','0',0),(38,18,'puopioujoioioi','1',0,197,18,1.00,'0',1,0,0,'','','0',0),(39,18,'puopioujoioioi','1',0,197,18,1.00,'0',1,0,0,'','','0',0),(40,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(41,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(42,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(43,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(44,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(45,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(46,18,'puopioujoioioi','1',0,198,18,1.00,'0',1,0,0,'','','2',0),(47,18,'测试3','1',0,198,18,230.00,'0',1,0,0,'','','2',0),(48,19,'测试3','1',0,198,18,230.00,'0',1,0,0,'','','0',0),(49,19,'青岛2015自行车公开赛','1',0,198,20,200.00,'0',1,0,0,'','','0',0),(50,12,'测试3','1',0,198,12,230.00,'0',1,0,0,'','','0',0),(51,18,'青岛2015自行车公开赛','1',0,198,18,200.00,'0',1,0,0,'','','2',0),(53,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(54,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(55,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(56,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(57,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(58,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(59,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(60,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(61,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(62,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(63,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(64,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(65,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(66,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(67,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(68,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(69,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(70,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(71,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(72,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(73,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(74,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(75,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(76,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(77,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(78,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(79,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(80,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(81,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(82,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(83,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(84,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(85,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(86,0,'','',0,198,0,0.00,'0',1,0,0,'','','4',0),(87,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(88,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(89,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(90,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(91,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(92,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(93,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(94,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(95,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(96,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(97,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(98,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(99,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(100,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(101,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(102,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(103,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(104,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(105,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(106,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(107,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(108,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(109,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(110,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(111,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(112,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(113,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(114,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(115,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(116,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(117,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(118,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(119,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(120,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(121,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(122,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(123,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(124,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(125,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(126,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(127,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(128,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(129,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(130,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(131,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(132,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(133,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(134,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(135,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(136,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(137,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(138,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(139,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(140,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(141,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(142,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(143,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(144,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(145,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(146,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(147,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(148,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(149,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(150,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(151,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(152,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(153,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(154,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(155,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(156,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(157,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(158,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(159,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(160,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(161,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(162,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(163,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(164,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(165,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(166,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(167,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(168,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(169,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(170,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(171,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(172,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(173,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(174,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(175,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(176,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(177,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(178,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(179,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(180,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(181,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(182,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(183,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(184,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(185,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(186,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(187,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(188,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(189,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(190,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(191,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(192,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(193,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(194,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(195,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(196,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(197,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(198,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(199,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(200,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(201,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(202,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(203,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(204,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(205,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(206,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(207,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(208,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(209,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(210,0,'','',0,199,0,0.00,'0',1,0,0,'','','0',0),(211,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(212,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(213,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(214,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(215,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(216,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(217,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(218,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(219,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(220,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(221,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(222,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(223,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(224,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(225,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(226,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(227,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(228,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(229,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(230,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(231,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(232,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(233,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(234,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(235,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(236,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(237,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(238,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(239,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(240,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(241,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(242,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(243,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(244,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(245,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(246,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(247,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(248,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(249,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(250,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(251,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(252,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(253,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(255,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(256,1,'','',0,201,0,0.00,'0',1,0,0,'','','0',0),(257,0,'','',0,201,0,0.00,'0',1,0,0,'','','3',0),(258,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(259,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(260,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(261,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(262,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(263,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(264,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(265,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(266,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(267,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(268,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(269,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(270,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(271,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(272,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(273,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(274,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(275,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(276,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(277,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(278,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(279,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(280,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(281,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(282,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(283,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(284,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(285,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(286,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(287,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(288,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(289,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(290,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(291,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(292,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(293,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(294,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(295,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(296,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(297,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(298,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(299,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(300,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(301,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(302,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(303,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(304,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(305,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(306,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(307,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(308,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(309,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(310,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(311,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(312,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(313,19,'','',0,204,0,0.00,'0',1,0,0,'','','12',0),(314,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(315,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(316,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(317,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(318,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(319,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(320,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(321,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(322,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(323,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(324,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(325,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(326,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(327,0,'','',0,204,0,0.00,'0',1,0,0,'','','0',0),(328,0,'','',0,203,0,0.00,'0',1,0,0,'','','0',0),(329,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(330,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(331,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(332,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(333,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(334,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(335,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(336,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(337,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(338,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(339,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(340,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(341,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(342,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(343,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(344,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(345,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(346,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(347,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(348,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(349,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(350,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(351,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(352,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(353,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(354,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(355,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(356,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(357,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(358,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(359,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(360,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(361,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(362,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(363,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(364,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(365,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(366,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(367,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(368,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(369,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(370,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(371,18,'青岛2015世界休闲体育大会国际龙舟比赛','1',0,197,18,200.00,'0',1,0,0,'','','0',0),(372,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(373,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(374,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(375,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(376,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(377,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(378,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(379,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(380,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(381,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(382,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(383,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(384,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(385,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(386,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(387,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(388,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(389,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(390,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(391,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(392,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(393,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(394,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(395,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(396,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(397,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(398,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(399,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(400,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(401,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(402,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(403,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(404,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(405,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(406,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(407,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(408,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(409,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(410,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(411,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(412,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(413,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(414,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(415,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(416,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(417,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(418,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(419,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(420,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(421,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(422,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(423,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(424,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(425,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(426,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(427,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(428,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(429,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(430,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(431,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(432,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(433,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(434,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(435,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(436,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(437,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(438,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(439,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(440,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(441,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(442,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(443,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(444,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(445,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(446,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(447,0,'','',0,205,0,0.00,'0',1,0,0,'','','0',0),(448,18,'莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)','1',0,198,18,200.00,'0',1,0,0,'','','2',0),(449,18,'2015青岛•莱西国际马拉松赛','1',0,199,18,300.00,'0',1,0,0,'','','0',0),(450,18,'2015青岛•莱西国际马拉松赛','1',0,199,18,300.00,'0',1,0,0,'','','0',0),(451,18,'2015青岛•莱西国际马拉松赛','1',0,199,18,300.00,'0',1,0,0,'','','0',0),(452,18,'莱西国际武术节','1',0,201,18,300.00,'0',1,0,0,'','','0',0),(453,18,'2015青岛•莱西国际马拉松赛','1',0,199,18,300.00,'0',1,0,0,'','','0',0),(454,18,'2015青岛•莱西国际马拉松赛','1',0,199,18,300.00,'0',1,0,0,'','','0',0),(455,18,'莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)','1',0,198,18,200.00,'0',1,0,0,'','','2',0),(456,19,'青岛2015世界休闲体育大会国际龙舟比赛','1',0,197,19,200.00,'0',1,0,0,'','','0',0),(457,11,'ad','1',0,226,11,110.00,'0',1,0,0,'','','0',0),(458,11,'ewrwerw','1',0,247,11,12.00,'0',1,0,0,'','','0',0),(459,18,'莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)','1',0,198,18,200.00,'',1,0,0,'','','2',0),(460,18,'莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)','1',0,198,18,200.00,'1',1,12,1,'张三','12','2',0),(461,18,'莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)','1',0,255,18,200.00,'1',1,12,0,'张三','12','1',0),(462,17,'“莱西杯”2015马术邀请赛','1',0,204,17,200.00,'111111111111111111',0,1111,1,'11','111@1.1','0',0),(463,17,'“莱西杯”2015马术邀请赛','1',0,204,17,200.00,'111111111111111111',0,11111111111,1,'111','11111@1.1','0',0),(464,11,'ceshi','1',0,255,11,200.00,'371234567898765',1,18363031322,1,'哈哈','<EMAIL>','0',0),(465,11,'青岛2015自行车公开赛','1',0,205,11,500.00,'371234567898765',0,18363031322,1,'haha','<EMAIL>','0',0),(466,11,'青岛2015自行车公开赛','1',0,205,11,500.00,'371234567898765',0,18363031322,1,'haha','<EMAIL>','0',0),(467,11,'青岛环城跑','1',0,255,11,0.00,'370102197811012914',1,18615172052,1,'lutao','<EMAIL>','0',0),(468,26,'“莱西杯”2015马术邀请赛','1',0,204,26,350.00,'123456789012345678',0,15106973850,1,'aa','1@1.1','0',0),(473,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(474,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(475,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(476,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(477,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(478,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(479,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(480,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(488,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(489,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(490,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(491,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(492,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(493,11,'“莱西杯”2015马术邀请赛','1',0,204,11,350.00,'372314111111111111',0,18363031322,1,'朋哥','<EMAIL>','0',0),(494,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155193,1,'宁','<EMAIL>','0',0),(495,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'123456789123456789',0,15863155194,1,'宁','<EMAIL>','0',0),(496,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'1','<EMAIL>','0',0),(497,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'123','<EMAIL>','0',1),(500,18,'“莱西杯”2015马术邀请赛','1',0,204,18,350.00,'372926199209030000',0,15863155194,1,'宁','<EMAIL>','0',0),(501,11,'济南马拉松比赛','1',0,255,11,0.00,'128247834783473',0,18363031322,1,'鹏哥','<EMAIL>','0',0),(502,37,'“莱西杯”2015马术邀请赛','1',0,204,37,350.00,'371522199410298411',0,15098800372,1,'小智','<EMAIL>','0',0),(503,37,'“莱西杯”2015马术邀请赛','1',0,204,37,350.00,'371522199410298411',0,15098800372,1,'小智','<EMAIL>','0',1),(504,37,'莱西国际武术节','',0,201,37,0.00,'371522199410298411',1,15098800372,0,'小智','','1',0),(505,19,'测试编辑器图片','1',0,255,19,0.00,'371522199410298411',0,15098880345,1,'使得法国','<EMAIL>','0',0),(506,26,'测试编辑器图片','1',0,255,26,0.00,'370181198511257179',0,15106973850,1,'11','1@1.1','0',0),(507,12,'南海亮剑','1',0,255,12,0.00,'371522199410298411',0,15098880345,1,'12','<EMAIL>','0',0),(508,12,'测试编辑器图片','1',0,255,12,0.00,'371522199410298411',0,15098880345,1,'使得法国','<EMAIL>','0',0),(509,12,'测试编辑器图片','1',0,255,12,0.00,'371522199410298411',0,15098880345,1,'使得法国','<EMAIL>','0',0),(510,19,'测试编辑器图片','1',0,255,19,0.00,'371522199410298411',0,15098880345,1,'使得法国','<EMAIL>','0',0),(511,19,'测试编辑器图片','1',0,255,19,0.00,'371522199410298411',0,15098880345,1,'使得法国','<EMAIL>','0',0),(512,19,'测试编辑器图片','1',0,255,19,0.00,'371522199410298411',0,15098880345,1,'使得法国','<EMAIL>','0',0),(513,12,'测试编辑器图片','1',0,362,12,0.00,'371522199410298411',0,15098800372,1,'根子','<EMAIL>','0',0),(514,19,'测试编辑器图片','1',0,362,19,0.00,'371522199410298411',0,15098800372,1,'根子','<EMAIL>','0',0),(515,19,'测试编辑器图片','1',0,362,19,0.00,'371522199410298411',0,15098800372,1,'fewafew','<EMAIL>','0',0),(516,42,'测试编辑器图片','1',0,362,42,0.00,'372324199009101111',0,18363031322,1,'鹏哥','<EMAIL>','0',0),(517,43,'测试007','1',0,375,43,100.00,'372926199209030000',0,15863155194,1,'asds','<EMAIL>','0',0),(518,42,'济南的跑步比赛','1',0,378,42,20.00,'372324199001000011',1,18363031322,1,'鹏哥','<EMAIL>','1',0),(519,47,'济南的跑步比赛','1',0,378,47,20.00,'156489654152358474',0,15098800372,1,'efwa','<EMAIL>','0',0),(520,12,'济南跑步','1',0,380,12,0.00,'371522199410026981',0,15098800372,1,'小智','<EMAIL>','0',0),(521,19,'济南跑步','1',0,380,19,0.00,'371522199410298444',1,15098800372,1,'小智','<EMAIL>','2',0),(522,12,'济南跑步','1',0,380,12,0.00,'371544879546120154',0,18905612645,1,'张三','<EMAIL>','0',0),(523,19,'济南跑步','1',0,380,19,0.00,'371499571262875911',0,15098800311,1,'小王','<EMAIL>','2',0),(524,19,'济南跑步','1',0,380,19,0.00,'372926199209030000',1,15863155194,1,'宁','<EMAIL>','2',0),(525,19,'济南跑步','1',0,380,19,0.00,'11000019790225207x',0,15863155194,1,'宁','<EMAIL>','2',0),(526,18,'济南跑步','1',0,380,18,0.00,'11000019790225207x',0,15863155194,1,'宁','<EMAIL>','0',0),(527,18,'青岛2015自行车公开赛','1',0,205,18,500.00,'11000019790225207x',0,15863155194,1,'宁','<EMAIL>','0',0),(528,18,'青岛2015自行车公开赛','1',0,205,18,500.00,'11000019790225207x',0,15863155194,1,'宁','<EMAIL>','0',0),(546,39,'2015年济南市“体彩杯”庆元旦业余乒乓球大赛','1',0,390,39,0.00,'370181198511257179',0,15106973855,1,'李鑫','<EMAIL>','第一',0),(547,19,'2015年济南市“体彩杯”庆元旦业余乒乓球大赛','1',0,389,19,0.00,'371522199410298411',0,15098800322,1,'小智','<EMAIL>','',0),(548,39,'2015年济南市“体彩杯”庆元旦业余乒乓球大赛','1',0,389,39,0.00,'370181198511257179',0,15106973855,1,'李鑫','<EMAIL>','',0),(549,42,'2015年济南市“体彩杯”庆元旦业余乒乓球大赛','1',0,389,42,0.00,'372324199009103211',0,18363031321,1,'鹏哥','<EMAIL>','',0),(550,44,'2015年济南市“体彩杯”庆元旦业余乒乓球大赛','1',0,389,44,0.00,'372324199009103211',0,18363031323,1,'鹏哥','<EMAIL>','',0),(551,50,'2015易健绅内部冬泳赛','1',0,393,50,0.00,'321003199201101816',0,15863155193,1,'宁如龙','<EMAIL>','',0),(552,53,'小智测试1','1',0,394,53,0.00,'371522199410298411',1,15098800373,1,'小智','<EMAIL>','1',0),(553,53,'小智测试2','1',0,395,53,20.00,'371522199410298411',0,15098800373,1,'小智','<EMAIL>','',0),(554,18,'小智测试2','1',0,395,18,20.00,'11000019790225207x',0,15863155194,1,'宁','<EMAIL>','',0),(555,18,'2015易健绅内部冬泳赛','1',0,393,18,0.00,'11000019790225207x',0,15863155194,1,'宁','1684097410<EMAIL>','',0),(556,61,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,61,0.00,'370203200011064510',0,13697679061,1,'周江南','<EMAIL>','',0),(557,63,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,63,0.00,'370202200503090727',0,18769771688,0,'王雅如','<EMAIL>','',0),(558,64,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,64,0.00,'371122200312012217',0,18253278620,1,'朱炫赫','<EMAIL>','',0),(559,65,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,65,0.00,'370203200711243210',0,15865527311,1,'张荣轩','<EMAIL>','',0),(560,66,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,66,0.00,'370203200701235911',0,13626392528,1,'唐瀚飞','<EMAIL>','',0),(561,67,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,67,0.00,'370214200903124039',0,13853277079,1,'杨郑轩','<EMAIL>','',0),(562,68,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,68,0.00,'370213200504042013',0,18853299318,1,'赵勇登','<EMAIL>','',0),(563,69,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,69,0.00,'370282200106264414',0,13553055580,1,'刘震宇','<EMAIL>','',0),(564,70,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,70,0.00,'370212200701041355',0,18560632258,1,'孙楚桓','<EMAIL>','',0),(565,71,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,71,0.00,'370202200403035413',0,18663941672,1,'于溪源','<EMAIL>','',0),(566,72,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,72,0.00,'440305200409147849',0,18724735518,0,'王祉毓','<EMAIL>','',0),(567,73,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,73,0.00,'610527200610130011',0,15205323297,1,'张怡涵','<EMAIL>','',0),(568,74,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,74,0.00,'370203199909022610',0,15092268982,1,'丁明鹏','<EMAIL>','',0),(569,76,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,76,0.00,'370205200612121528',0,18661716818,0,'张容瑜','<EMAIL>','',0),(570,78,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,78,0.00,'370203200306268633',0,13953200538,1,'刘凯文','<EMAIL>','',0),(571,79,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,79,0.00,'130983199812285313',0,13206499990,1,'刘术羽','<EMAIL>','',0),(572,80,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,80,0.00,'370205200210295015',0,15806391012,1,'张恩泽','<EMAIL>','',0),(573,81,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,81,0.00,'370214200709033512',0,18363977839,1,'栾沂霖','<EMAIL>','',0),(574,82,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,82,0.00,'370203200010163218',0,13963982159,1,'何文源','<EMAIL>','',0),(575,83,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,83,0.00,'370202200310120715',0,13006519312,1,'刘可','<EMAIL>','',0),(576,84,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,84,0.00,'370202200503030732',0,13805324113,1,'范坤鹏','<EMAIL>','',0),(577,86,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,86,0.00,'370203200005025910',0,13573802022,1,'孙旭祥','<EMAIL>','',0),(578,85,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,85,0.00,'370202200412070712',0,13061210787,1,'吴云天','<EMAIL>','',0),(579,87,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,87,0.00,'37020220070301071x',0,18661453009,1,'苏浩琛','<EMAIL>','',0),(580,88,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,88,0.00,'370202200603080745',0,13706428518,0,'孔婧涵','<EMAIL>','',0),(581,90,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,90,0.00,'370213200708284030',0,13370845233,1,'任翔','<EMAIL>','',0),(582,62,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,62,0.00,'370205200709291021',0,13295326550,0,'王悦涵','<EMAIL>','',0),(583,92,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,92,0.00,'370205200411146518',0,13808958226,1,'范伯阳','<EMAIL>','',0),(584,93,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,93,0.00,'370682200711171613',0,13869824697,1,'王耀辉','<EMAIL>','',0),(585,91,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,91,0.00,'37021220080819153x',0,13789850173,1,'侯文彬','<EMAIL>','',0),(586,94,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,94,0.00,'370212200403232516',0,13864257277,1,'陈谭恩','<EMAIL>','',0),(587,95,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,95,0.00,'370203200604018616',0,13583229872,1,'杨子航','<EMAIL>','',0),(588,96,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,96,0.00,'370202200301122225',0,18661974718,0,'潘逸斐','<EMAIL>','',0),(589,97,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,97,0.00,'370203200309098617',0,13573861906,1,'朱宏昊','<EMAIL>','',0),(590,98,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,98,0.00,'360428200507220026',0,15866884133,0,'李好','<EMAIL>','',0),(591,100,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,100,0.00,'640321200512230912',0,18561659099,1,'万孟铠','<EMAIL>','',0),(592,101,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,101,0.00,'370202200612061116',0,13105120619,1,'王訾睿','<EMAIL>','',0),(593,102,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','1',0,396,102,0.00,'370213200710174818',0,18505322787,1,'石泽','<EMAIL>','',0); /*!40000 ALTER TABLE `bm_apply_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_artclelist` -- DROP TABLE IF EXISTS `bm_artclelist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_artclelist` ( `article_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `categorys_id` smallint(5) unsigned NOT NULL, `article_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `article_keywords` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `article_desc` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `article_content` longblob NOT NULL, `article_add_time` int(10) unsigned NOT NULL, `article_author` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `article_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `article_imges` text COLLATE utf8_unicode_ci NOT NULL, `article_from` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`article_id`), KEY `article_id` (`article_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_artclelist` -- LOCK TABLES `bm_artclelist` WRITE; /*!40000 ALTER TABLE `bm_artclelist` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_artclelist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_auth_assignment` -- DROP TABLE IF EXISTS `bm_auth_assignment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_auth_assignment` ( `item_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL, `user_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL, `created_at` int(11) DEFAULT NULL, PRIMARY KEY (`item_name`,`user_id`), CONSTRAINT `auth_assignment_ibfk_1` FOREIGN KEY (`item_name`) REFERENCES `bm_auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_auth_assignment` -- LOCK TABLES `bm_auth_assignment` WRITE; /*!40000 ALTER TABLE `bm_auth_assignment` DISABLE KEYS */; INSERT INTO `bm_auth_assignment` VALUES ('apply','49',NULL),('apply','52',NULL),('apply','53',NULL),('apply','54',NULL),('apply','56',NULL),('apply','59',NULL),('apply','60',NULL),('apply','61',NULL),('superadmin','12',NULL),('user','100',NULL),('user','101',NULL),('user','102',NULL),('user','18',NULL),('user','19',NULL),('user','42',NULL),('user','48',NULL),('user','49',NULL),('user','50',NULL),('user','51',NULL),('user','52',NULL),('user','53',NULL),('user','54',NULL),('user','55',NULL),('user','56',NULL),('user','57',NULL),('user','58',NULL),('user','59',NULL),('user','60',NULL),('user','61',NULL),('user','62',NULL),('user','63',NULL),('user','64',NULL),('user','65',NULL),('user','66',NULL),('user','67',NULL),('user','68',NULL),('user','69',NULL),('user','70',NULL),('user','71',NULL),('user','72',NULL),('user','73',NULL),('user','74',NULL),('user','75',NULL),('user','76',NULL),('user','77',NULL),('user','78',NULL),('user','79',NULL),('user','80',NULL),('user','81',NULL),('user','82',NULL),('user','83',NULL),('user','84',NULL),('user','85',NULL),('user','86',NULL),('user','87',NULL),('user','88',NULL),('user','89',NULL),('user','90',NULL),('user','91',NULL),('user','92',NULL),('user','93',NULL),('user','94',NULL),('user','95',NULL),('user','96',NULL),('user','97',NULL),('user','98',NULL),('user','99',NULL); /*!40000 ALTER TABLE `bm_auth_assignment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_auth_item` -- DROP TABLE IF EXISTS `bm_auth_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_auth_item` ( `name` varchar(64) COLLATE utf8_unicode_ci NOT NULL, `type` int(11) NOT NULL, `description` text COLLATE utf8_unicode_ci, `rule_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, `data` text COLLATE utf8_unicode_ci, `created_at` int(11) DEFAULT NULL, `updated_at` int(11) DEFAULT NULL, PRIMARY KEY (`name`), KEY `rule_name` (`rule_name`), KEY `idx-auth_item-type` (`type`), CONSTRAINT `auth_item_ibfk_1` FOREIGN KEY (`rule_name`) REFERENCES `bm_auth_rule` (`name`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_auth_item` -- LOCK TABLES `bm_auth_item` WRITE; /*!40000 ALTER TABLE `bm_auth_item` DISABLE KEYS */; INSERT INTO `bm_auth_item` VALUES ('admin',1,'管理员',NULL,NULL,1447747379,1447747379),('apply',1,'发布者用户',NULL,NULL,1447811973,1447811973),('auth-assignment/create',2,'创建为用户授权角色',NULL,NULL,1447923013,1447923013),('auth-assignment/index',2,'为用户分配角色/权限index',NULL,NULL,1447747317,1447747317),('auth-assignment/update',2,'为用户分配角色/权限 update',NULL,NULL,1449209470,1449209470),('auth-assignment/view',2,'预览为用户授权角色/权限',NULL,NULL,1447923050,1447923050),('auth-item-child/create',2,'创建为角色分配权限',NULL,NULL,1447923343,1447923343),('auth-item-child/index',2,'为角色分配权限列表index',NULL,NULL,1447923118,1447923118),('auth-item-child/view',2,'预览为角色分配权限',NULL,NULL,1447923389,1447923389),('auth-item/create',2,'创建角色/权限',NULL,NULL,1447812759,1447812759),('auth-item/delete',2,'创建角色/权限delete',NULL,NULL,1449209694,1449209694),('auth-item/index',2,'创建角色权限index',NULL,NULL,1447812800,1447812800),('auth-item/update',2,'创建角色/权限update',NULL,NULL,1449209654,1449209654),('auth-item/view',2,'查看添加角色/权限',NULL,NULL,1447922822,1447922822),('family-info/create',2,'添加新家庭成员',NULL,NULL,1447922572,1447922572),('family-info/delete',2,'家庭组成员delete',NULL,NULL,1448245032,1448245032),('family-info/index',2,'家庭组成员index',NULL,NULL,1447923466,1447923466),('family-info/update',2,'家庭组成员update',NULL,NULL,1448244994,1448244994),('family-info/view',2,'预览新家庭成员',NULL,NULL,1447923517,1447923517),('guest',1,'游客',NULL,NULL,1447812018,1447812018),('ins',1,'机构用户',NULL,NULL,1447811955,1447811955),('relese-event/create',2,'前台发布赛事create',NULL,NULL,1449209226,1449209226),('relese-event/create-self',2,'管理扩展项目',NULL,NULL,1449210520,1449210520),('relese-event/delete',2,'前台发布赛事delete',NULL,NULL,1449209326,1449209326),('relese-event/index',2,'前台发布页面index',NULL,NULL,1449209180,1449209180),('relese-event/set-item',2,'前台自定义报名',NULL,NULL,1449451110,1449451110),('relese-event/update',2,'前台发布赛事update',NULL,NULL,1449209355,1449209355),('relese-event/view',2,'前台发布赛事view',NULL,NULL,1449209284,1449209284),('relese-event/views',2,'下级用户views',NULL,NULL,1455699227,1455699227),('superadmin',1,'系统超级管理员',NULL,NULL,1447811930,1447811930),('user',1,'普通用户',NULL,NULL,1447811996,1447811996); /*!40000 ALTER TABLE `bm_auth_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_auth_item_child` -- DROP TABLE IF EXISTS `bm_auth_item_child`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_auth_item_child` ( `parent` varchar(64) COLLATE utf8_unicode_ci NOT NULL, `child` varchar(64) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`parent`,`child`), KEY `child` (`child`), CONSTRAINT `auth_item_child_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `bm_auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `auth_item_child_ibfk_2` FOREIGN KEY (`child`) REFERENCES `bm_auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_auth_item_child` -- LOCK TABLES `bm_auth_item_child` WRITE; /*!40000 ALTER TABLE `bm_auth_item_child` DISABLE KEYS */; INSERT INTO `bm_auth_item_child` VALUES ('superadmin','auth-assignment/index'),('superadmin','auth-item/create'),('superadmin','auth-item/delete'),('superadmin','auth-item/index'),('superadmin','auth-item/update'),('superadmin','auth-item/view'),('user','family-info/create'),('user','family-info/delete'),('user','family-info/update'),('user','family-info/view'),('apply','relese-event/create'),('apply','relese-event/create-self'),('apply','relese-event/set-item'),('apply','relese-event/update'),('apply','relese-event/view'),('apply','relese-event/views'); /*!40000 ALTER TABLE `bm_auth_item_child` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_auth_rule` -- DROP TABLE IF EXISTS `bm_auth_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_auth_rule` ( `name` varchar(64) COLLATE utf8_unicode_ci NOT NULL, `data` text COLLATE utf8_unicode_ci, `created_at` int(11) DEFAULT NULL, `updated_at` int(11) DEFAULT NULL, PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_auth_rule` -- LOCK TABLES `bm_auth_rule` WRITE; /*!40000 ALTER TABLE `bm_auth_rule` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_auth_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_banner` -- DROP TABLE IF EXISTS `bm_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_banner` ( `id` int(11) NOT NULL AUTO_INCREMENT, `banner` varchar(255) CHARACTER SET utf8 DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_banner` -- LOCK TABLES `bm_banner` WRITE; /*!40000 ALTER TABLE `bm_banner` DISABLE KEYS */; INSERT INTO `bm_banner` VALUES (1,'abcd'),(2,'饿啊飞啊我'),(3,''); /*!40000 ALTER TABLE `bm_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_categorys` -- DROP TABLE IF EXISTS `bm_categorys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_categorys` ( `categorys_id` int(11) NOT NULL, `categorys_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `categorys_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `categorys_keywords` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', `categorys_desc` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', `categorys_content` longblob, PRIMARY KEY (`categorys_id`), KEY `categorys_id` (`categorys_id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_categorys` -- LOCK TABLES `bm_categorys` WRITE; /*!40000 ALTER TABLE `bm_categorys` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_categorys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_employee` -- DROP TABLE IF EXISTS `bm_employee`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_employee` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `team_id` int(11) NOT NULL, `phone` varchar(11) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `sex` varchar(4) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `id_card` varchar(18) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_employee` -- LOCK TABLES `bm_employee` WRITE; /*!40000 ALTER TABLE `bm_employee` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_employee` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_event_state` -- DROP TABLE IF EXISTS `bm_event_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_event_state` ( `id` int(11) NOT NULL AUTO_INCREMENT, `state` varchar(10) NOT NULL, `is_end` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_event_state` -- LOCK TABLES `bm_event_state` WRITE; /*!40000 ALTER TABLE `bm_event_state` DISABLE KEYS */; INSERT INTO `bm_event_state` VALUES (1,'进行中',0),(2,'已结束',1); /*!40000 ALTER TABLE `bm_event_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_event_type` -- DROP TABLE IF EXISTS `bm_event_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_event_type` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `event_type_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci CHECKSUM=1 ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_event_type` -- LOCK TABLES `bm_event_type` WRITE; /*!40000 ALTER TABLE `bm_event_type` DISABLE KEYS */; INSERT INTO `bm_event_type` VALUES (1,'马拉松'),(2,'路跑'),(3,'越野跑'),(4,'自行车'),(5,'铁人三项'),(6,'户外运动'),(7,'滑雪'),(8,'篮球'),(9,'足球'),(10,'高尔夫'),(11,'羽毛球'),(12,'网球'),(13,'乒乓球'),(14,'桌球'),(15,'游泳'),(17,'休闲体育'),(18,'其它'); /*!40000 ALTER TABLE `bm_event_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_extends_field` -- DROP TABLE IF EXISTS `bm_extends_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_extends_field` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `extends1` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends2` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends3` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends4` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends5` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends6` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends7` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends8` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends9` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends10` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends11` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends12` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends13` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends14` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends15` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends16` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends17` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends18` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends19` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends20` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends21` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends22` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends23` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends24` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends25` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends26` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends27` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends28` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends29` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extends30` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `event_id` tinyint(5) unsigned NOT NULL, `user_id` tinyint(5) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_extends_field` -- LOCK TABLES `bm_extends_field` WRITE; /*!40000 ALTER TABLE `bm_extends_field` DISABLE KEYS */; INSERT INTO `bm_extends_field` VALUES (2,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',0,0),(3,'1','1','1','','','','','','','','','','','','','','','','','','','','','','','','','','','',0,0),(4,'1','1','100米','','','','','','','','','','','','','','','','','','','','','','','','','','','',0,0),(5,'1','1','先休息','','','','','','','','','','','','','','','','','','','','','','','','','','','',0,0),(6,'1','1','先休息','','','','','','','','','','','','','','','','','','','','','','','','','','','',18,3),(7,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',11,247),(8,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',11,255),(9,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',11,255),(10,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',39,255),(11,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',44,255),(12,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',39,255),(13,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',39,255),(14,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',18,255),(15,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',18,255),(16,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',18,255),(17,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',12,255),(18,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',19,255),(19,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',39,255),(20,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',42,255),(21,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',44,255),(22,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',50,255),(23,'0','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',53,255),(24,'1','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',18,255),(25,'2','青岛实验初级中学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',61,255),(26,'4','青岛市浮山路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',63,255),(27,'4','青岛洛阳路第二小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',64,255),(28,'4','城阳区天泰城学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',65,255),(29,'4','青岛北仲路第一小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',66,255),(30,'4','青岛市城阳区天泰城学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',67,255),(31,'4','崂山区浮山小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',68,255),(32,'2','青岛长泰学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',69,255),(33,'4','私立青岛白珊学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',70,255),(34,'4','青岛天山小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',71,255),(35,'4','青岛市市北区体育学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',72,255),(36,'4','青岛崂山新世纪学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',73,255),(37,'1','青岛二中分校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',74,255),(38,'4','私立青岛白珊学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',76,255),(39,'3','青岛第二实验初级中学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',78,255),(40,'1','青岛二中分校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',79,255),(41,'3','青岛市第二实验初级中学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',80,255),(42,'4','青岛市城阳区夏庄街道夏庄小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',81,255),(43,'2','私立青岛智荣中学(南校)','','','','','','','','','','','','','','','','','','','','','','','','','','','','',82,255),(44,'4','青岛香港路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',83,255),(45,'4','青岛香港路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',84,255),(46,'1','青岛工贸职业学校','','','','','','','','','','','','','','','','','','','','','','','','','','','','',86,255),(47,'4','青岛香港路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',85,255),(48,'4','青岛香港路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',87,255),(49,'4','青岛香港路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',88,255),(50,'4','青岛市李沧区永安路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',90,255),(51,'4','青岛四方小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',62,255),(52,'4','青岛淮阳路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',92,255),(53,'4','青岛重庆路第二小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',93,255),(54,'4','青岛市市北区广饶路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',91,255),(55,'4','青岛市崂山区宁真海尔希望小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',94,255),(56,'4','青岛市宁安路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',95,255),(57,'3','私立青岛智荣学校(北校)','','','','','','','','','','','','','','','','','','','','','','','','','','','','',96,255),(58,'4','宁安路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',97,255),(59,'4','青岛宁安路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',98,255),(60,'4','青岛燕儿岛路第一小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',100,255),(61,'4','青岛基隆路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',101,255),(62,'4','青岛市唐山路小学','','','','','','','','','','','','','','','','','','','','','','','','','','','','',102,255); /*!40000 ALTER TABLE `bm_extends_field` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_family_info` -- DROP TABLE IF EXISTS `bm_family_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_family_info` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `sex` tinyint(1) unsigned NOT NULL, `age` int(3) unsigned NOT NULL, `id_card` varchar(18) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_family_info` -- LOCK TABLES `bm_family_info` WRITE; /*!40000 ALTER TABLE `bm_family_info` DISABLE KEYS */; INSERT INTO `bm_family_info` VALUES (2,11,'李四',1,27,'123456789123456789'),(3,11,'王五',0,27,'123456789123456789'),(4,11,'赵六',0,22,'123456789123456789'),(5,39,'麻七',1,26,'370223199312153133'),(6,39,'鳖八',1,24,'370102198611112325'),(11,42,'鹏哥',1,25,'372324199000000000'),(14,18,'111',0,1,'1'),(16,19,'儿子',1,18,'371522199210291837'),(17,19,'女儿',0,18,'371522199210291837'),(18,53,'老大',1,21,'371522199410298411'),(19,53,'老二',0,21,'371522199410118411'),(20,53,'老三',1,21,'371522199410018411'); /*!40000 ALTER TABLE `bm_family_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_family_team` -- DROP TABLE IF EXISTS `bm_family_team`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_family_team` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `family_team_id` varchar(11) COLLATE utf8_unicode_ci NOT NULL, `family_team_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `family_team_num` int(11) unsigned NOT NULL, `family_team_content` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_family_team` -- LOCK TABLES `bm_family_team` WRITE; /*!40000 ALTER TABLE `bm_family_team` DISABLE KEYS */; INSERT INTO `bm_family_team` VALUES (4,11,'f111','和',1,'1/2'),(5,11,'f112','123',2,'0'),(6,11,'f113','的司法发',3,'0'),(7,11,'f114','12432',4,'0'),(8,39,'f391','虎虎生威',1,'1'),(9,11,'f115','1232343214132',5,'0'),(10,11,'f116','13243243',6,'10'),(11,11,'f117','123',7,'a:2:{i:0;s:1:\"0\";i:1;s:1:\"1\";}'),(12,11,'f118','打发斯蒂芬',8,'0/1/'),(13,11,'f119','这次可以么',9,'李四/赵六/'),(20,42,'f421','haha',1,'鹏哥/'),(26,19,'f110','温柔',1,'儿子/女儿/'),(27,53,'f110','无敌队',1,'老大/老二/老三/'); /*!40000 ALTER TABLE `bm_family_team` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_field_type` -- DROP TABLE IF EXISTS `bm_field_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_field_type` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_field_type` -- LOCK TABLES `bm_field_type` WRITE; /*!40000 ALTER TABLE `bm_field_type` DISABLE KEYS */; INSERT INTO `bm_field_type` VALUES (1,'单行文本框'),(2,'日期选择框'),(3,'邮箱输入框'),(4,'单选按钮组'),(5,'多选输入框'),(6,'下拉选择框'); /*!40000 ALTER TABLE `bm_field_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_friends_link` -- DROP TABLE IF EXISTS `bm_friends_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_friends_link` ( `id` int(11) NOT NULL, `name` varchar(20) CHARACTER SET utf8 NOT NULL, `link` varchar(20) CHARACTER SET utf8 NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_friends_link` -- LOCK TABLES `bm_friends_link` WRITE; /*!40000 ALTER TABLE `bm_friends_link` DISABLE KEYS */; INSERT INTO `bm_friends_link` VALUES (1,'比一比','www.biyibi.com'),(2,'51sai','www.51sai.com'),(3,'百度','www.baidu.com'),(4,'新浪','www.sina.com'); /*!40000 ALTER TABLE `bm_friends_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_gsemployee` -- DROP TABLE IF EXISTS `bm_gsemployee`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_gsemployee` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 NOT NULL, `gs_id` int(11) NOT NULL, `phone` varchar(11) CHARACTER SET utf8 NOT NULL, `sex` varchar(4) CHARACTER SET utf8 NOT NULL, `id_card` varchar(18) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_gsemployee` -- LOCK TABLES `bm_gsemployee` WRITE; /*!40000 ALTER TABLE `bm_gsemployee` DISABLE KEYS */; INSERT INTO `bm_gsemployee` VALUES (222,'小鹏哥',44,'18363031323','男','11111'),(223,'宁宁',45,'15815815815','1','2'),(224,'哈哈',44,'18363031322','男','111111111111111111'),(225,'张三',54,'15098800372','男','371522199410298888'),(226,'李四',54,'15098800371','男','371522199410221451'),(227,'李一',54,'15098800373','男','371522199410221452'),(228,'李二',54,'15098800374','男','371522199410221453'),(229,'李五',54,'15098800375','男','371522199410221454'),(230,'李六',54,'15098800376','男','371522199410221455'),(231,'李七',54,'15098800377','男','371522199410221456'),(232,'李八',54,'15098800378','男','371522199410221457'),(233,'李五',54,'15098800375','男','371522199410221454'),(234,'李六',54,'15098800376','男','371522199410221455'),(235,'李七',54,'15098800377','男','371522199410221456'); /*!40000 ALTER TABLE `bm_gsemployee` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_gsteam` -- DROP TABLE IF EXISTS `bm_gsteam`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_gsteam` ( `id` int(11) NOT NULL AUTO_INCREMENT, `gs_id` int(11) NOT NULL, `gsname` varchar(255) CHARACTER SET utf8 NOT NULL, `gsteam` varchar(255) CHARACTER SET utf8 NOT NULL, `team_id` varchar(10) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_gsteam` -- LOCK TABLES `bm_gsteam` WRITE; /*!40000 ALTER TABLE `bm_gsteam` DISABLE KEYS */; INSERT INTO `bm_gsteam` VALUES (15,38,'跑男组','范德萨发达,范德萨发达,范德萨发达,','c102'),(16,12,'354345543535','小智,adasdas,','c103'),(52,44,'bisheng','小鹏哥,','c112'),(55,54,'英雄联盟','张三,李四,李一,','c113'),(56,54,'烈火队','李二,李五,李六,','c114'),(57,0,'123','张三,李四,李一,','c115'),(58,0,'123','张三,李四,李一,','c116'); /*!40000 ALTER TABLE `bm_gsteam` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_hezuo_img` -- DROP TABLE IF EXISTS `bm_hezuo_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_hezuo_img` ( `id` int(11) NOT NULL AUTO_INCREMENT, `img` varchar(255) CHARACTER SET utf8 NOT NULL, `url` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_hezuo_img` -- LOCK TABLES `bm_hezuo_img` WRITE; /*!40000 ALTER TABLE `bm_hezuo_img` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_hezuo_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_img` -- DROP TABLE IF EXISTS `bm_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_img` ( `id` int(11) NOT NULL AUTO_INCREMENT, `img` text CHARACTER SET utf8 NOT NULL, `gs_id` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_img` -- LOCK TABLES `bm_img` WRITE; /*!40000 ALTER TABLE `bm_img` DISABLE KEYS */; INSERT INTO `bm_img` VALUES (95,'../../frontend/abcd/14467123406325.xls','12'),(96,'../../frontend/abcd/14467128422382.xls','37'),(98,'../../frontend/abcd/14467132448830.xls','37'),(99,'../../frontend/abcd/14467151842488.xls','37'),(100,'../../frontend/abcd/14467708502045.xls','37'),(101,'../../frontend/abcd/14467717593377.xls','37'),(102,'../../frontend/abcd/14467729614540.xls','37'),(103,'../../frontend/abcd/14467732371031.xls','37'),(104,'../../frontend/abcd/14467732559223.xls','37'),(105,'../../frontend/abcd/14467744337030.xls','37'),(106,'../../frontend/abcd/14467740227973.xls','37'),(107,'../../frontend/abcd/14467789199855.xls','37'),(108,'../../frontend/abcd/14467820123478.xls','37'),(109,'../../frontend/abcd/14467863992522.xls','37'),(110,'../../frontend/abcd/14467864363789.xls','37'),(111,'../../frontend/abcd/14467873621567.xls','37'),(112,'../../frontend/abcd/14467877732239.xls','37'),(113,'../../frontend/abcd/14467878204988.xls','37'),(114,'../../frontend/abcd/14467880182087.xls','37'),(115,'../../frontend/abcd/14467888418603.xls','37'),(116,'../../frontend/abcd/14467894932618.xls','37'),(117,'../../frontend/abcd/14467912129841.xls','37'),(118,'../../frontend/abcd/14468722359844.xls','37'),(119,'../../frontend/abcd/14476542398659.xls','37'),(120,'../../frontend/abcd/14494559439595.xls','54'); /*!40000 ALTER TABLE `bm_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_info` -- DROP TABLE IF EXISTS `bm_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_info` ( `bm_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` mediumint(5) NOT NULL, `bm_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `sex` tinyint(1) unsigned NOT NULL DEFAULT '0', `birthday` date NOT NULL, `phone` int(11) unsigned NOT NULL, `bm_time` int(10) unsigned NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `id_number` bigint(18) unsigned NOT NULL, `status` tinyint(1) unsigned NOT NULL DEFAULT '0', `project` mediumint(3) NOT NULL, PRIMARY KEY (`bm_id`), KEY `bm_id` (`bm_id`) USING BTREE, KEY `user_id` (`user_id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_info` -- LOCK TABLES `bm_info` WRITE; /*!40000 ALTER TABLE `bm_info` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_jgsignup` -- DROP TABLE IF EXISTS `bm_jgsignup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_jgsignup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `jgname` varchar(60) CHARACTER SET utf8 NOT NULL, `dizhi` varchar(255) CHARACTER SET utf8 NOT NULL, `jguser` varchar(10) CHARACTER SET utf8 NOT NULL, `phone` varchar(11) CHARACTER SET utf8 NOT NULL, `email` varchar(30) CHARACTER SET utf8 NOT NULL, `img` varchar(255) CHARACTER SET utf8 NOT NULL, `sffpzh` varchar(255) CHARACTER SET utf8 NOT NULL, `fpzhmm` varchar(16) CHARACTER SET utf8 NOT NULL, `user_id` varchar(255) CHARACTER SET utf8 NOT NULL, `daima` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_jgsignup` -- LOCK TABLES `bm_jgsignup` WRITE; /*!40000 ALTER TABLE `bm_jgsignup` DISABLE KEYS */; INSERT INTO `bm_jgsignup` VALUES (23,'青岛体育局','青岛墨迹','小智','15098800371','<EMAIL>','jg/240469-140F303302381.jpg','admin888','admin888','',''),(28,'济南易健绅信息科技有限公司','济南市经十路20188号','李鑫','15106973855','<EMAIL>','jg/201511101111.png','no.fabu','000000','40','370112200123376'),(29,'fewafewa','fewafeawf','fewafewaf','15017744565','<EMAIL>','jg/Jellyfish.jpg','fewaf','feawfewa','44','fewafewa23faw'),(30,'jigou_007','sadfas','fadsfas','14785236987','<EMAIL>','jg/龙瞎.jpg','jigou_007','jigou_007','','121'),(31,'大公司','济南市市中区','鹏哥','18363031322','<EMAIL>','jg/ACBC40B5A5B18A190320D59774684EB3.jpg','user1','123456','','123'),(33,'济南全民健身中心','济南市经十路19166号','全民健身','68606768','','jg/4(2558).jpg','jnqmjszx','jnqmjszx*#','49',''),(35,'济南易健绅信息科技有限公司','济南市经十路20188号','李鑫','15550071553','<EMAIL>','jg/201511101111.png','test_fabu','000000','51','370112200123376'),(36,'济南易健绅信息科技有限公司','济南经十路20188号','小王','15098800372','<EMAIL>','jg/Tulips.jpg','genzi','genzi110','52','efwafewafewafewafeaw'),(37,'青岛市篮球运动协会','青岛市城阳区兴阳路310号','胡静','13963931669','<EMAIL>','','','','','50292868-5'),(38,'青岛青伟棋牌俱乐部','市北区通榆路27号','张宁','13687643843','<EMAIL>','jg/4.jpg','qdqwqp','qdqwqp','61','75379055-3'),(39,'青岛市救生协会','山东省青岛市市北区福州北路90号景泰尚都1604','刘勇','13953220128','<EMAIL>','jg/法人证书副本 001.jpg','','','','57578425-6'),(40,'青岛市救生协会','山东省青岛市市北区福州北路90号景泰尚都1604','王超','13953200068','<EMAIL>','jg/法人证书副本 001.jpg','','','','57578425-6'),(41,'青岛市体育总会','青岛市东海西路15号英德隆大厦1110','周建邦','18560686458','<EMAIL>','','','','','75041643-5'); /*!40000 ALTER TABLE `bm_jgsignup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_leixing` -- DROP TABLE IF EXISTS `bm_leixing`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_leixing` ( `id` int(11) NOT NULL AUTO_INCREMENT, `leixing` varchar(255) CHARACTER SET utf8 NOT NULL, `team_event_id` int(11) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_leixing` -- LOCK TABLES `bm_leixing` WRITE; /*!40000 ALTER TABLE `bm_leixing` DISABLE KEYS */; INSERT INTO `bm_leixing` VALUES (1,'男子400米接力游泳',372),(2,'女子400米接力游泳',372),(3,'男子800米接力游泳',0),(4,'女子800米接力游泳',0),(5,'男子5人篮球',0),(6,'女子5人篮球',0),(7,'男子3人篮球',0),(8,'女子3人篮球',0),(9,'男子6人足球',0),(10,'女子6人足球',0),(11,'男女混双乒乓球',0),(12,'双人乒乓球',0),(13,'男女混双羽毛球',0),(14,'双人羽毛球',0),(15,'男子4*100米接力跑步',362),(16,'男子4*200米接力跑步',362),(17,'女子4*100米接力跑步',362),(18,'女子4*200米接力跑步',362),(19,'男子五百米自由泳',364),(20,'男子4*100米接力跑步',363),(21,'五人制足球',368); /*!40000 ALTER TABLE `bm_leixing` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_lunbo_img` -- DROP TABLE IF EXISTS `bm_lunbo_img`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_lunbo_img` ( `id` int(11) NOT NULL AUTO_INCREMENT, `img` varchar(255) CHARACTER SET utf8 NOT NULL, `url` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_lunbo_img` -- LOCK TABLES `bm_lunbo_img` WRITE; /*!40000 ALTER TABLE `bm_lunbo_img` DISABLE KEYS */; INSERT INTO `bm_lunbo_img` VALUES (1,'images/1.jpg','abd'),(2,'images/2.jpg',''),(3,'images/3.jpg',''),(4,'images/4.jpg',''),(10,'/banner/lanqiuz.gif',''),(12,'/banner/1.png',''),(13,'/banner/200811817273411_2.jpg',''),(14,'banner/139-15031G51147.jpg',''),(15,'banner/u=1096669897,1698345938&fm=21&gp=0.jpg',''),(16,'banner/u=1096669897,1698345938&fm=21&gp=0.jpg',''),(17,'banner/9206586_180619349185_2.jpg',''),(18,'banner/u=2503227449,2191701077&fm=21&gp=0.jpg',''),(19,'banner/us.virgin-islands_0.jpg',''),(20,'banner/2.jpg','asdfdas'),(21,'banner/u=2013291125,1627783775&fm=21&gp=0.jpg',''),(22,'banner/connecticut_0.jpg','http://www.51first.cn/index.php?r=site/content&id=199'),(23,'banner/central_oregon.jpg','http://www.51first.cn/index.php?r=site/content&id=201'),(24,'banner/cascades_01.jpg','http://www.51first.cn/index.php?r=site/content&id=203'),(25,'banner/alabama.jpg','http://www.51first.cn/index.php?r=site/content&id=204'),(26,'banner/1376365757324p181qsk4pe1u2n1tfa1pjmmtvbf05.jpg','http://www.51first.cn/index.php?r=site/content&id=205'); /*!40000 ALTER TABLE `bm_lunbo_img` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_message` -- DROP TABLE IF EXISTS `bm_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_message` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `inviter` int(10) unsigned NOT NULL, `tid` int(10) unsigned NOT NULL, `beinviter` int(10) unsigned NOT NULL, `send_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `status` tinyint(1) unsigned NOT NULL DEFAULT '0', `reply` tinyint(1) unsigned NOT NULL DEFAULT '0', `team_id` varchar(10) CHARACTER SET latin1 NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_message` -- LOCK TABLES `bm_message` WRITE; /*!40000 ALTER TABLE `bm_message` DISABLE KEYS */; INSERT INTO `bm_message` VALUES (1,3,1,18,'2015-11-05 02:48:19',1,1,''),(2,11,5,3,'2015-11-03 16:00:00',0,0,''),(3,11,5,20,'2015-11-03 16:00:00',0,0,''),(4,11,5,11,'2015-11-05 05:22:26',1,1,''),(5,11,5,14,'2015-11-03 16:00:00',0,0,''),(6,11,5,16,'2015-11-03 16:00:00',0,0,''),(7,11,5,16,'2015-11-03 16:00:00',0,0,''),(8,11,5,20,'2015-11-03 16:00:00',0,0,''),(9,11,5,16,'0000-00-00 00:00:00',0,0,''),(25,11,16,12,'2015-11-04 16:00:00',0,0,''),(26,19,14,11,'2015-11-06 16:00:00',0,0,''),(27,11,37,25,'2015-11-09 16:00:00',0,0,''),(28,26,66,11,'2015-11-13 05:58:37',1,1,''),(29,11,1,26,'2015-11-12 16:00:00',0,0,'t1'),(30,11,25,26,'2015-11-13 07:05:46',1,1,'t6'),(32,39,69,26,'2015-11-13 07:13:54',1,1,'t13'),(33,11,25,14,'2015-11-13 07:22:53',0,0,'t6'),(34,19,71,39,'2015-11-16 05:42:41',1,1,'t14'),(35,26,70,11,'2015-11-19 06:42:51',1,1,'t13'),(36,19,75,39,'2015-11-19 06:44:36',1,1,'t15'),(37,42,82,44,'2015-11-22 16:00:00',0,0,'t19'),(38,19,83,42,'2015-11-22 16:00:00',0,0,'t20'),(39,0,83,42,'2015-11-22 16:00:00',0,0,'t20'),(40,19,84,44,'2015-11-22 16:00:00',0,0,'t21'); /*!40000 ALTER TABLE `bm_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_mianze` -- DROP TABLE IF EXISTS `bm_mianze`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_mianze` ( `id` int(11) NOT NULL, `mianze` text CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_mianze` -- LOCK TABLES `bm_mianze` WRITE; /*!40000 ALTER TABLE `bm_mianze` DISABLE KEYS */; INSERT INTO `bm_mianze` VALUES (1,'<p>feiwaojfeioawjf</p><p>fejwaifjeoiawghoiewjaoiejwoiag</p><p>feaiwogjeajfoiewjaoifgejwg</p><p>fewaigjeiowajfgioeawfioje</p><p>&nbsp;jfiewoajfioewajio&nbsp;</p><p>fewafewa fdsafdas</p>'); /*!40000 ALTER TABLE `bm_mianze` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_migration` -- DROP TABLE IF EXISTS `bm_migration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_migration` ( `version` varchar(180) NOT NULL, `apply_time` int(11) DEFAULT NULL, PRIMARY KEY (`version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_migration` -- LOCK TABLES `bm_migration` WRITE; /*!40000 ALTER TABLE `bm_migration` DISABLE KEYS */; INSERT INTO `bm_migration` VALUES ('m000000_000000_base',1437364144),('m130524_201442_init',1437364182); /*!40000 ALTER TABLE `bm_migration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_news` -- DROP TABLE IF EXISTS `bm_news`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8 NOT NULL, `news` varchar(10000) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_news` -- LOCK TABLES `bm_news` WRITE; /*!40000 ALTER TABLE `bm_news` DISABLE KEYS */; INSERT INTO `bm_news` VALUES (8,'马拉松起源','<h3 style=\"margin-top:20px;margin-right:0;margin-bottom:0;margin-left:0\"><span style=\";font-family:宋体;font-weight:normal;font-size:18px;background:rgb(255,255,255)\">&nbsp;&nbsp; </span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">马拉松赛</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">是一项</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">长跑</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">比赛项目,其</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">距离</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">为<span style=\"font-family:Arial\">42.195</span><span style=\"font-family:宋体\">公里(也有说法为</span><span style=\"font-family:Arial\">42.193</span><span style=\"font-family:宋体\">公里,但比赛都是用</span><span style=\"font-family:Arial\">42.195</span><span style=\"font-family:宋体\">公里)。这个比赛项目的起源要从公元前</span><span style=\"font-family:Arial\">490</span><span style=\"font-family:宋体\">年</span><span style=\"font-family:Arial\">9</span><span style=\"font-family:宋体\">月</span><span style=\"font-family:Arial\">12</span><span style=\"font-family:宋体\">日发生的一场战役讲起。</span></span></h3><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">这场战役是</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">波斯</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">人和</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">雅典</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">人在离雅典不远的马拉松海边发生的,史称</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">希波战争</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">,雅典人最终获得了反侵略的胜利。为了让故乡人民尽快知道胜利的喜讯,统帅米勒狄派一个叫</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">菲迪皮茨</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">的士兵回去报信。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">菲迪皮茨</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">是个有名的<span style=\"font-family:Arial\">“</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">飞毛腿</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">”<span style=\"font-family:宋体\">,为了让故乡人早知道好消息,他一个劲地快跑,当他跑到雅典时,已上气不接下气,激动地喊道</span><span style=\"font-family:Arial\">“</span><span style=\"font-family:宋体\">欢</span><span style=\"font-family:Arial\">......</span><span style=\"font-family:宋体\">乐吧,雅典人,我们</span><span style=\"font-family:Arial\">......</span><span style=\"font-family:宋体\">胜利了</span><span style=\"font-family:Arial\">”</span><span style=\"font-family:宋体\">说完,就倒在地上死了。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">为了纪念这一事件,在<span style=\"font-family:Arial\">1896</span><span style=\"font-family:宋体\">年举行的现代第一届奥林匹克运动会上,设立了马拉松赛跑这个项目,把当年菲迪皮茨送信跑的里程</span><span style=\"font-family:Arial\">——42.193</span><span style=\"font-family:宋体\">公里作为赛跑的距离。马拉松原为</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">希腊</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">的一个地名。在雅典东北<span style=\"font-family:Arial\">30</span><span style=\"font-family:宋体\">公里。其名源出</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">腓尼基语</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">marathus<span style=\"font-family:宋体\">,意即</span><span style=\"font-family:Arial\">“</span><span style=\"font-family:宋体\">多茴香的</span><span style=\"font-family:Arial\">”</span><span style=\"font-family:宋体\">,因古代此地生长众多茴香树而得名。体育运动中的马拉松赛跑就得名于此</span></span><span style=\";font-family:宋体;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">。</span></p><h3 style=\"margin-top:20px;margin-right:0;margin-bottom:0;margin-left:0\"><span style=\";font-family:宋体;font-weight:normal;font-size:18px;background:rgb(255,255,255)\">&nbsp;</span><br/></h3><p><br/></p><p><span style=\";font-family:&#39;Times New Roman&#39;;font-weight:normal;font-size:14px\">&nbsp;</span></p>'),(9,'现代马拉松','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">1896<span style=\"font-family:宋体\">年举行首届</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">奥运会</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">时,</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">顾拜旦</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">采纳了历史学家</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">布莱尔</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">(Michel&nbsp;Breal)<span style=\"font-family:宋体\">以这一史事设立一个比赛项目的建议,并定名为</span><span style=\"font-family:Arial\">“</span><span style=\"font-family:宋体\">马拉松</span><span style=\"font-family:Arial\">”</span><span style=\"font-family:宋体\">。比赛沿用当年菲迪皮茨所跑的路线,距离约为</span><span style=\"font-family:Arial\">40</span><span style=\"font-family:宋体\">公里</span><span style=\"font-family:Arial\">200</span><span style=\"font-family:宋体\">米。此后十几年,马拉松跑的距离一直保持在</span><span style=\"font-family:Arial\">40</span><span style=\"font-family:宋体\">公里左右。</span><span style=\"font-family:Arial\">1908</span><span style=\"font-family:宋体\">年第</span><span style=\"font-family:Arial\">4</span><span style=\"font-family:宋体\">届奥运会在</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">伦敦</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">举行时,为方便</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">英国</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">王室人员观看马拉松赛,特意将起点设在</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">温莎宫</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">的阳台下,终点设在奥林匹克运动场内,起点到终点的距离经丈量为<span style=\"font-family:Arial\">26</span><span style=\"font-family:宋体\">英里</span><span style=\"font-family:Arial\">385</span><span style=\"font-family:宋体\">码,折合成</span><span style=\"font-family:Arial\">42.195</span><span style=\"font-family:宋体\">公里。</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">国际田联</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">后来将该距离确定为马拉松跑的标准距离。女子马拉松开展较晚,<span style=\"font-family:Arial\">1984</span><span style=\"font-family:宋体\">年第</span><span style=\"font-family:Arial\">23</span><span style=\"font-family:宋体\">届奥运会才被正式列入比赛项目。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">1896<span style=\"font-family:宋体\">年首届奥运会后,马拉松赛在世界各地广泛举行,美国从</span><span style=\"font-family:Arial\">1897</span><span style=\"font-family:宋体\">年起举行</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">波士顿</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">马拉松赛,至<span style=\"font-family:Arial\">2000</span><span style=\"font-family:宋体\">年已举办了</span><span style=\"font-family:Arial\">104</span><span style=\"font-family:宋体\">届,成为世界上历史最悠久的马拉松赛。马拉松在公路上举行,可采用起、终点在同一地点的往返路线或起、终点不在同一地点的单程路线。比赛时,沿途必须摆放标有已跑距离的公里牌,并要每隔</span><span style=\"font-family:Arial\">5</span><span style=\"font-family:宋体\">公里设一个饮料站提供饮料,两个饮料站之间设一个用水站,提供饮水或用水。赛前需经身体健康检查,合格者方可报名参加比赛。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">由于马拉松比赛一般在室外进行,不确定因素较多,所以在<span style=\"font-family:Arial\">2004</span><span style=\"font-family:宋体\">年</span><span style=\"font-family:Arial\">1</span><span style=\"font-family:宋体\">月</span><span style=\"font-family:Arial\">1</span><span style=\"font-family:宋体\">日前马拉松一直使用世界最好成绩,没有世界记录。</span><span style=\"font-family:Arial\">2004</span><span style=\"font-family:宋体\">年</span><span style=\"font-family:Arial\">1</span><span style=\"font-family:宋体\">月</span><span style=\"font-family:Arial\">1</span><span style=\"font-family:宋体\">日,国际田联宣布了一项新决定:包括马拉松在内的公路赛跑和</span></span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">竞走</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">项目将告别只有世界最好成绩的时代,开始拥有</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">世界纪录</span><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">。</span></p><p><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">国际田联宣布这个决定后,英国长跑女将拉德克利夫被正式认定为女子<span style=\"font-family:Arial\">10</span><span style=\"font-family:宋体\">公里、</span><span style=\"font-family:Arial\">20</span><span style=\"font-family:宋体\">公里和马拉松三个项目的世界纪录保持者,而波兰人科热日尼奥夫斯基则是男子</span><span style=\"font-family:Arial\">50</span><span style=\"font-family:宋体\">公里竞走的第一个世界纪录拥有者。</span></span></p><p><br/></p>'),(10,'马拉松比赛规则','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">原本马拉松比赛没有设世界纪录,只有世界最好成绩。但国际田联(<span style=\"font-family:Arial\">IAAF</span><span style=\"font-family:宋体\">)为了刺激公路比赛的发展,决定从</span><span style=\"font-family:Arial\">2004</span><span style=\"font-family:宋体\">年</span><span style=\"font-family:Arial\">1</span><span style=\"font-family:宋体\">月</span><span style=\"font-family:Arial\">1</span><span style=\"font-family:宋体\">日开始,设立马拉松、竞走等公路比赛的世界纪录。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">42.195<span style=\"font-family:宋体\">公里的距离对于人类来说,是一次对体能极限的挑战。在比赛中,运动员虽然也会从路边的小桌子或者是路边站立的人手中接过来一些水。而这饮用水却不是谁都可以随便递的。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">在马拉松赛中,比赛的起点和终点都提供水和其他饮料,而在比赛路线上,每隔<span style=\"font-family:Arial\">2.5</span><span style=\"font-family:宋体\">公里有一个饮料站。水和饮料放在运动员经过时容易拿到的地方,运动员也可自备饮用水,并且可以在他们要求的地方设置饮料站。饮用水和湿海绵提供站设置在两个饮料站之间。在那里,长跑运动员和竞走运动员经过时可以取到饮用水,还可以从海绵中挤水冲洗头部,起到冷却作用。除此之外,运动员不能从比赛线路上其他地方获得饮料。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\";font-family:Arial;font-weight:normal;font-size:14px;background:rgb(255,255,255)\">可以说,<span style=\"font-family:Arial\">“</span><span style=\"font-family:宋体\">水</span><span style=\"font-family:Arial\">”</span><span style=\"font-family:宋体\">是马拉松比赛中规定最为严格的部分。除此之外,运动员只要在裁判的监督下沿正确的路线比赛即可,如有特殊原因,还可在裁判员的监督下离开赛跑路线,但如果不在监督下离开就会失掉比赛资格。</span></span></p><p><br/></p>'),(11,'世界休闲体育大会','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">世界休闲体育大会由世界休闲组织主办,旨在通过实际行动引导开展世界性休闲体育活动,促进世界休闲体育的发展。世界休闲体育大会每<span style=\"font-family: Arial;\">5</span><span style=\"font-family: 宋体;\">年举办一届,首届世界休闲体育大会于</span><span style=\"font-family: Arial;\">2010</span><span style=\"font-family: 宋体;\">年在韩国春川市举行,第二届于</span><span style=\"font-family: Arial;\">2015</span><span style=\"font-family: 宋体;\">年在青岛莱西市举行。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">2015<span style=\"font-family: 宋体;\">年</span><span style=\"font-family: Arial;\">5</span><span style=\"font-family: 宋体;\">月</span><span style=\"font-family: Arial;\">19</span><span style=\"font-family: 宋体;\">日上午</span><span style=\"font-family: Arial;\">,</span><span style=\"font-family: 宋体;\">青岛</span><span style=\"font-family: Arial;\">2015</span><span style=\"font-family: 宋体;\">世界休闲体育大会在济南举行推介会。大会将于</span><span style=\"font-family: Arial;\">9</span><span style=\"font-family: 宋体;\">月</span><span style=\"font-family: Arial;\">12</span><span style=\"font-family: 宋体;\">日至</span><span style=\"font-family: Arial;\">21</span><span style=\"font-family: 宋体;\">日在青岛莱西市举办</span><span style=\"font-family: Arial;\">,</span><span style=\"font-family: 宋体;\">主题口号是</span><span style=\"font-family: Arial;\">“</span><span style=\"font-family: 宋体;\">运动休闲&nbsp;畅享自然</span><span style=\"font-family: Arial;\">”</span><span style=\"font-family: 宋体;\">。&nbsp;</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">2012<span style=\"font-family: 宋体;\">年</span><span style=\"font-family: Arial;\">10</span><span style=\"font-family: 宋体;\">月</span><span style=\"font-family: Arial;\">3</span><span style=\"font-family: 宋体;\">日,世界休闲组织主席德雷克</span><span style=\"font-family: Arial;\">·</span><span style=\"font-family: 宋体;\">卡塞在意大利里米尼市举行的世界休闲组织第十二届世界休闲大会上宣布,</span>中国青岛获得<span style=\"font-family: Arial;\">2015</span><span style=\"font-family: 宋体;\">年世界休闲体育大会的主办权。</span></span><span style=\"font-family: Arial; font-size: 11px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">&nbsp;</span><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\"> <br/></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">据悉<span style=\"font-family: Arial;\">,</span><span style=\"font-family: 宋体;\">青岛</span><span style=\"font-family: Arial;\">2015</span><span style=\"font-family: 宋体;\">世界休闲体育大会共设置世界休闲体育大会、世界休闲高峰论坛、世界休闲产品博览会和休闲文化艺术节四大板块</span><span style=\"font-family: Arial;\">,</span><span style=\"font-family: 宋体;\">世界休闲体育大会共设</span><span style=\"font-family: Arial;\">17</span><span style=\"font-family: 宋体;\">个比赛大项</span><span style=\"font-family: Arial;\">,</span><span style=\"font-family: 宋体;\">包括国际比赛项目</span><span style=\"font-family: Arial;\">9</span><span style=\"font-family: 宋体;\">个</span><span style=\"font-family: Arial;\">:</span><span style=\"font-family: 宋体;\">沙滩排球、龙舟、国际象棋、武术、攀岩、自由式轮滑、街舞、电子竞技、马拉松;国内比赛项目</span><span style=\"font-family: Arial;\">8</span><span style=\"font-family: 宋体;\">个</span><span style=\"font-family: Arial;\">:</span><span style=\"font-family: 宋体;\">畅游胶州湾、健身操舞、青岛够级、中国象棋、钓鱼、沙滩足球、马术、自行车。</span></span></p><p><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 14px;\">&nbsp;</span></p><p><br/></p>'),(12,'攀岩运动起源','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">攀岩运动有<span style=\"font-family: Arial;\">“</span><span style=\"font-family: 宋体;\">岩壁芭蕾</span><span style=\"font-family: Arial;\">”</span><span style=\"font-family: 宋体;\">、</span><span style=\"font-family: Arial;\">“</span><span style=\"font-family: 宋体;\">峭壁上的艺术体操</span><span style=\"font-family: Arial;\">”</span><span style=\"font-family: 宋体;\">等美称,由登山运动衍生而来,富有很强的技巧性、冒险性,是极限运动中的一个重要项目,在世界上十分流行。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">攀岩是从登山运动中衍生出来的竞技运动项目。<span style=\"font-family: Arial;\">50</span><span style=\"font-family: 宋体;\">年代起源于前苏联,是军队中作为一项军事训练项目而存在的。</span><span style=\"font-family: Arial;\">1974</span><span style=\"font-family: 宋体;\">年列入世界比赛项目。进入</span><span style=\"font-family: Arial;\">80</span><span style=\"font-family: 宋体;\">年代,以难度攀登的现代竞技攀登比赛开始兴起并引起广泛的兴趣,</span><span style=\"font-family: Arial;\">1985</span><span style=\"font-family: 宋体;\">年在意大利举行了第一次难度</span>攀登比赛。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">最早的攀岩者当然是远古的人类,可以想见的是,他们为了躲避猎食者或者是敌人,而在某个危急的时候纵身一跃,从而成就了攀岩这项运动。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">而人类最早的攀登记录,是公元<span style=\"font-family: Arial;\">1492</span><span style=\"font-family: 宋体;\">年法国国王</span>查理三世命令<span style=\"font-family: Arial;\">Domp&nbsp;Julian&nbsp;de&nbsp;Beaupre</span><span style=\"font-family: 宋体;\">,&nbsp;</span><span style=\"font-family: Arial;\">Captain&nbsp;of&nbsp;Montelimar</span><span style=\"font-family: 宋体;\">去攀登一座名为</span><span style=\"font-family: Arial;\">Inaccessible</span><span style=\"font-family: 宋体;\">的石灰岩塔,高度为</span><span style=\"font-family: Arial;\">304</span><span style=\"font-family: 宋体;\">米。当时他们就带着简单的钩子和梯子,凭着经验和技巧登顶成功。那座山后来被命名为</span><span style=\"font-family: Arial;\">Mt.Aiguille</span><span style=\"font-family: 宋体;\">,那次攀登成为历史上第一个有记录并使用装备的攀岩事件。然而之后长达几百年的时间里,历史上一直没有再留下人类新的攀登记录。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">一直到了十七世纪中期,人们攀登高山的活动开始重新被记载下来。冰河地形以及雪山成为这些早期登山者主动迎接的挑战,而他们的足迹遍布了阿尔卑斯山区。在<span style=\"font-family: Arial;\">1850</span><span style=\"font-family: 宋体;\">年的时候,登山者已经发展出一些简单的攀登工具,以帮助他们通过岩壁和一些冰河地形。比如有爪的鞋子和改良过的斧头和木斧,这些都是冰爪和冰斧的前身。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">在阿尔卑斯山区,有另外一些人尝试不过多依赖工具,而是运用他们自己的身体来攀登高山。<span style=\"font-family: Arial;\">1878</span><span style=\"font-family: 宋体;\">年</span><span style=\"font-family: Arial;\">Georg&nbsp;Winkler</span><span style=\"font-family: 宋体;\">没使用任何工具成功首攀</span><span style=\"font-family: Arial;\">Vajolet&nbsp;Tower</span><span style=\"font-family: 宋体;\">西面。虽然</span><span style=\"font-family: Arial;\">Georg&nbsp;Winkler</span><span style=\"font-family: 宋体;\">使用了钩子且鞋子也经过改良,但他仍算是开创了自由攀岩。</span></span></p><p><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 14px;\">&nbsp;</span></p><p><br/></p>'),(13,'攀岩运动发展','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">在欧美、前苏联及亚洲的日本、韩国,攀岩运动已相当流行,当今世界攀岩水平数欧美特别是法国与美国最高,法国相对在人工岩壁上占优,美国在自然岩壁称强。在亚洲,日本、韩国水平较高,他们有些选手已达到世界水平。中国大陆、香港及台湾的水平大体相当,同属亚洲中流水平。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">攀岩运动在中国经过十多年,特别是近两年的发展已初具规模,并吸引了越来越多的年轻人参加,发展前景十分可喜。从<span style=\"font-family: Arial;\">1997</span><span style=\"font-family: 宋体;\">年开始,国内每年要举行两次以上的全国或国际性比赛,</span><span style=\"font-family: Arial;\">8</span><span style=\"font-family: 宋体;\">月在</span>西岳华山举行了国内迄今为止总体水平最高的一次国际攀岩邀请赛,亚洲攀岩锦标赛也将由中国承办。在中国北方地区,特别是北京,了解攀岩的人已为数不少;而参与攀岩已成为这里许多青少年的时尚行为。尽管攀岩还没有在全国范围内得到很好的普及推广,但值得欣喜的是,通过近几年新闻媒体的大力宣传,东南沿海、西南及西北等地区也纷纷要求开展这项运动。全国已经建好或正开始修建各种各样的天然及人工攀岩场地供人们训练和娱乐。我</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">在欧美、前苏联及亚洲的日本、韩国,攀岩运动已相当流行,当今世界攀岩水平数欧美特别是法国与美国最高,法国相对在人工岩壁上占优,美国在自然岩壁称强。在亚洲,日本、韩国水平较高,他们有些选手已达到世界水平。中国大陆、香港及台湾的水平大体相当,同属亚洲中流水平。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">攀岩运动在中国经过十多年,特别是近两年的发展已初具规模,并吸引了越来越多的年轻人参加,发展前景十分可喜。从<span style=\"font-family: Arial;\">1997</span><span style=\"font-family: 宋体;\">年开始,国内每年要举行两次以上的全国或国际性比赛,</span><span style=\"font-family: Arial;\">8</span><span style=\"font-family: 宋体;\">月在</span>西岳华山举行了国内迄今为止总体水平最高的一次国际攀岩邀请赛,亚洲攀岩锦标赛也将由中国承办。在中国北方地区,特别是北京,了解攀岩的人已为数不少;而参与攀岩已成为这里许多青少年的时尚行为。尽管攀岩还没有在全国范围内得到很好的普及推广,但值得欣喜的是,通过近几年新闻媒体的大力宣传,东南沿海、西南及西北等地区也纷纷要求开展这项运动。全国已经建好或正开始修建各种各样的天然及人工攀岩场地供人们训练和娱乐。我国幅员辽阔,山地资源丰富,可供攀岩的悬崖峭壁比比皆是。中国人比较灵巧、轻捷,只要下功夫,我们就能够在不久的将来进入攀岩运动的世界先进行列。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">攀岩正以其特有的魅力,突出的个性感染着人们。参与攀岩,会让您在与悬崖峭壁的抗衡中学会坚强,在与大山的拥抱中感受宽容,在征服攀登路线后享受成功与胜利的喜悦。</span></p><p><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 14px;\">&nbsp;<br/></span></p><p><br/></p>'),(14,'公路自行车赛','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">公路自行车赛是一项挑战速度与耐力的运动,沿途的环境和风景都十分秀丽,也给这项异常艰苦的运动带来了温馨和惬意。<span style=\"font-family: Arial;\">1869</span><span style=\"font-family: 宋体;\">年从巴黎到里昂的</span><span style=\"font-family: Arial;\">120</span><span style=\"font-family: 宋体;\">公里自行车赛是最早的公路自行车赛,在</span><span style=\"font-family: Arial;\">1896</span><span style=\"font-family: 宋体;\">年第</span><span style=\"font-family: Arial;\">1</span><span style=\"font-family: 宋体;\">届奥运会上,自行车项目就被列入正式比赛项目。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">公路自行车赛在有各种地形变化的公路上举行。奥运会设有大组赛和</span><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">个人计时赛</span><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">大组赛选择环型或往返路线,路面要有起伏和斜坡,起、终点应尽可能设在同一地点。比赛时所有运动员位于起点线集体出发,以运动员到达终点的顺序排列名次。男、女赛事分别于<span style=\"font-family: Arial;\">1896</span><span style=\"font-family: 宋体;\">年和</span><span style=\"font-family: Arial;\">1984</span><span style=\"font-family: 宋体;\">年被列为</span></span><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">奥运会比赛项目</span><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">。</span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">个人计时赛通常为环型路线,车手单独出发,所用时间最短的为优胜。</span></p><p><span style=\"font-family: &quot;Times New Roman&quot;; font-size: 14px;\">&nbsp;</span></p><p><br/></p>'),(15,'公路自行车赛类型','<p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">1.<span style=\"font-family: 宋体;\">日赛</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">自行车比赛项目之一。公路赛的一种。世界锦标赛、奥运会、洲际运动会、国家运动会的公路个人赛常用一日赛的方式进行。以队的形式参加。各队在起点线后从左至右排成一路纵队集体出发。选择在有起伏的山坡、斜坡、路面一般不少于<span style=\"font-family: Arial;\">6</span><span style=\"font-family: 宋体;\">米(起终点不少于</span><span style=\"font-family: Arial;\">8</span><span style=\"font-family: 宋体;\">米)的变化道路或环形公路上进行。运动员之间可交换食物、饮料、工具和配件。同队运动员之间可以交换车胎和自行车,可等待受伤或落后的运动员。设公共和队的维修器材车尾随运动员后面。允许接受补给站和队的维修车上提供的补给品。名次按运动员通过终点的顺序决定,前者名次列前。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">2.<span style=\"font-family: 宋体;\">多日分段赛</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">简称<span style=\"font-family: Arial;\">&quot;</span><span style=\"font-family: 宋体;\">多日赛</span><span style=\"font-family: Arial;\">&quot;</span><span style=\"font-family: 宋体;\">。</span>自行车比赛项目之一。公路赛的一种。根据级别决定比赛的天数,至少举行<span style=\"font-family: Arial;\">2</span><span style=\"font-family: 宋体;\">天,最多</span><span style=\"font-family: Arial;\">20</span><span style=\"font-family: 宋体;\">多天。赛段由序幕赛、个人赛、</span>个人计时赛、团体计时赛等公路比赛的形式组合而成。赛程地形复杂,以平路、坡路、起伏路组成。以每分段的时间累计排列个人和团体总名次。每分段各队前三名运动员的时间相加为团体成绩。常采用从一个城市到另一个城市连续的、环绕国家或地区的方式。最长总距氪<span style=\"font-family: Arial;\">4000</span><span style=\"font-family: 宋体;\">公里。时间超过</span><span style=\"font-family: Arial;\">10</span><span style=\"font-family: 宋体;\">天以上的比赛中,距离超过</span><span style=\"font-family: Arial;\">260</span><span style=\"font-family: 宋体;\">公里赛段只能有</span><span style=\"font-family: Arial;\">2</span><span style=\"font-family: 宋体;\">段。以精英级运动员参赛的顶级环国家多日赛有:环法国、环意大利、环西班牙等。跨越国家与地区的比赛有和平大奖赛(捷克、波兰、德国)。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">3.<span style=\"font-family: 宋体;\">个人计时赛</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">自行车比赛项目之一。公路赛的一种。传统比赛在一个延伸方向、路面平坦、距离为<span style=\"font-family: Arial;\">5-40</span><span style=\"font-family: 宋体;\">公里的转折公路上进行,也可在平坦的环形路上进行。至少每隔</span><span style=\"font-family: Arial;\">5</span><span style=\"font-family: 宋体;\">公里(上坡段每公里)标明比赛所剩下的骑行距离。运动员以个人单独方式匀速骑完全程,每分钟平均心率可达</span><span style=\"font-family: Arial;\">185</span><span style=\"font-family: 宋体;\">次左右。运动员之间的出发时间间隔为</span><span style=\"font-family: Arial;\">30</span><span style=\"font-family: 宋体;\">秒至</span><span style=\"font-family: Arial;\">2</span><span style=\"font-family: 宋体;\">分钟(奥运会为</span><span style=\"font-family: Arial;\">1</span><span style=\"font-family: 宋体;\">分</span><span style=\"font-family: Arial;\">30</span><span style=\"font-family: 宋体;\">秒)。按运动员成绩优劣排先后名次。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">4.<span style=\"font-family: 宋体;\">团体计时赛</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">自行车比赛项目之一。公路赛的一种。反映全队实力的项目之一。世界性的传统比赛在一个延伸方向、路面平坦、距离为<span style=\"font-family: Arial;\">15-50</span><span style=\"font-family: 宋体;\">公里的转折公路上进行。奥运会和世界锦标赛上,此项目的赛距为</span><span style=\"font-family: Arial;\">100</span><span style=\"font-family: 宋体;\">公里。每队</span><span style=\"font-family: Arial;\">4</span><span style=\"font-family: 宋体;\">名运动员参加比赛,队与队之间相隔</span><span style=\"font-family: Arial;\">2-3</span><span style=\"font-family: 宋体;\">分钟出发。</span><span style=\"font-family: Arial;\">4</span><span style=\"font-family: 宋体;\">名运动根据风向编队,采用匀速方式高速骑行,每分钟心率保持在</span><span style=\"font-family: Arial;\">180</span><span style=\"font-family: 宋体;\">次左右。每人轮流在前领骑</span><span style=\"font-family: Arial;\">200</span><span style=\"font-family: 宋体;\">米左右下撤至队尾,相互换位领骑,在前抗风阻力领骑者心率通常高于尾随者每分钟</span><span style=\"font-family: Arial;\">10</span><span style=\"font-family: 宋体;\">次左右。到达终点时取本队第三名运动员到达的时间为队的成绩,按各队成绩优劣排先后名次。</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">5.<span style=\"font-family: 宋体;\">个人赛</span></span></p><p style=\"margin-top:20px;margin-right:0;margin-bottom:15px;margin-left:0;text-indent:28px;padding:0 0 0 0 ;text-align:left;line-height:24px;background:rgb(255,255,255)\"><span style=\"font-family: Arial; font-size: 14px; background: rgb(255, 255, 255) none repeat scroll 0% 0%;\">自行车比赛项目之一。公路赛的一种。参加者以个人名义报告参赛,排列在起终点线后集体出发的比赛。最长距离为<span style=\"font-family: Arial;\">170</span><span style=\"font-family: 宋体;\">公里。在环路上进行时,环路的周长最少是</span><span style=\"font-family: Arial;\">10</span><span style=\"font-family: 宋体;\">公里。</span></span></p><p><br/></p>'); /*!40000 ALTER TABLE `bm_news` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_newss` -- DROP TABLE IF EXISTS `bm_newss`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_newss` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8 NOT NULL, `newss` varchar(10000) CHARACTER SET utf8 NOT NULL, `user_id` varchar(255) CHARACTER SET utf8 NOT NULL, `event_id` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_newss` -- LOCK TABLES `bm_newss` WRITE; /*!40000 ALTER TABLE `bm_newss` DISABLE KEYS */; INSERT INTO `bm_newss` VALUES (1,'动态公告使用说明','<p><span style=\"font-size: 18px;\">&nbsp;&nbsp;&nbsp; 动态公告发布赛事报名的重要更新信息。比如赛事延期,赛事报名人数限制变化等将及时发布在本栏。</span><br/></p>','',''),(2,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程','<p>只接受学校为单位的报名。<br/>报名学校教师需要逐个填写学生信息,其中,手机号和邮箱可以填写报名老师的,身份证号需要填写学生的。<br/><br/></p>','','396'); /*!40000 ALTER TABLE `bm_newss` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_organizes` -- DROP TABLE IF EXISTS `bm_organizes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_organizes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `organize` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci CHECKSUM=1 ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_organizes` -- LOCK TABLES `bm_organizes` WRITE; /*!40000 ALTER TABLE `bm_organizes` DISABLE KEYS */; INSERT INTO `bm_organizes` VALUES (1,'民间'),(2,'企业'),(3,'政府'),(4,'公益'); /*!40000 ALTER TABLE `bm_organizes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_relese_event` -- DROP TABLE IF EXISTS `bm_relese_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_relese_event` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `event_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `addit` tinyint(1) unsigned NOT NULL DEFAULT '0', `event_type` tinyint(2) unsigned NOT NULL, `apply_time_start` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `apply_time_end` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `place` varchar(60) CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL DEFAULT '', `contact_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `contact_phone` bigint(11) unsigned NOT NULL, `contact_emaill` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `orgnize` tinyint(2) unsigned NOT NULL, `orgnize_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `extend_id` tinyint(3) unsigned NOT NULL, `is_extends` tinyint(1) unsigned NOT NULL DEFAULT '0', `apply_money` double(10,2) NOT NULL DEFAULT '0.00', `event_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_id` int(11) NOT NULL, `is_end` tinyint(1) unsigned NOT NULL, `wenzhang` text CHARACTER SET utf8 NOT NULL, `jianjie` varchar(80) CHARACTER SET utf8 NOT NULL, `is_top` tinyint(1) unsigned NOT NULL, `detailed` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `begin` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `collocation` tinyint(1) unsigned NOT NULL, `people` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE, KEY `event_name` (`event_name`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=397 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_relese_event` -- LOCK TABLES `bm_relese_event` WRITE; /*!40000 ALTER TABLE `bm_relese_event` DISABLE KEYS */; INSERT INTO `bm_relese_event` VALUES (198,'莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)',1,18,'2015年08月01日','2015年08月20日','2','李老师',15648411564,'<EMAIL>',3,'青岛体育总会',0,0,200.00,'/uploads/climbing.png',4,1,'<p style=\";margin-bottom:0;text-align:center;background:white\"><strong><span style=\"font-family:华文仿宋;color:#333333\">莱西国际攀石邀请赛暨全国攀岩分站赛(莱西站)<iframe class=\"ueditor_baidumap\" src=\"http://localhost/advanced/frontend/web/assets/3a229c27/js/dialogs/map/show.html#center=120.524038,36.894863&zoom=14&width=530&height=340&markers=120.524325,36.89394&markerStyles=l,A\" frameborder=\"0\" height=\"344\" width=\"534\"></iframe></span></strong></p><p style=\";margin-bottom:0;text-align:center;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:&#39;微软雅黑&#39;,&#39;sans-serif&#39;;color:#333333\">&nbsp;</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">一、比赛名称:</span><strong><span style=\"font-family:华文仿宋;color:#333333;font-weight:normal\">莱西</span></strong><span style=\"font-family:华文仿宋;color:#333333\">国际攀石邀请赛暨全国攀岩分站赛(莱西站)</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">二、主办单位:国家体育总局登山运动管理中心</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><span style=\"font-family:华文仿宋;color:#333333\">中国登山协会</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><span style=\"font-family:华文仿宋;color:#333333\">青岛市人民政府</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">三、承办单位:莱西市人民政府</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><span style=\"font-family:华文仿宋;color:#333333\">青岛市体育局</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">四、比赛时间:2015年9月14—16日</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">五、比赛地点:山东省青岛莱西市</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">六、比赛项目:男子难度赛、速度赛、攀石赛</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><span style=\"font-family:华文仿宋;color:#333333\">女子难度赛、速度赛、攀石赛</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">七、参赛资格:</span></p><p style=\";margin-bottom:0;text-indent:38px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">(一)在中国登山协会注册的攀岩运动员;(二)由香港、澳门特别行政区协会推荐的攀岩运动员;(三)2014年全国青年攀岩锦标赛C组各单项前三名运动员;(四)中国登山协会邀请的10名外籍运动员只参加男子、女子攀石赛。</span></p><p style=\";margin-bottom:0;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\"font-family:华文仿宋;color:#333333\">八、比赛办法:</span></p><p style=\";margin-bottom:0;text-indent:32px;background:white\"><span style=\"font-family:华文仿宋;color:#333333\">难度赛,将进行预赛和决赛;速度赛,将进行预赛(排名赛)和决赛(淘汰赛);攀石赛,将进行预赛、半决赛和决赛;攀石半决赛成绩作为本次分站赛攀石项目最终成绩;攀石决赛成绩作为本次国际攀石邀请赛最终成绩。</span></p><p><br/></p>',' 攀岩是从登山运动中衍生出来的竞技运动项目,也属于登山运动,攀登对象主要是岩石峭壁或人造岩墙。',0,'山东青岛莱西市体育中心休闲广场','2015年10月30日',0,0),(199,'2015青岛•莱西国际马拉松赛',1,1,'2015年08月01日','2015年08月10日','2','陆老师',15234156151,'<EMAIL>',3,'青岛体育总会',0,0,300.00,'/uploads/marathon.png',4,1,'<p style=\";margin-bottom:0;text-align:center;line-height:27px;background:white\"><strong><span style=\";color:#333333\">2015</span></strong><strong><span style=\";color:#333333\">青岛·莱西国际马拉松赛</span></strong></p><p style=\";margin-bottom:0;text-align:center;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">&nbsp;<iframe class=\"ueditor_baidumap\" src=\"http://localhost/advanced/frontend/web/assets/3a229c27/js/dialogs/map/show.html#center=120.524325,36.89394&zoom=13&width=530&height=340&markers=120.524325,36.89394&markerStyles=l,A\" frameborder=\"0\" height=\"344\" width=\"534\"></iframe></span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:36px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">一、主办单位</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;line-height:27px;background: white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">&nbsp;&nbsp;</span><span style=\";color:#333333\">世界休闲组织、中国田径协会 、青岛市人民政府</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">二、承办单位</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">莱西市人民政府、青岛市体育局 、青岛市体育总会</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">三、参赛单位</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">各国家、地区单项协会与国内各省、自治区、直辖市及青岛市</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">四、比赛时间、地点<strong>:</strong></span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(一)比赛时间:2015年9月19日上午8点整。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(二)比赛地点:青岛·莱西市</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">五、比赛项目</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(一)男、女马拉松(42.195公里)</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(二)男、女半程马拉松(21.0975公里)</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(三)男、女迷你马拉松(5公里)</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">六、参赛年龄要求</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(一)马拉松项目年龄限20岁以上(1995年当年出生)。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(二)半程马拉松项目年龄限18岁以上(1997年当年出生)。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(三)迷你马拉松项目年龄限13岁以上(2002年当年出生),18岁以下参赛者至少须有一名监护人共同报名参加。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">七、比赛路线</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">马拉松:起终点设在体育中心南大门(北京路路口),北京路—扬州路—上海东路—上海西路—沽河大道—辇止头桥—东堤顶路—孙受桥—西堤顶路—上海西路—沽河大道—北京西路—北京东路—东行至终点。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">半程马拉松:起终点设在体育中心南大门(北京路路口),北京路—扬州路—上海东路—上海西路—沽河大道—至半程转折点(11公里处)—沿沽河大道—北京西路—北京东路—东行至终点。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">迷你马拉松:起终点设在体育中心南大门(北京路路口),北京路—扬州路—上海东路—烟台路—至终点人民广场东门。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">八、竞赛办法</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(一)采用中国田径协会审定的最新田径竞赛规则。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(二)比赛检录:按竞赛项目在规定时间及区域内进行检录。参加马拉松的特邀运动员、中国田协注册运动员、国际优秀运动员须在赛前40分钟到体育中心南门专门检录区进行检录。特邀运动员需出示护照原件,注册运动员需出示注册卡,否则不能参赛。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(三)起跑顺序:按马拉松特邀运动员、国际优秀运动员、注册运动员、其他马拉松运动员、半程马拉松运动员、迷你马拉松运动员顺序往后排列。各项目起点距前方方队20米。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(四)本次比赛采用一枪发令所有项目同时起跑的办法。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(五)计时办法</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">1</span><span style=\";color:#333333\">、本次比赛采取“净计时”方法,从每位选手通过起点计时毯开始独立计时。组委会为所有参加马拉松、半程马拉松的选手提供感应计时芯片服务,除起点外,两个芯片在其他计时点的误差少于1秒,将取消相关参赛者的成绩。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">2</span><span style=\";color:#333333\">、本次比赛使用回收性计时芯片,运动员报到时收取100元芯片押金,赛后到芯片回收处领回芯片押金,若芯片损坏则押金不予退还。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(六)关门距离和时间</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">为了保证参赛选手比赛安全、顺利,比赛期间比赛线各段设关门时间,限时对社会交通封闭。关门时间后,相应路段恢复社会交通。在规定的关门时间内,未跑完对应距离的参赛运动员须立即停止比赛,退出赛道,以免发生危险。退出比赛的运动员可乘坐组委会提供的收容车到终点处。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(七)存取衣</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">马拉松、半程马拉松运动员在起点指定区域按号段进行存衣,到达终点后,请到指定区域按对应号码取衣。贵重物品不要存放在包内(如手机、有效证件、现金、各种钥匙、信用卡、掌上电脑等)。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">比赛当天起点存衣于7点45分截止,请运动员安排存衣时间。马拉松运动员在比赛当日15:00前,半程马拉松运动员在比赛当日12:00前,到各自终点指定存衣处领取个人存放物品。如超过领取时间没有领取的,可于赛后5天内到组委会(莱西市市委党校院内)领取。逾期不领取者,组委会将按无人领取处理。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(八)饮水、饮料补给区</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">饮料、饮水/用水站:自起点开始至5公里处设置第一个饮料站,以后每隔5公里设置一个饮料站,两个饮料站中间间隔2.5公里处均设置一个饮水/用水站。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(九)医疗救护</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">组委会沿马拉松赛道每5公里设立一个固定医疗点,医疗点前50米有明显的标志。沿途有急救车跟随。起终点处设救护车。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(十)组委会将对起点、终点及关键路点进行录像监控,出现以下违反比赛规定的参赛者将被取消参赛成绩,其个人资料录入报名识别系统,两年内不准参加青岛﹒莱西国际马拉松赛,并报请中国田径协会追加处罚。情节严重的,终身禁赛。</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">1</span><span style=\";color:#333333\">、以虚假年龄或虚假身份报名的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">2</span><span style=\";color:#333333\">、未按要求穿着比赛服装和佩戴号码布的;</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:47px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">3</span><span style=\";color:#333333\">、运动员携带他人(包括男运动员携带女运动员)感应计时芯片或一名运动员同时携带两枚或两枚以上感应计时芯片参加比赛的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">4</span><span style=\";color:#333333\">、不按规定的起跑顺序在非报名项目的起跑点起跑的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">5</span><span style=\";color:#333333\">、起点活动中不按规定时间出发抢跑的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">6</span><span style=\";color:#333333\">、运动员的教练员乘任何车辆进入比赛跑道的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">7</span><span style=\";color:#333333\">、没有沿规定路线跑完各个项目的全程,绕近道或途中插入的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">8</span><span style=\";color:#333333\">、伪造号码布参赛的;多人交替替跑的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">9</span><span style=\";color:#333333\">、比赛中采用挤人、推人、撞人、绊人等犯规行为的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">10</span><span style=\";color:#333333\">、在终点不按规定要求重复通过终点领取纪念品的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">11</span><span style=\";color:#333333\">、未跑完全程私自通过终点领取纪念品的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">12</span><span style=\";color:#333333\">、不服从赛事工作人员指挥的;</span></p><p style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:45px;margin-bottom:0;text-align:justify;text-justify:inter-ideograph;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">13</span><span style=\";color:#333333\">、其他违反比赛规定的行为,按照比赛有关规定进行处理。</span></p><p style=\";margin-bottom:0;text-align:justify;text-justify: inter-ideograph;text-indent:37px;line-height:27px;background:white;orphans: auto;widows: 1;-webkit-text-stroke-width: 0px;word-spacing:0px\"><span style=\";color:#333333\">(十一)有关竞赛的具体要求和安排,请详细阅读各项目《参赛须知》。</span></p><p><br/></p>','马拉松是国际上非常普及的长跑比赛项目,全程26英里385码,折合为42.195公里,分全程马拉松、半程马拉松和迷你马拉松三种,以全程马拉松比赛最为普及,一般提及',0,'青岛体育局','2015年10月30日',0,0),(201,'莱西国际武术节',1,17,'2015年07月18日','2015年08月05日','2','张老师',15098800654,'<EMAIL>',3,'青岛体育总会',0,1,300.00,'/uploads/14446403459113.png',12,1,'<p style=\"text-align:center;line-height:37px\"><strong><span style=\"font-size:19px;font-family:宋体\">莱西国际武术节</span></strong></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">&nbsp;</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">一、比赛时间、地点</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">比赛时间:2015年9月16-17日</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">比赛地点:莱西市体育中心体育馆</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">二、主办、承办、协办单位</span></p><p style=\"text-align:left;line-height:37px\"><strong><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;</span></strong><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp; &nbsp;</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">主办单位:世界休闲组织<span style=\"letter-spacing:-1px\">(World&nbsp; Leisure Organization)</span></span></p><p style=\"text-align:left;text-indent:131px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">青岛市人民政府&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">承办单位:</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">莱西市人民政府</span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:19px;font-family:仿宋_GB2312\">青岛市体育局&nbsp;&nbsp; </span></p><p style=\"text-align:left;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;&nbsp; &nbsp;</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">协办单位:</span></p><p style=\"text-align:left;line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">三、</span><span style=\"font-size:19px;font-family: 黑体\">参赛单位</span></p><p style=\"text-align:left;line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">&nbsp; </span><span style=\"font-size: 19px;font-family:黑体\">(</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">一</span><span style=\"font-size:19px;font-family:黑体\">)</span><span style=\"font-size:19px;font-family: 仿宋_GB2312\">各国家和地区的体育单项协会;</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">&nbsp; </span><span style=\"font-size: 19px;font-family:黑体\">(</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">二</span><span style=\"font-size:19px;font-family:黑体\">)</span><span style=\"font-size:19px;font-family: 仿宋_GB2312\">国内各省、自治区、直辖市。</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">四、个人项目年龄规定</span></p><p style=\"text-indent:32px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">A</span><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">组:9岁—15岁(2006年12月31日至2000年1月1日前)</span></p><p style=\"text-indent:32px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">B</span><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">组:16岁—25岁(1999年1月1日至1990年12月31日前)</span></p><p style=\"text-indent:32px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">C</span><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">组:26岁—40岁(1989年1月1日至1975年12月31日前)</span></p><p style=\"text-indent:32px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">D</span><span style=\"font-size:19px;font-family:仿宋_GB2312;letter-spacing:-1px\">组:41岁—55岁(1974年1月1日至1960年12月31日前)</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">五、竞赛项目</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp; </span><span style=\"font-size: 19px;font-family:&#39;楷体_GB2312&#39;,&#39;serif&#39;\">&nbsp;</span><span style=\"font-size:19px;font-family:&#39;楷体_GB2312&#39;,&#39;serif&#39;\">(一)拳术类:</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;&nbsp; </span><span style=\"font-size:19px;font-family:仿宋_GB2312\">少年规定拳、国际规定拳(长拳、南拳)、自选拳、太极拳(陈、杨式国家规定套路)、各式传统太极拳(注:不分式录取)</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:&#39;楷体_GB2312&#39;,&#39;serif&#39;\">(二)传统拳:</span></p><p style=\"text-indent:47px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">1</span><span style=\"font-size: 19px;font-family:仿宋_GB2312\">类:形意拳、八卦掌、八极拳</span></p><p style=\"text-indent:47px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">2</span><span style=\"font-size: 19px;font-family:仿宋_GB2312\">类:通臂拳、劈挂拳、翻子拳</span></p><p style=\"text-indent:47px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">3</span><span style=\"font-size: 19px;font-family:仿宋_GB2312\">类:地躺、象形类</span></p><p style=\"text-indent:47px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">4</span><span style=\"font-size: 19px;font-family:仿宋_GB2312\">类:查、华、炮、洪各类少林拳</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:&#39;楷体_GB2312&#39;,&#39;serif&#39;\">(三)器械类:</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;1</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、短器械(刀、剑)任选一项</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;2</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、长器械(枪、棍)任选一项</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;3</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、太极器械(太极刀、太极剑)任选一项</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:&#39;楷体_GB2312&#39;,&#39;serif&#39;\">(四)其他器械:</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;1</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">类:单器械 (大刀、扑刀等)</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;2</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">类:双器械(双刀、双剑等)</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;3</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">类:软器械(绳标、九节鞭、三节棍、流星锤等)</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(五)集体项目:拳术类、器械类(拳术类和器械类混编项目归器械类)。</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">六、参赛办法</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:19px;font-family:仿宋_GB2312\">(一)以各国家和地区体育单项协会和各省、自治区、直辖市、各馆校为单位报名,每单位可报领队1人、教练1人、运动员14人(男女不限)。青岛市可组织两支队伍参加(以青岛市武术协会名义统一组队报名参赛),各队报名时需加参赛单位公章,否则不予受理。 </span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(二)每位运动员限报拳术一项、器械一项。各队限报一项集体项目,集体项目人数不得少于6人,每少一人按规则扣分。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(三)报名时需提交运动员身份证复印件、年龄要求与报名不符者、不录取成绩。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(四)</span><span style=\"font-size:19px;font-family: 仿宋_GB2312\">参赛人员必须是经体检身体健康者,并具有人身意外伤害保险。</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">七、竞赛办法</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(一)比赛采用国家体育总局审定的《传统武术竞赛规则》及有关补充规定执行。&nbsp; </span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(二)比赛项目时间:</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;1</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、长拳类、传统拳类、传统器械:40秒—2分钟。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;2</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、太极拳4—6分钟:演练至4分钟裁判长鸣哨示意。</span></p><p style=\"text-indent:47px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">3</span><span style=\"font-size: 19px;font-family:仿宋_GB2312\">、太极剑3—4分钟:演练至3分钟裁判长鸣哨示意。&nbsp; </span></p><p style=\"text-indent:9px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;&nbsp;&nbsp; 4</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、集体项目不超过4分钟,</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">要求各队音乐自备,配乐不得带说唱词</span><span style=\"font-size:19px;font-family: 仿宋_GB2312\">。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">&nbsp;5</span><span style=\"font-size:19px;font-family:仿宋_GB2312\">、规定太极拳套路减少动作不扣分。</span></p><p style=\"line-height:37px\"><span style=\"font-size:19px;font-family:黑体\">八、录取名次与奖励</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(一)按各类、各年龄组、男女分别录取前六名(其中拳术类、器械类按类内项目分别录取前六名,传统类、其他器械按类录取前六名,不足六名与相同组别合并录取),前三名颁发奖牌,其他颁发大会证书。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(二)任一项目报名人数超出15人减除6人获奖者,其余选手颁发大会纪念牌。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(三)国内组、国外组分别录取名次。</span></p><p style=\"text-indent:37px;line-height:37px\"><span style=\"font-size:19px;font-family:仿宋_GB2312\">(四)获集体项目前六名者颁发奖金。</span></p><p><br/></p>','武术是中华民族的优秀文化遗产,拳种流派繁多,内容丰富,运动形式多样,具有技击、强身健体、医疗保健和观赏娱乐等多种功能。',0,'青岛四方区','2015年10月30日',0,0),(203,'“道通杯”国际象棋比赛',1,17,'2015年07月10日','2015年08月01日','2','宋老师',4294967295,'<EMAIL>',3,'青岛体育总会',0,0,300.00,'/uploads/chess.png',12,0,'<p style=\"margin-left:28px;text-align:center;line-height:37px\"><strong><span style=\"font-size:29px;font-family:宋体\">“道通杯”国际象棋比赛</span></strong></p><p style=\"margin-left:28px;text-indent:189px;line-height:37px\"><strong><span style=\"font-size:29px;font-family:宋体\">&nbsp;</span></strong></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">一、</span><span style=\"font-size:21px;font-family:黑体\">比赛时间、地点</span></p><p style=\"text-align:left;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:仿宋_GB2312\">比赛时间:</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">2015</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">年9月6--8日</span></p><p style=\"text-align:left;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:仿宋_GB2312\">比赛地点:青岛莱西市</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">白鹭湖温泉度假村</span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">二、主办、承办、协办单位</span></p><p style=\"text-align:left;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;letter-spacing:-1px\">&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:仿宋_GB2312\">主办单位</span><span style=\"font-size:21px;font-family:仿宋_GB2312;letter-spacing:-1px\">:</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">世界休闲组织<span style=\"letter-spacing:-1px\">(World Leisure Organization)</span></span></p><p style=\"text-align:left;text-indent:149px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">中国棋院</span></p><p style=\"text-align:left;text-indent:149px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">青岛市人民政府&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">承办单位:</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">莱西市人民政府</span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">青岛市体育局</span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">协办单位: 青岛市国际象棋协会</span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">三、参赛单位</span></p><p style=\"text-align:left;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">各国单项体育协会及东道主青岛队,中国各代表队由中国国际象棋协会负责组队参赛。 </span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">四、竞赛分组及年龄规定</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(一)竞赛分组:成年组、少年组</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(二)年龄规定</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">1</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">、成年组:1999年10月31日以前出生者。</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">2</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">、少年组:1999年11月1日以后—2005年12月31日以前出生者。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">五、项目设置</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(一)</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">成人组:男子团体、女子团体、男子个人、女子个人。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(二)少年组:男子团体、女子团体、男子个人、女子个人。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">六、参赛办法</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(一)个人赛:每队可报5名男棋手参加男子组比赛、 3名女棋手参加女子组比赛。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(二)团体赛:每队可分别报1个男子和1个女子相应级别的团体赛。男子团体赛由4名上场棋手和一名替补棋手组成;女子团体赛由2名上场棋手和1名替补棋手组成。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(三)所有参赛棋手可以兼项。少年组运动员报名时须附身份证或户口本的影印件。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(四)每单位可派领队1名,教练1名。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">七、竞赛办法</span></p><p style=\";margin-bottom:0;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:仿宋_GB2312\">(一)本次比赛采用国际棋联最新规则。</span></p><p style=\";margin-bottom:0;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:仿宋_GB2312\">(二)比赛用时</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">快棋赛:每人25分钟,每步棋加3秒。</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(三)选手的名次按照以下顺序排出</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">1</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">、个人项目:积分;直胜;布什霍尔兹(BUCHHOLZ)积分;</span></p><p style=\";margin-bottom:0;text-indent:32px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">2</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">、团体项目: 场分;局分;直胜(只有所有同分的队伍都互相碰过);布什霍尔兹(BUCHHOLZ)积分</span><span style=\"font-size:21px;font-family: 仿宋_GB2312\">。</span></p><p style=\";margin-bottom:0;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:黑体\">八、录取名次及奖励</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(一)男女各组团体赛均录取前六名给予奖励。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(二)男女各组个人赛均录取前八名给予奖励。</span></p><p style=\";margin-bottom:0;text-indent:43px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">(三) 运动员具体奖金数额另行通知。</span></p><p style=\";margin-bottom:0;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">&nbsp;&nbsp;&nbsp;&nbsp; </span></p><p><br/></p>','国际象棋,又称欧洲象棋或西洋棋港澳台地区多采用此说法,是一种二人对弈的战略棋盘游戏,在世界上广受欢迎。',0,'青岛体育局','2015年10月30日',0,0),(204,'“莱西杯”2015马术邀请赛',1,17,'2015年07月10日','2015年11月10日','2','王老师',15098800373,'<EMAIL>',3,'青岛体育总会',0,0,350.00,'/uploads/equestrian.png',4,0,'<p style=\"line-height:33px\"><strong><span style=\"font-size:29px;font-family:宋体;color:black;letter-spacing:-1px\">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a name=\"OLE_LINK7\"></a><a name=\"OLE_LINK6\"></a>“</span></strong><strong><span style=\"font-size:29px;font-family:宋体;color:black;letter-spacing: -1px\">莱西杯”2015马术邀请赛</span></strong></p><p style=\"text-indent:201px;line-height:27px\"><strong><span style=\"font-size:29px;font-family:宋体;color:black;letter-spacing:-1px\">&nbsp;</span></strong></p><p style=\"margin-left:69px;line-height: 37px\"><strong><span style=\"font-size:21px;font-family:黑体\">一、 </span></strong><span style=\"font-size:21px;font-family:黑体\">比赛时间、地点</span></p><p style=\"margin-left:69px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">时间:2015年9月18日—19日</span></p><p style=\"margin-left:69px;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">地点:山东青岛莱西市姜山湿地</span></p><p style=\"text-indent:21px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">二、主办、承办、协办单位</span></p><p style=\"margin-left:177px;text-align:left;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">主办单位:世界休闲组织(world leisure organization)&nbsp; 青岛市人民政府</span></p><p style=\"margin-left:28px;text-align:left;text-indent:43px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">承办单位:</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">莱西市人民政府</span></p><p style=\"margin-left:28px;text-align:left;text-indent:43px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size:21px;font-family:仿宋_GB2312\">青岛市体育局&nbsp;&nbsp; </span></p><p style=\"margin-left:69px;text-align:left;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">三、 </span><span style=\"font-size:21px;font-family:黑体\">参赛单位:</span></p><p style=\"margin-left:69px;text-align:left;line-height:37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">各省、自治区、直辖市。</span></p><p style=\"text-align:left;text-indent:21px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">四、竞赛分组及年龄规定:</span></p><p style=\"margin-left:28px;text-align:left;text-indent:43px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312\">年龄、性别不限,未满18周岁未成年选手需提供监护人签字证明和所在俱乐部担保证明。</span></p><p style=\"text-align:left;text-indent:21px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">五、项目设置</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">1</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing: -1px\">、西部马术项目</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">2</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing: -1px\">、场地障碍项目</span></p><p style=\"text-align:left;text-indent:21px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">六、竞赛办法</span></p><p style=\"text-align:left;text-indent:47px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体;color:black;letter-spacing:-1px\">(</span><span style=\"font-size:21px;font-family:黑体;color:black;letter-spacing:-1px\">一)西部马术项目:</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">1</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、绕桶团体赛:</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(1)每队必须3对人马组合;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(2)需完成两轮比赛,两轮成绩相加计算排列成绩名次顺序;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(3)团体赛取前五名获得奖杯(冠军、亚军、季军)、证书(第四名、第五名).</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">2</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、排名赛:</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(1)每位选手最多可骑乘2匹马参加,同一匹马不可两次参赛;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(2)排名赛完成一轮比赛,以用时最少者为胜;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(3)参赛选手成绩大排行,分A、B、C组计算划分出场费和奖励名次;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:38px;line-height: 37px\"><strong><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">A</span></strong><strong><span style=\"font-size:21px;font-family: 仿宋_GB2312;color:black;letter-spacing:-1px\">组:</span></strong></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(1)当场赛事最快成绩+1秒时间段内为A组成绩;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(2)A组所有骑手获得A组级别出场费;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(3)A组选手前六名获得奖杯(冠军、亚军、季军)、证书(第四名、第五名、第六名).</span></p><p style=\"margin-left:28px;text-align:left;text-indent:38px;line-height: 37px\"><strong><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">B</span></strong><strong><span style=\"font-size:21px;font-family: 仿宋_GB2312;color:black;letter-spacing:-1px\">组:</span></strong></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(1)当场赛事最快成绩+2秒时间段内为B组成绩;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(2)B组所有骑手获得B组级别出场费;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(3)B组选手前六名获得证书。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:38px;line-height: 37px\"><strong><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">C</span></strong><strong><span style=\"font-size:21px;font-family: 仿宋_GB2312;color:black;letter-spacing:-1px\">组:</span></strong></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(1)当场赛事A、B组以外所有完赛选手为C组成绩;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(2)C组所有骑手获得C组级别出场费;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(3)C组选手前六名获得证书。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">4</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、比赛采用电子计时器,手动计时为备用计时方案;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">5</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、电子计时器出现故障时,由骑手选择使用手动计时成绩或在本轮所有选手比赛后重新比赛;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">6</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、选手或马匹碰倒桶罚分五秒;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">7</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、未按既定路线行进及选手落马则取消参赛成绩;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">8</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、因为违规或失误等原因没有完成赛事的选手无法获得出场费奖励;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">9</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、桶距及场地尺寸按照下图尺寸执行。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:38px;line-height: 37px\"><strong><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">3</span></strong><strong><span style=\"font-size:21px;font-family: 仿宋_GB2312;color:black;letter-spacing:-1px\">、穿桩表演赛:</span></strong></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">1</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、完成一轮比赛,以时间快慢顺序排列名次;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">2</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、穿桩赛采用电子计时,手工计时为备用方案;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">3</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、每个桩间距为6.4米,第一根桩距计时线6.4米;桩的地上高度为1.8米,直径不超过3.5厘米;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">4</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、未按既定路线行进及选手落马则取消参赛成绩;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">5</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、每碰倒一根桩,罚分五秒;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">6</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、参赛者允许在比赛过程中碰到桩,但是骑手故意抓住桩作为助力,则每抓一次桩罚分五秒;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:38px;line-height: 37px\"><strong><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">4</span></strong><strong><span style=\"font-size:21px;font-family: 仿宋_GB2312;color:black;letter-spacing:-1px\">、绕桶赛规则</span></strong></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">&nbsp;(1) </span><span style=\"font-size: 21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">比赛要求采用西部鞍和美国西部服装装饰。包括西部胸带、西部水勒、马护腿、绑腿和蹄腕。西部风格的衬衫,牛仔帽,牛仔靴,牛仔裤及西部腰带。任何人不得违背规定,否则不允许进场参赛。比赛不允许使用马鞭和马刺。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(2) </span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">计时:比赛采用电子计时系统。采用A、B两台红外线电子计时系统自动计时,两台计时系统成绩同时记录,成绩统计以A计时系统为准,如A计时系统出现故障,该组比赛所有成绩将按B计时系统统计成绩计算。(手工计时备用)</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(3)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">参赛者没有绕行任何一个桶或未按上述规定的线路绕行,比赛成绩无效。<br/> &nbsp;&nbsp;&nbsp;&nbsp; (4)参赛者撞翻一个桶加5秒。如果碰到桶没有被撞倒或用手扶桶是允许的,不被惩罚。<br/> &nbsp;&nbsp;&nbsp;&nbsp; (5)参赛者在比赛中从马上掉落或摔倒本轮比赛不计成绩。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(6)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">团体参赛人员须3人 3马。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(7)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">参赛骑手必须服从裁判人员的指令,未经裁判人员指令,擅自进入备赛区和比赛区都属违规行为,裁判人员有权视情节严重程度,决定其终止比赛资格或取消比赛成绩。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(8)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">因骑手或马匹原因,2分钟内不能入场比赛取消当轮参赛资格;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(9)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">成统长负责监督电子计时器及操作遥控系统使用情况,所有成绩登记必须在现场完成,经所有参与成绩统计人员共同签字生效。 </span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(10)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">比赛分两轮进行。第一轮比赛按抽签决定出场顺序, 第二轮按第一轮比赛成绩倒序出场。按两轮比赛中成绩最好一轮成绩决定名次。若最好成绩相同,按第二轮成绩计算。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">(11)</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">投诉事宜。投诉方须在比赛结束3小时内以书面形式同时缴纳1000元仲裁费用提交仲裁委员会,投诉成功退还投诉方缴纳的1000元仲裁费用,不成功不退还仲裁费用,现场明显违规投诉方未缴纳仲裁费不影响仲裁委员会纠正违规行为。追加投诉10天内投诉有效,投诉方需缴纳2000元仲裁费用,投诉成功退还2000元仲裁费,不成功不退还仲裁费。</span></p><p style=\"text-align:left;text-indent:37px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体;color:black;letter-spacing:-1px\">(二)场地障碍项目(steeplechase)</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">A</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">组:80~90公分障碍赛</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">B</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">组:105~120公分障碍赛</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">1</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、障碍赛分2轮进行;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">2</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、障碍数量为12道,其中1道双重障碍,1道三重障碍,障碍杆宽度为1.30-1.40米;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">3</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、根据国际马术规则处罚A表进行评判;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">4</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、比赛2轮路线不同;</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">5</span><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">、两轮比赛成绩取最好一轮成绩为比赛成绩。若成绩排在第三名以后的选手和马匹出现罚分相同,则以第二轮比赛用时少者名次列前。前三名选手和马匹如果出现罚分相同,将进行附加赛确定最后名次。附加赛争取时间,障碍数量及难度另定。若附加赛罚分相同,以用时少者,名次列前。</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">具体赛事规格和要求适时发布。</span></p><p style=\"text-align:left;text-indent:21px;line-height:37px\"><span style=\"font-size:21px;font-family:黑体\">七、录取名次及奖励</span></p><p style=\"margin-left:28px;text-align:left;text-indent:37px;line-height: 37px\"><span style=\"font-size:21px;font-family:仿宋_GB2312;color:black;letter-spacing:-1px\">本次比赛奖励团体和个人前六名。</span><span style=\"font-size:21px;font-family:仿宋_GB2312\">奖金数额另行通知。</span></p><p><br/></p>','马术是一项绅士运动,在人与马的完美配合中传递出儒雅的绅士气派和高贵气质。其主要是考验人马配合的熟练程度、固定路线快速通过多道障碍物的能力、马匹的弹跳能力、起跳时',0,'青岛体育局','2015年10月28日',0,3500),(205,'青岛2015自行车公开赛',1,4,'2015年07月10日','2016年08月10日','2','张老师',4294967295,'<EMAIL>',3,'青岛体育总会',0,0,500.00,'/uploads/bikecycle.png',12,1,'<p style=\"text-align: center; line-height: 37px;\"><strong><span style=\"letter-spacing: -1px; font-family: 宋体; font-size: 19px;\">青岛2015自行车公开赛</span></strong></p><p style=\"text-align: center; line-height: 37px;\"><span style=\"font-family: 宋体; font-size: 19px;\">&nbsp;</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 黑体; font-size: 19px;\">一、比赛时间、地点 </span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">时间:2015年 9月16日&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">地点:莱西市</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 黑体; font-size: 19px;\">二、主办、承办、协办单位</span></p><p style=\"text-align: left; line-height: 37px; margin-left: 131px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;&nbsp; </span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">主办单位:青岛市人民政府</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 42px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">承办单位:莱西市人民政府</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 42px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">青岛市体育局&nbsp; </span></p><p style=\"text-align: left; line-height: 37px; text-indent: 42px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">协办单位:山东省自行车协会</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 黑体; font-size: 19px;\">三、</span><span style=\"font-family: 黑体; font-size: 19px;\">参赛单位</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">国内各省、自治区、直辖市。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 黑体; font-size: 19px;\">四、竞赛分组及年龄规定</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">精英男子组:年龄为20周岁以上,30周岁以下。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">业余男子组:年龄为18周岁以上,50周岁以下。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">业余女子组:年龄为18周岁以上,50周岁以下。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 黑体; font-size: 19px;\">五、项目设置</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">本次比赛设置精英</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">男子100公里、业余男子50公里、业余女子50公里。</span></p><p style=\"text-align: left; line-height: 37px; margin-left: 91px;\"><span style=\"font-family: 黑体; font-size: 19px;\">六、<span style=\"font: 9px/normal &quot;Times New Roman&quot;; font-size-adjust: none; font-stretch: normal;\">&nbsp; </span></span><span style=\"font-family: 黑体; font-size: 19px;\">参赛办法</span></p><p style=\"text-align: left; line-height: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;&nbsp; </span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(一)参赛运动员必须爱好单车运动,熟悉骑行规则,服从裁判管理。</span></p><p style=\"line-height: 37px; margin-bottom: 0px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;&nbsp; </span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(二)</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">本次比赛只接受网上报名,不接受现场报名。</span></p><p style=\"text-align: left; line-height: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;&nbsp; </span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(三)参赛人员必须为经体检身体健康者,并自行办理赛期人身意外保险。</span></p><p style=\"text-align: left; line-height: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">&nbsp;&nbsp; </span><span style=\"font-family: 黑体; font-size: 19px;\">七、竞赛办法</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(一)出发顺序及分组</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">本次自行车公开赛出发顺序,按照检录的先后顺序进行排列。其中精英男子组首发,每排8人。半小时后业余男子组、业余女子组出发(男子组在前,女子组在后),每排10人。&nbsp; </span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(二)竞赛路程及相关要求</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">1</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">、赛道上设置固定的比赛指示牌:从起点处开始标明0公里,最后的20、10、5、4、3、2公里标明。在距终点最后1公里处有明显的红色标志。在距离终点500米、400米、300米、200米、150米、100米和50米设置指示牌。同时折返、拐弯、十字路口以及分道的路段均设有指示牌。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">2</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">、本次自行车赛途中设置一定的补给区、厕所(精英男子组设置,业余组不设置)。比赛期间安排1辆医疗救护车跟随。起点处设置1处补给区及临时厕所,途中补给区提供矿泉水运动员饮用,转折点和终点各设1辆救护车随时待命。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">3</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">、为了保证参赛选手比赛安全顺利举行,比赛期间设置关门时间,限时对社会交通封闭。本次自行车赛精英男子组的关门时间为3小时,业余男子组、业余女子组的关门时间为2小时。关门时间结束,相应路段恢复交通秩序。 </span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(三</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">)竞赛规则及要求</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">1</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">、竞赛规则:本次比赛采用中国自行车运动协会审定的最新自行车竞赛规则以及本次比赛制定的规则。本次比赛采用计时法,运动员排列在起点线后集体出发。每个组别各取前八名,组委会为所有参赛运动员提供感应计时芯片,但须缴纳100元的芯片押金,赛后计时芯片上交后,押金退回。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">2</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">、竞赛要求:</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(1)本次比赛用车为26寸标准山地车,车胎使用1.90英寸以上有齿外胎,后齿轮不超过11飞,严禁使用光头胎。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(2)比赛过程中必须始终佩戴安全头盔、手套等必需赛事装备。未配戴头盔或途中摘掉头盔的,裁判员有权取消其参赛资格。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(3)所有参赛者须保证车辆及配套装备状况良好并符合比赛要求,任何因车辆质量状况或使用不当造成的伤害或损失,主、承办单位不承担任何责任。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(4)参赛车辆在比赛时必须除去可能会导致伤害的配件(如车篮、车锁、车梯、后货架等),不得配有任何非人力传动及助动装置,不得使用改装的平把式公路车,不得使用玻璃器皿等易碎器具。</span></p><p style=\"text-align: left; line-height: 37px; text-indent: 37px;\"><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">(5)所有参赛运动员</span><span style=\"font-family: 仿宋_GB2312; font-size: 19px;\">应自觉遵守竞赛规则,对可能引起自己或他人受伤害的恶意行为,举办方有权采取警告、禁止比赛、取消比赛成绩等措施。</span></p>','自行车赛是指以自行车作为比赛器具进行的各种比赛,根据使用车种的不同,可大致分为公路赛、室内场地比赛、越野赛和花式表演。',0,'青岛四方区','2015年10月30日',0,300),(256,'青岛环城跑',0,2,'2015年10月27日','2015年10月29日','3','宁',18663155191,'<EMAIL>',1,'青岛市体育局',0,1,100.00,'/uploads/14453078113700.png',11,0,'<p>跑步<br/></p>','这是跑步简介',0,'省体育中心','2015年10月31日',0,0),(381,'济南全民健身运动会',0,1,'2015年11月12日','2015年11月21日','1','小智',15098800372,'<EMAIL>',2,'济南易健绅信息科技有限公司',0,1,0.00,'uploads/14482552872501.jpg',12,0,'<p>这仅仅是比赛而已</p><p><iframe class=\"ueditor_baidumap\" src=\"http://www.51first.cn/assets/8df229e5/js/dialogs/map/show.html#center=117.027657,36.65362&zoom=15&width=530&height=340&markers=117.024567,36.654431&markerStyles=l,A\" frameborder=\"0\" width=\"534\" height=\"344\"></iframe></p><p><img src=\"/uploads/ueditor/20151123/1448255252531737.jpg\" title=\"1448255252531737.jpg\" alt=\"Koala.jpg\"/></p>','友谊第一,比赛第二\r\n',0,'济南市中区全民健身','2015年11月29日',0,30),(382,' 济南跑步赛事',0,1,'2015年11月13日','2015年11月21日','1','小智',15098800372,'<EMAIL>',2,'济南易健身信息科技有限公司',0,1,0.00,'uploads/14482585855974.png',12,0,'<p>快递你爱的</p><p><img width=\"530\" height=\"340\" src=\"http://api.map.baidu.com/staticimage?center=117.022375,36.65611&zoom=15&width=530&height=340&markers=117.024387,36.654315\"/></p><p><img src=\"/uploads/ueditor/20151123/1448258562860347.png\" title=\"1448258562860347.png\" alt=\"bikecycle.png\"/></p>','跑步啦',0,'济南市中区','2015年12月18日',0,20),(385,'2015年第二届山东省“体彩杯”中式台球',1,14,'2015年11月20日','2015年11月27日','1','王老师',18615180239,'<EMAIL>',4,'济南市全民健身中心',0,0,100.00,'uploads/14484348852072.jpg',40,1,'<p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; text-align: center; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; line-height: 1.6; background-color: rgb(0, 213, 255);\"><iframe class=\"ueditor_baidumap\" src=\"http://ht.51first.cn/assets/8df229e5/js/dialogs/map/show.html#center=117.023381,36.653388&zoom=15&width=530&height=340&markers=117.022232,36.654083&markerStyles=l,A\" frameborder=\"0\" height=\"344\" width=\"534\"></iframe></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; line-height: 1.6; background-color: rgb(0, 213, 255);\">一、活动组织</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">主办单位:山东省台球运动协会</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">济南市体育总会</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">承办单位:济南市全民健身中心</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">协办单位:济南市社会体育指导员协会</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">二、比赛时间、地点</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">2015年11月28日至29日</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">济南市经十路19166号 全民健身中心2楼台球馆</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">三、项目设置</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">中式八球个人赛</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">四、参赛资格</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">参赛选手须在山东居住满1年,不限男女、不限年龄均可参赛。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">五、报名须知</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">1、即日起(上午9:00--下午17:00)开始报名,限定参赛名额为128人,报名截止时间2015年11月27日上午9:00点,名额报满为止。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">2、本次比赛不设报名费,但需运动员缴纳参赛押金100元,赛后退还。济南本地参赛选手需到济南市全民健身中心二楼台球馆报名,外地参赛选手可电话报名,报名时需将报名押金汇至账号:招商银行(王雅君)6214 8353 1041 0384,报名以收到运动员参赛押金为准。报名咨询电话:0531—68606802 &nbsp; 18615180239(王老师)</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">3、参赛选手持本人有效证件于11月28日上午9:00点到济南市全民健身中心二楼台球馆准备参加抽签仪式。按时未到者视为放弃比赛,恕不退返报名押金。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">六、比赛规则</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">1、比赛规则采用中国台球协会中式台球标准规则执行。2、比赛为胜方冲球单败淘汰赛制。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">3、初始阶段采用9局5胜制;半决赛11局6胜制,决赛13局7胜制。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">4、如对抽签排序有异议者,应在比赛前提出,如进行比赛则视为同意排序,此时提出则不予受理。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">七、奖励办法</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">冠 军 &nbsp; &nbsp;5000元 &nbsp; 现金+证书</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">亚 军 &nbsp; &nbsp;3000元 &nbsp; 现金+证书</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">第3名 &nbsp; 2000元 &nbsp; 现金+证书</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">第4名 &nbsp; 1000元 &nbsp; 现金+证书</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">5-8名 &nbsp; &nbsp;500元 &nbsp; &nbsp;现金+证书</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">9-16名 &nbsp; 200元 &nbsp; &nbsp;现金</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">八、仲裁、裁判人员</span> </p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">由山东省台球运动协会选调。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><span style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(0, 213, 255);\">九、参赛要求</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">1、遵守赛会纪律,服从赛会安排。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">2、每轮比赛开赛前10分钟,参赛选手需到竞赛处报到。如裁判长宣布比赛开始后,迟到5分钟判负一局,迟到10分钟的参赛选手,作弃权论处。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">3、对当值裁判裁决不服的申诉需在判罚后双方选手下一击出杆前提出,否则不予受理。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">4、比赛场地禁止吸烟,禁止在比赛期间接打电话,参赛选手移动电话须静音或调成震动进入赛场,如违反以上规定。一次警告,第二次取消比赛资格;赛场内禁止使用闪光灯照明。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">5、赛会期间严禁酗酒和任何形式的赌博行为。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">6、前8名获奖选手必须按时参加颁奖典礼,任何人不可代领奖金和证书。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">7、本次比赛参赛选手佩戴其他商业标识需经赛事承办方认可。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">8、违反上述要求者,将被取消参赛资格。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">其他未尽事宜,另行通知。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">本规程最终解释权归济南市全民健身中心。</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\"><br style=\"margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; text-align: right; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">济南市全民健身中心</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: &#39;Hiragino Sans GB&#39;, &#39;Microsoft YaHei&#39;, Arial, sans-serif; line-height: 25.6px; widows: auto; text-align: right; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);\">2015年11月16日</p><p><img src=\"/uploads/ueditor/20151126/1448501167713727.png\" style=\"\" title=\"1448501167713727.png\"/></p><p><img src=\"/uploads/ueditor/20151126/1448501167490139.png\" style=\"\" title=\"1448501167490139.png\"/></p><p><br/></p><p><br/></p>','中式八球个人赛,参赛选手须在山东居住满1年,不限男女、不限年龄均可参赛。本次比赛不设报名费,但需运动员缴纳参赛押金100元,赛后退还。',1,'济南市经十路19166号 全民健身中心2楼台球馆','2015年11月28日',0,128),(389,'2015年济南市“体彩杯”庆元旦业余乒乓球大赛',1,13,'2015年12月03日','2015年12月20日','1','济南市全民健身中心',53168606768,'',3,'济南市全民健身中心',0,1,0.00,'uploads/14491236141534.jpg',49,0,'<p style=\"text-align: center;\"><span style=\"font-size: 18px;\"><strong>2015年济南市“体彩杯”庆元旦业余乒乓球大赛即将开战</strong></span></p><p><span style=\"font-size: 18px;\"></span><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2015年济南市“体彩杯”庆元旦业余乒乓球大赛将于12月26日至27日在济南市全民健身中心举办,比赛为期两天。竞赛项目设为单打比赛,分为三个年龄组,甲组:15岁(含)以下;乙组:16岁-44岁;丙组:45岁(含)以上;比赛录取各组别前三名进行奖励。参赛运动员不分性别,须根据年龄组别要求报名参赛。<br/></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 本次比赛由济南市体育局主办,济南市全民健身中心承办。比赛地点:济南市全民健身中心二楼乒乓球馆,咨询电话:0531-68606768。</p><p style=\"text-align: center;\"><iframe class=\"ueditor_baidumap\" src=\"http://www.51first.cn/assets/8df229e5/js/dialogs/map/show.html#center=117.020902,36.6544&zoom=17&width=530&height=340&markers=117.022268,36.654342&markerStyles=l,A\" frameborder=\"0\" height=\"344\" width=\"534\"></iframe></p><p><br/></p>','2015年济南市“体彩杯”庆元旦业余乒乓球大赛将于12月26日至27日在济南市全民健身中心举办,比赛为期两天。',0,'济南市全民健身中心二楼乒乓球馆','2015年12月26日',0,1000),(390,'1234',0,1,'2016年02月05日','2016年02月26日','1','fewafewa',1234567894,'<EMAIL>',1,'fewafewa',0,1,0.00,'uploads/14556987938112.png',53,0,'<p>fewafewafeaw</p>','fedasgewafewa',0,'fewafewafewa','2016年02月29日',0,1000),(391,'2345',0,1,'2016年02月05日','2016年02月19日','1','fewafewa',1234567894,'<EMAIL>',1,'fewafewa',0,0,0.00,'uploads/14556988288111.png',53,0,'<p>feawfewafewafewa</p>','greawfewafe',0,'fewafewafewa','2016年02月29日',0,1000),(392,'1234655555',0,1,'2016年02月03日','2016年02月19日','1','fewafewa',1234567894,'<EMAIL>',1,'fewafewa',0,0,0.00,'uploads/14556989092304.png',54,0,'<p>fewafeawfeawfeaw</p>','rfewfewafewa',0,'fewafewafewa','2016年02月29日',0,1000),(395,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程',0,17,'2016年03月22日','2016年03月31日','2','辛园',13697679061,'<EMAIL>',4,'主办:青岛市教育局青岛市体育局 青岛市体育总会 协办:青岛市国际象棋协会 承办:青岛实验初中 青岛育才国际象棋俱乐部',0,1,0.00,'uploads/14585212595435.jpg',61,0,'<p><br/></p><p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-align:justify;text-justify:distribute-all-lines\"><span style=\";font-family:方正小标宋简体;color:rgb(255,0,0);letter-spacing:1px;font-size:67px\">青岛市教育局文件</span></p><p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青教通字〔2016〕11号</span></p><p><span style=\";font-family:仿宋_GB2312;color:rgb(255,0,0);letter-spacing:-1px;font-size:21px\">─────────────────────────────────</span></p><p style=\"line-height:40px\"><span style=\";font-family:文星标宋;letter-spacing:1px;font-size:29px\">&nbsp;</span></p><p style=\"text-align:center;line-height:40px\"><span style=\";font-family:方正小标宋简体;letter-spacing:4px;font-size:29px\">青岛市教育局</span></p><p style=\"text-align:center;line-height:40px\"><span style=\";font-family:方正小标宋简体;letter-spacing:4px;font-size:29px\">青岛市体育局</span></p><p style=\"text-align:center;line-height:40px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">青岛市体育总会</span></p><p style=\"text-align:center;line-height:45px\"><span style=\";font-family:方正小标宋简体;letter-spacing:0;font-size:29px\">关于</span><span style=\"font-family: 方正小标宋简体;letter-spacing: 0;font-size: 29px\">举办</span><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">“育才杯”第五届青岛市国际象棋</span></p><p style=\"text-align:center;line-height:45px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">学校锦标赛的通知</span></p><p style=\"text-align:center;line-height:45px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">&nbsp;</span></p><p style=\"line-height: 45px\"><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">各区、市教育(体)局,在青高校</span><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">,</span><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">局属各学校,有关民办学校:</span></p><p style=\"text-indent:42px;line-height:45px\"><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">为推动我市学校国际象棋工作,青岛市教育局、体育局、体育总会决定于</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2016年4月9日(星期六)至10日(星期日)在青岛实验初级中学</span><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">举办</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">“育才杯”第五届青岛市国际象棋学校锦标赛决赛阶段的比赛,望各单位积极组队参赛。</span></p><p style=\"text-indent:42px;line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-indent:42px;line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">附件:1.“</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">育才杯”第五届青岛市国际象棋学校锦标赛</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">规程</span></p><p style=\"text-indent:105px;line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2.</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">“</span><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">育才杯”第五届青岛市国际象棋学校锦标赛</span><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">报名表</span></p><p style=\"line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">&nbsp;</span></p><p style=\"line-height:40px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">&nbsp;</span></p><p style=\"line-height:40px\"><span style=\";font-family:仿宋;letter-spacing:1px;font-size:21px\">&nbsp;&nbsp;</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">市教育局&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;市体育局&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;市体育总会</span></p><p style=\"text-indent:373px;line-height:40px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2016年3月18日</span></p><p style=\"line-height:19px\"><a name=\"OLE_LINK1\"></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:20px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">────────────────────────────</span></p><p style=\"text-indent:18px;line-height:20px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">青岛市教育局办公室&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;主动公开&nbsp;&nbsp;&nbsp; 2016年3月18日印发</span></p><p style=\"margin-bottom:0;text-indent:0;line-height:20px\"><span style=\";font-family:楷体_GB2312;letter-spacing:1px;font-size:21px\">────────────────────────────</span></p><p style=\"line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\"><br clear=\"all\" style=\"page-break-before:always\"/></span><span style=\";font-family:黑体;letter-spacing:1px;font-size:21px\">附件1</span></p><p style=\"text-align:center;line-height:37px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">“育才杯”第五届青岛市国际象棋</span></p><p style=\"text-align:center;line-height:37px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">学校锦标赛规程</span></p><p style=\"line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">一、主办单位:青岛市教育局</span></p><p style=\"text-indent:188px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛市体育局</span></p><p style=\"text-indent:188px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛市体育总会</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">二</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">、协办单位</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">:青岛市国际象棋协会</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">三</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">、</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">承办单位:青岛实验初级中学&nbsp;&nbsp;</span></p><p style=\"text-indent:188px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛育才国际象棋俱乐部</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">四</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">、</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">分组</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">小学组;初中乙组(初一、二年级);初中甲组(初三年级);高中组;大学组。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">每所学校每个组别限报6人(必须是同一学校学生),男女不限。</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">五、竞赛办法</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">本次比赛分两个赛程进行:</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1.预赛阶段。</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">由各学校在决赛报名前根据规程自行组织完成。</span></p><p style=\"text-indent:38px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">如需组织和器材上提供支持,可向大会组委会提出,组委会将通过青岛市国际象棋协会向学校派出裁判和提供器材,对学校预赛阶段的比赛给与技术支持和服务。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">学校预赛阶段情况包括预赛阶段参加比赛的学生人数、比赛轮次、最终成绩(包括组别、名次)。在决赛报名前,通过电子邮件的形式向组委会报告。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛市国际象棋协会暨大会组委会联系人:&nbsp;张老师</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">电话:13687643843</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮箱:<EMAIL>&nbsp;</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2.决赛阶段。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">竞赛时间:2016年4月9日至10日</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">竞赛地点:青岛实验初级中学(青岛市太平路2号)</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">竞赛办法:个人赛暨团体赛。</span></p><p style=\"text-indent: 42px;line-height: 37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">比赛采用国家体育总局审定的最新国际象棋竞赛规则。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">采用瑞士制电脑编排,共赛7轮。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">六、奖励办法</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1.个人录取前八名颁发奖状。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2.团体录取前六名颁发奖状(计算个人总名次分之和,分值小的列前)。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">各组前八名有资格参加2016年“我是棋王”的比赛,“我是棋王”比赛由青岛市体育局、青岛国际象棋协会和青岛市电视台联办,决赛由青岛电视台直播。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">七、报名与报到</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">报名:以学校为单位统一报名(必须是同一学校学生),原则上不接受个人报名,如有虚假取消比赛成绩。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">请认真填写报名单并加盖学校公章,在规定时间内寄到报名地址,并请于3月22日至3月31日期间登录</span><a href=\"http://www.51first.cn\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">www.51first.cn</span></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">,完成网上报名,本次比赛要求同时用书面报名和网上报名两种方式报名。一经报名不得更改。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">报名截止日期:2016年4月1日前,逾期不予报名(以邮戳为准)。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮寄地址:青岛实验初级中学(青岛市太平路2号)&nbsp;</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮政编码:266003</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮寄收件人:青岛实验初级中学&nbsp;辛主任</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">QQ:1343622008</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">领队会于2016年4月7日14:00在青岛实验初中召开,并发放秩序册和参赛证。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">报到:请参赛棋手2016年4月9、10日上午8:30到青岛实验初级中学报到参赛。请参赛棋手自备棋具。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">八、补充通知等相关信息请随时关注网站主页</span></p><p style=\"margin-left:40px;line-height:37px\"><a href=\"http://www.qdyc.qdedu.net/\"><span style=\"font-family: 仿宋_GB2312;color: rgb(0, 0, 255)\">http://www.qdyc.qdedu.net</span></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">(青岛实验初级中学)</span></p><p style=\"margin-left:40px;line-height:37px\"><a href=\"http://www.qingweichess.cn\"><span style=\"font-family: 仿宋_GB2312;color: rgb(0, 0, 255)\">http://www.qingweichess.cn</span></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">(青岛市国际象棋协会)</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">九、本规程解释权归主办单位。</span></p><p style=\"margin-top:0;margin-right:20px;margin-bottom:0;text-align:center\"><span style=\";font-family:宋体;letter-spacing:0;font-weight:bold;font-size:19px\">&nbsp;</span></p><p style=\"margin-top:0;margin-right:20px;margin-bottom:0;line-height:37px\"><span style=\";font-family:黑体;letter-spacing:0;font-size:16px\"><br clear=\"all\" style=\"page-break-before:always\"/></span><span style=\";font-family:黑体;letter-spacing:0;font-size:21px\">附件2</span></p><p style=\"margin-top:0;margin-right:20px;margin-bottom:0;text-align:center;line-height:37px\"><span style=\";font-family:方正小标宋简体;letter-spacing:0;font-size:29px\">“育才杯”第五届青岛市国际象棋学校锦标赛</span><span style=\";font-family:方正小标宋简体;letter-spacing:0;font-size:29px\">报名表</span></p><p style=\";text-indent:4px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">单位名称(公章):&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p><table width=\"631\" style=\"width: 569px;\"><tbody><tr class=\"firstRow\"><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-width: 1px; border-color: windowtext;\"><br/></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">组别</span></p></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">姓名</span></p></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">性别</span></p></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">身份证号</span></p></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">学籍号</span></p></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">3</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">4</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">5</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">6</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">3</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">4</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">5</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr><tr><td width=\"42\" valign=\"top\" style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">6</span></p></td><td width=\"96\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"108\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"74\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"168\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td><td width=\"144\" valign=\"center\" style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\"><br/></td></tr></tbody></table><p style=\"line-height:27px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">总人数:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;人</span></p><p style=\"line-height:27px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">领队:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;教练员:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p><p style=\"line-height:27px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">填表人:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;填表人联系电话:</span></p><p><br/></p>','“育才杯”第五届青岛市国际象棋\r\n学校锦标赛规程\r\n\r\n一、主办单位:青岛市教育局\r\n青岛市体育局\r\n青岛市体育总会\r\n二、协办单位:青岛市国际象棋协会\r\n三、',0,'青岛实验初级中学(青岛市太平路2号) ','2016年04月09日',0,800),(396,'“育才杯”第五届青岛市国际象棋 学校锦标赛规程',1,17,'2016年03月22日','2016年03月31日','2','辛园',13697679061,'ask<EMAIL>',4,'主办:青岛市教育局青岛市体育局 青岛市体育总会 协办:青岛市国际象棋协会 承办:青岛实验初中 青岛育才国际象棋俱乐部',0,1,0.00,'uploads/14585222346045.jpg',61,0,'<p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-align:justify;text-justify:distribute-all-lines\"><span style=\";font-family:方正小标宋简体;color:rgb(255,0,0);letter-spacing:1px;font-size:67px\">青岛市教育局文件</span></p><p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青教通字〔2016〕11号</span></p><p><span style=\";font-family:仿宋_GB2312;color:rgb(255,0,0);letter-spacing:-1px;font-size:21px\">─────────────────────────────────</span></p><p style=\"line-height:40px\"><span style=\";font-family:文星标宋;letter-spacing:1px;font-size:29px\">&nbsp;</span></p><p style=\"text-align:center;line-height:40px\"><span style=\";font-family:方正小标宋简体;letter-spacing:4px;font-size:29px\">青岛市教育局</span></p><p style=\"text-align:center;line-height:40px\"><span style=\";font-family:方正小标宋简体;letter-spacing:4px;font-size:29px\">青岛市体育局</span></p><p style=\"text-align:center;line-height:40px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">青岛市体育总会</span></p><p style=\"text-align:center;line-height:45px\"><span style=\";font-family:方正小标宋简体;letter-spacing:0;font-size:29px\">关于</span><span style=\"font-family: 方正小标宋简体;letter-spacing: 0;font-size: 29px\">举办</span><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">“育才杯”第五届青岛市国际象棋</span></p><p style=\"text-align:center;line-height:45px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">学校锦标赛的通知</span></p><p style=\"text-align:center;line-height:45px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">&nbsp;</span></p><p style=\"line-height: 45px\"><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">各区、市教育(体)局,在青高校</span><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">,</span><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">局属各学校,有关民办学校:</span></p><p style=\"text-indent:42px;line-height:45px\"><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">为推动我市学校国际象棋工作,青岛市教育局、体育局、体育总会决定于</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2016年4月9日(星期六)至10日(星期日)在青岛实验初级中学</span><span style=\"font-family: 仿宋_GB2312;letter-spacing: 1px;font-size: 21px\">举办</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">“育才杯”第五届青岛市国际象棋学校锦标赛决赛阶段的比赛,望各单位积极组队参赛。</span></p><p style=\"text-indent:42px;line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-indent:42px;line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">附件:1.“</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">育才杯”第五届青岛市国际象棋学校锦标赛</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">规程</span></p><p style=\"text-indent:105px;line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2.</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">“</span><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">育才杯”第五届青岛市国际象棋学校锦标赛</span><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">报名表</span></p><p style=\"line-height:45px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">&nbsp;</span></p><p style=\"line-height:40px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\">&nbsp;</span></p><p style=\"line-height:40px\"><span style=\";font-family:仿宋;letter-spacing:1px;font-size:21px\">&nbsp;&nbsp;</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">市教育局&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;市体育局&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;市体育总会</span></p><p style=\"text-indent:373px;line-height:40px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2016年3月18日</span></p><p style=\"line-height:19px\"><a name=\"OLE_LINK1\"></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:19px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"line-height:20px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">────────────────────────────</span></p><p style=\"text-indent:18px;line-height:20px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">青岛市教育局办公室&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;主动公开&nbsp;&nbsp;&nbsp; 2016年3月18日印发</span></p><p style=\"margin-bottom:0;text-indent:0;line-height:20px\"><span style=\";font-family:楷体_GB2312;letter-spacing:1px;font-size:21px\">────────────────────────────</span></p><p style=\"line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:0;font-size:21px\"><br style=\"page-break-before:always\" clear=\"all\"/></span><span style=\";font-family:黑体;letter-spacing:1px;font-size:21px\">附件1</span></p><p style=\"text-align:center;line-height:37px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">“育才杯”第五届青岛市国际象棋</span></p><p style=\"text-align:center;line-height:37px\"><span style=\";font-family:方正小标宋简体;letter-spacing:1px;font-size:29px\">学校锦标赛规程</span></p><p style=\"line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">&nbsp;</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">一、主办单位:青岛市教育局</span></p><p style=\"text-indent:188px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛市体育局</span></p><p style=\"text-indent:188px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛市体育总会</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">二</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">、协办单位</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">:青岛市国际象棋协会</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">三</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">、</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">承办单位:青岛实验初级中学&nbsp;&nbsp;</span></p><p style=\"text-indent:188px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛育才国际象棋俱乐部</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">四</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">、</span><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">分组</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">小学组;初中乙组(初一、二年级);初中甲组(初三年级);高中组;大学组。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">每所学校每个组别限报6人(必须是同一学校学生),男女不限。</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">五、竞赛办法</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">本次比赛分两个赛程进行:</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1.预赛阶段。</span></p><p style=\"text-indent:36px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">由各学校在决赛报名前根据规程自行组织完成。</span></p><p style=\"text-indent:38px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">如需组织和器材上提供支持,可向大会组委会提出,组委会将通过青岛市国际象棋协会向学校派出裁判和提供器材,对学校预赛阶段的比赛给与技术支持和服务。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">学校预赛阶段情况包括预赛阶段参加比赛的学生人数、比赛轮次、最终成绩(包括组别、名次)。在决赛报名前,通过电子邮件的形式向组委会报告。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">青岛市国际象棋协会暨大会组委会联系人:&nbsp;张老师</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">电话:13687643843</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮箱:<EMAIL>&nbsp;</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2.决赛阶段。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">竞赛时间:2016年4月9日至10日</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">竞赛地点:青岛实验初级中学(青岛市太平路2号)</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">竞赛办法:个人赛暨团体赛。</span></p><p style=\"text-indent: 42px;line-height: 37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">比赛采用国家体育总局审定的最新国际象棋竞赛规则。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">采用瑞士制电脑编排,共赛7轮。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">六、奖励办法</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1.个人录取前八名颁发奖状。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2.团体录取前六名颁发奖状(计算个人总名次分之和,分值小的列前)。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">各组前八名有资格参加2016年“我是棋王”的比赛,“我是棋王”比赛由青岛市体育局、青岛国际象棋协会和青岛市电视台联办,决赛由青岛电视台直播。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">七、报名与报到</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">报名:以学校为单位统一报名(必须是同一学校学生),原则上不接受个人报名,如有虚假取消比赛成绩。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">请认真填写报名单并加盖学校公章,在规定时间内寄到报名地址,并请于3月22日至3月31日期间登录</span><a href=\"http://www.51first.cn\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">www.51first.cn</span></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">,完成网上报名,本次比赛要求同时用书面报名和网上报名两种方式报名。一经报名不得更改。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">报名截止日期:2016年4月1日前,逾期不予报名(以邮戳为准)。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮寄地址:青岛实验初级中学(青岛市太平路2号)&nbsp;</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮政编码:266003</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">邮寄收件人:青岛实验初级中学&nbsp;辛主任</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">QQ:1343622008</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">领队会于2016年4月7日14:00在青岛实验初中召开,并发放秩序册和参赛证。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">报到:请参赛棋手2016年4月9、10日上午8:30到青岛实验初级中学报到参赛。请参赛棋手自备棋具。</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">八、补充通知等相关信息请随时关注网站主页</span></p><p style=\"margin-left:40px;line-height:37px\"><a href=\"http://www.qdyc.qdedu.net/\"><span style=\"font-family: 仿宋_GB2312;color: rgb(0, 0, 255)\">http://www.qdyc.qdedu.net</span></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">(青岛实验初级中学)</span></p><p style=\"margin-left:40px;line-height:37px\"><a href=\"http://www.qingweichess.cn\"><span style=\"font-family: 仿宋_GB2312;color: rgb(0, 0, 255)\">http://www.qingweichess.cn</span></a><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">(青岛市国际象棋协会)</span></p><p style=\"text-indent:42px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">九、本规程解释权归主办单位。</span></p><p style=\"margin-top:0;margin-right:20px;margin-bottom:0;text-align:center\"><span style=\";font-family:宋体;letter-spacing:0;font-weight:bold;font-size:19px\">&nbsp;</span></p><p style=\"margin-top:0;margin-right:20px;margin-bottom:0;line-height:37px\"><span style=\";font-family:黑体;letter-spacing:0;font-size:16px\"><br style=\"page-break-before:always\" clear=\"all\"/></span><span style=\";font-family:黑体;letter-spacing:0;font-size:21px\">附件2</span></p><p style=\"margin-top:0;margin-right:20px;margin-bottom:0;text-align:center;line-height:37px\"><span style=\";font-family:方正小标宋简体;letter-spacing:0;font-size:29px\">“育才杯”第五届青岛市国际象棋学校锦标赛</span><span style=\";font-family:方正小标宋简体;letter-spacing:0;font-size:29px\">报名表</span></p><p style=\";text-indent:4px;line-height:37px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">单位名称(公章):&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p><table style=\"width: 569px;\" width=\"631\"><tbody><tr class=\"firstRow\"><td style=\"padding: 0px 7px; border-width: 1px; border-color: windowtext;\" valign=\"top\" width=\"42\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">组别</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">姓名</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">性别</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">身份证号</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-width: 1px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><p style=\"text-align:center\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">学籍号</span></p></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">3</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">4</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">5</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">6</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">1</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">2</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">3</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">4</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">5</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr><tr><td style=\"padding: 0px 7px; border-left-width: 1px; border-left-color: windowtext; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"top\" width=\"42\"><p style=\"text-align:center\"><span style=\"font-family:仿宋_GB2312;letter-spacing:1px;font-size:21px\">6</span></p></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"96\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"108\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"74\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"168\"><br/></td><td style=\"padding: 0px 7px; border-left-style: none; border-right-width: 1px; border-right-color: windowtext; border-top-style: none; border-bottom-width: 1px; border-bottom-color: windowtext;\" valign=\"center\" width=\"144\"><br/></td></tr></tbody></table><p style=\"line-height:27px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">总人数:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;人</span></p><p style=\"line-height:27px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">领队:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;教练员:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p><p style=\"line-height:27px\"><span style=\";font-family:仿宋_GB2312;letter-spacing:1px;font-size:19px\">填表人:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;填表人联系电话:</span></p><p><br/></p>','一、主办单位:青岛市教育局青岛市体育局青岛市体育总会二、协办单位:青岛市国际象棋协会三、承办单位:青岛实验初级中学 青岛育才国际象棋俱乐部',0,'青岛实验初级中学(青岛市太平路2号) ','2016年04月09日',0,800); /*!40000 ALTER TABLE `bm_relese_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_relese_team_event` -- DROP TABLE IF EXISTS `bm_relese_team_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_relese_team_event` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `event_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `addit` tinyint(1) unsigned NOT NULL DEFAULT '0', `event_type` tinyint(2) unsigned NOT NULL, `apply_time_start` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `apply_time_end` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `place` varchar(60) CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL DEFAULT '', `contact_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `contact_phone` bigint(11) unsigned NOT NULL, `contact_emaill` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `orgnize` tinyint(2) unsigned NOT NULL, `orgnize_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `apply_money` double(10,2) NOT NULL DEFAULT '0.00', `family` tinyint(1) unsigned NOT NULL, `event_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_id` int(11) NOT NULL, `is_end` tinyint(1) unsigned NOT NULL, `wenzhang` text CHARACTER SET utf8 NOT NULL, `jianjie` varchar(80) CHARACTER SET utf8 NOT NULL, `is_top` tinyint(1) unsigned NOT NULL, `detailed` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `begin` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `collocation` tinyint(1) unsigned NOT NULL, `people` int(10) unsigned NOT NULL, `leixing` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=372 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_relese_team_event` -- LOCK TABLES `bm_relese_team_event` WRITE; /*!40000 ALTER TABLE `bm_relese_team_event` DISABLE KEYS */; INSERT INTO `bm_relese_team_event` VALUES (359,'团队比赛马拉松',0,1,'2015年11月25日','2015年11月25日','1','1',1,'1',1,'1',1.00,0,'',11,0,'<p>1<br/></p>','1',0,'1','2015年11月19日',0,10,''),(360,'团队比赛马拉松',0,1,'2015年11月25日','2015年11月25日','1','1',1,'1',1,'1',1.00,0,'',11,0,'<p>1<br/></p>','1',0,'1','2015年11月19日',0,10,''),(361,'团队比赛马拉松',0,1,'2015年11月25日','2015年11月25日','1','1',1,'1',1,'1',1.00,0,'',11,0,'<p>1<br/></p>','1',0,'1','2015年11月19日',0,10,''),(363,'上三',0,1,'2015年11月05日','2015年11月06日','1','123',1231,'1231',1,'1231',1231.00,0,'uploads/14468935247307.jpg',11,0,'<p>123123<br/></p>','12312',0,'11','2015年11月28日',0,123,''),(364,'济南健身跑',0,1,'2015年11月04日','2015年11月11日','1','123',123,'123',1,'1',12.00,0,'uploads/14470498635489.jpg',18,0,'<p>12</p>','12',0,'123123','2015年11月18日',0,200,'12'),(366,'团队比赛马拉松1',0,2,'2015年11月05日','2015年11月12日','1','1',1231,'1231',1,'1231',1231.00,0,'uploads/14473768929581.jpg',11,0,'<p>21<br/></p>','12',0,'12','2015年11月19日',0,12,'1/02/3/4'),(370,'fewafewafewaf',0,1,'2016年02月12日','2016年02月25日','1','fewafewaf',1234567890,'<EMAIL>',1,'fewafewafe',0.00,0,'uploads/14556988729629.png',54,0,'<p>fewafewaf</p>','fewafeawfe',0,'fewafewafewa','2016年02月29日',0,5,'dwdq'); /*!40000 ALTER TABLE `bm_relese_team_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_sessions` -- DROP TABLE IF EXISTS `bm_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_sessions` ( `sesskey` char(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `expiry` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `user_id` mediumint(5) unsigned NOT NULL, `admin_id` mediumint(5) unsigned NOT NULL, `ip` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `user_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`sesskey`), KEY `sesskey` (`sesskey`) USING BTREE ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=FIXED; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_sessions` -- LOCK TABLES `bm_sessions` WRITE; /*!40000 ALTER TABLE `bm_sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `bm_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_shezhi` -- DROP TABLE IF EXISTS `bm_shezhi`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_shezhi` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(20) NOT NULL, `logo` varchar(30) NOT NULL, `daohang` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_shezhi` -- LOCK TABLES `bm_shezhi` WRITE; /*!40000 ALTER TABLE `bm_shezhi` DISABLE KEYS */; INSERT INTO `bm_shezhi` VALUES (1,'比一比','',''); /*!40000 ALTER TABLE `bm_shezhi` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_shoucang` -- DROP TABLE IF EXISTS `bm_shoucang`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_shoucang` ( `id` bigint(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `event_id` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=115 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_shoucang` -- LOCK TABLES `bm_shoucang` WRITE; /*!40000 ALTER TABLE `bm_shoucang` DISABLE KEYS */; INSERT INTO `bm_shoucang` VALUES (6,20,198),(7,20,201),(8,20,199),(16,20,205),(65,12,203),(66,12,205),(80,12,205),(82,12,247),(83,17,247),(84,17,247),(85,17,205),(86,17,247),(87,17,204),(88,12,269),(89,20,203),(92,25,205),(93,37,205),(94,11,358),(95,37,358),(96,19,205),(98,45,378),(99,42,378),(100,42,255),(101,42,386),(102,53,394),(103,53,395),(104,53,372),(105,52,367),(106,66,396),(107,66,396),(108,66,396),(109,71,396),(110,72,396),(111,76,396),(112,76,396),(113,91,396),(114,94,396); /*!40000 ALTER TABLE `bm_shoucang` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_swim` -- DROP TABLE IF EXISTS `bm_swim`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_swim` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) DEFAULT NULL, `password` varchar(50) DEFAULT NULL, `email` varchar(50) DEFAULT NULL, `birthday` date NOT NULL, `xh` int(11) NOT NULL, `xm` varchar(50) NOT NULL, `xb` varchar(50) NOT NULL, `csrq` int(11) NOT NULL, `zjlx` varchar(50) NOT NULL, `zjhm` varchar(50) NOT NULL, `gddh` varchar(50) NOT NULL, `sj` varchar(50) NOT NULL, `gj` varchar(50) NOT NULL, `txdz` varchar(200) NOT NULL, `yb` varchar(50) NOT NULL, `xx` varchar(50) NOT NULL, `csxm` varchar(50) NOT NULL, `jjlxr` varchar(50) NOT NULL, `jjlxdh` varchar(50) NOT NULL, `xslx` varchar(50) NOT NULL, `bscj` varchar(50) NOT NULL, `addtime` int(11) DEFAULT NULL, `updatetime` int(11) DEFAULT NULL, `status` int(11) DEFAULT '0', `jf` int(11) NOT NULL, `ip` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_swim` -- LOCK TABLES `bm_swim` WRITE; /*!40000 ALTER TABLE `bm_swim` DISABLE KEYS */; INSERT INTO `bm_swim` VALUES (11,'',NULL,NULL,'0000-00-00',0,'','',0,'','','','','','','','','','','','','',NULL,NULL,0,0,''); /*!40000 ALTER TABLE `bm_swim` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_team` -- DROP TABLE IF EXISTS `bm_team`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_team` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 NOT NULL, `builder_id` int(11) NOT NULL, `member_id` int(11) NOT NULL, `team_id` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_team` -- LOCK TABLES `bm_team` WRITE; /*!40000 ALTER TABLE `bm_team` DISABLE KEYS */; INSERT INTO `bm_team` VALUES (1,'团队1',11,11,'t1'),(2,'团队1',11,12,'t2'),(13,'张三',18,18,'t3'),(14,'team',19,19,'t4'),(15,'团队1',3,18,'t5'),(17,'团队1',11,18,'t1'),(18,'团队1',11,18,'t1'),(25,'队伍1',11,11,'t6'),(58,'fdsf',11,11,'t7'),(60,'dddd',11,11,'t9'),(64,'gfdfd',11,11,'t10'),(65,'dss',11,11,'t11'),(66,'tuandui1111',26,26,'t12'),(68,'队伍1',11,26,'t6'),(69,'咏春无敌',39,39,'t13'),(70,'咏春无敌',39,26,'t13'),(73,'tuandui1111',11,11,'t14'),(74,'咏春无敌',26,11,'t13'),(77,'我要得第一',42,42,'t15'),(78,'efwa',47,47,'t16'),(80,'wojisuhidiyi',42,42,'t17'),(82,'必得第一',42,42,'t19'),(83,'英雄队',19,19,'t20'),(84,'联盟',19,19,'t21'),(85,'参加测试',53,53,'t22'); /*!40000 ALTER TABLE `bm_team` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_team_apply_info` -- DROP TABLE IF EXISTS `bm_team_apply_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_team_apply_info` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` tinyint(5) unsigned NOT NULL, `event_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `apply_status` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `is_end` tinyint(1) unsigned NOT NULL DEFAULT '0', `event_id` int(10) unsigned NOT NULL, `apply_team_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `apply_money` double(10,2) NOT NULL DEFAULT '0.00', `id_affirm` tinyint(1) NOT NULL DEFAULT '0', `position` int(3) unsigned NOT NULL, `is_paid` int(1) NOT NULL DEFAULT '0', `leixing` int(3) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=531 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_team_apply_info` -- LOCK TABLES `bm_team_apply_info` WRITE; /*!40000 ALTER TABLE `bm_team_apply_info` DISABLE KEYS */; INSERT INTO `bm_team_apply_info` VALUES (502,11,'测试图片','1',0,255,'T115',23.00,0,0,0,0),(503,11,'测试图片','1',0,255,'T115',23.00,0,0,0,0),(504,11,'测试图片','1',0,362,'A107',23.00,1,1,0,0),(505,37,'sadadsa','1',0,255,'c110',23.00,0,0,0,0),(506,18,'测试图片','1',0,255,'a105',23.00,0,0,0,0),(507,18,'测试图片','1',0,255,'1',23.00,0,0,0,3),(508,18,'测试图片','1',0,362,'a01',23.00,1,2,0,0),(509,18,'测试图片','1',0,255,'c100',23.00,0,0,0,3),(510,39,'“K上校”五人制足球','1',0,368,'f391',200.00,0,0,0,0),(511,37,'“K上校”五人制足球','1',0,368,'c110',200.00,0,0,0,0),(512,37,'“K上校”五人制足球','1',0,368,'c110',200.00,0,0,0,0),(513,19,'测试图片','1',0,362,'f191',23.00,0,1,0,3),(514,39,'测试图片','1',0,362,'f391',23.00,0,12,0,3),(515,37,'测试图片','1',0,362,'c110',23.00,0,0,0,0),(516,18,'测试图片','1',0,362,'123',23.00,0,0,0,3),(517,18,'测试图片','1',0,362,'a1a232',23.00,0,0,0,3),(518,18,'测试图片','1',0,362,'a1a232',23.00,0,0,0,3),(519,18,'测试图片','1',0,362,'ga',23.00,0,0,0,3),(520,18,'测试图片','1',0,362,'t1',23.00,0,0,0,3),(521,18,'测试图片','1',0,362,'t13',23.00,0,0,0,3),(522,19,'测试图片','1',0,362,'f194',23.00,0,0,0,0),(523,37,'测试图片','1',0,362,'c110',23.00,0,0,0,0),(524,18,'测试图片','1',0,362,'t1',23.00,0,0,0,0),(525,18,'测试图片','1',0,362,'t2',23.00,0,0,0,0),(526,18,'测试图片','1',0,362,'t1',23.00,0,0,0,0),(527,18,'测试图片','1',0,362,'t1',23.00,0,0,0,0),(528,53,'小智测试3','1',0,372,'t22',0.00,0,0,0,0),(529,53,'小智测试3','1',0,372,'t22',0.00,0,0,0,0),(530,53,'小智测试3','1',0,372,'t22',0.00,0,0,0,0); /*!40000 ALTER TABLE `bm_team_apply_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_template` -- DROP TABLE IF EXISTS `bm_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_template` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `temp_file_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `temp_file_value` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `event_type_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) USING BTREE, KEY `event_type_id` (`event_type_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_template` -- LOCK TABLES `bm_template` WRITE; /*!40000 ALTER TABLE `bm_template` DISABLE KEYS */; INSERT INTO `bm_template` VALUES (1,'里程','100米',11),(2,'里程','1000米',11),(3,'里程','1000米',11),(4,'组别','少年组',11),(5,'组别','青年组',11),(6,'1','2',3),(7,'衣服','xl,xxl,xxxl',11),(8,'报名费','100,1000',11),(9,'报名费1','100,1000,1001',11),(10,'报名费2','100,1000,1001',11),(11,'报名费3','100,1000,1001',11),(12,'报名费4','100,1000,1001',11),(13,'报名费5','100,1000,1001',11),(14,'报名费6','100',11),(15,'报名费6','1000',11),(16,'报名费6','1001',11),(17,'报名费1','2015-07-06',11),(18,'开始时间','2015-07-06',11),(19,'extends11','服装10',12),(20,'extends1','衣服',15),(21,'extends2','里程',15),(22,'extends1','11',17),(23,'extends1','1',20),(24,'extends1','服装',127),(25,'extends2','年龄',127),(26,'extends1','dadad',127),(27,'extends1','服装',127),(28,'extends2','组别',127),(29,'extends1','T恤尺寸',127),(30,'extends1','泳衣色彩',127),(31,'extends2','组别',127),(32,'extends1','跑步组别',127),(33,'extends1','跑步组别',127),(34,'extends1','跑步',127),(35,'extends1','跑步组别',127),(36,'extends1','T恤',127),(37,'extends1','泳衣',127),(38,'extends1','safa',127),(39,'extends1','zhangsan',127),(40,'extends1','1',127),(41,'extends1','1231',127),(42,'extends1','1231',127),(43,'extends1','asdfa',127),(44,'extends1','11',127),(45,'extends1','31231',127),(46,'extends1','1',127),(47,'extends1','',127),(48,'extends1','',127),(49,'extends1','21',127),(50,'extends1','123',127),(51,'extends1','12312',127),(52,'extends1','121',127),(53,'extends1','12',127),(54,'extends3','T恤',127),(55,'extends20','张三',127),(56,'extends1','111',127),(57,'extends1','2222',127),(58,'extends1','人类',127),(59,'extends1','aakjdka',127),(60,'extends1','xiao',127),(61,'extends25','张三',127),(62,'extends25','张三',127),(63,'extends25','李四',127),(64,'extends1','男子组',270),(65,'extends3','bnan',225),(66,'extends5','nanzi',225),(67,'extends4','男子',225),(68,'extends1','男子组',272),(69,'extends1','111',343),(70,'extends1','男子组',345),(71,'extends2','女子组',345),(72,'extends1','铁人',357),(73,'extends1','比赛服装',358),(74,'extends1','男子',363),(75,'extends1','男子',364),(76,'extends1','男子',367),(77,'extends1','男子',369),(78,'extends1','e',372),(79,'extends1','衣服',379),(80,'extends1','游泳',201),(81,'extends1','马拉松类别',381),(82,'extends1','报名',382),(83,'extends1',' 服装',383),(84,'extends2','类型',383),(85,'extends1','服装',384),(86,'extends2','男女',201),(87,'extends3','类型',201),(88,'extends1','mi',386),(89,'extends2','年龄组',386),(90,'extends1','年龄组',389),(91,'extends1','年龄',390),(92,'extends1','2342342332',391),(93,'extends2','2342',391),(94,'extends3','23423',391),(95,'extends4','234234',391),(96,'extends1','型号',392),(97,'extends2','分项',392),(98,'extends1','分组',393),(99,'extends1','米数',394),(100,'extends2','学段',393),(101,'extends3','组别',393),(102,'extends2','学校',394),(103,'extends3','姓名',394),(104,'extends4','性别',394),(105,'extends5','组别',394),(106,'extends6','联系人及电话',394),(107,'extends1','组别',395),(108,'extends2','性别',395),(109,'extends1','组别',396),(110,'extends2','学校(完整全名)',396); /*!40000 ALTER TABLE `bm_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_user` -- DROP TABLE IF EXISTS `bm_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `xingming` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `sex` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `dizhi` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `phone` varchar(11) COLLATE utf8_unicode_ci DEFAULT NULL, `phone_code` varchar(6) COLLATE utf8_unicode_ci DEFAULT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, `telphone` int(11) NOT NULL, `reg_time` int(10) DEFAULT NULL, `birthday` date NOT NULL, `quanxian` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0为报名用户1为发布赛事用户', `id_card` varchar(18) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `team_id` int(11) NOT NULL DEFAULT '0', `sjuser_id` varchar(255) CHARACTER SET utf8 NOT NULL COMMENT '所属上级ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_user` -- LOCK TABLES `bm_user` WRITE; /*!40000 ALTER TABLE `bm_user` DISABLE KEYS */; INSERT INTO `bm_user` VALUES (3,'admin','tn_odQnjH2_Y5Dftu1MZRMeMySgkXzfZ','$2y$13$5q0r3whFfZGPrr6Fzm4fTOgUGYiDETlQptwvAFJxPCkYltRRdD2/G',NULL,'<EMAIL>',NULL,'0',NULL,NULL,NULL,10,1438586049,1438586049,0,NULL,'0000-00-00',1,'',0,''),(14,'abcd','w_Ja-GfdJiwNf00jL1fOG6qXnQgm7D_r','$2y$13$fKcmhXxu8CTwSYxw2caAiurddfbHzZe6ROpCQiZ/8eQnW5EPX4r8W',NULL,'<EMAIL>',NULL,'男',NULL,'abcd1234567','1580',10,1441767671,1441767671,0,NULL,'0000-00-00',2,'',0,''),(15,'admin888','nb8y8dcoF4Xxl5AfeMoJeq6sJDGDxjWi','$2y$13$DhHr4FUeLPNXje.kWnw3qO.EhLbVV97mFTE4wa5HwxHQ.J4GJ7rsa',NULL,'<EMAIL>',NULL,'男',NULL,'15098800374','2974',10,1441767876,1441767876,0,NULL,'0000-00-00',1,'',0,''),(16,'admin123','RHBg7sDh8sfWwlR9TtSaV2nDTfcLZ1kc','$2y$13$kbkppuJEYWsK6HMwqG0SEO4jwN.HcxOJ4bF6mHbE2Swvis1G99J3K',NULL,'<EMAIL>',NULL,'男',NULL,'15098800377','6402',10,1441774764,1441774764,0,NULL,'0000-00-00',0,'',0,''),(18,'ning1992','KhmMV-jdnll3xQxac1QSvxAhJkGkXqxf','$2y$13$skji25dH1ANNCCxmAaBWyeC1CP0dmg7luapibz5fcqnf3P47oZ.PS',NULL,'<EMAIL>','宁','男','20188','','5890',10,1443082974,1443082974,0,NULL,'2015-10-15',0,'372926199209030000',0,''),(20,'lutao','CneBemTCqJg_cMZ9g1CF5AmX00vLb3hh','$2y$13$jfB7VhDFvvdHJDFB7bp9LuXg4I0b3LFTFQRxR1BqXUtir7jjXcfO.',NULL,'<EMAIL>',NULL,'男',NULL,'18615172052','8696',10,1444264556,1444264556,0,NULL,'0000-00-00',1,'',0,''),(21,'admin111','7fjHlPd-ph8kAkicfRa4xFs-O4NFNIce','$2y$13$TxtPZkwnO65AM0oppwtVsugrzGuQZ4tDvpWKJWOeHu8cOZ4vCbX0y',NULL,'<EMAIL>',NULL,'男',NULL,'15166532418','123',10,1445320174,1445320174,0,NULL,'0000-00-00',0,'',0,''),(22,'ning','fXZTSRPOBZQs9HqMdXmRTCuQ4TjqsMoN','$2y$13$5Qev0QJgfkYi.lpdDlrMfeMIhItAlkWZoSMZm2/oBKu9AI9tTZBNm',NULL,'<EMAIL>',NULL,'男',NULL,'','5972',10,1445672068,1445672068,0,NULL,'0000-00-00',0,'',0,''),(26,'shin','q0uAoCBCFRKKF6iDk_gzXe5hG395oPrZ','$2y$13$dBx0OuOyYIR6hmJsSzlC1OJoG64q4Mb09lfRUCU36AKGx.U8jSEca',NULL,'1@1.1','aa','男','aa','','3399',10,1446001585,1446001585,0,NULL,'0000-00-00',0,'123456789012345678',0,''),(39,'no.zhuce','hndYiV70JC6dKUhRe5Urk3MKPa7u3O9J','$2y$13$z4By64ZNfpITUexwFqx.reW358g1M05iJ2MMc9zZvhSvDoCpLp59m',NULL,'<EMAIL>','李鑫','男','济南市经十路20188号','15106973855','1111',10,1447398750,1447398750,0,NULL,'1985-11-25',0,'370181198511257179',0,''),(40,'no.fabu','ItSDUsx6M9Do-5ifjR_VmL-mBjTXjVlV','$2y$13$iSz6NUt0RTp5oSFDt/r/IOA4nNvRrU7FpVLvhMrJMPdN4Mb9jEErO',NULL,'<EMAIL>',NULL,'男',NULL,'15150093855','1234',10,1447399217,1447399217,0,NULL,'0000-00-00',1,'',0,''),(41,'superadmin','s74Dp86vnTtPb3ktShwQAigzDO1xdVLr','$2y$13$NWkUJQSU2c.kbG2BXH/JqOKmWn0Eo097giBv4oo1yScjThEOvRgRW',NULL,'',NULL,'0',NULL,NULL,NULL,10,1447812163,1447812163,0,NULL,'0000-00-00',0,'',0,''),(42,'user','tRkpVHLYkgD2X6au0JisXUNVN_ci8k3_','$2y$13$YJIdHAuNud416qARBrABTO7HMrjY3obNROqM7/vMQIG.CLRPGqL4q',NULL,'<EMAIL>','鹏哥','男','山东省济南市','18363031321','1948',10,1447917406,1447917406,0,NULL,'1990-09-10',0,'372324199009101111',0,''),(43,'jigou_007','SzpxUcJ0HZ4rNdYOHFwj_2d36fHGvNpd','$2y$13$JpFORegr3lPbEdArgV6k...PD.gNHB7u7U9SoU33WSh//b1ADL9Aa',NULL,'<EMAIL>',NULL,'男',NULL,'','2268',10,1447918066,1447918066,0,NULL,'0000-00-00',1,'',0,''),(44,'user1','iqDgCUkfFIXL0-xHHA48RbpBqTxEsuWc','$2y$13$npkTg8ZPc9RpKttDAS62seDj1CGGxy3PDRb1u9qQKRSQYnOpps.Ve',NULL,'<EMAIL>','鹏哥','男','济南','18363031323','1398',10,1447919613,1447919613,0,NULL,'0000-00-00',1,'372324199009103211',0,''),(45,'gongsi_007','i_VETGrbqDdzfDnCqiL9I6b8csKPWBD2','$2y$13$zkhsYv1qWpD7VaUE6mkTPuPJxmoHxaqwFmu4ZVAYWL2Mf4KDFhfWi',NULL,'<EMAIL>',NULL,'男',NULL,'','2125',10,1447919841,1447919841,0,NULL,'0000-00-00',2,'',0,''),(46,'genzi114','ejwDKzsv7wIIJI7XOBTEoxzbl6d0QIZT','$2y$13$Xa9dtUAObXhBfpHdS60fRu/YpeSRD.RVdHDQRWIRRlRHQgiDu3kOq',NULL,'<EMAIL>',NULL,'男',NULL,'15098800123','1040',10,1447924984,1447924984,0,NULL,'0000-00-00',0,'',0,''),(47,'genzi123','xnLp-G_Uocx5d5vkOkEQ9WwTNaf965NO','$2y$13$cyAJhPEMl02CiOU4XG7m7u0o0eZnd9k/Tewmjf8z/TCg7haqqlTd6',NULL,'<EMAIL>','few','男','fewa','15098800154','1504',10,1447930693,1447930693,0,NULL,'0000-00-00',0,'asdfqwerasdfwerqas',0,''),(48,'ning1991','_i4qJ9k2WKjLYFJMWu7Lpshx2fVs_OJe','$2y$13$.Wj8rkfMT9lz08sKDq2QjuZuOafoYgltgNyq.0mPfmAgMGvSQrF8C',NULL,'<EMAIL>',NULL,'男',NULL,'12345678910','0123',10,1447984786,1447984786,0,NULL,'0000-00-00',1,'',0,''),(49,'jnqmjszx','ug_L8LobW01t5kgbkO6t1eeqWzozSxuI','$2y$13$zCBqnmybVa4UDERCouIrDOFhEz593/BBeSjguow3ZA9AiK4M/4JuC',NULL,'','全民健身','男','济南市经十路19166号','68606768','990722',10,1449122699,1449122699,0,NULL,'0000-00-00',1,'372324199009103211',0,''),(50,'test_zhuce','mSvdw7LstFR1JfXUlyEObYw3r4OUn_WX','$2y$13$sp9sZ7/Ovdtb/0RiYxMu3uNB4nny.3I0D//cbH9N/x0E0qddkTQRm',NULL,'<EMAIL>','李鑫','男','济南市经十路20188号','','396881',10,1449199983,1449199983,0,NULL,'1986-01-12',0,'150525198601210454',0,''),(51,'test_fabu','5LTGs3ml-4ITeNn-hSqGjCFIbI27PDsv','$2y$13$LdsNEbe8/uAPsFfsfywJieyBvN2.So4AeC9HH3Wkcy1w4NKmoInf2',NULL,'<EMAIL>',NULL,'男',NULL,'15550071553','770419',10,1449200230,1449200230,0,NULL,'0000-00-00',1,'',0,''),(52,'genzi','bOwFs55fM9b_OoJZmJsyHRSbVi5o3PSF','$2y$13$aW0zqi/lsJ72o55irv2U/ujVhxAyl4RyED.t0a68vtogZGIBiRFRG',NULL,'<EMAIL>',NULL,'男',NULL,'15098800371','673350',10,1449450405,1449450405,0,NULL,'0000-00-00',1,'',0,''),(53,'genzi110','V_zJUZ7IM7rR-EuJzsmzRh_vTuOnuyYc','$2y$13$sOpq6lAMMIFDTpxtRRxJ9ud9AnvANrUhtGxZwTjFJ8Szq.nT4d7Ia',NULL,'<EMAIL>','小智','男','济南市中区','15098800373','673350',10,1449450528,1449450528,0,NULL,'1994-10-29',1,'371522199410298411',0,'52'),(54,'genzi112','2Z2vou2jQqwzXs9wIyKOWDlhIZ8ZuCeC','$2y$13$5JpUbzuRO6sfAcS3TqNkHu1rmGEUQ999PTPMrPeiRSbxWvOwzu9em',NULL,'<EMAIL>',NULL,'男',NULL,'15098800374','673350',10,1449450574,1449450574,0,NULL,'0000-00-00',1,'',0,'52'),(55,'qdtyj','Btb96vhmCgebBYQRK6FtyjUZoU2icmes','$2y$13$Ek5xCnnkq7mKenB5VKBLfe0JYThgwSxIpXCCBBI9L9Z2GYzB1gSF.',NULL,'<EMAIL>',NULL,'男',NULL,'15106973850','933799',10,1450676202,1450676202,0,NULL,'0000-00-00',1,'',0,''),(56,'qdtyzhbgs','7F6kq_4rr_yTxsHxPLC5NBJziyQc7SLd','$2y$13$1kc8jbD4r59.tlBY3WBoaOoSz0wVFp9ajuN5BWN.bhRQrQEDJA6dG',NULL,'<EMAIL>',NULL,'男',NULL,'13276484512','738726',10,1455673785,1455673785,0,NULL,'0000-00-00',1,'',0,''),(57,'summerhu','mZa4LmCojQkIZ9GTbzJA5oMRKAsr0nx0','$2y$13$GIsDYxXF/paBH.PVnwHBmuFWRMaHCOSfRAYJqkFYhfY6eQEk3tgm.',NULL,'<EMAIL> ','hj','女','qingdao ','13963931669','870659',10,1455850436,1455850436,0,NULL,'0000-00-00',0,'370202198410080789',0,''),(58,'qdma','IOAU-9cKuTDzcbrAMDW5cBEhooQRoXbB','$2y$13$JFo275bH4pY35KOuFYJoM.ulEyNIOb6LKq1czwqAIiiq2LrU6SxIW',NULL,'<EMAIL>',NULL,'男',NULL,'13906425657','311202',10,1456104651,1456104651,0,NULL,'0000-00-00',1,'',0,''),(59,'青岛市冬泳协会','AyWWinKtNkwmQNlQRfWsipX5LjCngGLz','$2y$13$1vu2noio1grtv/OIGWCSReviscQyND9A7k5Lxz/XutdJ917O4qQLe',NULL,'<EMAIL>',NULL,'男',NULL,'15615629225','923687',10,1456456419,1456456419,0,NULL,'0000-00-00',0,'',0,''),(60,'青岛国际象棋协会辛园','y_0XFLQsi6Qu0YwSvH7FKHDwxhiFb6gk','$2y$13$JZd3KbmNsB.nJ3BMvF5ASeIqajnsedlTRFeM2RZg10BB2tq/ljoKS',NULL,'<EMAIL>',NULL,'男',NULL,'13697679061','777419',10,1456896729,1456896729,0,NULL,'0000-00-00',0,'',0,''),(61,'qdqwqp','6TwvKUFgy8AzzElD6eiF0W99qUq09A0E','$2y$13$zBzWcpEpDWjVYprFTSD8xue2aUA5JVJDjaYIOQtrM/99MnEKrWUUW',NULL,'<EMAIL>',NULL,'男',NULL,'','695883',10,1457072158,1457072158,0,NULL,'0000-00-00',1,'',0,'15'),(62,'wangyuehan','rvSdf-AEeU1kqGGD9T-vDsh0hndODigl','$2y$13$IZtRxRxcJaBge6u1BgIorOAdH1ESlFGREexOoHgFylHNF7vBu3Eum',NULL,'<EMAIL>','王悦涵','女','尚志路3号','13295326550','622360',10,1458571611,1458571611,0,NULL,'2007-09-29',0,'370205200709291021',0,''),(63,'guzhenmei','NCgwFgoW6rIcyzMyKo2KwtKVP4oGfsJT','$2y$13$OIpTLQfVeI8CA.xnXLXLDecS0EvIJ9kqPth.f0E9oweH6ZlKYXcqW',NULL,'<EMAIL>',NULL,'女',NULL,'18769771688','304339',10,1458614769,1458614769,0,NULL,'0000-00-00',0,'',0,''),(64,'luoer','VL0Z5zjc86-i3y4J7pr3hfvJM7VdDHkK','$2y$13$5gjwChXaw9qeLF3H.AofdeCU8XPllndfrTKPY5Lsddyp04vDHF4de',NULL,'<EMAIL>',NULL,'男',NULL,'15954820583','906717',10,1458620415,1458620415,0,NULL,'0000-00-00',0,'',0,''),(65,'hyxuan','4IGDEQGCKY4RXZPBfsgVTCjKD8YbjgAk','$2y$13$PGwy54ffBkgfY5i0qWPBx.sK5Wd/VneUr9H9RaZpLbu0gDdgWRPoq',NULL,'<EMAIL>',NULL,'男',NULL,'15865527311','937009',10,1458626583,1458626583,0,NULL,'0000-00-00',0,'',0,''),(66,'青岛北仲路第一小学','z-_enaJidayl3plnCJ2lGHLzq3Dmw2fj','$2y$13$SA74rirJm0f.6I6BoEzQLOdBAfkDHKVG1GJa.zbSK9EojzuZ3y86q',NULL,'<EMAIL>',NULL,'女',NULL,'13626392528','722175',10,1458634192,1458634192,0,NULL,'0000-00-00',0,'',0,''),(67,'yangyangruoruo','ZBl1Cn_Rw045u3B_i9Xca-3eLvP0bGvT','$2y$13$vLWM2AMO7ZxwtgQ6Qlc0quZXEu1VklB/Hp6lRMqB5s2wjQh2reSYu',NULL,'<EMAIL>',NULL,'男',NULL,'13853277079','824996',10,1458645927,1458645927,0,NULL,'0000-00-00',0,'',0,''),(68,'满族小宝贝','WjyJwc_8G-64AbU2_0c1Sp-K2XPKxBRb','$2y$13$9CcYLefHI6boCzcgGEPBzeBUpJitZAmHZ//RPQDXX1yh1lk71jsRa',NULL,'<EMAIL>',NULL,'女',NULL,'18853299318','613023',10,1458696382,1458696382,0,NULL,'0000-00-00',0,'',0,''),(69,'魏红','O4PVMeou-fgJmrkaISGVml7jhaP3MUoC','$2y$13$lg12Z7ba1YoXV7NVu35/XuVcR3eWj.b0g6lUoUPm0enz.RozEMTFi',NULL,'<EMAIL>',NULL,'女',NULL,'13515325287','976673',10,1458701249,1458701249,0,NULL,'0000-00-00',0,'',0,''),(70,'sch0001','XOULc2hLo1xMJiMITqrZY08hxHkAhuw4','$2y$13$M1F0iB5akJZy6DH.l09qguKkxvFzrw.UQS6jJRFgMw0zh072wkjeS',NULL,'<EMAIL>',NULL,'男',NULL,'18560632258','158278',10,1458706431,1458706431,0,NULL,'0000-00-00',0,'',0,''),(71,'青岛天山小学','DRpdod0yLpUy2ktnj-4dgGlo8-eN0k5p','$2y$13$o9YVkoL86GDUSwET5LYDH.ptn.TtJSQRR5.CpebVktJ4zqqQ.1hx6',NULL,'<EMAIL>',NULL,'男',NULL,'18660216861','972581',10,1458707950,1458707950,0,NULL,'0000-00-00',0,'',0,''),(72,'13061402926','1hXl28Fp7ruK8dMhPDoHFuE9OU1f9IEm','$2y$13$crBrAfS68Oddr6hUi8BDYuY0Ipj7rOy9Sk8nbftDZyfbtC9l3aM9u',NULL,'<EMAIL>',NULL,'男',NULL,'13061402926','908057',10,1458713683,1458713683,0,NULL,'0000-00-00',0,'',0,''),(73,'青岛崂山新世纪学校','nHnT9IUIIu2vnYerDs_hQTjJfHsfJFIz','$2y$13$YY0AhSq31ZhssBpvnhrNVeSZJMfEowaM/vnxpGW0VU47ycIjgDsbK',NULL,'<EMAIL>',NULL,'男',NULL,'15205323297','504056',10,1458716196,1458716196,0,NULL,'0000-00-00',0,'',0,''),(74,'丁明鹏','jnZoqaE_JgEWa3mLxJxY1bcAU8VdkjgG','$2y$13$eucQT1D7IP28iYFQP6qxwuElVIeTnyL/fFQ8AUKdWg5G27PNhAm4S',NULL,'<EMAIL>',NULL,'男',NULL,'15092268982','451032',10,1458720230,1458720230,0,NULL,'0000-00-00',0,'',0,''),(75,'尚现达','v-7R2rTb2tqDbCIPO4rPTbLl_pRs7xxz','$2y$13$zcJcVjzItkIZcyvChpwcJuvDR1mTwIjgfor5CpZ15dSavwQhBDk7u',NULL,'<EMAIL>',NULL,'男',NULL,'13863902797','142979',10,1458729902,1458729902,0,NULL,'0000-00-00',0,'',0,''),(76,'Lucky','jXekf8emFrfkqX3hCqSEqSLP-fcmdXVN','$2y$13$M0mVkGzXCX448M/pBJ.Lh.fHheYpKvd0.Q2wmNd4Y0laYXL0VPA1W','bSEWcMY0D3ddw-vuorDygyxJOAwSlY-t_1458804886','<EMAIL>',NULL,'女',NULL,'18661716818','789574',10,1458734523,1458805141,0,NULL,'0000-00-00',0,'',0,''),(77,'林泽华','qrzSLeE-e1MgLj3Nm0CEMj59Mqh4mgho','$2y$13$6UJO463y8LrwM.j7vCM2.ODjrePYWFRuRCgQOjiumUUCSr7r5CJQ2',NULL,'<EMAIL>',NULL,'男',NULL,'13953284120','172091',10,1458740209,1458740209,0,NULL,'0000-00-00',0,'',0,''),(78,'kevin2003626','LSrOTj0_zBoYyizpM_E46tPCS4t1XmN9','$2y$13$MWraYYH.D6V43l6vzksiyOuE5Yk1YzSyRlO4Pg1TPoRYeBUUHPOm6',NULL,'<EMAIL>','刘凯文','男','青岛市市北区同安路659号302户','13953200538','280147',10,1458740279,1458740279,0,NULL,'2003-06-26',0,'370203200306268633',0,''),(79,'刘术羽','pPGS8NoXiLQhSAPg5abH-lqM2tJwHl-2','$2y$13$55WRM21boVFDU26b5OByX.VwNga/TFy/EUyvX28anjOeFdFxeFS8W',NULL,'<EMAIL>',NULL,'男',NULL,'13206499990','080034',10,1458740288,1458740288,0,NULL,'0000-00-00',0,'',0,''),(80,'qdzez','yJuejAIHnnsk5Vb8xMzRU1S3mLfY0VlP','$2y$13$uSt3t1RIEbUuADkqDU9Ao.EUTa4Lsdr/FijcrI95F1Xo9zeAfpEoy',NULL,'<EMAIL>',NULL,'男',NULL,'15806391012','396455',10,1458746503,1458746503,0,NULL,'0000-00-00',0,'',0,''),(81,'青岛市城阳区夏庄街道夏庄小学','Y1ij8SzLd-cByp86tuMxHC7JuKV0onoL','$2y$13$OiJGStrEObsuFsuBJ5Jpl.JNMqkB4rTleccnVVmDt4TAoNyl0w4Q2',NULL,'<EMAIL>','王健','男','青岛市城阳区夏庄街道夏庄村','18363977839','219395',10,1458778359,1458778359,0,NULL,'0000-00-00',0,'370212197809183511',0,''),(82,'林新雨','fBf1S5h1p73yxCTHfUnVeijqceENv7Lt','$2y$13$zmI2QBg112iR6cNmbIsvv.LrFBhWg.deaeAH6KD7egdMFI1Zg6nBu',NULL,'<EMAIL>',NULL,'女',NULL,'15166056580','001503',10,1458780234,1458780234,0,NULL,'0000-00-00',0,'',0,''),(83,'陈妮妮','jYIzEBqZtU_XmlJyPNYnsdc-UNPqMzWL','$2y$13$ZNhuK3ULrYeK19ARJuV5SOxxfzr1gY.U3V9V3mmskqVYuquJk1qdq',NULL,'<EMAIL>',NULL,'女',NULL,'18615327197','078783',10,1458782324,1458782324,0,NULL,'0000-00-00',0,'',0,''),(84,'陈妮','9-p4V_4oh81HdcpWP0iJWacmYo9QUvnw','$2y$13$geizbanYDVNSYbcoTGX69uwMoVoW4KPBvnm2XHnz2U.C/q9ziIxMK',NULL,'<EMAIL>',NULL,'男',NULL,'18561683672','866998',10,1458784172,1458784172,0,NULL,'0000-00-00',0,'',0,''),(85,'陈大妮','RXOR65EKJDy-EwBT3LNSvuQ4T7od3It0','$2y$13$9lK0qir.tcC9fedBJWt78.bbZIxjZKrQXWbupsUfC2e/hppFgZ.Zq',NULL,'<EMAIL>',NULL,'男',NULL,'15092169391','319834',10,1458784533,1458784533,0,NULL,'0000-00-00',0,'',0,''),(86,'鹰羽1988','IVuL4Kegz7xRHW7BvOgomct8a6u1sOfq','$2y$13$NctIr/c38mPOJML7nOZbs.3q4UxMB4Pita.i0EoxR9TPO9jahPo9W',NULL,'<EMAIL>','豆立焕','女','李沧区永年路青岛工贸职业学校','15092096086','988916',10,1458784588,1458784588,0,NULL,'0000-00-00',0,'37152319880318306X',0,''),(87,'陈小妮','PVjuEOaZZdsCJJUQeRg_PJwdQzpdEjpT','$2y$13$1Xj1Cs8vQaeMfPenzmn5g.ApEuCekGBdLbXMclj/5zlxPfWKVhJKq',NULL,'<EMAIL>',NULL,'男',NULL,'13583208376','808931',10,1458785289,1458785289,0,NULL,'0000-00-00',0,'',0,''),(88,'陈妮大','uUH5GhYbLDPdQ7Ya_ZVTLjTHF8WBYhXc','$2y$13$aMsOJfiQTuv.jcTaU9XwG.raKtf/YyG4I0VzxT9vNu2TAnGBZDkFq',NULL,'<EMAIL>',NULL,'男',NULL,'15066278522','553568',10,1458785729,1458785729,0,NULL,'0000-00-00',0,'',0,''),(89,'瑞雪慧心','xVqDBltG255MiuxdLVDWomSheJ9_dzKT','$2y$13$87gjMZAZ/095sNItKfVvmedCMx939m7ojoAjJf/g41EhiIBs0tX36',NULL,'<EMAIL>',NULL,'女',NULL,'15192750016','044616',10,1458788963,1458788963,0,NULL,'0000-00-00',0,'',0,''),(90,'qdhubei','LtYRhGQv6E5Iy9vnWQBM5z1EOLEKv0R-','$2y$13$yt1JFqTUE1yFtK4D6FiHIe2kZqnFzrwWrQNk7.rQG8ceoTmvKdUDK',NULL,'<EMAIL>',NULL,'女',NULL,'13370845233','778814',10,1458790746,1458790746,0,NULL,'0000-00-00',0,'',0,''),(91,'wfqcathy','7-cTYRpZ3_hzohT3xizvBiWKEjLWbb8x','$2y$13$ZKXi5cU7PdHho1hxwhdVAexXninMQIWa3B4FlvhtaciliJFrEC/UG',NULL,'<EMAIL>','侯文彬','男','青岛市市北区','13789850173','900146',10,1458796395,1458796395,0,NULL,'2008-08-19',0,'37021220080819153x',0,''),(92,'鞠世梁','potBTq0oInhIjXxqpqncQqXm0GRzhf7o','$2y$13$9Z6p/tLzKSDa3KggakSBrexHPL0LXjkBMpIHs/m3nlE1u0MoCsQR2',NULL,'<EMAIL>',NULL,'男',NULL,'13808958226','931710',10,1458803302,1458803302,0,NULL,'0000-00-00',0,'',0,''),(93,'青岛重庆路第二小学','pNZ-baYZGTw1Z7w_eyl_rCWcd5PQG8y8','$2y$13$mcUqGegldcw5bl704/F0Q.v2vha2JquM9N2bhz6Y7RHo.y89AXjui',NULL,'<EMAIL>',NULL,'男',NULL,'13869824697','988779',10,1458804297,1458804297,0,NULL,'0000-00-00',0,'',0,''),(94,'陈谭恩','JZURMlt1bI56TVnIpSY2kNiWiFHvv2ah','$2y$13$6LnXSWKC.RMAvfK/H3oWP.HCaLX6PAxdDNxCOW/uW9BgX67PNTyge',NULL,'<EMAIL>',NULL,'男',NULL,'13864257277','275612',10,1458809857,1458809857,0,NULL,'0000-00-00',0,'',0,''),(95,'杨子航','j0w_b-k6RtFW04OlFGefCH51HKA4vzsF','$2y$13$mN/H0mFBINeqj.cljYJmj.dgNJgyRegDuenpjPC06MGyrk3QUmh9u',NULL,'<EMAIL>',NULL,'男',NULL,'13583229872','734617',10,1458814110,1458814110,0,NULL,'0000-00-00',0,'',0,''),(96,'两生花开','O1b-5KfzFOLobt8hvE_e8Z01gz2vU-zD','$2y$13$cBNOgMT99EcK6qnQ6YoX1e3XAaILpTZffv1Eud/rKxSieB8IbVQVm',NULL,'<EMAIL>',NULL,'女',NULL,'18661974718','033235',10,1458816798,1458816798,0,NULL,'0000-00-00',0,'',0,''),(97,'148360200','TNuBEE0goFujkoPa_macXaRgeThtQ8di','$2y$13$c//sRCDyF09ZcshPgUwiZ.8qjLDTizyNTc5uLPNvS4nAf7p45U1Bi',NULL,'<EMAIL>',NULL,'男',NULL,'13573861906','827507',10,1458818898,1458818898,0,NULL,'0000-00-00',0,'',0,''),(98,'李好','WTLcqZfkI4P1bgzOjvflYnkkTDkaQ8ch','$2y$13$BPTx3Q..SGbTgle/Ukxrx.4EYp1A3LUaWOZYk2c4OHMusqPKy5Wlu',NULL,'<EMAIL>',NULL,'女',NULL,'15866884133','204177',10,1458820265,1458820265,0,NULL,'0000-00-00',0,'',0,''),(99,'wangwujian','VANTqb01Gz8QxywP1Cg-hFBiPytXFpmk','$2y$13$WlhJ1qRQC0La3qIpY9Ynge/pcvW9saIVGKdZnSsrgeUCKWc1/DK9O',NULL,'<EMAIL>',NULL,'男',NULL,'13665422171','643239',10,1458858094,1458858094,0,NULL,'0000-00-00',0,'',0,''),(100,'青岛燕儿岛','z6qTbWF-fEsob1n6mOpNhMOdxXjArJ3-','$2y$13$29AXFv2vrE6f5Z2QCjZO9.mQW44oJwaVQ.OgHgteB0SQTirhWk/ie',NULL,'<EMAIL>',NULL,'男',NULL,'18561659099','124991',10,1458859572,1458859572,0,NULL,'0000-00-00',0,'',0,''),(101,'<EMAIL>','JYzMTc1xo42phd6Ix-xhbTOK-YXrVHIx','$2y$13$JC2F79hz5l.6JmA9FvQChug3IUg7WGdPJSOP2azrvC/dpK.z1C43i',NULL,'<EMAIL>',NULL,'女',NULL,'18661762717','571426',10,1458865044,1458865044,0,NULL,'0000-00-00',0,'',0,''),(102,'石泽','LoIZglKsZee7rYCKNJJU5QOAKqqBoyUN','$2y$13$tGToDGi/9q.MhbZWKLRusO9MsGDFiH.zTrE6/Qb05zksRuv1F.x42',NULL,'<EMAIL>',NULL,'男',NULL,'18505322787','017750',10,1458866200,1458866200,0,NULL,'0000-00-00',0,'',0,''); /*!40000 ALTER TABLE `bm_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_user_admin` -- DROP TABLE IF EXISTS `bm_user_admin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_user_admin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, `telphone` int(11) NOT NULL, `reg_time` int(10) DEFAULT NULL, `birthday` date NOT NULL, `sex` tinyint(1) NOT NULL, `quanxian` tinyint(1) NOT NULL DEFAULT '0', `xitong` tinyint(1) NOT NULL DEFAULT '0', `yonghu` tinyint(1) NOT NULL DEFAULT '0', `caiwu` tinyint(1) NOT NULL DEFAULT '0', `guanggao` tinyint(1) NOT NULL DEFAULT '0', `tupian` tinyint(1) NOT NULL DEFAULT '0', `wenzhang` tinyint(1) NOT NULL DEFAULT '0', `saishi` tinyint(1) NOT NULL DEFAULT '0', `mianze` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_user_admin` -- LOCK TABLES `bm_user_admin` WRITE; /*!40000 ALTER TABLE `bm_user_admin` DISABLE KEYS */; INSERT INTO `bm_user_admin` VALUES (4,'users','9NA-66KBaqIEYJ0eeT07Sgodfz5i1QNJ','$2y$13$bKC1dmIvJDeDWmFXsSLIt.0SErEZijEPjM/BBnzDgaqXl9uvlKl5u',NULL,'<EMAIL>',10,1439861621,1439861621,0,NULL,'0000-00-00',0,1,1,1,1,1,1,1,1,1),(7,'admin888','WBHa7VtrGvsTImjbRB1tk8Q_KOvNnI2Z','$2y$13$TY7TDoLBpgwPYKMfb1Nq8.c9WbHGEueEAqzzQb9.kfA2GUhL2aAM.',NULL,'<EMAIL>',10,1445233473,1445233473,0,NULL,'0000-00-00',0,0,1,1,1,1,1,1,1,0),(8,'admin999','_mu9Eh9wky8sSljxEECvTt0Hr4KSPCRz','$2y$13$t4l3n/aLWAeiu1UAYMNPmOchLFIbZAodTgeeInxgNQJm2gmL3YxDe',NULL,'12<EMAIL>',10,1445233301,1445233301,0,NULL,'0000-00-00',0,1,0,1,0,0,0,0,0,0),(9,'user111','aGkP3aLpXQTj-xmzJxXm0hqAt67AfmSL','$2y$13$HuVl3VPFCJ.RYxrK3GhW3Op9EBQsiYpMo1NlUJyRgO6gqsDLLMf5u',NULL,'<EMAIL>',10,1445233403,1445233403,0,NULL,'0000-00-00',0,1,0,0,0,0,0,0,0,0),(10,'123','qtGDPatqymD3y3eOBCuQfzEywoIUrbu2','$2y$13$oizqdu/V05ZSNI4FO6w2CuuFQRTy6cvaX/E69RhbhCIRZvkc3TInO',NULL,'<EMAIL>',10,1445244303,1445244303,0,NULL,'0000-00-00',0,1,0,0,0,0,0,0,0,0),(11,'admin123','TyT_gGfzYP0XoT0yQfVJgF8VjaQNEh-D','$2y$13$8xMxP209BgF/Tft4JgdfjO00BKgsD4z2d4QQxwdpPM.I9iQsifzja',NULL,'',10,1447751403,1447751403,0,NULL,'0000-00-00',0,0,0,0,0,0,0,0,0,0),(12,'superadmin','s74Dp86vnTtPb3ktShwQAigzDO1xdVLr','$2y$13$NWkUJQSU2c.kbG2BXH/JqOKmWn0Eo097giBv4oo1yScjThEOvRgRW',NULL,'',10,1447812163,1447812163,0,NULL,'0000-00-00',0,0,0,0,0,0,0,0,0,0),(13,'jigou_007','m15C8HiXBKD8VEZK4wcapvQJAdXV7xWX','$2y$13$9tEnPf/k4LxQ5KdqLpqLBuCEckRajqpR.Z6lGXLnNTtMUu0HawTCi',NULL,'',10,1447917515,1447917515,0,NULL,'0000-00-00',0,0,0,0,0,0,0,0,0,0),(14,'users1','ja-kVYX3F1-Allm1HVBb8RHBKffaEbCj','$2y$13$Y5zLcV3/LpElP5lQsYMbTewkPoEgGkbdW9llNu6R4vfE38BKJs5Om',NULL,'',10,1449121446,1449121446,0,NULL,'0000-00-00',0,0,0,0,0,0,0,0,0,0),(15,'51caiwu','dLv5JcrXaNk5qh-YJ59zH2mXlxotCTfM','$2y$13$7DNuGTXUiyzZLJig9Q7LZuqHy9/Tt/nymkNFe/o7hz/SgScyQqM.a',NULL,'',10,1449449741,1449449741,0,NULL,'0000-00-00',0,0,0,0,1,0,0,0,0,0),(17,'51yunying','Y0zYF7dX1NQodURNCWD3rzKtgTwlqQIh','$2y$13$F7uNkUcW5PjtsdoCTNaJHu.qvVsHERJCzRNionfzrhRt7i3Z1BEFi',NULL,'',10,1449451999,1449451999,0,NULL,'0000-00-00',0,0,0,1,0,1,1,1,1,0),(18,'admin','7RjpSktyi-MYZlUv-169011xckQKXfUj','$2y$13$QUQ6P7qlGH/WqCmiJ.YF0urEFkY0nLspjry3zY.NsPKIajrUUecMe',NULL,'',10,1450420532,1450420532,0,NULL,'0000-00-00',0,0,0,0,0,0,0,0,0,0),(19,'amd','CPlkszCbG8nVu8maU3cpV1-PzIBH3yMl','$2y$13$fRAi96Nkwa7b/XMQRkDFWulxw2.88JzYdwcz6M/sDasSbnkE4X7Qi',NULL,'',10,1456209081,1456209081,0,NULL,'0000-00-00',0,0,0,0,0,0,0,0,0,0); /*!40000 ALTER TABLE `bm_user_admin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bm_zhanshi` -- DROP TABLE IF EXISTS `bm_zhanshi`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bm_zhanshi` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 NOT NULL, `img` varchar(255) CHARACTER SET utf8 NOT NULL, `jianjie` varchar(255) CHARACTER SET utf8 NOT NULL, `jieshao` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bm_zhanshi` -- LOCK TABLES `bm_zhanshi` WRITE; /*!40000 ALTER TABLE `bm_zhanshi` DISABLE KEYS */; INSERT INTO `bm_zhanshi` VALUES (1,'易健绅信息科技有限公司','banner/cascades_01.jpg','易健绅信息科技有限公司专注与技术','易健绅信息科技有限公司提供科学的体育场馆解决方案,为体育场馆提供先进的体育管理系统。'); /*!40000 ALTER TABLE `bm_zhanshi` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2016-03-25 9:52:57
-- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: May 17, 2018 at 10:06 AM -- Server version: 5.6.21 -- PHP Version: 5.6.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `db_spkstudyclub` -- -- -------------------------------------------------------- -- -- Table structure for table `alternatif` -- CREATE TABLE IF NOT EXISTS `alternatif` ( `id_alternatif` int(11) NOT NULL, `nama_alternatif` varchar(255) NOT NULL, `deskripsi` varchar(255) NOT NULL, `keaktifan` double NOT NULL, `pengembangan_kompetensi` double NOT NULL, `pengalaman_organisasi` double NOT NULL, `kepopuleran` double NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; -- -- Dumping data for table `alternatif` -- INSERT INTO `alternatif` (`id_alternatif`, `nama_alternatif`, `deskripsi`, `keaktifan`, `pengembangan_kompetensi`, `pengalaman_organisasi`, `kepopuleran`) VALUES (5, 'Infinity', '', 0, 0, 0, 0), (6, 'Idept', '', 0, 0, 0, 0), (7, 'Insect', '', 0, 0, 0, 0), (8, 'KSL', '', 0, 0, 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `kriteria` -- CREATE TABLE IF NOT EXISTS `kriteria` ( `id_kriteria` int(11) NOT NULL, `nama_kriteria` varchar(255) NOT NULL, `tipe_kriteria` varchar(10) NOT NULL, `bobot_kriteria` double NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- -- Dumping data for table `kriteria` -- INSERT INTO `kriteria` (`id_kriteria`, `nama_kriteria`, `tipe_kriteria`, `bobot_kriteria`) VALUES (1, 'keaktifan', 'benefit', 0.2), (2, 'pengembangan_kompetensi', 'benefit', 0.2), (3, 'pengalaman_organisasi', 'benefit', 0.2), (4, 'kepopuleran', 'benefit', 0.2); -- -------------------------------------------------------- -- -- Table structure for table `logkrit` -- CREATE TABLE IF NOT EXISTS `logkrit` ( `id_member` int(11) NOT NULL, `id_kriteria` int(11) NOT NULL, `nama_kriteria` varchar(255) NOT NULL, `tipe_kriteria` varchar(10) NOT NULL, `bobot_krit` double NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `member` -- CREATE TABLE IF NOT EXISTS `member` ( `id_member` int(11) NOT NULL, `nama_lengkap` varchar(255) NOT NULL, `alamat` varchar(300) NOT NULL, `email` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `id_suku` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `nilai` -- CREATE TABLE IF NOT EXISTS `nilai` ( `id_nilai` int(6) NOT NULL, `ket_nilai` varchar(45) NOT NULL, `jum_nilai` double NOT NULL, `id_kriteria` int(11) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; -- -- Dumping data for table `nilai` -- INSERT INTO `nilai` (`id_nilai`, `ket_nilai`, `jum_nilai`, `id_kriteria`) VALUES (6, 'kurang aktif', 0.1, 1), (7, 'cukup aktif', 0.2, 1), (8, 'aktif', 0.3, 1), (9, 'sangat aktif', 0.4, 1), (11, 'kurang baik', 0.1, 2), (12, 'cukup baik', 0.2, 2), (13, 'baik', 0.3, 2), (14, 'sangat baik', 0.4, 2), (15, 'kurang berpengalaman', 0.1, 3), (16, 'cukup berpengalaman', 0.2, 3), (17, 'berpengalaman', 0.3, 3), (18, 'Sangat berpengalaman', 0.4, 3), (19, 'kurang populer', 0.1, 4), (20, 'cukup populer', 0.2, 4), (21, 'populer', 0.3, 4), (22, 'sangat populer', 0.4, 4), (23, '<NAME>', 0.1, 5), (24, '<NAME>', 0.2, 5), (25, 'Serius', 0.3, 5), (26, '<NAME>', 0.4, 5); -- -------------------------------------------------------- -- -- Table structure for table `pengguna` -- CREATE TABLE IF NOT EXISTS `pengguna` ( `id_pengguna` int(11) NOT NULL, `nama_lengkap` varchar(255) NOT NULL, `username` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `hak` int(2) NOT NULL DEFAULT '2' ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `pengguna` -- INSERT INTO `pengguna` (`id_pengguna`, `nama_lengkap`, `username`, `password`, `hak`) VALUES (1, 'admin', '<PASSWORD>', '<PASSWORD>', 1); -- -------------------------------------------------------- -- -- Table structure for table `rangking` -- CREATE TABLE IF NOT EXISTS `rangking` ( `id_alternatif` int(11) NOT NULL, `id_kriteria` int(11) NOT NULL, `nilai_rangking` double NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `rangking` -- INSERT INTO `rangking` (`id_alternatif`, `id_kriteria`, `nilai_rangking`) VALUES (5, 2, 0.2), (6, 1, 0.3), (7, 1, 0.4), (8, 1, 0.3); -- -- Indexes for dumped tables -- -- -- Indexes for table `alternatif` -- ALTER TABLE `alternatif` ADD PRIMARY KEY (`id_alternatif`); -- -- Indexes for table `kriteria` -- ALTER TABLE `kriteria` ADD PRIMARY KEY (`id_kriteria`); -- -- Indexes for table `logkrit` -- ALTER TABLE `logkrit` ADD PRIMARY KEY (`id_member`,`id_kriteria`), ADD KEY `id_kriteria` (`id_kriteria`); -- -- Indexes for table `member` -- ALTER TABLE `member` ADD PRIMARY KEY (`id_member`), ADD UNIQUE KEY `email` (`email`), ADD KEY `member_ibfk` (`id_suku`); -- -- Indexes for table `nilai` -- ALTER TABLE `nilai` ADD PRIMARY KEY (`id_nilai`), ADD KEY `nilai_ibfk` (`id_kriteria`); -- -- Indexes for table `pengguna` -- ALTER TABLE `pengguna` ADD PRIMARY KEY (`id_pengguna`), ADD UNIQUE KEY `username` (`username`); -- -- Indexes for table `rangking` -- ALTER TABLE `rangking` ADD PRIMARY KEY (`id_alternatif`,`id_kriteria`), ADD KEY `id_kriteria` (`id_kriteria`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `alternatif` -- ALTER TABLE `alternatif` MODIFY `id_alternatif` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `kriteria` -- ALTER TABLE `kriteria` MODIFY `id_kriteria` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `member` -- ALTER TABLE `member` MODIFY `id_member` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `nilai` -- ALTER TABLE `nilai` MODIFY `id_nilai` int(6) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=27; -- -- AUTO_INCREMENT for table `pengguna` -- ALTER TABLE `pengguna` MODIFY `id_pengguna` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 drop schema if exists MyHobby; create schema MyHobby; ALTER DATABASE MyHobby CHARACTER SET utf8 COLLATE utf8_general_ci; use MyHobby; CREATE TABLE Estudio ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, nome TEXT ); ALTER TABLE Estudio ADD CONSTRAINT PK_Estudio PRIMARY KEY (codigo); CREATE TABLE Foto ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, url TEXT, legenda TEXT ); ALTER TABLE Foto ADD CONSTRAINT PK_Foto PRIMARY KEY (codigo); CREATE TABLE Genero ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, nome TEXT NOT NULL ); ALTER TABLE Genero ADD CONSTRAINT PK_Genero PRIMARY KEY (codigo); CREATE TABLE Idioma ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, lingua VARCHAR(20), pais VARCHAR(20) ); ALTER TABLE Idioma ADD CONSTRAINT PK_Idioma PRIMARY KEY (codigo); CREATE TABLE Legenda ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, lingua VARCHAR(20), pais VARCHAR(20) ); ALTER TABLE Legenda ADD CONSTRAINT PK_Legenda PRIMARY KEY (codigo); CREATE TABLE Obra ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, validacao VARCHAR(5) DEFAULT 'false', titulo TEXT, titulo_oficial TEXT ); ALTER TABLE Obra ADD CONSTRAINT PK_Obra PRIMARY KEY (codigo); CREATE TABLE usuario ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, login CHAR(32) NOT NULL, password CHAR(16) NOT NULL ); ALTER TABLE usuario ADD CONSTRAINT PK_usuario PRIMARY KEY (codigo); CREATE TABLE Video ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, url TEXT, duracao DOUBLE PRECISION, qualidade CHAR(16), legenda INT, audio INT ); ALTER TABLE Video ADD CONSTRAINT PK_Video PRIMARY KEY (codigo); CREATE TABLE Adicionado_obra ( codigo_usuario INT NOT NULL, codigo_obra INT NOT NULL, data DATETIME NOT NULL ); ALTER TABLE Adicionado_obra ADD CONSTRAINT PK_Adicionado_obra PRIMARY KEY (codigo_usuario,codigo_obra); CREATE TABLE Anime ( codigo INT NOT NULL, numero_temporada INT, lancamento DATE ); ALTER TABLE Anime ADD CONSTRAINT PK_Anime PRIMARY KEY (codigo); CREATE TABLE Light_novel ( codigo INT NOT NULL, lancamento DATE ); ALTER TABLE Light_novel ADD CONSTRAINT PK_Light_Novel PRIMARY KEY (codigo); CREATE TABLE Comentario ( data DATETIME NOT NULL, obra_codigo INT NOT NULL, usuario_codigo INT NOT NULL, texto TEXT, data_update DATETIME ); ALTER TABLE Comentario ADD CONSTRAINT PK_Comentario PRIMARY KEY (data,obra_codigo,usuario_codigo); CREATE TABLE Episodio ( codigo INT NOT NULL UNIQUE AUTO_INCREMENT, codigo_video INT NOT NULL, numero_episodio INT NOT NULL, nome_episodio TEXT, lancado DATE, data_update DATETIME ); ALTER TABLE Episodio ADD CONSTRAINT PK_Episodio PRIMARY KEY (codigo); CREATE TABLE Especificacao ( codigo_obra INT NOT NULL, lancamento DATETIME, imagem INT, trailer INT, estudio INT, sinopse TEXT ); ALTER TABLE Especificacao ADD CONSTRAINT PK_Especificacao PRIMARY KEY (codigo_obra); CREATE TABLE ListEpisodio ( codigo_episodio INT NOT NULL, codigo_anime INT NOT NULL ); ALTER TABLE ListEpisodio ADD CONSTRAINT PK_ListEpisodio PRIMARY KEY (codigo_episodio,codigo_anime); CREATE TABLE ListGenero ( codigo_genero INT NOT NULL, codigo_obra INT NOT NULL ); ALTER TABLE ListGenero ADD CONSTRAINT PK_ListGenero PRIMARY KEY (codigo_genero,codigo_obra); CREATE TABLE Perfil ( codigo_usuario INT NOT NULL, nome VARCHAR(50), foto INT ); ALTER TABLE Perfil ADD CONSTRAINT PK_Perfil PRIMARY KEY (codigo_usuario); CREATE TABLE Adicionado_episodio ( codigo_episodio INT NOT NULL, codigo_usuario INT NOT NULL, data DATETIME ); ALTER TABLE Adicionado_episodio ADD CONSTRAINT PK_Adicionado_episodio PRIMARY KEY (codigo_episodio,codigo_usuario); ALTER TABLE Video ADD CONSTRAINT FK_Video_0 FOREIGN KEY (legenda) REFERENCES Legenda (codigo); ALTER TABLE Video ADD CONSTRAINT FK_Video_1 FOREIGN KEY (audio) REFERENCES Idioma (codigo); ALTER TABLE Adicionado_obra ADD CONSTRAINT FK_Adicionado_obra_0 FOREIGN KEY (codigo_usuario) REFERENCES usuario (codigo); ALTER TABLE Adicionado_obra ADD CONSTRAINT FK_Adicionado_obra_1 FOREIGN KEY (codigo_obra) REFERENCES Obra (codigo); ALTER TABLE Anime ADD CONSTRAINT FK_Anime_0 FOREIGN KEY (codigo) REFERENCES Obra (codigo); ALTER TABLE Comentario ADD CONSTRAINT FK_Comentario_0 FOREIGN KEY (obra_codigo) REFERENCES Obra (codigo); ALTER TABLE Comentario ADD CONSTRAINT FK_Comentario_1 FOREIGN KEY (usuario_codigo) REFERENCES usuario (codigo); ALTER TABLE Episodio ADD CONSTRAINT FK_Episodio_0 FOREIGN KEY (codigo_video) REFERENCES Video (codigo); ALTER TABLE Especificacao ADD CONSTRAINT FK_Especificacao_0 FOREIGN KEY (codigo_obra) REFERENCES Obra (codigo); ALTER TABLE Especificacao ADD CONSTRAINT FK_Especificacao_1 FOREIGN KEY (imagem) REFERENCES Foto (codigo); ALTER TABLE Especificacao ADD CONSTRAINT FK_Especificacao_2 FOREIGN KEY (trailer) REFERENCES Video (codigo); ALTER TABLE Especificacao ADD CONSTRAINT FK_Especificacao_3 FOREIGN KEY (estudio) REFERENCES Estudio (codigo); ALTER TABLE ListEpisodio ADD CONSTRAINT FK_ListEpisodio_0 FOREIGN KEY (codigo_episodio) REFERENCES Episodio (codigo); ALTER TABLE ListEpisodio ADD CONSTRAINT FK_ListEpisodio_1 FOREIGN KEY (codigo_anime) REFERENCES Anime (codigo); ALTER TABLE ListGenero ADD CONSTRAINT FK_ListGenero_0 FOREIGN KEY (codigo_genero) REFERENCES Genero (codigo); ALTER TABLE ListGenero ADD CONSTRAINT FK_ListGenero_1 FOREIGN KEY (codigo_obra) REFERENCES Especificacao (codigo_obra); ALTER TABLE Perfil ADD CONSTRAINT FK_Perfil_0 FOREIGN KEY (codigo_usuario) REFERENCES usuario (codigo); ALTER TABLE Perfil ADD CONSTRAINT FK_Perfil_1 FOREIGN KEY (foto) REFERENCES Foto (codigo); ALTER TABLE Adicionado_episodio ADD CONSTRAINT FK_Adicionado_episodio_0 FOREIGN KEY (codigo_episodio) REFERENCES Episodio (codigo); ALTER TABLE Adicionado_episodio ADD CONSTRAINT FK_Adicionado_episodio_1 FOREIGN KEY (codigo_usuario) REFERENCES usuario (codigo); INSERT INTO genero (codigo,nome) VALUES (1,'Ecchi'), (2,'Ação'), (3,'Aventura'), (4,'Faroeste'), (5,'Romance'), (6,'Drama'), (7,'Comédia'), (8,'Paródia'), (9,'Sci-Fi'), (10,'Terror'), (11,'Guerra'), (12,'Misterio'), (13,'Games'), (14,'Esportes'), (15,'Artes Marciais'), (16,'Magia'), (17,'Magical Girfriend'), (18,'Fantasia'), (19,'Vida Escolar'), (20,'Shõjo'), (21,'Josei'), (22,'Shounen'), (23,'Seinen'), (24,'Slice-of-life'), (25,'Harem'), (26,'Mecha'), (27,'Escolar'); INSERT INTO obra (codigo,titulo,titulo_oficial) value (1,"Knight's and Magic","ナイツ&マジック"); INSERT INTO Light_novel (codigo,lancamento) value (1,"2014-09-17"); INSERT INTO anime (codigo,lancamento,numero_temporada) value (1,"2017-07-02",1); INSERT INTO foto(codigo,url,legenda) value (1,"http://4.bp.blogspot.com/-yEYZ94e9WSU/VB8AjpDyhzI/AAAAAAAAAY4/2_4dQ-M-cb4/s1600/71192.jpg","knights and Magic"); INSERT INTO foto(codigo,url,legenda) value (2,"https://upload.wikimedia.org/wikipedia/commons/b/b8/No_foto.svg","no-image"); INSERT INTO video(codigo,url) value(1,"https://www.youtube.com/watch?v=p4gSzsfTsFA"); INSERT INTO estudio(codigo,nome) value (1,"Square Enix"); INSERT INTO especificacao(codigo_obra,lancamento,imagem,trailer,estudio,sinopse) value (1,"2013-01-30",1,1,1,"Um gênio da programação e otaku fanático por mechas renascem num mundo de cavaleiros e magia, onde gigantescos robôs chamados de Silhouette Knights correm por toda parte! Renascido como <NAME>, ele usa seu vasto conhecimento de máquinas e programação para fazer o robô supremo. Contudo, suas ações produzem resultados inesperados?! Os sonhos de um fanático de mechas vai mudar o mundo!"); INSERT INTO usuario(codigo,login,password) value (1,"ltdagabriel","<PASSWORD>"); INSERT INTO perfil value (1,"Bossum",2); INSERT INTO adicionado_obra value (1,1,"2017-08-01 16:09:00"); INSERT INTO listgenero(codigo_genero,codigo_obra) values (2,1), (3,1), (7,1), (18,1), (25,1), (26,1), (16,1), (5,1), (27,1); insert into video(codigo,url) values (2,"https://v.vrv.co/evs/3778de0dc3bca8751a6dbc966528b130/assets/25a9667cd364879dd8f8ee13173ba62e_3267532.mp4/index-v1-a1.m3u8?<KEY>-Pair-Id=<KEY>"); INSERT INTO episodio(codigo,codigo_video,numero_episodio,lancado,nome_episodio) values (1,2,1,"2017-07-02","Robots & Fantasy"); INSERT INTO listepisodio(codigo_episodio,codigo_anime) values (1,1);
SELECT t_id + 999999999 AS t_id, 999999904::int8 AS t_basket, 'dm01vch24lv95dgemeindegrenzen_lsnachfuehrung'::varchar(60) AS t_type, NULL::varchar(200) AS t_ili_tid, nbident, identifikator, beschreibung, ST_CurveToLine(perimeter)::geometry(POLYGON,2056) AS perimeter, gueltigkeit, gueltigereintrag FROM agi_dm01avso24.gebaeudeadressen_gebnachfuehrung;
<reponame>ninjaref/data /** * Inserts a row into the Obstacle table. */ INSERT INTO Obstacle(title, course_id) VALUES (:title, :id) RETURNING obstacle_id;
<reponame>copenhagenr/geo-sql-database INSERT INTO `geo_zones` VALUES (1,'AD','Europe/Andorra'), (2,'AE','Asia/Dubai'), (3,'AF','Asia/Kabul'), (4,'AG','America/Antigua'), (5,'AI','America/Anguilla'), (6,'AL','Europe/Tirane'), (7,'AM','Asia/Yerevan'), (8,'AO','Africa/Luanda'), (9,'AQ','Antarctica/McMurdo'), (10,'AQ','Antarctica/Casey'), (11,'AQ','Antarctica/Davis'), (12,'AQ','Antarctica/DumontDUrville'), (13,'AQ','Antarctica/Mawson'), (14,'AQ','Antarctica/Palmer'), (15,'AQ','Antarctica/Rothera'), (16,'AQ','Antarctica/Syowa'), (17,'AQ','Antarctica/Troll'), (18,'AQ','Antarctica/Vostok'), (19,'AR','America/Argentina/Buenos_Aires'), (20,'AR','America/Argentina/Cordoba'), (21,'AR','America/Argentina/Salta'), (22,'AR','America/Argentina/Jujuy'), (23,'AR','America/Argentina/Tucuman'), (24,'AR','America/Argentina/Catamarca'), (25,'AR','America/Argentina/La_Rioja'), (26,'AR','America/Argentina/San_Juan'), (27,'AR','America/Argentina/Mendoza'), (28,'AR','America/Argentina/San_Luis'), (29,'AR','America/Argentina/Rio_Gallegos'), (30,'AR','America/Argentina/Ushuaia'), (31,'AS','Pacific/Pago_Pago'), (32,'AT','Europe/Vienna'), (33,'AU','Australia/Lord_Howe'), (34,'AU','Antarctica/Macquarie'), (35,'AU','Australia/Hobart'), (36,'AU','Australia/Currie'), (37,'AU','Australia/Melbourne'), (38,'AU','Australia/Sydney'), (39,'AU','Australia/Broken_Hill'), (40,'AU','Australia/Brisbane'), (41,'AU','Australia/Lindeman'), (42,'AU','Australia/Adelaide'), (43,'AU','Australia/Darwin'), (44,'AU','Australia/Perth'), (45,'AU','Australia/Eucla'), (46,'AW','America/Aruba'), (47,'AX','Europe/Mariehamn'), (48,'AZ','Asia/Baku'), (49,'BA','Europe/Sarajevo'), (50,'BB','America/Barbados'), (51,'BD','Asia/Dhaka'), (52,'BE','Europe/Brussels'), (53,'BF','Africa/Ouagadougou'), (54,'BG','Europe/Sofia'), (55,'BH','Asia/Bahrain'), (56,'BI','Africa/Bujumbura'), (57,'BJ','Africa/Porto-Novo'), (58,'BL','America/St_Barthelemy'), (59,'BM','Atlantic/Bermuda'), (60,'BN','Asia/Brunei'), (61,'BO','America/La_Paz'), (62,'BQ','America/Kralendijk'), (63,'BR','America/Noronha'), (64,'BR','America/Belem'), (65,'BR','America/Fortaleza'), (66,'BR','America/Recife'), (67,'BR','America/Araguaina'), (68,'BR','America/Maceio'), (69,'BR','America/Bahia'), (70,'BR','America/Sao_Paulo'), (71,'BR','America/Campo_Grande'), (72,'BR','America/Cuiaba'), (73,'BR','America/Santarem'), (74,'BR','America/Porto_Velho'), (75,'BR','America/Boa_Vista'), (76,'BR','America/Manaus'), (77,'BR','America/Eirunepe'), (78,'BR','America/Rio_Branco'), (79,'BS','America/Nassau'), (80,'BT','Asia/Thimphu'), (81,'BW','Africa/Gaborone'), (82,'BY','Europe/Minsk'), (83,'BZ','America/Belize'), (84,'CA','America/St_Johns'), (85,'CA','America/Halifax'), (86,'CA','America/Glace_Bay'), (87,'CA','America/Moncton'), (88,'CA','America/Goose_Bay'), (89,'CA','America/Blanc-Sablon'), (90,'CA','America/Toronto'), (91,'CA','America/Nipigon'), (92,'CA','America/Thunder_Bay'), (93,'CA','America/Iqaluit'), (94,'CA','America/Pangnirtung'), (95,'CA','America/Atikokan'), (96,'CA','America/Winnipeg'), (97,'CA','America/Rainy_River'), (98,'CA','America/Resolute'), (99,'CA','America/Rankin_Inlet'), (100,'CA','America/Regina'), (101,'CA','America/Swift_Current'), (102,'CA','America/Edmonton'), (103,'CA','America/Cambridge_Bay'), (104,'CA','America/Yellowknife'), (105,'CA','America/Inuvik'), (106,'CA','America/Creston'), (107,'CA','America/Dawson_Creek'), (108,'CA','America/Fort_Nelson'), (109,'CA','America/Vancouver'), (110,'CA','America/Whitehorse'), (111,'CA','America/Dawson'), (112,'CC','Indian/Cocos'), (113,'CD','Africa/Kinshasa'), (114,'CD','Africa/Lubumbashi'), (115,'CF','Africa/Bangui'), (116,'CG','Africa/Brazzaville'), (117,'CH','Europe/Zurich'), (118,'CI','Africa/Abidjan'), (119,'CK','Pacific/Rarotonga'), (120,'CL','America/Santiago'), (121,'CL','America/Punta_Arenas'), (122,'CL','Pacific/Easter'), (123,'CM','Africa/Douala'), (124,'CN','Asia/Shanghai'), (125,'CN','Asia/Urumqi'), (126,'CO','America/Bogota'), (127,'CR','America/Costa_Rica'), (128,'CU','America/Havana'), (129,'CV','Atlantic/Cape_Verde'), (130,'CW','America/Curacao'), (131,'CX','Indian/Christmas'), (132,'CY','Asia/Nicosia'), (133,'CY','Asia/Famagusta'), (134,'CZ','Europe/Prague'), (135,'DE','Europe/Berlin'), (136,'DE','Europe/Busingen'), (137,'DJ','Africa/Djibouti'), (138,'DK','Europe/Copenhagen'), (139,'DM','America/Dominica'), (140,'DO','America/Santo_Domingo'), (141,'DZ','Africa/Algiers'), (142,'EC','America/Guayaquil'), (143,'EC','Pacific/Galapagos'), (144,'EE','Europe/Tallinn'), (145,'EG','Africa/Cairo'), (146,'EH','Africa/El_Aaiun'), (147,'ER','Africa/Asmara'), (148,'ES','Europe/Madrid'), (149,'ES','Africa/Ceuta'), (150,'ES','Atlantic/Canary'), (151,'ET','Africa/Addis_Ababa'), (152,'FI','Europe/Helsinki'), (153,'FJ','Pacific/Fiji'), (154,'FK','Atlantic/Stanley'), (155,'FM','Pacific/Chuuk'), (156,'FM','Pacific/Pohnpei'), (157,'FM','Pacific/Kosrae'), (158,'FO','Atlantic/Faroe'), (159,'FR','Europe/Paris'), (160,'GA','Africa/Libreville'), (161,'GB','Europe/London'), (162,'GD','America/Grenada'), (163,'GE','Asia/Tbilisi'), (164,'GF','America/Cayenne'), (165,'GG','Europe/Guernsey'), (166,'GH','Africa/Accra'), (167,'GI','Europe/Gibraltar'), (168,'GL','America/Godthab'), (169,'GL','America/Danmarkshavn'), (170,'GL','America/Scoresbysund'), (171,'GL','America/Thule'), (172,'GM','Africa/Banjul'), (173,'GN','Africa/Conakry'), (174,'GP','America/Guadeloupe'), (175,'GQ','Africa/Malabo'), (176,'GR','Europe/Athens'), (177,'GS','Atlantic/South_Georgia'), (178,'GT','America/Guatemala'), (179,'GU','Pacific/Guam'), (180,'GW','Africa/Bissau'), (181,'GY','America/Guyana'), (182,'HK','Asia/Hong_Kong'), (183,'HN','America/Tegucigalpa'), (184,'HR','Europe/Zagreb'), (185,'HT','America/Port-au-Prince'), (186,'HU','Europe/Budapest'), (187,'ID','Asia/Jakarta'), (188,'ID','Asia/Pontianak'), (189,'ID','Asia/Makassar'), (190,'ID','Asia/Jayapura'), (191,'IE','Europe/Dublin'), (192,'IL','Asia/Jerusalem'), (193,'IM','Europe/Isle_of_Man'), (194,'IN','Asia/Kolkata'), (195,'IO','Indian/Chagos'), (196,'IQ','Asia/Baghdad'), (197,'IR','Asia/Tehran'), (198,'IS','Atlantic/Reykjavik'), (199,'IT','Europe/Rome'), (200,'JE','Europe/Jersey'), (201,'JM','America/Jamaica'), (202,'JO','Asia/Amman'), (203,'JP','Asia/Tokyo'), (204,'KE','Africa/Nairobi'), (205,'KG','Asia/Bishkek'), (206,'KH','Asia/Phnom_Penh'), (207,'KI','Pacific/Tarawa'), (208,'KI','Pacific/Enderbury'), (209,'KI','Pacific/Kiritimati'), (210,'KM','Indian/Comoro'), (211,'KN','America/St_Kitts'), (212,'KP','Asia/Pyongyang'), (213,'KR','Asia/Seoul'), (214,'KW','Asia/Kuwait'), (215,'KY','America/Cayman'), (216,'KZ','Asia/Almaty'), (217,'KZ','Asia/Qyzylorda'), (218,'KZ','Asia/Aqtobe'), (219,'KZ','Asia/Aqtau'), (220,'KZ','Asia/Atyrau'), (221,'KZ','Asia/Oral'), (222,'LA','Asia/Vientiane'), (223,'LB','Asia/Beirut'), (224,'LC','America/St_Lucia'), (225,'LI','Europe/Vaduz'), (226,'LK','Asia/Colombo'), (227,'LR','Africa/Monrovia'), (228,'LS','Africa/Maseru'), (229,'LT','Europe/Vilnius'), (230,'LU','Europe/Luxembourg'), (231,'LV','Europe/Riga'), (232,'LY','Africa/Tripoli'), (233,'MA','Africa/Casablanca'), (234,'MC','Europe/Monaco'), (235,'MD','Europe/Chisinau'), (236,'ME','Europe/Podgorica'), (237,'MF','America/Marigot'), (238,'MG','Indian/Antananarivo'), (239,'MH','Pacific/Majuro'), (240,'MH','Pacific/Kwajalein'), (241,'MK','Europe/Skopje'), (242,'ML','Africa/Bamako'), (243,'MM','Asia/Yangon'), (244,'MN','Asia/Ulaanbaatar'), (245,'MN','Asia/Hovd'), (246,'MN','Asia/Choibalsan'), (247,'MO','Asia/Macau'), (248,'MP','Pacific/Saipan'), (249,'MQ','America/Martinique'), (250,'MR','Africa/Nouakchott'), (251,'MS','America/Montserrat'), (252,'MT','Europe/Malta'), (253,'MU','Indian/Mauritius'), (254,'MV','Indian/Maldives'), (255,'MW','Africa/Blantyre'), (256,'MX','America/Mexico_City'), (257,'MX','America/Cancun'), (258,'MX','America/Merida'), (259,'MX','America/Monterrey'), (260,'MX','America/Matamoros'), (261,'MX','America/Mazatlan'), (262,'MX','America/Chihuahua'), (263,'MX','America/Ojinaga'), (264,'MX','America/Hermosillo'), (265,'MX','America/Tijuana'), (266,'MX','America/Bahia_Banderas'), (267,'MY','Asia/Kuala_Lumpur'), (268,'MY','Asia/Kuching'), (269,'MZ','Africa/Maputo'), (270,'NA','Africa/Windhoek'), (271,'NC','Pacific/Noumea'), (272,'NE','Africa/Niamey'), (273,'NF','Pacific/Norfolk'), (274,'NG','Africa/Lagos'), (275,'NI','America/Managua'), (276,'NL','Europe/Amsterdam'), (277,'NO','Europe/Oslo'), (278,'NP','Asia/Kathmandu'), (279,'NR','Pacific/Nauru'), (280,'NU','Pacific/Niue'), (281,'NZ','Pacific/Auckland'), (282,'NZ','Pacific/Chatham'), (283,'OM','Asia/Muscat'), (284,'PA','America/Panama'), (285,'PE','America/Lima'), (286,'PF','Pacific/Tahiti'), (287,'PF','Pacific/Marquesas'), (288,'PF','Pacific/Gambier'), (289,'PG','Pacific/Port_Moresby'), (290,'PG','Pacific/Bougainville'), (291,'PH','Asia/Manila'), (292,'PK','Asia/Karachi'), (293,'PL','Europe/Warsaw'), (294,'PM','America/Miquelon'), (295,'PN','Pacific/Pitcairn'), (296,'PR','America/Puerto_Rico'), (297,'PS','Asia/Gaza'), (298,'PS','Asia/Hebron'), (299,'PT','Europe/Lisbon'), (300,'PT','Atlantic/Madeira'), (301,'PT','Atlantic/Azores'), (302,'PW','Pacific/Palau'), (303,'PY','America/Asuncion'), (304,'QA','Asia/Qatar'), (305,'RE','Indian/Reunion'), (306,'RO','Europe/Bucharest'), (307,'RS','Europe/Belgrade'), (308,'RU','Europe/Kaliningrad'), (309,'RU','Europe/Moscow'), (310,'RU','Europe/Simferopol'), (311,'RU','Europe/Volgograd'), (312,'RU','Europe/Kirov'), (313,'RU','Europe/Astrakhan'), (314,'RU','Europe/Saratov'), (315,'RU','Europe/Ulyanovsk'), (316,'RU','Europe/Samara'), (317,'RU','Asia/Yekaterinburg'), (318,'RU','Asia/Omsk'), (319,'RU','Asia/Novosibirsk'), (320,'RU','Asia/Barnaul'), (321,'RU','Asia/Tomsk'), (322,'RU','Asia/Novokuznetsk'), (323,'RU','Asia/Krasnoyarsk'), (324,'RU','Asia/Irkutsk'), (325,'RU','Asia/Chita'), (326,'RU','Asia/Yakutsk'), (327,'RU','Asia/Khandyga'), (328,'RU','Asia/Vladivostok'), (329,'RU','Asia/Ust-Nera'), (330,'RU','Asia/Magadan'), (331,'RU','Asia/Sakhalin'), (332,'RU','Asia/Srednekolymsk'), (333,'RU','Asia/Kamchatka'), (334,'RU','Asia/Anadyr'), (335,'RW','Africa/Kigali'), (336,'SA','Asia/Riyadh'), (337,'SB','Pacific/Guadalcanal'), (338,'SC','Indian/Mahe'), (339,'SD','Africa/Khartoum'), (340,'SE','Europe/Stockholm'), (341,'SG','Asia/Singapore'), (342,'SH','Atlantic/St_Helena'), (343,'SI','Europe/Ljubljana'), (344,'SJ','Arctic/Longyearbyen'), (345,'SK','Europe/Bratislava'), (346,'SL','Africa/Freetown'), (347,'SM','Europe/San_Marino'), (348,'SN','Africa/Dakar'), (349,'SO','Africa/Mogadishu'), (350,'SR','America/Paramaribo'), (351,'SS','Africa/Juba'), (352,'ST','Africa/Sao_Tome'), (353,'SV','America/El_Salvador'), (354,'SX','America/Lower_Princes'), (355,'SY','Asia/Damascus'), (356,'SZ','Africa/Mbabane'), (357,'TC','America/Grand_Turk'), (358,'TD','Africa/Ndjamena'), (359,'TF','Indian/Kerguelen'), (360,'TG','Africa/Lome'), (361,'TH','Asia/Bangkok'), (362,'TJ','Asia/Dushanbe'), (363,'TK','Pacific/Fakaofo'), (364,'TL','Asia/Dili'), (365,'TM','Asia/Ashgabat'), (366,'TN','Africa/Tunis'), (367,'TO','Pacific/Tongatapu'), (368,'TR','Europe/Istanbul'), (369,'TT','America/Port_of_Spain'), (370,'TV','Pacific/Funafuti'), (371,'TW','Asia/Taipei'), (372,'TZ','Africa/Dar_es_Salaam'), (373,'UA','Europe/Kiev'), (374,'UA','Europe/Uzhgorod'), (375,'UA','Europe/Zaporozhye'), (376,'UG','Africa/Kampala'), (377,'UM','Pacific/Midway'), (378,'UM','Pacific/Wake'), (379,'US','America/New_York'), (380,'US','America/Detroit'), (381,'US','America/Kentucky/Louisville'), (382,'US','America/Kentucky/Monticello'), (383,'US','America/Indiana/Indianapolis'), (384,'US','America/Indiana/Vincennes'), (385,'US','America/Indiana/Winamac'), (386,'US','America/Indiana/Marengo'), (387,'US','America/Indiana/Petersburg'), (388,'US','America/Indiana/Vevay'), (389,'US','America/Chicago'), (390,'US','America/Indiana/Tell_City'), (391,'US','America/Indiana/Knox'), (392,'US','America/Menominee'), (393,'US','America/North_Dakota/Center'), (394,'US','America/North_Dakota/New_Salem'), (395,'US','America/North_Dakota/Beulah'), (396,'US','America/Denver'), (397,'US','America/Boise'), (398,'US','America/Phoenix'), (399,'US','America/Los_Angeles'), (400,'US','America/Anchorage'), (401,'US','America/Juneau'), (402,'US','America/Sitka'), (403,'US','America/Metlakatla'), (404,'US','America/Yakutat'), (405,'US','America/Nome'), (406,'US','America/Adak'), (407,'US','Pacific/Honolulu'), (408,'UY','America/Montevideo'), (409,'UZ','Asia/Samarkand'), (410,'UZ','Asia/Tashkent'), (411,'VA','Europe/Vatican'), (412,'VC','America/St_Vincent'), (413,'VE','America/Caracas'), (414,'VG','America/Tortola'), (415,'VI','America/St_Thomas'), (416,'VN','Asia/Ho_Chi_Minh'), (417,'VU','Pacific/Efate'), (418,'WF','Pacific/Wallis'), (419,'WS','Pacific/Apia'), (420,'YE','Asia/Aden'), (421,'YT','Indian/Mayotte'), (422,'ZA','Africa/Johannesburg'), (423,'ZM','Africa/Lusaka'), (424,'ZW','Africa/Harare');
<reponame>13f/picker USE [qichacha] GO /****** Object: Table [dbo].[QichachaCompanySearch] Script Date: 2016/4/20 22:43:09 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[QichachaCompanySearch]( [Keyword] [nvarchar](400) NOT NULL, [CreatedAt] [datetime] NULL, [UpdatedAt] [datetime] NULL, [ProcessedPage] [int] NOT NULL, CONSTRAINT [PK_QichachaCompanySearch] PRIMARY KEY CLUSTERED ( [Keyword] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO
<gh_stars>1-10 CREATE TABLE IF NOT EXISTS rooms ( id BIGINT NOT NULL PRIMARY KEY, objectid BIGINT NOT NULL, objectguid UUID NOT NULL, changeid BIGINT NOT NULL, number VARCHAR(50) NOT NULL, roomtype INT NOT NULL, opertypeid INT NOT NULL, previd BIGINT, nextid BIGINT, updatedate DATE NOT NULL, startdate DATE NOT NULL, enddate DATE NOT NULL, isactual BOOLEAN NOT NULL, isactive BOOLEAN NOT NULL ); COMMENT ON TABLE rooms IS 'Сведения по комнатам'; COMMENT ON COLUMN rooms.id IS 'Уникальный идентификатор записи. Ключевое поле'; COMMENT ON COLUMN rooms.objectid IS 'Глобальный уникальный идентификатор объекта типа INTEGER'; COMMENT ON COLUMN rooms.objectguid IS 'Глобальный уникальный идентификатор адресного объекта типа UUID'; COMMENT ON COLUMN rooms.changeid IS 'ID изменившей транзакции'; COMMENT ON COLUMN rooms.number IS 'Номер комнаты или офиса'; COMMENT ON COLUMN rooms.roomtype IS 'Тип комнаты или офиса'; COMMENT ON COLUMN rooms.opertypeid IS 'Статус действия над записью – причина появления записи'; COMMENT ON COLUMN rooms.previd IS 'Идентификатор записи связывания с предыдущей исторической записью'; COMMENT ON COLUMN rooms.nextid IS 'Идентификатор записи связывания с последующей исторической записью'; COMMENT ON COLUMN rooms.updatedate IS 'Дата внесения (обновления) записи'; COMMENT ON COLUMN rooms.startdate IS 'Начало действия записи'; COMMENT ON COLUMN rooms.enddate IS 'Окончание действия записи'; COMMENT ON COLUMN rooms.isactual IS 'Статус актуальности адресного объекта ФИАС'; COMMENT ON COLUMN rooms.isactive IS 'Признак действующего адресного объекта'; CREATE INDEX IF NOT EXISTS rooms_objectid_idx ON rooms USING btree (objectid); CREATE INDEX IF NOT EXISTS rooms_objectguid_idx ON rooms USING btree (objectguid); CREATE INDEX IF NOT EXISTS rooms_roomtype_idx ON rooms USING btree (roomtype); CREATE INDEX IF NOT EXISTS rooms_isactive_idx ON rooms USING btree (isactive) WHERE NOT isactive;
<reponame>allenalvin333/Hackerrank_DBMS<filename>13.sql -- https://www.hackerrank.com/challenges/weather-observation-station-5/problem SELECT CITY,LENGTH(CITY) FROM STATION ORDER BY LENGTH(CITY), CITY ASC LIMIT 1; SELECT CITY,LENGTH(CITY) FROM STATION ORDER BY LENGTH(CITY) DESC LIMIT 1;
CREATE PROCEDURE [Application].[Configuration_ApplyFullTextIndexing] WITH EXECUTE AS OWNER AS BEGIN IF SERVERPROPERTY(N'IsFullTextInstalled') = 0 BEGIN PRINT N'Warning: Full text options cannot be configured because full text indexing is not installed.'; END ELSE BEGIN -- if full text is installed DECLARE @SQL nvarchar(max) = N''; IF NOT EXISTS (SELECT 1 FROM sys.fulltext_catalogs WHERE name = N'FTCatalog') BEGIN SET @SQL = N'CREATE FULLTEXT CATALOG FTCatalog AS DEFAULT;' EXECUTE (@SQL); END; IF NOT EXISTS (SELECT 1 FROM sys.fulltext_indexes AS fti WHERE fti.object_id = OBJECT_ID(N'[Application].People')) BEGIN SET @SQL = N' CREATE FULLTEXT INDEX ON [Application].People (SearchName, CustomFields, OtherLanguages) KEY INDEX PK_Application_People WITH CHANGE_TRACKING AUTO;'; EXECUTE (@SQL); END; IF NOT EXISTS (SELECT 1 FROM sys.fulltext_indexes AS fti WHERE fti.object_id = OBJECT_ID(N'Sales.Customers')) BEGIN SET @SQL = N' CREATE FULLTEXT INDEX ON Sales.Customers (CustomerName) KEY INDEX PK_Sales_Customers WITH CHANGE_TRACKING AUTO;'; EXECUTE (@SQL); END; IF NOT EXISTS (SELECT 1 FROM sys.fulltext_indexes AS fti WHERE fti.object_id = OBJECT_ID(N'Purchasing.Suppliers')) BEGIN SET @SQL = N' CREATE FULLTEXT INDEX ON Purchasing.Suppliers (SupplierName) KEY INDEX PK_Purchasing_Suppliers WITH CHANGE_TRACKING AUTO;'; EXECUTE (@SQL); END; IF NOT EXISTS (SELECT 1 FROM sys.fulltext_indexes AS fti WHERE fti.object_id = OBJECT_ID(N'Warehouse.StockItems')) BEGIN SET @SQL = N'CREATE FULLTEXT INDEX ON Warehouse.StockItems (SearchDetails, CustomFields, Tags) KEY INDEX PK_Warehouse_StockItems WITH CHANGE_TRACKING AUTO;'; EXECUTE (@SQL); END; SET @SQL = N'DROP PROCEDURE IF EXISTS Website.SearchForPeople;'; EXECUTE (@SQL); SET @SQL = N' CREATE PROCEDURE Website.SearchForPeople @SearchText nvarchar(1000), @MaximumRowsToReturn int AS BEGIN SELECT p.PersonID, p.FullName, p.PreferredName, CASE WHEN p.IsSalesperson <> 0 THEN N''Salesperson'' WHEN p.IsEmployee <> 0 THEN N''Employee'' WHEN c.CustomerID IS NOT NULL THEN N''Customer'' WHEN sp.SupplierID IS NOT NULL THEN N''Supplier'' WHEN sa.SupplierID IS NOT NULL THEN N''Supplier'' END AS Relationship, COALESCE(c.CustomerName, sp.SupplierName, sa.SupplierName, N''WWI'') AS Company FROM [Application].People AS p INNER JOIN FREETEXTTABLE([Application].People, SearchName, @SearchText, @MaximumRowsToReturn) AS ft ON p.PersonID = ft.[KEY] LEFT OUTER JOIN Sales.Customers AS c ON c.PrimaryContactPersonID = p.PersonID LEFT OUTER JOIN Purchasing.Suppliers AS sp ON sp.PrimaryContactPersonID = p.PersonID LEFT OUTER JOIN Purchasing.Suppliers AS sa ON sa.AlternateContactPersonID = p.PersonID ORDER BY ft.[RANK] FOR JSON AUTO, ROOT(N''People''); END;'; EXECUTE (@SQL); SET @SQL = N'DROP PROCEDURE IF EXISTS Website.SearchForSuppliers;'; EXECUTE (@SQL); SET @SQL = N' CREATE PROCEDURE Website.SearchForSuppliers @SearchText nvarchar(1000), @MaximumRowsToReturn int AS BEGIN SELECT s.SupplierID, s.SupplierName, c.CityName, s.PhoneNumber, s.FaxNumber , p.FullName AS PrimaryContactFullName, p.PreferredName AS PrimaryContactPreferredName FROM Purchasing.Suppliers AS s INNER JOIN FREETEXTTABLE(Purchasing.Suppliers, SupplierName, @SearchText, @MaximumRowsToReturn) AS ft ON s.SupplierID = ft.[KEY] INNER JOIN [Application].Cities AS c ON s.DeliveryCityID = c.CityID LEFT OUTER JOIN [Application].People AS p ON s.PrimaryContactPersonID = p.PersonID ORDER BY ft.[RANK] FOR JSON AUTO, ROOT(N''Suppliers''); END;'; EXECUTE (@SQL); SET @SQL = N'DROP PROCEDURE IF EXISTS Website.SearchForCustomers;'; EXECUTE (@SQL); SET @SQL = N' CREATE PROCEDURE Website.SearchForCustomers @SearchText nvarchar(1000), @MaximumRowsToReturn int WITH EXECUTE AS OWNER AS BEGIN SELECT c.CustomerID, c.CustomerName, ct.CityName, c.PhoneNumber, c.FaxNumber, p.FullName AS PrimaryContactFullName, p.PreferredName AS PrimaryContactPreferredName FROM Sales.Customers AS c INNER JOIN FREETEXTTABLE(Sales.Customers, CustomerName, @SearchText, @MaximumRowsToReturn) AS ft ON c.CustomerID = ft.[KEY] INNER JOIN [Application].Cities AS ct ON c.DeliveryCityID = ct.CityID LEFT OUTER JOIN [Application].People AS p ON c.PrimaryContactPersonID = p.PersonID ORDER BY ft.[RANK] FOR JSON AUTO, ROOT(N''Customers''); END;'; EXECUTE (@SQL); SET @SQL = N'DROP PROCEDURE IF EXISTS Website.SearchForStockItems;'; EXECUTE (@SQL); SET @SQL = N' CREATE PROCEDURE Website.SearchForStockItems @SearchText nvarchar(1000), @MaximumRowsToReturn int WITH EXECUTE AS OWNER AS BEGIN SELECT si.StockItemID, si.StockItemName FROM Warehouse.StockItems AS si INNER JOIN FREETEXTTABLE(Warehouse.StockItems, SearchDetails, @SearchText, @MaximumRowsToReturn) AS ft ON si.StockItemID = ft.[KEY] ORDER BY ft.[RANK] FOR JSON AUTO, ROOT(N''StockItems''); END;'; EXECUTE (@SQL); SET @SQL = N'DROP PROCEDURE IF EXISTS Website.SearchForStockItemsByTags;'; EXECUTE (@SQL); SET @SQL = N' CREATE PROCEDURE Website.SearchForStockItemsByTags @SearchText nvarchar(1000), @MaximumRowsToReturn int WITH EXECUTE AS OWNER AS BEGIN SELECT si.StockItemID, si.StockItemName FROM Warehouse.StockItems AS si INNER JOIN FREETEXTTABLE(Warehouse.StockItems, Tags, @SearchText, @MaximumRowsToReturn) AS ft ON si.StockItemID = ft.[KEY] ORDER BY ft.[RANK] FOR JSON AUTO, ROOT(N''StockItems''); END;'; EXECUTE (@SQL); PRINT N'Full text successfully enabled'; END; END;
INSERT INTO `term_relation` (`term_id`, `service_id`, `post_type`, `ID`) VALUES (22, '22', 'post', 1), (29, '21', 'post', 12), (74, '7', 'experience', 17), (70, '7', 'experience', 18), (73, '7', 'experience', 19), (71, '7', 'experience', 20), (75, '7', 'experience', 21), (72, '7', 'experience', 22), (76, '7', 'experience', 23), (80, '7', 'experience', 24), (78, '7', 'experience', 25), (77, '7', 'experience', 26), (79, '7', 'experience', 27), (74, '8', 'experience', 31), (70, '8', 'experience', 32), (73, '8', 'experience', 33), (71, '8', 'experience', 34), (75, '8', 'experience', 35), (72, '8', 'experience', 36), (76, '8', 'experience', 37), (80, '8', 'experience', 38), (78, '8', 'experience', 39), (77, '8', 'experience', 40), (79, '8', 'experience', 41), (74, '1', 'experience', 44), (70, '1', 'experience', 45), (73, '1', 'experience', 46), (71, '1', 'experience', 47), (75, '1', 'experience', 48), (72, '1', 'experience', 49), (76, '1', 'experience', 50), (80, '1', 'experience', 51), (78, '1', 'experience', 52), (77, '1', 'experience', 53), (79, '1', 'experience', 54), (74, '9', 'experience', 57), (70, '9', 'experience', 58), (73, '9', 'experience', 59), (71, '9', 'experience', 60), (75, '9', 'experience', 61), (72, '9', 'experience', 62), (76, '9', 'experience', 63), (80, '9', 'experience', 64), (78, '9', 'experience', 65), (77, '9', 'experience', 66), (79, '9', 'experience', 67), (74, '10', 'experience', 70), (70, '10', 'experience', 71), (73, '10', 'experience', 72), (71, '10', 'experience', 73), (75, '10', 'experience', 74), (72, '10', 'experience', 75), (76, '10', 'experience', 76), (80, '10', 'experience', 77), (78, '10', 'experience', 78), (77, '10', 'experience', 79), (79, '10', 'experience', 80), (74, '2', 'experience', 83), (70, '2', 'experience', 84), (73, '2', 'experience', 85), (71, '2', 'experience', 86), (75, '2', 'experience', 87), (72, '2', 'experience', 88), (76, '2', 'experience', 89), (80, '2', 'experience', 90), (78, '2', 'experience', 91), (77, '2', 'experience', 92), (79, '2', 'experience', 93), (74, '11', 'experience', 96), (70, '11', 'experience', 97), (73, '11', 'experience', 98), (71, '11', 'experience', 99), (75, '11', 'experience', 100), (72, '11', 'experience', 101), (76, '11', 'experience', 102), (80, '11', 'experience', 103), (78, '11', 'experience', 104), (77, '11', 'experience', 105), (79, '11', 'experience', 106), (74, '3', 'experience', 109), (70, '3', 'experience', 110), (73, '3', 'experience', 111), (71, '3', 'experience', 112), (75, '3', 'experience', 113), (72, '3', 'experience', 114), (80, '3', 'experience', 115), (78, '3', 'experience', 116), (77, '3', 'experience', 117), (79, '3', 'experience', 118), (74, '12', 'experience', 121), (70, '12', 'experience', 122), (73, '12', 'experience', 123), (71, '12', 'experience', 124), (75, '12', 'experience', 125), (72, '12', 'experience', 126), (76, '12', 'experience', 127), (80, '12', 'experience', 128), (78, '12', 'experience', 129), (77, '12', 'experience', 130), (79, '12', 'experience', 131), (53, '2', 'experience', 132), (74, '4', 'experience', 135), (70, '4', 'experience', 136), (73, '4', 'experience', 137), (71, '4', 'experience', 138), (75, '4', 'experience', 139), (72, '4', 'experience', 140), (76, '4', 'experience', 141), (80, '4', 'experience', 142), (78, '4', 'experience', 143), (77, '4', 'experience', 144), (79, '4', 'experience', 145), (53, '3', 'experience', 146), (74, '5', 'experience', 149), (70, '5', 'experience', 150), (73, '5', 'experience', 151), (71, '5', 'experience', 152), (75, '5', 'experience', 153), (72, '5', 'experience', 154), (76, '5', 'experience', 155), (80, '5', 'experience', 156), (78, '5', 'experience', 157), (77, '5', 'experience', 158), (79, '5', 'experience', 159), (53, '6', 'experience', 160), (74, '6', 'experience', 163), (70, '6', 'experience', 164), (73, '6', 'experience', 165), (71, '6', 'experience', 166), (75, '6', 'experience', 167), (72, '6', 'experience', 168), (76, '6', 'experience', 169), (80, '6', 'experience', 170), (78, '6', 'experience', 171), (77, '6', 'experience', 172), (79, '6', 'experience', 173), (53, '5', 'experience', 174), (74, '14', 'experience', 177), (70, '14', 'experience', 178), (73, '14', 'experience', 179), (71, '14', 'experience', 180), (75, '14', 'experience', 181), (72, '14', 'experience', 182), (76, '14', 'experience', 183), (80, '14', 'experience', 184), (78, '14', 'experience', 185), (77, '14', 'experience', 186), (79, '14', 'experience', 187), (74, '15', 'experience', 190), (70, '15', 'experience', 191), (73, '15', 'experience', 192), (71, '15', 'experience', 193), (75, '15', 'experience', 194), (72, '15', 'experience', 195), (76, '15', 'experience', 196), (80, '15', 'experience', 197), (78, '15', 'experience', 198), (77, '15', 'experience', 199), (79, '15', 'experience', 200), (66, '16', 'post', 201), (64, '16', 'post', 202), (74, '16', 'experience', 203), (70, '16', 'experience', 204), (73, '16', 'experience', 205), (71, '16', 'experience', 206), (75, '16', 'experience', 207), (72, '16', 'experience', 208), (76, '16', 'experience', 209), (80, '16', 'experience', 210), (78, '16', 'experience', 211), (77, '16', 'experience', 212), (79, '16', 'experience', 213), (66, '17', 'post', 214), (64, '17', 'post', 215), (74, '17', 'experience', 216), (70, '17', 'experience', 217), (73, '17', 'experience', 218), (71, '17', 'experience', 219), (75, '17', 'experience', 220), (72, '17', 'experience', 221), (76, '17', 'experience', 222), (80, '17', 'experience', 223), (78, '17', 'experience', 224), (77, '17', 'experience', 225), (79, '17', 'experience', 226), (66, '18', 'post', 227), (64, '18', 'post', 228), (74, '18', 'experience', 229), (70, '18', 'experience', 230), (73, '18', 'experience', 231), (71, '18', 'experience', 232), (75, '18', 'experience', 233), (72, '18', 'experience', 234), (76, '18', 'experience', 235), (80, '18', 'experience', 236), (78, '18', 'experience', 237), (77, '18', 'experience', 238), (79, '18', 'experience', 239), (66, '19', 'post', 240), (64, '19', 'post', 241), (74, '19', 'experience', 242), (70, '19', 'experience', 243), (73, '19', 'experience', 244), (71, '19', 'experience', 245), (75, '19', 'experience', 246), (72, '19', 'experience', 247), (76, '19', 'experience', 248), (80, '19', 'experience', 249), (78, '19', 'experience', 250), (77, '19', 'experience', 251), (79, '19', 'experience', 252), (66, '20', 'post', 253), (64, '20', 'post', 254), (74, '20', 'experience', 255), (70, '20', 'experience', 256), (73, '20', 'experience', 257), (71, '20', 'experience', 258), (75, '20', 'experience', 259), (72, '20', 'experience', 260), (76, '20', 'experience', 261), (80, '20', 'experience', 262), (78, '20', 'experience', 263), (77, '20', 'experience', 264), (79, '20', 'experience', 265), (66, '21', 'post', 266), (64, '21', 'post', 267), (74, '21', 'experience', 268), (70, '21', 'experience', 269), (73, '21', 'experience', 270), (71, '21', 'experience', 271), (75, '21', 'experience', 272), (72, '21', 'experience', 273), (76, '21', 'experience', 274), (80, '21', 'experience', 275), (78, '21', 'experience', 276), (77, '21', 'experience', 277), (79, '21', 'experience', 278), (28, '22', 'post', 279), (24, '22', 'post', 285), (4, '22', 'post', 331), (26, '22', 'post', 332), (66, '22', 'post', 333), (64, '22', 'post', 334), (74, '22', 'experience', 335), (70, '22', 'experience', 336), (73, '22', 'experience', 337), (71, '22', 'experience', 338), (75, '22', 'experience', 339), (72, '22', 'experience', 340), (76, '22', 'experience', 341), (80, '22', 'experience', 342), (78, '22', 'experience', 343), (77, '22', 'experience', 344), (79, '22', 'experience', 345), (22, '23', 'post', 346), (28, '23', 'post', 347), (24, '23', 'post', 353), (41, '23', 'post', 390), (39, '23', 'post', 391), (44, '23', 'post', 392), (43, '23', 'post', 393), (40, '23', 'post', 394), (37, '23', 'post', 395), (42, '23', 'post', 396), (36, '23', 'post', 397), (38, '23', 'post', 398), (4, '23', 'post', 399), (26, '23', 'post', 400), (66, '23', 'post', 401), (64, '23', 'post', 402), (74, '23', 'experience', 403), (70, '23', 'experience', 404), (73, '23', 'experience', 405), (71, '23', 'experience', 406), (75, '23', 'experience', 407), (72, '23', 'experience', 408), (76, '23', 'experience', 409), (80, '23', 'experience', 410), (78, '23', 'experience', 411), (77, '23', 'experience', 412), (79, '23', 'experience', 413), (74, '24', 'experience', 477), (70, '24', 'experience', 478), (73, '24', 'experience', 479), (71, '24', 'experience', 480), (75, '24', 'experience', 481), (72, '24', 'experience', 482), (76, '24', 'experience', 483), (80, '24', 'experience', 484), (78, '24', 'experience', 485), (77, '24', 'experience', 486), (79, '24', 'experience', 487), (74, '25', 'experience', 491), (70, '25', 'experience', 492), (73, '25', 'experience', 493), (71, '25', 'experience', 494), (75, '25', 'experience', 495), (72, '25', 'experience', 496), (76, '25', 'experience', 497), (80, '25', 'experience', 498), (78, '25', 'experience', 499), (77, '25', 'experience', 500), (79, '25', 'experience', 501), (74, '26', 'experience', 505), (70, '26', 'experience', 506), (73, '26', 'experience', 507), (71, '26', 'experience', 508), (75, '26', 'experience', 509), (72, '26', 'experience', 510), (76, '26', 'experience', 511), (80, '26', 'experience', 512), (78, '26', 'experience', 513), (77, '26', 'experience', 514), (79, '26', 'experience', 515), (74, '27', 'experience', 519), (70, '27', 'experience', 520), (73, '27', 'experience', 521), (71, '27', 'experience', 522), (75, '27', 'experience', 523), (72, '27', 'experience', 524), (76, '27', 'experience', 525), (80, '27', 'experience', 526), (78, '27', 'experience', 527), (77, '27', 'experience', 528), (79, '27', 'experience', 529), (74, '28', 'experience', 533), (70, '28', 'experience', 534), (73, '28', 'experience', 535), (71, '28', 'experience', 536), (75, '28', 'experience', 537), (72, '28', 'experience', 538), (76, '28', 'experience', 539), (80, '28', 'experience', 540), (78, '28', 'experience', 541), (77, '28', 'experience', 542), (79, '28', 'experience', 543), (74, '30', 'experience', 637), (70, '30', 'experience', 638), (73, '30', 'experience', 639), (71, '30', 'experience', 640), (75, '30', 'experience', 641), (72, '30', 'experience', 642), (76, '30', 'experience', 643), (80, '30', 'experience', 644), (78, '30', 'experience', 645), (77, '30', 'experience', 646), (79, '30', 'experience', 647), (53, '1', 'experience', 651), (74, '29', 'experience', 652), (70, '29', 'experience', 653), (73, '29', 'experience', 654), (71, '29', 'experience', 655), (75, '29', 'experience', 656), (72, '29', 'experience', 657), (76, '29', 'experience', 658), (80, '29', 'experience', 659), (78, '29', 'experience', 660), (77, '29', 'experience', 661), (79, '29', 'experience', 662), (53, '10', 'experience', 663), (53, '9', 'experience', 664), (53, '8', 'experience', 665), (53, '7', 'experience', 666), (54, '11', 'experience', 667), (74, '31', 'experience', 668), (70, '31', 'experience', 669), (73, '31', 'experience', 670), (71, '31', 'experience', 671), (75, '31', 'experience', 672), (72, '31', 'experience', 673), (76, '31', 'experience', 674), (80, '31', 'experience', 675), (78, '31', 'experience', 676), (77, '31', 'experience', 677), (79, '31', 'experience', 678), (74, '32', 'experience', 682), (70, '32', 'experience', 683), (73, '32', 'experience', 684), (71, '32', 'experience', 685), (75, '32', 'experience', 686), (72, '32', 'experience', 687), (76, '32', 'experience', 688), (80, '32', 'experience', 689), (78, '32', 'experience', 690), (77, '32', 'experience', 691), (79, '32', 'experience', 692), (55, '30', 'experience', 695), (55, '29', 'experience', 696), (55, '27', 'experience', 697), (55, '26', 'experience', 698), (54, '21', 'experience', 699), (54, '18', 'experience', 700), (54, '17', 'experience', 701), (54, '16', 'experience', 702), (54, '15', 'experience', 703), (54, '14', 'experience', 704), (54, '12', 'experience', 705), (74, '33', 'experience', 707), (70, '33', 'experience', 708), (73, '33', 'experience', 709), (71, '33', 'experience', 710), (75, '33', 'experience', 711), (72, '33', 'experience', 712), (76, '33', 'experience', 713), (80, '33', 'experience', 714), (78, '33', 'experience', 715), (77, '33', 'experience', 716), (79, '33', 'experience', 717), (92, '33', 'experience', 720), (92, '32', 'experience', 721), (55, '28', 'experience', 722), (55, '25', 'experience', 723), (55, '24', 'experience', 724), (55, '23', 'experience', 725), (55, '22', 'experience', 726), (55, '31', 'experience', 727), (54, '20', 'experience', 728), (74, '34', 'experience', 730), (70, '34', 'experience', 731), (73, '34', 'experience', 732), (71, '34', 'experience', 733), (75, '34', 'experience', 734), (72, '34', 'experience', 735), (76, '34', 'experience', 736), (80, '34', 'experience', 737), (78, '34', 'experience', 738), (77, '34', 'experience', 739), (79, '34', 'experience', 740), (74, '35', 'experience', 865), (70, '35', 'experience', 866), (73, '35', 'experience', 867), (71, '35', 'experience', 868), (75, '35', 'experience', 869), (72, '35', 'experience', 870), (76, '35', 'experience', 871), (80, '35', 'experience', 872), (78, '35', 'experience', 873), (77, '35', 'experience', 874), (79, '35', 'experience', 875), (74, '36', 'experience', 1001), (70, '36', 'experience', 1002), (73, '36', 'experience', 1003), (71, '36', 'experience', 1004), (75, '36', 'experience', 1005), (72, '36', 'experience', 1006), (76, '36', 'experience', 1007), (80, '36', 'experience', 1008), (78, '36', 'experience', 1009), (77, '36', 'experience', 1010), (79, '36', 'experience', 1011), (29, '23', 'post', 1014), (29, '22', 'post', 1015), (74, '37', 'experience', 1017), (70, '37', 'experience', 1018), (73, '37', 'experience', 1019), (71, '37', 'experience', 1020), (75, '37', 'experience', 1021), (72, '37', 'experience', 1022), (76, '37', 'experience', 1023), (80, '37', 'experience', 1024), (78, '37', 'experience', 1025), (77, '37', 'experience', 1026), (79, '37', 'experience', 1027), (92, '37', 'experience', 1030), (74, '38', 'experience', 1165), (70, '38', 'experience', 1166), (73, '38', 'experience', 1167), (71, '38', 'experience', 1168), (75, '38', 'experience', 1169), (72, '38', 'experience', 1170), (76, '38', 'experience', 1171), (80, '38', 'experience', 1172), (78, '38', 'experience', 1173), (77, '38', 'experience', 1174), (79, '38', 'experience', 1175), (74, '39', 'experience', 1312), (70, '39', 'experience', 1313), (73, '39', 'experience', 1314), (71, '39', 'experience', 1315), (75, '39', 'experience', 1316), (72, '39', 'experience', 1317), (76, '39', 'experience', 1318), (80, '39', 'experience', 1319), (78, '39', 'experience', 1320), (77, '39', 'experience', 1321), (79, '39', 'experience', 1322), (74, '40', 'experience', 1459), (70, '40', 'experience', 1460), (73, '40', 'experience', 1461), (71, '40', 'experience', 1462), (75, '40', 'experience', 1463), (72, '40', 'experience', 1464), (76, '40', 'experience', 1465), (80, '40', 'experience', 1466), (78, '40', 'experience', 1467), (77, '40', 'experience', 1468), (79, '40', 'experience', 1469), (53, '4', 'experience', 1606), (92, '39', 'experience', 1607), (92, '34', 'experience', 1608), (92, '35', 'experience', 1609), (92, '36', 'experience', 1610), (41, '34', 'home', 1611), (48, '34', 'home', 1612), (44, '34', 'home', 1613), (40, '34', 'home', 1614), (37, '34', 'home', 1615), (42, '34', 'home', 1616), (4, '34', 'home', 1617), (24, '33', 'home', 1618), (48, '33', 'home', 1619), (43, '33', 'home', 1620), (40, '33', 'home', 1621), (37, '33', 'home', 1622), (36, '33', 'home', 1623), (38, '33', 'home', 1624), (4, '33', 'home', 1625), (26, '32', 'home', 1626), (41, '32', 'home', 1627), (43, '32', 'home', 1628), (40, '32', 'home', 1629), (36, '32', 'home', 1630), (38, '32', 'home', 1631), (4, '32', 'home', 1632), (24, '31', 'home', 1633), (41, '31', 'home', 1634), (48, '31', 'home', 1635), (44, '31', 'home', 1636), (43, '31', 'home', 1637), (37, '31', 'home', 1638), (42, '31', 'home', 1639), (38, '31', 'home', 1640), (4, '31', 'home', 1641), (28, '29', 'home', 1642), (41, '29', 'home', 1643), (39, '29', 'home', 1644), (44, '29', 'home', 1645), (43, '29', 'home', 1646), (40, '29', 'home', 1647), (37, '29', 'home', 1648), (36, '29', 'home', 1649), (38, '29', 'home', 1650), (4, '29', 'home', 1651), (25, '28', 'home', 1652), (48, '28', 'home', 1653), (40, '28', 'home', 1654), (37, '28', 'home', 1655), (42, '28', 'home', 1656), (38, '28', 'home', 1657), (4, '28', 'home', 1658), (26, '27', 'home', 1659), (39, '27', 'home', 1660), (44, '27', 'home', 1661), (43, '27', 'home', 1662), (42, '27', 'home', 1663), (36, '27', 'home', 1664), (4, '27', 'home', 1665), (23, '26', 'home', 1666), (41, '26', 'home', 1667), (48, '26', 'home', 1668), (39, '26', 'home', 1669), (44, '26', 'home', 1670), (43, '26', 'home', 1671), (40, '26', 'home', 1672), (37, '26', 'home', 1673), (42, '26', 'home', 1674), (38, '26', 'home', 1675), (4, '26', 'home', 1676), (25, '25', 'home', 1677), (41, '25', 'home', 1678), (39, '25', 'home', 1679), (43, '25', 'home', 1680), (40, '25', 'home', 1681), (37, '25', 'home', 1682), (36, '25', 'home', 1683), (4, '25', 'home', 1684), (41, '21', 'home', 1685), (39, '21', 'home', 1686), (40, '21', 'home', 1687), (37, '21', 'home', 1688), (42, '21', 'home', 1689), (36, '21', 'home', 1690), (39, '20', 'home', 1691), (44, '20', 'home', 1692), (40, '20', 'home', 1693), (37, '20', 'home', 1694), (36, '20', 'home', 1695), (41, '19', 'home', 1696), (44, '19', 'home', 1697), (40, '19', 'home', 1698), (37, '19', 'home', 1699), (42, '19', 'home', 1700), (36, '19', 'home', 1701), (38, '19', 'home', 1702), (4, '19', 'home', 1703), (27, '18', 'home', 1704), (41, '18', 'home', 1705), (39, '18', 'home', 1706), (44, '18', 'home', 1707), (37, '18', 'home', 1708), (42, '18', 'home', 1709), (36, '18', 'home', 1710), (38, '18', 'home', 1711), (4, '18', 'home', 1712), (26, '17', 'home', 1713), (41, '17', 'home', 1714), (39, '17', 'home', 1715), (43, '17', 'home', 1716), (40, '17', 'home', 1717), (37, '17', 'home', 1718), (42, '17', 'home', 1719), (36, '17', 'home', 1720), (22, '16', 'home', 1721), (41, '16', 'home', 1722), (37, '16', 'home', 1723), (42, '16', 'home', 1724), (36, '16', 'home', 1725), (38, '16', 'home', 1726), (4, '16', 'home', 1727), (23, '15', 'home', 1728), (41, '15', 'home', 1729), (39, '15', 'home', 1730), (40, '15', 'home', 1731), (42, '15', 'home', 1732), (36, '15', 'home', 1733), (38, '15', 'home', 1734), (4, '15', 'home', 1735), (22, '14', 'home', 1736), (41, '14', 'home', 1737), (39, '14', 'home', 1738), (44, '14', 'home', 1739), (43, '14', 'home', 1740), (40, '14', 'home', 1741), (37, '14', 'home', 1742), (42, '14', 'home', 1743), (36, '14', 'home', 1744), (38, '14', 'home', 1745), (4, '14', 'home', 1746), (25, '13', 'home', 1747), (41, '13', 'home', 1748), (39, '13', 'home', 1749), (44, '13', 'home', 1750), (43, '13', 'home', 1751), (40, '13', 'home', 1752), (37, '13', 'home', 1753), (42, '13', 'home', 1754), (36, '13', 'home', 1755), (38, '13', 'home', 1756), (26, '12', 'home', 1757), (41, '12', 'home', 1758), (44, '12', 'home', 1759), (40, '12', 'home', 1760), (37, '12', 'home', 1761), (42, '12', 'home', 1762), (36, '12', 'home', 1763), (28, '11', 'home', 1764), (41, '11', 'home', 1765), (40, '11', 'home', 1766), (36, '11', 'home', 1767), (4, '11', 'home', 1768), (27, '10', 'home', 1769), (43, '10', 'home', 1770), (40, '10', 'home', 1771), (37, '10', 'home', 1772), (42, '10', 'home', 1773), (4, '10', 'home', 1774), (22, '9', 'home', 1775), (39, '9', 'home', 1776), (40, '9', 'home', 1777), (37, '9', 'home', 1778), (42, '9', 'home', 1779), (38, '9', 'home', 1780), (27, '8', 'home', 1781), (44, '8', 'home', 1782), (40, '8', 'home', 1783), (37, '8', 'home', 1784), (38, '8', 'home', 1785), (4, '8', 'home', 1786), (22, '7', 'home', 1787), (41, '7', 'home', 1788), (44, '7', 'home', 1789), (43, '7', 'home', 1790), (38, '7', 'home', 1791), (26, '6', 'home', 1792), (41, '6', 'home', 1793), (39, '6', 'home', 1794), (44, '6', 'home', 1795), (40, '6', 'home', 1796), (37, '6', 'home', 1797), (42, '6', 'home', 1798), (25, '5', 'home', 1799), (41, '5', 'home', 1800), (43, '5', 'home', 1801), (40, '5', 'home', 1802), (37, '5', 'home', 1803), (36, '5', 'home', 1804), (38, '5', 'home', 1805), (4, '5', 'home', 1806), (24, '4', 'home', 1807), (41, '4', 'home', 1808), (40, '4', 'home', 1809), (37, '4', 'home', 1810), (42, '4', 'home', 1811), (36, '4', 'home', 1812), (38, '4', 'home', 1813), (4, '4', 'home', 1814), (23, '3', 'home', 1815), (41, '3', 'home', 1816), (39, '3', 'home', 1817), (43, '3', 'home', 1818), (40, '3', 'home', 1819), (37, '3', 'home', 1820), (42, '3', 'home', 1821), (36, '3', 'home', 1822), (38, '3', 'home', 1823), (4, '3', 'home', 1824), (22, '2', 'home', 1825), (41, '2', 'home', 1826), (39, '2', 'home', 1827), (44, '2', 'home', 1828), (43, '2', 'home', 1829), (40, '2', 'home', 1830), (37, '2', 'home', 1831), (42, '2', 'home', 1832), (36, '2', 'home', 1833), (38, '2', 'home', 1834), (4, '2', 'home', 1835), (25, '1', 'home', 1836), (39, '1', 'home', 1837), (44, '1', 'home', 1838), (43, '1', 'home', 1839), (40, '1', 'home', 1840), (42, '1', 'home', 1841), (36, '1', 'home', 1842), (38, '1', 'home', 1843), (4, '1', 'home', 1844), (81, '16', 'car', 2014), (82, '16', 'car', 2015), (83, '16', 'car', 2016), (84, '16', 'car', 2017), (85, '16', 'car', 2018), (86, '16', 'car', 2019), (90, '16', 'car', 2020), (93, '16', 'car', 2021), (89, '16', 'car', 2022), (88, '16', 'car', 2023), (81, '15', 'car', 2024), (82, '15', 'car', 2025), (83, '15', 'car', 2026), (84, '15', 'car', 2027), (85, '15', 'car', 2028), (86, '15', 'car', 2029), (90, '15', 'car', 2030), (93, '15', 'car', 2031), (89, '15', 'car', 2032), (88, '15', 'car', 2033), (81, '14', 'car', 2034), (82, '14', 'car', 2035), (83, '14', 'car', 2036), (84, '14', 'car', 2037), (85, '14', 'car', 2038), (86, '14', 'car', 2039), (90, '14', 'car', 2040), (93, '14', 'car', 2041), (89, '14', 'car', 2042), (88, '14', 'car', 2043), (81, '13', 'car', 2044), (82, '13', 'car', 2045), (83, '13', 'car', 2046), (84, '13', 'car', 2047), (85, '13', 'car', 2048), (86, '13', 'car', 2049), (90, '13', 'car', 2050), (93, '13', 'car', 2051), (89, '13', 'car', 2052), (88, '13', 'car', 2053), (81, '12', 'car', 2054), (82, '12', 'car', 2055), (83, '12', 'car', 2056), (84, '12', 'car', 2057), (85, '12', 'car', 2058), (86, '12', 'car', 2059), (90, '12', 'car', 2060), (93, '12', 'car', 2061), (89, '12', 'car', 2062), (88, '12', 'car', 2063), (81, '11', 'car', 2064), (82, '11', 'car', 2065), (83, '11', 'car', 2066), (84, '11', 'car', 2067), (85, '11', 'car', 2068), (86, '11', 'car', 2069), (90, '11', 'car', 2070), (93, '11', 'car', 2071), (89, '11', 'car', 2072), (88, '11', 'car', 2073), (81, '10', 'car', 2074), (82, '10', 'car', 2075), (83, '10', 'car', 2076), (84, '10', 'car', 2077), (85, '10', 'car', 2078), (86, '10', 'car', 2079), (90, '10', 'car', 2080), (93, '10', 'car', 2081), (89, '10', 'car', 2082), (88, '10', 'car', 2083), (81, '9', 'car', 2084), (82, '9', 'car', 2085), (83, '9', 'car', 2086), (84, '9', 'car', 2087), (85, '9', 'car', 2088), (86, '9', 'car', 2089), (90, '9', 'car', 2090), (93, '9', 'car', 2091), (89, '9', 'car', 2092), (88, '9', 'car', 2093), (81, '5', 'car', 2094), (82, '5', 'car', 2095), (83, '5', 'car', 2096), (84, '5', 'car', 2097), (85, '5', 'car', 2098), (86, '5', 'car', 2099), (90, '5', 'car', 2100), (93, '5', 'car', 2101), (89, '5', 'car', 2102), (88, '5', 'car', 2103), (81, '4', 'car', 2104), (82, '4', 'car', 2105), (83, '4', 'car', 2106), (84, '4', 'car', 2107), (85, '4', 'car', 2108), (86, '4', 'car', 2109), (90, '4', 'car', 2110), (93, '4', 'car', 2111), (89, '4', 'car', 2112), (88, '4', 'car', 2113), (81, '2', 'car', 2114), (82, '2', 'car', 2115), (83, '2', 'car', 2116), (84, '2', 'car', 2117), (85, '2', 'car', 2118), (86, '2', 'car', 2119), (90, '2', 'car', 2120), (93, '2', 'car', 2121), (89, '2', 'car', 2122), (88, '2', 'car', 2123), (81, '19', 'post', 2124), (82, '19', 'post', 2125), (83, '19', 'post', 2126), (84, '19', 'post', 2127), (85, '19', 'post', 2128), (90, '19', 'post', 2129), (93, '19', 'post', 2130), (89, '19', 'post', 2131), (88, '19', 'post', 2132), (60, '19', 'post', 2133), (41, '37', 'home', 2134), (48, '37', 'home', 2135), (43, '37', 'home', 2136), (40, '37', 'home', 2137), (37, '37', 'home', 2138), (42, '37', 'home', 2139), (36, '37', 'home', 2140), (38, '37', 'home', 2141), (4, '37', 'home', 2142), (28, '19', 'home', 2144), (81, '20', 'post', 2145), (82, '20', 'post', 2146), (84, '20', 'post', 2147), (85, '20', 'post', 2148), (86, '20', 'post', 2149), (90, '20', 'post', 2150), (93, '20', 'post', 2151), (89, '20', 'post', 2152), (88, '20', 'post', 2153), (92, '41', 'experience', 2154), (74, '41', 'experience', 2164), (70, '41', 'experience', 2165), (73, '41', 'experience', 2166), (71, '41', 'experience', 2167), (75, '41', 'experience', 2168), (72, '41', 'experience', 2169), (76, '41', 'experience', 2170), (80, '41', 'experience', 2171), (78, '41', 'experience', 2172), (77, '41', 'experience', 2173), (79, '41', 'experience', 2174), (24, '20', 'home', 2176), (60, '20', 'post', 2177), (62, '21', 'post', 2178), (25, '22', 'post', 2179), (41, '22', 'post', 2180), (39, '22', 'post', 2181), (44, '22', 'post', 2182), (43, '22', 'post', 2183), (40, '22', 'post', 2184), (37, '22', 'post', 2185), (42, '22', 'post', 2186), (36, '22', 'post', 2187), (38, '22', 'post', 2188), (63, '22', 'post', 2189), (81, '22', 'post', 2190), (82, '22', 'post', 2191), (83, '22', 'post', 2192), (84, '22', 'post', 2193), (85, '22', 'post', 2194), (86, '22', 'post', 2195), (90, '22', 'post', 2196), (93, '22', 'post', 2197), (89, '22', 'post', 2198), (88, '22', 'post', 2199), (54, '19', 'experience', 2200), (62, '23', 'post', 2201), (81, '23', 'post', 2202), (82, '23', 'post', 2203), (83, '23', 'post', 2204), (86, '23', 'post', 2205), (90, '23', 'post', 2206), (93, '23', 'post', 2207), (89, '23', 'post', 2208), (81, '17', 'car', 2209), (82, '17', 'car', 2210), (83, '17', 'car', 2211), (84, '17', 'car', 2212), (85, '17', 'car', 2213), (86, '17', 'car', 2214), (90, '17', 'car', 2215), (93, '17', 'car', 2216), (89, '17', 'car', 2217), (88, '17', 'car', 2218), (95, '17', 'car', 2219), (28, '21', 'home', 2220), (92, '40', 'experience', 2221), (92, '38', 'experience', 2222), (24, '37', 'home', 2223), (81, '6', 'car', 2224), (82, '6', 'car', 2225), (83, '6', 'car', 2226), (84, '6', 'car', 2227), (85, '6', 'car', 2228), (86, '6', 'car', 2229), (90, '6', 'car', 2230), (93, '6', 'car', 2231), (89, '6', 'car', 2232), (88, '6', 'car', 2233), (95, '6', 'car', 2234), (60, '5', 'car', 2235), (58, '7', 'car', 2236), (81, '7', 'car', 2237), (82, '7', 'car', 2238), (83, '7', 'car', 2239), (84, '7', 'car', 2240), (85, '7', 'car', 2241), (86, '7', 'car', 2242), (90, '7', 'car', 2243), (93, '7', 'car', 2244), (89, '7', 'car', 2245), (88, '7', 'car', 2246), (62, '17', 'car', 2247), (59, '16', 'car', 2248), (60, '15', 'car', 2249), (61, '14', 'car', 2250), (63, '13', 'car', 2251), (58, '12', 'car', 2252), (63, '11', 'car', 2253), (61, '10', 'car', 2254), (59, '9', 'car', 2255), (60, '4', 'car', 2256), (61, '2', 'car', 2257), (59, '6', 'car', 2258), (28, '34', 'home', 2259);
<filename>src/main/resources/data.sql INSERT INTO customers values("Paco","Fulanez","<EMAIL>",10001)
<reponame>tizian/Cendric2 INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_WhoAreYou', 'dl_npc_thea', 'Who are you?','Wer bist du?','Wer bisch du?', '¿Quién eres?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_WhatAreYouDoing', 'dl_npc_thea', 'What are you doing here?','Was machst du hier?','Was machsch du da?', '¿Qué estás haciendo aquí?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_Mages', 'dl_npc_thea', 'What do you think about mages?','Was hältst du von Magiern?','Was haltisch so vo Magier?', '¿Qué piensas de los magos?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_Gandria', 'dl_npc_thea', 'What do you know about the city Gandria?','Was weisst du über die Stadt Gandria?','Was weisch du über d''Stadt Gandria?', '¿Qué sabes de la ciudad de Gandria?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_IAm', 'dl_npc_thea', 'My name is Thea... and you?','Ich heisse Thea... und du?','I heissä Thea... u du?', 'Me llamo Thea... y ¿tú?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_Cendric', 'dl_npc_thea', 'I''m Cendric. Nice to meet you.','Ich bin Cendric. Freut mich.','Ich bi de Cendric. Freut mi.', 'So<NAME>. Mucho gusto.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_DoesntMatter', 'dl_npc_thea', 'My name isn''t of importance.','Mein Name ist nicht wichtig.','Min Name isch nid wichtig.', 'Mi nombre no es importante.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Nice', 'dl_npc_thea', 'Nice to meet you, too!','Freut mich auch, dich kennenzulernen!','Fröit mi o, di z lehrä kennä!', '¡Mucho gusto!'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Pity', 'dl_npc_thea', 'Pity, I would have loved to know it.','Schade, ich hätte ihn gerne erfahren.','Schad, hät nä gärn erfahrä.', 'Lástima, me habría encantado saberlo.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_WhatAmIDoing', 'dl_npc_thea', 'I had to deliver some goods from the farmers and then decided to stay for a while.','Ich musste einige Güter von den Bauern hierherbringen und dachte, ich bleib'' doch gleich ein bisschen.','I ha äs paar Sachä vo dä Buurä müässä dahäre bringä u ha däicht, i chönnt ja eifach no chli bliibä.', 'Tenía que entregar unos productos de los granjeros y después decidí quedarme un rato.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_VeryAlone', 'dl_npc_thea', 'You are traveling alone?','Du bist alleine unterwegs?','Du bisch elei unterwägs?', '¿Estás viajando sola?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_WorkForFarmers', 'dl_npc_thea', 'Do you work for the farmers?','Arbeitest du für die Bauern?','Schaffsch du für d''Buure?', '¿Trabajas para los granjeros?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_VeryAlone', 'dl_npc_thea', 'Yes, I always travel on my own. But it has become dangerous lately outside of the city walls of Gandria. I''d rather take someone with me in the future.','Ja, ich reise immer alleine. Aber ausserhalb der Stadtmauern von Gandria ist es in letzter Zeit gefährlich geworden. Ich würde lieber jemanden dabei haben in Zukunft.','Ja, i reise immer alleini. Aber usserhaub vo dä Stadtmuurä vo Gandria ischs i letzter Zyt gfährlech wordä. I wür lieber öpper derbii ha i Zuekunft.', 'Sí, siempre viajo sola. Aunque recientemente se ha vuelto peligroso en las afueras de la ciudad de Gandria. Preferiría llevar a alguien conmigo en el futuro.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_WorkForFarmers', 'dl_npc_thea', 'Yes, I''m a maid at Ivo''s farm. But I''d rather find work in the city of Gandria. It''s safe there, at least.','Ja, ich bin eine Magd auf Ivos Bauernhof. Aber ich würde viel lieber in der Stadt Gandria Arbeit finden. Dort ist es wenigstens sicher.','Ja, i bi ä Magd uf em Ivo sim Buurähof. Aber i wür viu lieber ir Stadt Gandria Arbit fingä. Dert ischs wenigschtens sicher.', 'Sí, soy una sirvienta en la granja de Ivo. Aunque preferiría encontrar trabajo en la ciudad de Gandria. Por lo menos ahí es seguro.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_WhatIsDangerous', 'dl_npc_thea', 'What is dangerous out here, then?','Was ist denn hier draussen gefährlich?','Was isch denn da usse so gföhrlich?', 'Entonces, ¿qué hay de peligroso en las afueras?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Beast', 'dl_npc_thea', 'There is a beast lurking around. It must be pretty hungry, as most of our sheep are gone.','Ein Biest schleicht umher, und es muss ziemlich hungrig sein, denn die meisten unserer Schafe sind weg.','Äs Biischt schliicht umenang u äs isch gloub zimlech hungrig, wü di meischtä vo üsnä Schäfli si wäg.', 'Hay una bestia al acecho y debe estar muy hambrienta, ya que la mayoría de nuestras ovejas ha desaparecido.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Beast2', 'dl_npc_thea', 'Nobody has really seen it, but I swear; I saw a huge shadow disappear into the North last night.','Niemand hat es bisher wirklich zu Gesicht bekommen, aber ich schwöre, ich habe letzte Nacht einen riesigen Schatten in Richtung Norden verschwinden sehen.','Äs hets bis itz no niemer würklech gseh, aber i chönnti schwörä, dass i gester Nacht ä riesigä Schattä i nördlicher Richtig ha gse verschwinde.', 'De momento, nadie ha visto a la criatura en sí, pero te juro que anoche vi una inmensa sombra desaparecer al Norte.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Beast3', 'dl_npc_thea', 'And in the morning, another sheep was missing.','Und am Morgen fehlte uns wieder ein Schaf.','U am Morgä het üs scho wieder es Schäfli gfäuht.', 'En la mañana, otra oveja había desaparecido.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Mages', 'dl_npc_thea', 'Well, most of them are quite reasonable people. They lead our kingdom, at least.','Nun ja, die meisten von ihnen sind ziemlich vernünftig. Immerhin führen sie unser Königreich.','Naja, di meischtä vo ihnä si zimlech vernünftig. Immerhin füährä si üses Chünigriich.','Bueno, la mayoría de ellos es gente razonable. Al menos guían nuestro reino.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Mages2', 'dl_npc_thea', 'And I really think that we owe them a lot - The farmer Ivo told me that in the past, there were even mages that controlled the weather to help farmers like him.','Und ich denke wirklich, dass wir ihnen viel zu verdanken haben - Der Bauer Ivo hat mir gesagt, dass früher die Magier sogar das Wetter kontrolliert haben, um den Bauern zu helfen.','U i däiche würklech, dass mer ihnä viu z verdankä hei - der Buur Ivo het mer gseit, dass d Magier früecher sogar z Wätter kontrolliert hei, zum dä Buurä häufe.', 'Y pienso que, en realidad, les debemos mucho. El granjero Ivo me comentó que incluso en el pasado había magos que controlaban el clima para ayudar a granjeros como él.'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Gandria', 'dl_npc_thea', 'It''s the capital city of our kingdom. Where the king resides - and all the important people, of course. Ah, I wish I could live there!','Es ist die Hauptstadt unseres Königreichs. Wo der König lebt - und natürlich alle wichtigen Leute. Ach, ich wünschte, ich könnte auch dort wohnen.','Äs isch d Houptstadt vo üsem Chünigriich. Wo der Chünig läbt - u natürlich au diä wichtigä Lüt. Ach, i wünschti, i chönnti o dert wohnä.', 'Es la capital de nuestro reino, donde reside el rey y todas las personas importantes, por supuesto. Ah... ¡Cuánto desearía vivir ahí!'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Choice_Syrah', 'dl_npc_thea', 'I found a job for you in Gandria.','Ich habe einen Job für dich in Gandria gefunden.', 'Ich ha en Job für dich in Gandria gfunde.', '?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Cendric_Syrah', 'dl_npc_thea', 'The alchemist Syrah would take you as an apprentice.','Die Alchemistin Syrah würde dich als Lehrtochter nehmen.', 'D''Alchemistin Syrah wür di als Lehrtochter nä.', '?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Syrah', 'dl_npc_thea', 'Oh, really? I always wanted to work with herbs and potions. Thank you so much!','Oh, wirklich? Ich wollte schon immer mit Kräutern und Tränken arbeiten. Vielen Dank!', 'Oh, würklech? I ha scho immer mit Chrüttli u Tränk wöuä schaffe. Dankä tusig!', '?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Syrah2', 'dl_npc_thea', 'I''ll tell Ivo and then travel to Gandria as fast as possible.','Ich werde es Ivo erzählen und dann so schnell wie möglich nach Gandria reisen.', 'I wirdes am Ivo säge u när so schnäu wie müglech nach Gandria reisä.', '?'); INSERT INTO text (text_id, text_type, english, german, swiss_german, spanish) values ('DL_Thea_Syrah3', 'dl_npc_thea', 'Don''t forget to visit me when I''m there!','Vergiss nicht, mich dann in Gandria zu besuchen!', 'Vergiss nid, mi de z Gandria z bsuächä!', '?');
INSERT INTO orders (id, date, amount, paid) VALUES (1, current_date, 100.0, true); INSERT INTO orders (id, date, amount, paid) VALUES (2, current_date - 1, 50.0, true); INSERT INTO payment (id, order_id, credit_card_number) VALUES (1, 1, '4532756279624064'); INSERT INTO payment (id, order_id, credit_card_number) VALUES (2, 2, '4716327217780406');
-- noinspection SqlResolve INSERT INTO User (firstname,lastname,email,dateofbirth,password,role) VALUES ('Admin','User','<EMAIL>',DATE '2000-12-22','admin','ADMIN'),('James','Holder','<EMAIL>',DATE '2000-12-21','jholden','USER'),('Alex','Kamal','<EMAIL>',DATE '2000-12-11','akamal','USER'),('Naomi','Nagato','<EMAIL>',DATE '2000-12-01','nnagato','USER'),('Amos','Burton','<EMAIL>',DATE '2000-12-01','aburton','USER');
-- auto Generated on 2020-01-08 -- DROP TABLE IF EXISTS myshop.tb_item_cat; CREATE TABLE myshop.tb_item_cat( id BIGINT (15) NOT NULL AUTO_INCREMENT COMMENT '类目ID', parent_id BIGINT (15) NOT NULL DEFAULT -1 COMMENT '父类目ID=0时,代表的是一级的类目', `name` VARCHAR (50) NOT NULL DEFAULT '' COMMENT '类目名称', `status` INT (11) NOT NULL DEFAULT -1 COMMENT '状态。可选值:1(正常),2(删除)', sort_order INT (11) NOT NULL DEFAULT -1 COMMENT '排列序号,表示同级类目的展现次序,如数值相等则按名称次序排列。取值范围:大于零的整数', is_parent TINYINT (3) NOT NULL DEFAULT 0 COMMENT '该类目是否为父类目,1为true,0为false', created DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', updated DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (id) )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT 'myshop.tb_item_cat';
CREATE DATABASE IF NOT EXISTS `auth` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_bin */; USE `auth`; -- MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64) -- -- Host: 127.0.0.1 Database: auth -- ------------------------------------------------------ -- Server version 5.7.20 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `privilege` -- -- DROP TABLE IF EXISTS `privilege`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `privilege` ( `uuid` binary(16) NOT NULL, `description` varchar(255) COLLATE utf8_bin DEFAULT NULL, `name` varchar(255) COLLATE utf8_bin DEFAULT NULL, `application_id` binary(16) DEFAULT NULL, PRIMARY KEY (`uuid`), UNIQUE KEY `UK_h7iwbdg4ev8mgvmij76881tx8` (`name`), KEY `FK61h3jewffk70b5ni4tsi5rhoy` (`application_id`), CONSTRAINT `FK61h3jewffk70b5ni4tsi5rhoy` FOREIGN KEY (`application_id`) REFERENCES `application` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `role` -- -- DROP TABLE IF EXISTS `role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `role` ( `uuid` binary(16) NOT NULL, `name` varchar(255) COLLATE utf8_bin DEFAULT NULL, `description` varchar(255) COLLATE utf8_bin DEFAULT NULL, PRIMARY KEY (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `role_privilege` -- -- DROP TABLE IF EXISTS `role_privilege`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `role_privilege` ( `role_id` binary(16) NOT NULL, `privilege_id` binary(16) NOT NULL, PRIMARY KEY (`role_id`,`privilege_id`), KEY `FKdkwbrwb5r8h74m1v7dqmhp99c` (`privilege_id`), CONSTRAINT `FKdkwbrwb5r8h74m1v7dqmhp99c` FOREIGN KEY (`privilege_id`) REFERENCES `privilege` (`uuid`), CONSTRAINT `FKsykrtrdngu5iexmbti7lu9xa` FOREIGN KEY (`role_id`) REFERENCES `role` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user` -- -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `uuid` binary(16) NOT NULL, `auth0_metadata` varchar(8000) COLLATE utf8_bin DEFAULT NULL, `general_metadata` varchar(9000) COLLATE utf8_bin DEFAULT NULL, `acceptedTOS` datetime COLLATE utf8_bin DEFAULT NULL, `connectionId` binary(16) DEFAULT NULL, `email` varchar(255) COLLATE utf8_bin DEFAULT NULL, `matched` bit(1) NOT NULL DEFAULT FALSE, `subject` varchar(255) COLLATE utf8_bin DEFAULT NULL, `is_active` bit(1) NOT NULL DEFAULT TRUE, PRIMARY KEY (`uuid`), UNIQUE KEY `UK_r8xpakluitn685ua7pt8xjy9r` (`subject`), KEY `FKn8bku0vydfcnuwbqwgnbgg8ry` (`connectionId`), CONSTRAINT `FKn8bku0vydfcnuwbqwgnbgg8ry` FOREIGN KEY (`connectionId`) REFERENCES `connection` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `userMetadataMapping` -- -- DROP TABLE IF EXISTS `userMetadataMapping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userMetadataMapping` ( `uuid` binary(16) NOT NULL, `auth0MetadataJsonPath` varchar(255) COLLATE utf8_bin DEFAULT NULL, `connectionId` binary(16) DEFAULT NULL, `generalMetadataJsonPath` varchar(255) COLLATE utf8_bin DEFAULT NULL, PRIMARY KEY (`uuid`), KEY `FKayr8vrvvwpgsdhxdyryt6k590` (`connectionId`), CONSTRAINT `FKayr8vrvvwpgsdhxdyryt6k590` FOREIGN KEY (`connectionId`) REFERENCES `connection` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user_role` -- -- DROP TABLE IF EXISTS `user_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_role` ( `user_id` binary(16) NOT NULL, `role_id` binary(16) NOT NULL, PRIMARY KEY (`user_id`,`role_id`), KEY `<KEY>` (`role_id`), CONSTRAINT `FK859n2jvi8ivhui0rl0esws6o` FOREIGN KEY (`user_id`) REFERENCES `user` (`uuid`), CONSTRAINT `FKa68196081fvovjhkek5m97n3y` FOREIGN KEY (`role_id`) REFERENCES `role` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; CREATE TABLE `termsOfService` ( `uuid` binary(16) NOT NULL, `dateUpdated` timestamp, `content` varchar(9000) COLLATE utf8_bin DEFAULT NULL, PRIMARY KEY (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `connection` ( `uuid` binary(16) NOT NULL, `label` varchar(255) COLLATE utf8_bin NOT NULL, `id` varchar(255) COLLATE utf8_bin NOT NULL, `subprefix` varchar(255) COLLATE utf8_bin NOT NULL, `requiredFields` varchar(9000) COLLATE utf8_bin NOT NULL, PRIMARY KEY (`uuid`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; CREATE TABLE `application` ( `uuid` binary(16) NOT NULL, `description` varchar(255) COLLATE utf8_bin DEFAULT NULL, `enable` bit(1) NOT NULL DEFAULT b'1', `name` varchar(255) COLLATE utf8_bin DEFAULT NULL, `token` varchar(2000) COLLATE utf8_bin DEFAULT NULL, `url` varchar(500) COLLATE utf8_bin DEFAULT NULL, PRIMARY KEY (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; CREATE TABLE `access_rule` ( `uuid` binary(16) NOT NULL, `name` varchar(255) COLLATE utf8_bin DEFAULT NULL, `description` varchar(2000) COLLATE utf8_bin DEFAULT NULL, `rule` varchar(255) COLLATE utf8_bin DEFAULT NULL, `type` int(11) DEFAULT NULL, `value` varchar(255) COLLATE utf8_bin DEFAULT NULL, `checkMapKeyOnly` bit(1) NOT NULL, `checkMapNode` bit(1) NOT NULL, `gateParent_uuid` binary(16) DEFAULT NULL, `subAccessRuleParent_uuid` binary(16) DEFAULT NULL, PRIMARY KEY (`uuid`), KEY `FKd1eyn6iwyfsq0glgr37eyhogj` (`gateParent_uuid`), KEY `FK8rovvx363ui99ce21sksmg6uy` (`subAccessRuleParent_uuid`), CONSTRAINT `FK8rovvx363ui99ce21sksmg6uy` FOREIGN KEY (`subAccessRuleParent_uuid`) REFERENCES `access_rule` (`uuid`), CONSTRAINT `FKd1eyn6iwyfsq0glgr37eyhogj` FOREIGN KEY (`gateParent_uuid`) REFERENCES `access_rule` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; CREATE TABLE `accessRule_privilege` ( `privilege_id` binary(16) NOT NULL, `accessRule_id` binary(16) NOT NULL, PRIMARY KEY (`privilege_id`,`accessRule_id`), KEY `FK89rf30kbf9d246jty2dd7qk99` (`accessRule_id`), CONSTRAINT `FK7x47w81gpua380qd7lp9x94l1` FOREIGN KEY (`privilege_id`) REFERENCES `privilege` (`uuid`), CONSTRAINT `FK89rf30kbf9d246jty2dd7qk99` FOREIGN KEY (`accessRule_id`) REFERENCES `access_rule` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-10-16 19:48:56
CREATE TABLE IF NOT EXISTS phenotype ( id VARCHAR(255) NOT NULL, allowed_values VARCHAR(255) NOT NULL, created_date TIMESTAMP, description TEXT NOT NULL, last_modified_date TIMESTAMP, phenotype_group VARCHAR(255) NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE IF NOT EXISTS property ( id VARCHAR(255) NOT NULL, created_date TIMESTAMP, description TEXT NOT NULL, last_modified_date TIMESTAMP, meaning VARCHAR(255) NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE IF NOT EXISTS registry_user ( email VARCHAR(255) NOT NULL, role VARCHAR(255), PRIMARY KEY (email) );
<reponame>piangles/Datastore DROP PROCEDURE IF EXISTS Backbone.CreateTokenBasedCredentialEntry; CREATE PROCEDURE Backbone.CreateTokenBasedCredentialEntry ( IN UserId VARCHAR(25), IN Token VARCHAR(250) ) AS $$ BEGIN INSERT INTO TokenBasedCredentials (UserId, Token) VALUES (UserId, Token); END $$ LANGUAGE plpgsql;
--Modify EVENT_PAYLOAD Column to BLOB ALTER TABLE STUDENT_PROFILE_REQUEST_EVENT ADD ( EVENT_PAYLOAD_BLOB BLOB ) LOB (EVENT_PAYLOAD_BLOB) STORE AS EVENT_PAYLOAD_BLOB (TABLESPACE API_STUDPROFRQST_BLOB_DATA); UPDATE STUDENT_PROFILE_REQUEST_EVENT SET EVENT_PAYLOAD_BLOB = UTL_RAW.CAST_TO_RAW(EVENT_PAYLOAD); ALTER TABLE STUDENT_PROFILE_REQUEST_EVENT DROP COLUMN EVENT_PAYLOAD; ALTER TABLE STUDENT_PROFILE_REQUEST_EVENT RENAME COLUMN EVENT_PAYLOAD_BLOB TO EVENT_PAYLOAD; ALTER TABLE STUDENT_PROFILE_REQUEST_EVENT MODIFY ( EVENT_PAYLOAD NOT NULL );
CREATE TABLE IF NOT EXISTS release ( name varchar(128), release_id varchar(256), version varchar(32), metadata text, project varchar(32), PRIMARY KEY(name, version, project) ); CREATE TABLE IF NOT EXISTS package ( project varchar(32), release_id varchar(256), uri varchar(256), PRIMARY KEY(release_id, uri, project) ); CREATE TABLE IF NOT EXISTS acl ( project varchar(32), group_name varchar(256), permission int, PRIMARY KEY(project, group_name) ); CREATE TABLE schema_migrations ( version bigint NOT NULL, dirty boolean NOT NULL ); ALTER TABLE schema_migrations OWNER TO postgres; INSERT INTO schema_migrations VALUES (1, false); INSERT INTO release(name, release_id, version, metadata, project) VALUES ( 'test', 'project/test-v1.0', '1.0', '{"name": "test", "version": "1.0", "project": "project", "description": "yo"}', 'project' );
CREATE TABLE IF NOT EXISTS `smi_certs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `email` varchar(255) NOT NULL, `cert` text NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB ; DROP TABLE IF EXISTS `smi_pkcs12`; CREATE TABLE IF NOT EXISTS `smi_pkcs12` ( `account_id` int(11) NOT NULL, `cert` blob, `always_sign` tinyint(1) NOT NULL, PRIMARY KEY (`account_id`) ) ENGINE=InnoDB;
CREATE TABLE mqtt_device ( id bigint NOT NULL, creation_time timestamp without time zone NOT NULL, modification_time timestamp without time zone NOT NULL, version bigint, device_identification character varying(40) NOT NULL, host character varying(255), port integer, topics character varying(255), qos character varying(255) ); ALTER TABLE public.mqtt_device OWNER TO osp_admin; CREATE SEQUENCE mqtt_device_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.mqtt_device_id_seq OWNER TO osp_admin; ALTER SEQUENCE mqtt_device_id_seq OWNED BY mqtt_device.id; ALTER TABLE ONLY mqtt_device ALTER COLUMN id SET DEFAULT nextval('mqtt_device_id_seq'::regclass); ALTER TABLE ONLY mqtt_device ADD CONSTRAINT mqtt_device_device_identification_key UNIQUE (device_identification); ALTER TABLE ONLY mqtt_device ADD CONSTRAINT mqtt_device_pkey PRIMARY KEY (id);
<filename>org.conqat.engine.sourcecode/test-data/org.conqat.lib.parser.partitioner/json_ext.sql create OR replace package json_ext as /* Copyright (c) 2009 <NAME> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* This package contains extra methods to lookup types and an easy way of adding date values in json - without changing the structure */ function parsePath(json_path varchar2) return json_list; --JSON Path getters function get_json_value(obj json, v_path varchar2) return json_value; function get_string(obj json, path varchar2) return varchar2; function get_number(obj json, path varchar2) return number; function get_json(obj json, path varchar2) return json; function get_json_list(obj json, path varchar2) return json_list; function get_bool(obj json, path varchar2) return boolean; --JSON Path putters procedure put(obj in out nocopy json, path varchar2, elem varchar2); procedure put(obj in out nocopy json, path varchar2, elem number); procedure put(obj in out nocopy json, path varchar2, elem json); procedure put(obj in out nocopy json, path varchar2, elem json_list); procedure put(obj in out nocopy json, path varchar2, elem boolean); procedure put(obj in out nocopy json, path varchar2, elem json_value); procedure remove(obj in out nocopy json, path varchar2); --Pretty print with JSON Path - obsolete in 0.9.4 - obj.path(v_path).(to_char,print,htp) function pp(obj json, v_path varchar2) return varchar2; procedure pp(obj json, v_path varchar2); --using dbms_output.put_line procedure pp_htp(obj json, v_path varchar2); --using htp.print --extra function checks if number has no fraction function is_integer(v json_value) return boolean; format_string varchar2(30 char) := 'yyyy-mm-dd hh24:mi:ss'; --extension enables json to store dates without comprimising the implementation function to_json_value(d date) return json_value; --notice that a date type in json is also a varchar2 function is_date(v json_value) return boolean; --convertion is needed to extract dates --(json_ext.to_date will not work along with the normal to_date function - any fix will be appreciated) function to_date2(v json_value) return date; --JSON Path with date function get_date(obj json, path varchar2) return date; procedure put(obj in out nocopy json, path varchar2, elem date); --experimental support of binary data with base64 function base64(binarydata blob) return json_list; function base64(l json_list) return blob; end json_ext; / create or replace package body json_ext as scanner_exception exception; pragma exception_init(scanner_exception, -20100); parser_exception exception; pragma exception_init(parser_exception, -20101); jext_exception exception; pragma exception_init(jext_exception, -20110); --extra function checks if number has no fraction function is_integer(v json_value) return boolean as myint number(38); --the oracle way to specify an integer begin if(v.is_number) then myint := v.get_number; return (myint = v.get_number); --no rounding errors? else return false; end if; end; --extension enables json to store dates without comprimising the implementation function to_json_value(d date) return json_value as begin return json_value(to_char(d, format_string)); end; --notice that a date type in json is also a varchar2 function is_date(v json_value) return boolean as temp date; begin temp := json_ext.to_date2(v); return true; exception when others then return false; end; --convertion is needed to extract dates function to_date2(v json_value) return date as begin if(v.is_string) then return to_date(v.get_string, format_string); else raise_application_error(-20110, 'Anydata did not contain a date-value'); end if; exception when others then raise_application_error(-20110, 'Anydata did not contain a date on the format: '||format_string); end; --Json Path parser function parsePath(json_path varchar2) return json_list as build_path varchar2(32767) := '['; buf varchar2(4); endstring varchar2(1); indx number := 1; procedure next_char as begin if(indx <= length(json_path)) then buf := substr(json_path, indx, 1); indx := indx + 1; else buf := null; end if; end; --skip ws procedure skipws as begin while(buf in (chr(9),chr(10),chr(13),' ')) loop next_char; end loop; end; begin next_char(); while(buf is not null) loop if(buf = '.') then next_char(); if(buf is null) then raise_application_error(-20110, 'JSON Path parse error: . is not a valid json_path end'); end if; if(not regexp_like(buf, '^[[:alnum:]\_ ]+', 'c') ) then raise_application_error(-20110, 'JSON Path parse error: alpha-numeric character or space expected at position '||indx); end if; if(build_path != '[') then build_path := build_path || ','; end if; build_path := build_path || '"'; while(regexp_like(buf, '^[[:alnum:]\_ ]+', 'c') ) loop build_path := build_path || buf; next_char(); end loop; build_path := build_path || '"'; elsif(buf = '[') then next_char(); skipws(); if(buf is null) then raise_application_error(-20110, 'JSON Path parse error: [ is not a valid json_path end'); end if; if(buf in ('1','2','3','4','5','6','7','8','9')) then if(build_path != '[') then build_path := build_path || ','; end if; while(buf in ('0','1','2','3','4','5','6','7','8','9')) loop build_path := build_path || buf; next_char(); end loop; elsif (regexp_like(buf, '^(\"|\'')', 'c')) then endstring := buf; if(build_path != '[') then build_path := build_path || ','; end if; build_path := build_path || '"'; next_char(); if(buf is null) then raise_application_error(-20110, 'JSON Path parse error: premature json_path end'); end if; while(buf != endstring) loop build_path := build_path || buf; next_char(); if(buf is null) then raise_application_error(-20110, 'JSON Path parse error: premature json_path end'); end if; if(buf = '\') then next_char(); build_path := build_path || '\' || buf; next_char(); end if; end loop; build_path := build_path || '"'; next_char(); else raise_application_error(-20110, 'JSON Path parse error: expected a string or an positive integer at '||indx); end if; skipws(); if(buf is null) then raise_application_error(-20110, 'JSON Path parse error: premature json_path end'); end if; if(buf != ']') then raise_application_error(-20110, 'JSON Path parse error: no array ending found. found: '|| buf); end if; next_char(); skipws(); elsif(build_path = '[') then if(not regexp_like(buf, '^[[:alnum:]\_ ]+', 'c') ) then raise_application_error(-20110, 'JSON Path parse error: alpha-numeric character or space expected at position '||indx); end if; build_path := build_path || '"'; while(regexp_like(buf, '^[[:alnum:]\_ ]+', 'c') ) loop build_path := build_path || buf; next_char(); end loop; build_path := build_path || '"'; else raise_application_error(-20110, 'JSON Path parse error: expected . or [ found '|| buf || ' at position '|| indx); end if; end loop; build_path := build_path || ']'; build_path := replace(replace(replace(replace(replace(build_path, chr(9), '\t'), chr(10), '\n'), chr(13), '\f'), chr(8), '\b'), chr(14), '\r'); return json_list(build_path); end parsePath; --JSON Path getters function get_json_value(obj json, v_path varchar2) return json_value as path json_list; ret json_value; o json; l json_list; begin path := parsePath(v_path); ret := obj.to_json_value; if(path.count = 0) then return ret; end if; for i in 1 .. path.count loop if(path.get_elem(i).is_string()) then --string fetch only on json o := json(ret); ret := o.get(path.get_elem(i).get_string()); else --number fetch on json and json_list if(ret.is_array()) then l := json_list(ret); ret := l.get_elem(path.get_elem(i).get_number()); else o := json(ret); l := o.get_values(); ret := l.get_elem(path.get_elem(i).get_number()); end if; end if; end loop; return ret; exception when scanner_exception then raise; when parser_exception then raise; when jext_exception then raise; when others then return null; end get_json_value; --JSON Path getters function get_string(obj json, path varchar2) return varchar2 as temp json_value; begin temp := get_json_value(obj, path); if(temp is null or not temp.is_string) then return null; else return temp.get_string; end if; end; function get_number(obj json, path varchar2) return number as temp json_value; begin temp := get_json_value(obj, path); if(temp is null or not temp.is_number) then return null; else return temp.get_number; end if; end; function get_json(obj json, path varchar2) return json as temp json_value; begin temp := get_json_value(obj, path); if(temp is null or not temp.is_object) then return null; else return json(temp); end if; end; function get_json_list(obj json, path varchar2) return json_list as temp json_value; begin temp := get_json_value(obj, path); if(temp is null or not temp.is_array) then return null; else return json_list(temp); end if; end; function get_bool(obj json, path varchar2) return boolean as temp json_value; begin temp := get_json_value(obj, path); if(temp is null or not temp.is_bool) then return null; else return temp.get_bool; end if; end; function get_date(obj json, path varchar2) return date as temp json_value; begin temp := get_json_value(obj, path); if(temp is null or not is_date(temp)) then return null; else return json_ext.to_date2(temp); end if; end; /* JSON Path putter internal function */ procedure put_internal(obj in out nocopy json, v_path varchar2, elem json_value) as val json_value := elem; path json_list; backreference json_list := json_list(); keyval json_value; keynum number; keystring varchar2(4000); temp json_value := obj.to_json_value; obj_temp json; list_temp json_list; inserter json_value; begin path := json_ext.parsePath(v_path); if(path.count = 0) then raise_application_error(-20110, 'JSON_EXT put error: cannot put with empty string.'); end if; --build backreference for i in 1 .. path.count loop --backreference.print(false); keyval := path.get_elem(i); if (keyval.is_number()) then --nummer index keynum := keyval.get_number(); if((not temp.is_object()) and (not temp.is_array())) then if(val is null) then return; end if; backreference.remove_last; temp := json_list().to_json_value(); backreference.add_elem(temp); end if; if(temp.is_object()) then obj_temp := json(temp); if(obj_temp.count < keynum) then if(val is null) then return; end if; raise_application_error(-20110, 'JSON_EXT put error: access object with to few members.'); end if; temp := obj_temp.get(keynum); else list_temp := json_list(temp); if(list_temp.count < keynum) then if(val is null) then return; end if; --raise error or quit if val is null for i in list_temp.count+1 .. keynum loop list_temp.add_elem(json_value.makenull); end loop; backreference.remove_last; backreference.add_elem(list_temp); end if; temp := list_temp.get_elem(keynum); end if; else --streng index keystring := keyval.get_string(); if(not temp.is_object()) then --backreference.print; if(val is null) then return; end if; backreference.remove_last; temp := json().to_json_value(); backreference.add_elem(temp); --raise_application_error(-20110, 'JSON_ext put error: trying to access a non object with a string.'); end if; obj_temp := json(temp); temp := obj_temp.get(keystring); end if; if(temp is null) then if(val is null) then return; end if; --what to expect? keyval := path.get_elem(i+1); if(keyval is not null and keyval.is_number()) then temp := json_list().to_json_value; else temp := json().to_json_value; end if; end if; backreference.add_elem(temp); end loop; -- backreference.print(false); -- path.print(false); --use backreference and path together inserter := val; for i in reverse 1 .. backreference.count loop -- inserter.print(false); if( i = 1 ) then keyval := path.get_elem(1); if(keyval.is_string()) then keystring := keyval.get_string(); else keynum := keyval.get_number(); declare t1 json_value := obj.get(keynum); begin keystring := t1.mapname; end; end if; if(inserter is null) then obj.remove(keystring); else obj.put(keystring, inserter); end if; else temp := backreference.get_elem(i-1); if(temp.is_object()) then keyval := path.get_elem(i); obj_temp := json(temp); if(keyval.is_string()) then keystring := keyval.get_string(); else keynum := keyval.get_number(); declare t1 json_value := obj_temp.get(keynum); begin keystring := t1.mapname; end; end if; if(inserter is null) then obj_temp.remove(keystring); if(obj_temp.count > 0) then inserter := obj_temp.to_json_value; end if; else obj_temp.put(keystring, inserter); inserter := obj_temp.to_json_value; end if; else --array only number keynum := path.get_elem(i).get_number(); list_temp := json_list(temp); list_temp.remove_elem(keynum); if(not inserter is null) then list_temp.add_elem(inserter, keynum); inserter := list_temp.to_json_value; else if(list_temp.count > 0) then inserter := list_temp.to_json_value; end if; end if; end if; end if; end loop; end put_internal; /* JSON Path putters */ procedure put(obj in out nocopy json, path varchar2, elem varchar2) as begin put_internal(obj, path, json_value(elem)); end; procedure put(obj in out nocopy json, path varchar2, elem number) as begin if(elem is null) then raise_application_error(-20110, 'Cannot put null-value'); end if; put_internal(obj, path, json_value(elem)); end; procedure put(obj in out nocopy json, path varchar2, elem json) as begin if(elem is null) then raise_application_error(-20110, 'Cannot put null-value'); end if; put_internal(obj, path, elem.to_json_value); end; procedure put(obj in out nocopy json, path varchar2, elem json_list) as begin if(elem is null) then raise_application_error(-20110, 'Cannot put null-value'); end if; put_internal(obj, path, elem.to_json_value); end; procedure put(obj in out nocopy json, path varchar2, elem boolean) as begin if(elem is null) then raise_application_error(-20110, 'Cannot put null-value'); end if; put_internal(obj, path, json_value(elem)); end; procedure put(obj in out nocopy json, path varchar2, elem json_value) as begin if(elem is null) then raise_application_error(-20110, 'Cannot put null-value'); end if; put_internal(obj, path, elem); end; procedure put(obj in out nocopy json, path varchar2, elem date) as begin if(elem is null) then raise_application_error(-20110, 'Cannot put null-value'); end if; put_internal(obj, path, json_ext.to_json_value(elem)); end; procedure remove(obj in out nocopy json, path varchar2) as begin json_ext.put_internal(obj,path,null); -- if(json_ext.get_json_value(obj,path) is not null) then -- end if; end remove; --Pretty print with JSON Path function pp(obj json, v_path varchar2) return varchar2 as json_part json_value; begin json_part := json_ext.get_json_value(obj, v_path); if(json_part is null) then return ''; else return json_printer.pretty_print_any(json_part); --escapes a possible internal string end if; end pp; procedure pp(obj json, v_path varchar2) as --using dbms_output.put_line begin dbms_output.put_line(pp(obj, v_path)); end pp; -- spaces = false! procedure pp_htp(obj json, v_path varchar2) as --using htp.print json_part json_value; begin json_part := json_ext.get_json_value(obj, v_path); if(json_part is null) then htp.print; else htp.print(json_printer.pretty_print_any(json_part, false)); end if; end pp_htp; function base64(binarydata blob) return json_list as obj json_list := json_list(); c clob := empty_clob(); benc blob; v_blob_offset NUMBER := 1; v_clob_offset NUMBER := 1; v_lang_context NUMBER := DBMS_LOB.DEFAULT_LANG_CTX; v_warning NUMBER; v_amount PLS_INTEGER; -- temp varchar2(32767); FUNCTION encodeBlob2Base64(pBlobIn IN BLOB) RETURN BLOB IS vAmount NUMBER := 45; vBlobEnc BLOB := empty_blob(); vBlobEncLen NUMBER := 0; vBlobInLen NUMBER := 0; vBuffer RAW(45); vOffset NUMBER := 1; BEGIN dbms_output.put_line('Start base64 encoding.'); vBlobInLen := dbms_lob.getlength(pBlobIn); dbms_output.put_line('<BlobInLength>' || vBlobInLen); dbms_lob.createtemporary(vBlobEnc, TRUE); LOOP IF vOffset >= vBlobInLen THEN EXIT; END IF; dbms_lob.read(pBlobIn, vAmount, vOffset, vBuffer); BEGIN dbms_lob.append(vBlobEnc, utl_encode.base64_encode(vBuffer)); EXCEPTION WHEN OTHERS THEN dbms_output.put_line('<vAmount>' || vAmount || '<vOffset>' || vOffset || '<vBuffer>' || vBuffer); dbms_output.put_line('ERROR IN append: ' || SQLERRM); RAISE; END; vOffset := vOffset + vAmount; END LOOP; vBlobEncLen := dbms_lob.getlength(vBlobEnc); dbms_output.put_line('<BlobEncLength>' || vBlobEncLen); dbms_output.put_line('Finshed base64 encoding.'); RETURN vBlobEnc; END encodeBlob2Base64; begin benc := encodeBlob2Base64(binarydata); dbms_lob.createtemporary(c, TRUE); v_amount := DBMS_LOB.GETLENGTH(benc); DBMS_LOB.CONVERTTOCLOB(c, benc, v_amount, v_clob_offset, v_blob_offset, 1, v_lang_context, v_warning); v_amount := DBMS_LOB.GETLENGTH(c); v_clob_offset := 1; --dbms_output.put_line('V amount: '||v_amount); while(v_clob_offset < v_amount) loop --dbms_output.put_line(v_offset); --temp := ; --dbms_output.put_line('size: '||length(temp)); obj.add_elem(dbms_lob.SUBSTR(c, 4000,v_clob_offset)); v_clob_offset := v_clob_offset + 4000; end loop; dbms_lob.freetemporary(benc); dbms_lob.freetemporary(c); --dbms_output.put_line(obj.count); --dbms_output.put_line(obj.get_last().to_char); return obj; end base64; function base64(l json_list) return blob as c clob := empty_clob(); b blob := empty_blob(); bret blob; v_blob_offset NUMBER := 1; v_clob_offset NUMBER := 1; v_lang_context NUMBER := DBMS_LOB.DEFAULT_LANG_CTX; v_warning NUMBER; v_amount PLS_INTEGER; FUNCTION decodeBase642Blob(pBlobIn IN BLOB) RETURN BLOB IS vAmount NUMBER := 256;--32; vBlobDec BLOB := empty_blob(); vBlobDecLen NUMBER := 0; vBlobInLen NUMBER := 0; vBuffer RAW(256);--32); vOffset NUMBER := 1; BEGIN dbms_output.put_line('Start base64 decoding.'); vBlobInLen := dbms_lob.getlength(pBlobIn); dbms_output.put_line('<BlobInLength>' || vBlobInLen); dbms_lob.createtemporary(vBlobDec, TRUE); LOOP IF vOffset >= vBlobInLen THEN EXIT; END IF; dbms_lob.read(pBlobIn, vAmount, vOffset, vBuffer); BEGIN dbms_lob.append(vBlobDec, utl_encode.base64_decode(vBuffer)); EXCEPTION WHEN OTHERS THEN dbms_output.put_line('<vAmount>' || vAmount || '<vOffset>' || vOffset || '<vBuffer>' || vBuffer); dbms_output.put_line('ERROR IN append: ' || SQLERRM); RAISE; END; vOffset := vOffset + vAmount; END LOOP; vBlobDecLen := dbms_lob.getlength(vBlobDec); dbms_output.put_line('<BlobDecLength>' || vBlobDecLen); dbms_output.put_line('Finshed base64 decoding.'); RETURN vBlobDec; END decodeBase642Blob; begin dbms_lob.createtemporary(c, TRUE); for i in 1 .. l.count loop dbms_lob.append(c, l.get_elem(i).to_char(false)); end loop; v_amount := DBMS_LOB.GETLENGTH(c); -- dbms_output.put_line('L C'||v_amount); dbms_lob.createtemporary(b, TRUE); DBMS_LOB.CONVERTTOBLOB(b, c, v_amount, v_clob_offset, v_blob_offset, 1, v_lang_context, v_warning); dbms_lob.freetemporary(c); v_amount := DBMS_LOB.GETLENGTH(b); -- dbms_output.put_line('L B'||v_amount); bret := decodeBase642Blob(b); dbms_lob.freetemporary(b); return bret; end base64; end json_ext; /
<reponame>pdv-ru/ClickHouse<filename>tests/queries/0_stateless/01659_array_aggregation_ubsan.sql SELECT arraySum([-9000000000000000000, -9000000000000000000]);
<filename>src/test/tinc/tincrepo/mpp/gpdb/tests/package/language/plr/query02.sql -- start_ignore drop table emp cascade; -- end_ignore CREATE TABLE emp (name text, age int, salary numeric(10,2)); INSERT INTO emp VALUES ('Joe', 41, 250000.00); INSERT INTO emp VALUES ('Jim', 25, 120000.00); INSERT INTO emp VALUES ('Jon', 35, 50000.00); CREATE OR REPLACE FUNCTION overpaid (emp) RETURNS bool AS ' if (200000 < arg1$salary) { return(TRUE) } if (arg1$age < 30 && 100000 < arg1$salary) { return(TRUE) } return(FALSE) ' LANGUAGE 'plr'; SELECT name, overpaid(emp) FROM emp; CREATE OR REPLACE FUNCTION get_emps() RETURNS SETOF emp AS ' names <- c("Joe","Jim","Jon") ages <- c(41,25,35) salaries <- c(250000,120000,50000) df <- data.frame(name = names, age = ages, salary = salaries) return(df) ' LANGUAGE 'plr'; select * from get_emps();
<filename>_database/admin_menu.sql /* Navicat MySQL Data Transfer Source Server : MySQL55 Source Server Version : 50523 Source Host : localhost:3399 Source Database : yii2-brainblog Target Server Type : MYSQL Target Server Version : 50523 File Encoding : 65001 Date: 2017-12-13 16:55:09 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for admin_menu -- ---------------------------- DROP TABLE IF EXISTS `admin_menu`; CREATE TABLE `admin_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(128) DEFAULT NULL, `parent` int(11) DEFAULT NULL, `route` varchar(256) DEFAULT NULL, `order` int(11) DEFAULT NULL, `data` blob, PRIMARY KEY (`id`), KEY `parent` (`parent`), CONSTRAINT `admin_menu_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `admin_menu` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of admin_menu -- ---------------------------- INSERT INTO `admin_menu` VALUES ('1', '系统信息', null, null, '1', null); INSERT INTO `admin_menu` VALUES ('2', '基本信息', '1', '@app-backend/site/index', '1', null); INSERT INTO `admin_menu` VALUES ('3', '前台信息', '1', '@app-backend/site/frontend-info', '2', null); INSERT INTO `admin_menu` VALUES ('4', '后台信息', '1', '@app-backend/site/backend-info', '3', null); INSERT INTO `admin_menu` VALUES ('5', '系统操作记录', null, '@app-backend/admin/log/index', '5', null); INSERT INTO `admin_menu` VALUES ('6', '缓存管理', null, '@app-backend/cache/index', '6', null); INSERT INTO `admin_menu` VALUES ('10', '网站设置', null, '@app-backend/setting/default/update&category=site', '10', 0x7B2269636F6E223A202266612066612D636F67222C202276697369626C65223A20747275657D); INSERT INTO `admin_menu` VALUES ('20', '主题管理', null, '@app-backend/thememanager/default/update', '20', null); INSERT INTO `admin_menu` VALUES ('30', '权限控制', null, null, '30', 0x7B2269636F6E223A202266612066612D6C6F636B222C202276697369626C65223A20747275657D); INSERT INTO `admin_menu` VALUES ('31', '路由', '30', '@app-backend/admin/route/index', '1', null); INSERT INTO `admin_menu` VALUES ('32', '权限', '30', '@app-backend/admin/permission/index', '2', null); INSERT INTO `admin_menu` VALUES ('33', '角色', '30', '@app-backend/admin/role/index', '3', null); INSERT INTO `admin_menu` VALUES ('34', '规则', '30', '@app-backend/admin/rule/index', '4', null); INSERT INTO `admin_menu` VALUES ('35', '分配', '30', '@app-backend/admin/assignment/index', '5', null); INSERT INTO `admin_menu` VALUES ('40', '用户管理', null, '@app-backend/user/user/index', '40', 0x7B2269636F6E223A202266612066612D75736572222C202276697369626C65223A20747275657D); INSERT INTO `admin_menu` VALUES ('77', '后台菜单', null, '@app-backend/admin/menu/index', '77', null); INSERT INTO `admin_menu` VALUES ('88', 'Gii', null, '@app-backend/gii/default/index', '88', 0x7B2269636F6E223A202266612066612D66696C652D636F64652D6F222C202276697369626C65223A20747275657D); INSERT INTO `admin_menu` VALUES ('99', 'Debug', null, '@app-backend/debug/default/index', '99', 0x7B2269636F6E223A202266612066612D64617368626F617264222C202276697369626C65223A20747275657D);
create table aoo(a int, b bigint); create table boo(c char(20)); insert into aoo values(1,1), (2,2), (3,3); insert into boo values('a'), ('b'), ('c'); delete a, b from aoo a, boo b where a.a >1 and b.c='a'; select * from aoo order by a; select * from boo order by c; drop table aoo, boo;
DECLARE @MyCursor CURSOR; DECLARE @tableName varchar(max); BEGIN SET @MyCursor = CURSOR FOR select TABLE_Name from INFORMATION_SCHEMA.TABLES where TABLE_NAME not in ('__MigrationHistory', '__EFMigrationsHistory'); -- Drop constraints OPEN @MyCursor FETCH NEXT FROM @MyCursor INTO @tableName WHILE @@FETCH_STATUS = 0 BEGIN EXEC ('ALTER TABLE ' + @tableName + ' NOCHECK CONSTRAINT ALL'); FETCH NEXT FROM @MyCursor INTO @tableName END; CLOSE @MyCursor ; -- empty tables OPEN @MyCursor FETCH NEXT FROM @MyCursor INTO @tableName WHILE @@FETCH_STATUS = 0 BEGIN EXEC ('DELETE from ' + @tableName); FETCH NEXT FROM @MyCursor INTO @tableName END; CLOSE @MyCursor ; -- Activate constraints OPEN @MyCursor FETCH NEXT FROM @MyCursor INTO @tableName WHILE @@FETCH_STATUS = 0 BEGIN EXEC ('ALTER TABLE ' + @tableName + ' CHECK CONSTRAINT ALL'); FETCH NEXT FROM @MyCursor INTO @tableName END; CLOSE @MyCursor ; DEALLOCATE @MyCursor; END;
-- {% func Test() %} select 1; -- {% endfunc %}
<reponame>SumOfUs/api-services SELECT userfield.* FROM ak_sumofus.core_userfield userfield JOIN ak_sumofus.core_user user ON user.id = userfield.parent_id WHERE email=?
<reponame>dyoder838/Eat-Da-Burger INSERT INTO burgers (name) VALUES ('Jumbo'); INSERT INTO burgers (name) VALUES ('Big Fat Boss Burger'); INSERT INTO burgers (name, eaten) VALUES ('Messy Burger', true); INSERT INTO burgers (name, eaten) VALUES ('Tiny Burger', true); INSERT INTO burgers (name, eaten) VALUES ('Colossal Burger', true); INSERT INTO burgers (name) VALUES ('Burger Burger');
CREATE TABLE IF NOT EXISTS supplementary_risk ( supplementary_risk_id serial primary key, supplementary_risk_uuid uuid not null unique, risk_source varchar(200) not null, source_id varchar(200) not null, crn varchar(20) not null, risk_comments text not null, created_by text not null, created_by_user_type text not null, created_date timestamp not null, CONSTRAINT unique_source UNIQUE(risk_source, source_id) ); CREATE INDEX idx_crn ON supplementary_risk(crn); CREATE INDEX idx_uuid ON supplementary_risk(supplementary_risk_uuid);
<filename>src/main/resources/db/migration/V1.0__users.sql<gh_stars>0 -- https://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/#user-schema create table `users` ( username varchar(50) not null primary key, password varchar(60) not null, email varchar(255) not null, first_name varchar(120) not null, last_name varchar(120) not null, enabled boolean not null ); create table `authorities` ( username varchar(50) not null, authority varchar(50) not null, constraint fk_authorities_users foreign key(username) references users(username) ); create unique index ix_auth_username on authorities (username,authority); create table `user_groups` ( id bigint auto_increment primary key, group_name varchar(50) not null, created_by varchar(50) not null, created_datetime timestamp(2) not null, last_modified_by varchar(50) not null, last_modified_datetime timestamp(2) not null, version smallint not null ); create table `user_group_authorities` ( group_id bigint not null, authority varchar(50) not null, constraint fk_group_authorities_group foreign key(group_id) references user_groups(id) ); create table `user_group_members` ( id bigint auto_increment primary key, username varchar(50) not null, group_id bigint not null, created_by varchar(50) not null, created_datetime timestamp(2) not null, last_modified_by varchar(50) not null, last_modified_datetime timestamp(2) not null, version smallint not null, constraint fk_group_members_group foreign key(group_id) references user_groups(id) );
<gh_stars>0 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; DROP TABLE IF EXISTS `contacts`; CREATE TABLE `contacts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(80) COLLATE utf8_unicode_ci NOT NULL, `phone` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `description` text COLLATE utf8_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Dec 12, 2016 at 07:48 PM -- Server version: 10.1.19-MariaDB -- PHP Version: 5.6.28 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `lovefood` -- -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `id` int(11) NOT NULL, `recipes_id` int(11) DEFAULT NULL, `comment` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `date_of_comment` datetime NOT NULL, `likes` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `comments` -- INSERT INTO `comments` (`id`, `recipes_id`, `comment`, `date_of_comment`, `likes`) VALUES (1, 1, 'O retata minunata', '2016-12-03 15:20:11', 6), (2, 1, 'Cea mai buna reteta! Minunat', '2016-12-03 11:15:21', 190), (3, 2, 'Declicious', '2016-12-05 08:00:00', 12), (9, 5, 'E fff foarte bun', '2016-12-12 17:58:18', 0), (10, 1, 'buna ideea cu cutia, chiar o sa o aplic saptamana asta, am in plan niste aripioare pane. imi fac planul cu prajelile pe anul asta', '2016-12-12 17:58:51', 0), (11, 1, 'snitele sunt preferatele mele,am sa incerc sa fac ,sa vad dak ii plac viitorului meu sot.', '2016-12-12 17:58:59', 0), (12, 1, 'ocmai acum am facut si eu dupa reteta asta, au iesit f bune vesel mai facem niste cartofi copti dupa care o bere merge perfect.', '2016-12-12 17:59:10', 0), (13, 2, 'mmmm … arata bine si cred ca este bun . Si eu imi fac singur burgerii acasa ( fetita mea nu stie de McDonald sau altceva de genul acesta ) . Cu siguranta , cu proxima ocazie , o sa incerc reteta ta . Multumim Adi si sa traiesti intru multi ani , impreuna ', '2016-12-12 19:45:55', 0), (14, 2, 'hârtia de copt e pentru burgeri. nu trebuie să fie unsă cu nimic.', '2016-12-12 19:46:48', 0), (15, 2, 'dacă te gândești la pâinea de sub chiftea, am puso pe hârtia de copt de pe care am luat chiftelele.', '2016-12-12 19:46:55', 0); -- -------------------------------------------------------- -- -- Table structure for table `ingredients` -- CREATE TABLE `ingredients` ( `id` int(11) NOT NULL, `recipes_id` int(11) DEFAULT NULL, `ingredient` varchar(255) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `ingredients` -- INSERT INTO `ingredients` (`id`, `recipes_id`, `ingredient`) VALUES (1, 1, 'o lingurita de unt'), (3, 1, '1 kg piept de pui dezosat (4 bucati piept de pui)'), (4, 1, '4 oua'), (5, 1, '3 linguri faina'), (6, 1, '150 gr pesmet cu verdeturi (sau pesmet simplu)'), (7, 1, 'piper, sare'), (8, 1, 'mult ulei pentru prajit'), (9, 5, '1 cana orez'), (10, 5, '1 ardei gras sau capia sau gogosar'), (11, 5, '1 ceapa mica'), (12, 5, '2 morcovi'), (13, 5, 'tulpini de telina'), (14, 5, 'ulei de masline'), (15, 5, 'piper si sare'), (16, 5, 'sos de soia'); -- -------------------------------------------------------- -- -- Table structure for table `recipes` -- CREATE TABLE `recipes` ( `id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `method` longtext COLLATE utf8_unicode_ci NOT NULL, `pieces` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `rating` double NOT NULL, `likes` int(11) NOT NULL, `preparation_time` int(11) NOT NULL, `cook_time` int(11) NOT NULL, `rates` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `recipes` -- INSERT INTO `recipes` (`id`, `name`, `method`, `pieces`, `rating`, `likes`, `preparation_time`, `cook_time`, `rates`) VALUES (1, 'Snitel de pui', 'Pieptul se taie felii, cate 3-4 felii din fiecare bucata.\nFiecare felie se bate pe ambele parti pana devine subtirel. Se pipereaza feliile.\n* daca nu folositi pesmet cu verdeturi care e deja sarat puneti si putina sare pe feliile de carne\nIntr-o tigaie se incinge bine ulei cam de 2 degete.\nIntr-un bol se bat ouale cu putina sare si apoi se incorporeaza faina. Pesmetul se pune pe o farfurie lata.\nFiecare felie de carne se scufunda in vasul cu ou , apoi se trece prin pesmet pe ambele parti.\nSe pajesc snitelele cam 3 minute pe o parte si apoi inca 3 pe cealalta. Se scot pe servetele de hartie sa se absoarba grasimea.', '6', 4.5, 43, 20, 45, 0), (2, 'Burgeri', 'Intr-o cratita, pe foc, se pune la calit in putin unt ceapa alba cu o foaie de dafin si piper si se rumeneste amestecul. Apoi, se stinge totul cu putin Wiskey, daca-ti place adaosul de aroma. Se lasa la racit si se scoate dafinul si se amesteca cu carnea tocata. Se framanta bine sa se lege carnea si in felul acesta nu se mai desprinde pe gratar. Apoi, modelezi bile de carne egale pe carne le turtesti la o dimensiune mai mare decat chifla cu 2 cm si o grosime de un deget jumatate, minim. Se lasa carnea la rece.\nDupa aceea, se taie ceapa rosie, rosia si castravetele murat in otet. Se pregateste mustarul Dijon si maioneza de casa cu putina ceapa verde. Se taie doua felii de cheddar afumat si maturat si se spala si taie salata.\nSe scoate carnea din frigider si se incinge bine gratarul. Se unge carnea cu putin ulei, se da cu sare si piper si se pune pe gratar. Dupa un minut se intoarce burgerul si se pune putin mustar Dijon si tabasco peste. Carnea trebuie gatita mediu.\nSe pune si baconul pe gratar si atunci cand carnea este aproape gata si baconul destul de crocant, se face un turn impreuna cu cheddar-ul. Se pune si chifla taiata in doua sa se rumeneasca si apoi se monteaza burger-ul dupa bunul plac.\n\n\nCiteste pe Foodstory: http://foodstory.stirileprotv.ro/evenimente/chef-foa-te-invata-sa-faci-un-burger-delicios#ixzz4SdyZ4wSb \nFollow us: foodstory.ro on Facebook', '2', 3, 12, 20, 10, 0), (5, 'Orez chinezesc cu legume si sos de soia', 'Orezul (preferabil orez cu bob lung) se spala bine si se lasa aproximativ o ora in apa rece. Se adauga la o cana de orez o cana de apa si 3 linguri de ulei de masline. Orezul se fierbe intr-o oala care nu se lipeste pe fund urmand 3 pasi simpli: initial se fierbe la foc mare fara capac, cand incepe sa clocoteasca se pune capacul intr-o parte in asa fel incat sa iasa aburul si se da focul mediu. Nu uitati sa amestecati din cand in cand. Cand incep sa se faca cratere in orez se da focul mic si se asaza bine capacul. Se mai lasa pe foc pana cand fierbe. Daca spalati bine orezul si puneti si ulei de masline la fiert nu se vor mai lipi boabele.\r\n\r\n Intre timp, se spala legumele si se curata. Ardeii se taie in patratele, ceapa in patru, apoi fiecare sfert se taie in trei si foile de ceapa se despart una de cealalta. Morcovii se taie in rondele oblice, subtiri. Dupa gust se iau tulpinite de telina si se taie rondele. \r\n\r\n Intr-o tigaie suficient de mare (preferabil un wok) se incing 3-4 linguri de ulei si se pun legumele la foc iute. Se amesteca in continuu in asa fel incat legumele sa nu se inmoaie sau sa se arda. Cand ceapa isi pierde iuteala si morcovii sunt aurii se adauga orezul fiert. Se lasa pe foc in continuare 3-4 minute. Este foarte important ca in permanenta sa se amestece, ca sa nu se lipeasca. Se adauga sos de soia, piper si daca mai este nevoie sare. \r\n\r\n Se poate consuma ca atare sau ca garnitura.', '3', 4.2, 37, 40, 30, 0); -- -------------------------------------------------------- -- -- Table structure for table `recipe_pictures` -- CREATE TABLE `recipe_pictures` ( `id` int(11) NOT NULL, `recipes_id` int(11) DEFAULT NULL, `file_location` varchar(255) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `recipe_pictures` -- INSERT INTO `recipe_pictures` (`id`, `recipes_id`, `file_location`) VALUES (7, 2, 'df35dbe690794ad9c9be799660116206.jpeg'), (8, 2, '01dec97c06d6bc92b83da5b331b6eb5b.jpeg'), (9, 2, 'd30221d2644832330e68ef5adce75b6d.jpeg'), (10, 5, '8b3dc7b1cd184b1a2bc7b45168bbfa7e.jpeg'), (11, 5, '965e3713bff64000b7a2f8d530a381f9.jpeg'), (12, 5, 'a47f3bca1f7df758d259234f06d15b7b.jpeg'), (13, 1, '5dfb7c364c19b38e120850fe578efc0a.jpeg'), (14, 1, '6d3e3ce5be177404789e14341f1de35c.jpeg'), (15, 1, '0d6fe9db446801b7982c385f3044f79a.jpeg'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `id` int(11) NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `username` varchar(25) COLLATE utf8_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `user` -- INSERT INTO `user` (`id`, `email`, `password`, `username`, `is_active`) VALUES (1, '<EMAIL>', <PASSWORD>', 'df', 0), (2, '<EMAIL>', <PASSWORD>', 'ciobi', 1), (3, '<EMAIL>', <PASSWORD>.', 'mugu', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`id`), ADD KEY `IDX_5F9E962AFDF2B1FA` (`recipes_id`); -- -- Indexes for table `ingredients` -- ALTER TABLE `ingredients` ADD PRIMARY KEY (`id`), ADD KEY `IDX_4B60114FFDF2B1FA` (`recipes_id`); -- -- Indexes for table `recipes` -- ALTER TABLE `recipes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `recipe_pictures` -- ALTER TABLE `recipe_pictures` ADD PRIMARY KEY (`id`), ADD KEY `IDX_F9EC8A5EFDF2B1FA` (`recipes_id`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `UNIQ_8D93D649F85E0677` (`username`), ADD UNIQUE KEY `UNIQ_8D93D649E7927C74` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `ingredients` -- ALTER TABLE `ingredients` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `recipes` -- ALTER TABLE `recipes` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `recipe_pictures` -- ALTER TABLE `recipe_pictures` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- Constraints for dumped tables -- -- -- Constraints for table `comments` -- ALTER TABLE `comments` ADD CONSTRAINT `FK_5F9E962AFDF2B1FA` FOREIGN KEY (`recipes_id`) REFERENCES `recipes` (`id`); -- -- Constraints for table `ingredients` -- ALTER TABLE `ingredients` ADD CONSTRAINT `FK_4B60114FFDF2B1FA` FOREIGN KEY (`recipes_id`) REFERENCES `recipes` (`id`); -- -- Constraints for table `recipe_pictures` -- ALTER TABLE `recipe_pictures` ADD CONSTRAINT `FK_F9EC8A5EFDF2B1FA` FOREIGN KEY (`recipes_id`) REFERENCES `recipes` (`id`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>dist/tools/sql/server/castle_manor_production.sql CREATE TABLE IF NOT EXISTS `castle_manor_production` ( `castle_id` TINYINT UNSIGNED NOT NULL DEFAULT '0', `seed_id` SMALLINT UNSIGNED NOT NULL DEFAULT '0', `can_produce` BIGINT NOT NULL DEFAULT '0', `start_produce` BIGINT NOT NULL DEFAULT '0', `seed_price` BIGINT NOT NULL DEFAULT '0', `period` INT NOT NULL DEFAULT '1', PRIMARY KEY (`castle_id`,`seed_id`,`period`) ) ENGINE=MyISAM;
<gh_stars>100-1000 -- tkt3201.test -- -- execsql { -- CREATE TABLE t1(a INTEGER PRIMARY KEY, b TEXT); -- INSERT INTO t1 VALUES(1, 'one'); -- INSERT INTO t1 VALUES(2, 'two'); -- } CREATE TABLE t1(a INTEGER PRIMARY KEY, b TEXT); INSERT INTO t1 VALUES(1, 'one'); INSERT INTO t1 VALUES(2, 'two');
# ************************************************************ # Sequel Pro SQL dump # Version 4541 # # http://www.sequelpro.com/ # https://github.com/sequelpro/sequelpro # # Host: localhost (MySQL 5.6.35) # Datenbank: kittnwp # Erstellt am: 2018-06-02 13:54:05 +0000 # ************************************************************ /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; # Export von Tabelle wpkittn_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_commentmeta`; CREATE TABLE `wpkittn_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; # Export von Tabelle wpkittn_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_comments`; CREATE TABLE `wpkittn_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; # Export von Tabelle wpkittn_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_links`; CREATE TABLE `wpkittn_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; # Export von Tabelle wpkittn_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_options`; CREATE TABLE `wpkittn_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_options` WRITE; /*!40000 ALTER TABLE `wpkittn_options` DISABLE KEYS */; INSERT INTO `wpkittn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://wptest3.local','yes'), (2,'home','http://wptest3.local','yes'), (3,'blogname','kittn','yes'), (4,'blogdescription','Eine weitere WordPress-Website','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','<EMAIL>','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','<EMAIL>','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','0','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','j. F Y','yes'), (24,'time_format','G:i','yes'), (25,'links_updated_date_format','j. F Y G:i','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%postname%/','yes'), (29,'rewrite_rules','a:87:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:8:{i:0;s:21:\"acf-link/acf-link.php\";i:1;s:25:\"adminimize/adminimize.php\";i:2;s:34:\"advanced-custom-fields-pro/acf.php\";i:3;s:43:\"custom-post-type-ui/custom-post-type-ui.php\";i:4;s:33:\"duplicate-post/duplicate-post.php\";i:5;s:31:\"kint-debugger/kint-debugger.php\";i:6;s:29:\"wp-smartcrop/wp-smartcrop.php\";i:7;s:25:\"wp-sync-db/wp-sync-db.php\";}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (36,'comment_max_links','2','yes'), (37,'gmt_offset','0','yes'), (38,'default_email_category','1','yes'), (39,'recently_edited','','no'), (40,'template','kittnwp','yes'), (41,'stylesheet','kittnwp','yes'), (42,'comment_whitelist','1','yes'), (43,'blacklist_keys','','no'), (44,'comment_registration','0','yes'), (45,'html_type','text/html','yes'), (46,'use_trackback','0','yes'), (47,'default_role','subscriber','yes'), (48,'db_version','38590','yes'), (49,'uploads_use_yearmonth_folders','1','yes'), (50,'upload_path','','yes'), (51,'blog_public','0','yes'), (52,'default_link_category','2','yes'), (53,'show_on_front','posts','yes'), (54,'tag_base','','yes'), (55,'show_avatars','1','yes'), (56,'avatar_rating','G','yes'), (57,'upload_url_path','','yes'), (58,'thumbnail_size_w','150','yes'), (59,'thumbnail_size_h','150','yes'), (60,'thumbnail_crop','1','yes'), (61,'medium_size_w','300','yes'), (62,'medium_size_h','300','yes'), (63,'avatar_default','mystery','yes'), (64,'large_size_w','1024','yes'), (65,'large_size_h','1024','yes'), (66,'image_default_link_type','none','yes'), (67,'image_default_size','','yes'), (68,'image_default_align','','yes'), (69,'close_comments_for_old_posts','0','yes'), (70,'close_comments_days_old','14','yes'), (71,'thread_comments','1','yes'), (72,'thread_comments_depth','5','yes'), (73,'page_comments','0','yes'), (74,'comments_per_page','50','yes'), (75,'default_comments_page','newest','yes'), (76,'comment_order','asc','yes'), (77,'sticky_posts','a:0:{}','yes'), (78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (79,'widget_text','a:0:{}','yes'), (80,'widget_rss','a:0:{}','yes'), (81,'uninstall_plugins','a:1:{s:25:\"adminimize/adminimize.php\";s:24:\"_mw_adminimize_uninstall\";}','no'), (82,'timezone_string','Europe/Berlin','yes'), (83,'page_for_posts','0','yes'), (84,'page_on_front','0','yes'), (85,'default_post_format','0','yes'), (86,'link_manager_enabled','0','yes'), (87,'finished_splitting_shared_terms','1','yes'), (88,'site_icon','0','yes'), (89,'medium_large_size_w','768','yes'), (90,'medium_large_size_h','0','yes'), (91,'initial_db_version','38590','yes'), (92,'wpkittn_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (93,'fresh_site','0','yes'), (94,'WPLANG','de_DE','yes'), (95,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (96,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (97,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (98,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (99,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (100,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (101,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (102,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (103,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (104,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (108,'cron','a:6:{i:1527947940;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1527951577;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1527974250;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1527974281;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1528033650;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'), (109,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1527944799;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'), (121,'can_compress_scripts','1','no'), (139,'current_theme','kittnwp','yes'), (140,'theme_mods_wptest3','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1527260744;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (141,'theme_switched','','yes'), (164,'recently_activated','a:0:{}','yes'), (165,'acf_version','5.6.10','yes'), (168,'cptui_new_install','false','yes'), (169,'duplicate_post_copytitle','1','yes'), (170,'duplicate_post_copydate','0','yes'), (171,'duplicate_post_copystatus','0','yes'), (172,'duplicate_post_copyslug','1','yes'), (173,'duplicate_post_copyexcerpt','1','yes'), (174,'duplicate_post_copycontent','1','yes'), (175,'duplicate_post_copythumbnail','1','yes'), (176,'duplicate_post_copytemplate','1','yes'), (177,'duplicate_post_copyformat','1','yes'), (178,'duplicate_post_copyauthor','0','yes'), (179,'duplicate_post_copypassword','0','yes'), (180,'duplicate_post_copyattachments','0','yes'), (181,'duplicate_post_copychildren','0','yes'), (182,'duplicate_post_copycomments','0','yes'), (183,'duplicate_post_copymenuorder','1','yes'), (184,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'), (185,'duplicate_post_blacklist','','yes'), (186,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'), (187,'duplicate_post_show_row','1','yes'), (188,'duplicate_post_show_adminbar','1','yes'), (189,'duplicate_post_show_submitbox','1','yes'), (190,'duplicate_post_show_bulkactions','1','yes'), (193,'wpsdb_settings','a:7:{s:11:\"max_request\";i:1048576;s:3:\"key\";s:32:\"b2RIClqKIjCFvRs8fka3ak3sTp5gtjbv\";s:10:\"allow_pull\";b:0;s:10:\"allow_push\";b:0;s:8:\"profiles\";a:0:{}s:10:\"verify_ssl\";b:0;s:17:\"blacklist_plugins\";a:0:{}}','yes'), (194,'mw_adminimize','a:3:{i:0;b:0;s:31:\"mw_adminimize_dashboard_widgets\";a:4:{s:19:\"dashboard_right_now\";a:4:{s:2:\"id\";s:19:\"dashboard_right_now\";s:5:\"title\";s:15:\"Auf einen Blick\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:18:\"dashboard_activity\";a:4:{s:2:\"id\";s:18:\"dashboard_activity\";s:5:\"title\";s:10:\"Aktivität\";s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"core\";}s:21:\"dashboard_quick_press\";a:4:{s:2:\"id\";s:21:\"dashboard_quick_press\";s:5:\"title\";s:0:\"\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}s:17:\"dashboard_primary\";a:4:{s:2:\"id\";s:17:\"dashboard_primary\";s:5:\"title\";s:41:\"WordPress-Veranstaltungen und Neuigkeiten\";s:7:\"context\";s:4:\"side\";s:8:\"priority\";s:4:\"core\";}}s:29:\"mw_adminimize_admin_bar_nodes\";a:23:{s:12:\"user-actions\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"user-actions\";s:5:\"title\";b:0;s:6:\"parent\";s:10:\"my-account\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:0:{}}s:9:\"user-info\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"user-info\";s:5:\"title\";s:298:\"<img alt=\'\' src=\'http://1.gravatar.com/avatar/4c6fd60662ceb83bb314fa12856a66a0?s=64&#038;d=mm&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/4c6fd60662ceb83bb314fa12856a66a0?s=128&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-64 photo\' height=\'64\' width=\'64\' /><span class=\'display-name\'>kittn</span>\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:41:\"http://kittnwp.local/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:8:\"tabindex\";i:-1;}}s:12:\"edit-profile\";O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"edit-profile\";s:5:\"title\";s:17:\"Profil bearbeiten\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:41:\"http://kittnwp.local/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:6:\"logout\";O:8:\"stdClass\":6:{s:2:\"id\";s:6:\"logout\";s:5:\"title\";s:8:\"Abmelden\";s:6:\"parent\";s:12:\"user-actions\";s:4:\"href\";s:71:\"http://kittnwp.local/wp-login.php?action=logout&amp;_wpnonce=23df67b3cf\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"menu-toggle\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"menu-toggle\";s:5:\"title\";s:74:\"<span class=\"ab-icon\"></span><span class=\"screen-reader-text\">Menü</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:1:\"#\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:10:\"my-account\";O:8:\"stdClass\":6:{s:2:\"id\";s:10:\"my-account\";s:5:\"title\";s:309:\"Willkommen, <span class=\"display-name\">kittn</span><img alt=\'\' src=\'http://1.gravatar.com/avatar/4c6fd60662ceb83bb314fa12856a66a0?s=26&#038;d=mm&#038;r=g\' srcset=\'http://1.gravatar.com/avatar/4c6fd60662ceb83bb314fa12856a66a0?s=52&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-26 photo\' height=\'26\' width=\'26\' />\";s:6:\"parent\";s:13:\"top-secondary\";s:4:\"href\";s:41:\"http://kittnwp.local/wp-admin/profile.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"class\";s:11:\"with-avatar\";}}s:7:\"wp-logo\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"wp-logo\";s:5:\"title\";s:84:\"<span class=\"ab-icon\"></span><span class=\"screen-reader-text\">Über WordPress</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:39:\"http://kittnwp.local/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"about\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:15:\"Über WordPress\";s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";s:39:\"http://kittnwp.local/wp-admin/about.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:5:\"wporg\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"wporg\";s:5:\"title\";s:13:\"WordPress.org\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:25:\"https://de.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"documentation\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"documentation\";s:5:\"title\";s:13:\"Dokumentation\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:28:\"https://codex.wordpress.org/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:14:\"support-forums\";O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"support-forums\";s:5:\"title\";s:13:\"Support-Foren\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:31:\"https://de.wordpress.org/hilfe/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"feedback\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"feedback\";s:5:\"title\";s:8:\"Feedback\";s:6:\"parent\";s:16:\"wp-logo-external\";s:4:\"href\";s:57:\"https://wordpress.org/support/forum/requests-and-feedback\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"site-name\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"site-name\";s:5:\"title\";s:5:\"kittn\";s:6:\"parent\";b:0;s:4:\"href\";s:21:\"http://kittnwp.local/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"view-site\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"view-site\";s:5:\"title\";s:11:\"Zur Website\";s:6:\"parent\";s:9:\"site-name\";s:4:\"href\";s:21:\"http://kittnwp.local/\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:7:\"updates\";O:8:\"stdClass\":6:{s:2:\"id\";s:7:\"updates\";s:5:\"title\";s:125:\"<span class=\"ab-icon\"></span><span class=\"ab-label\">2</span><span class=\"screen-reader-text\">2 Plugin-Aktualisierungen</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:45:\"http://kittnwp.local/wp-admin/update-core.php\";s:5:\"group\";b:0;s:4:\"meta\";a:1:{s:5:\"title\";s:25:\"2 Plugin-Aktualisierungen\";}}s:8:\"comments\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"comments\";s:5:\"title\";s:191:\"<span class=\"ab-icon\"></span><span class=\"ab-label awaiting-mod pending-count count-0\" aria-hidden=\"true\">0</span><span class=\"screen-reader-text\">0 Kommentare warten auf Freischaltung</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:47:\"http://kittnwp.local/wp-admin/edit-comments.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:11:\"new-content\";O:8:\"stdClass\":6:{s:2:\"id\";s:11:\"new-content\";s:5:\"title\";s:62:\"<span class=\"ab-icon\"></span><span class=\"ab-label\">Neu</span>\";s:6:\"parent\";b:0;s:4:\"href\";s:42:\"http://kittnwp.local/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-post\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-post\";s:5:\"title\";s:7:\"Beitrag\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:42:\"http://kittnwp.local/wp-admin/post-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:9:\"new-media\";O:8:\"stdClass\":6:{s:2:\"id\";s:9:\"new-media\";s:5:\"title\";s:6:\"Medien\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:43:\"http://kittnwp.local/wp-admin/media-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-page\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-page\";s:5:\"title\";s:5:\"Seite\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:57:\"http://kittnwp.local/wp-admin/post-new.php?post_type=page\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:8:\"new-user\";O:8:\"stdClass\":6:{s:2:\"id\";s:8:\"new-user\";s:5:\"title\";s:8:\"Benutzer\";s:6:\"parent\";s:11:\"new-content\";s:4:\"href\";s:42:\"http://kittnwp.local/wp-admin/user-new.php\";s:5:\"group\";b:0;s:4:\"meta\";a:0:{}}s:13:\"top-secondary\";O:8:\"stdClass\":6:{s:2:\"id\";s:13:\"top-secondary\";s:5:\"title\";b:0;s:6:\"parent\";b:0;s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-top-secondary\";}}s:16:\"wp-logo-external\";O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"wp-logo-external\";s:5:\"title\";b:0;s:6:\"parent\";s:7:\"wp-logo\";s:4:\"href\";b:0;s:5:\"group\";b:1;s:4:\"meta\";a:1:{s:5:\"class\";s:16:\"ab-sub-secondary\";}}}}','yes'), (195,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (196,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (212,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3MjoiYjNKa1pYSmZhV1E5TnpBME9UZDhkSGx3WlQxa1pYWmxiRzl3WlhKOFpHRjBaVDB5TURFMUxURXlMVEE0SURFd09qQXdPalEwIjtzOjM6InVybCI7czoyMjoiaHR0cDovL2hhbnNlaGFjay5sb2NhbCI7fQ==','yes'), (222,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.0.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";d:1527267797;s:7:\"version\";s:5:\"5.0.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'), (234,'duplicate_post_version','3.2.2','yes'), (235,'duplicate_post_show_notice','0','no'), (246,'theme_mods_hansehack','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1527944794;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (276,'_site_transient_timeout_theme_roots','1527946571','no'), (277,'_site_transient_theme_roots','a:4:{s:7:\"kittnwp\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'), (279,'_site_transient_timeout_browser_153e7b9fa47a89e6fe50b5245ea3ac46','1528549577','no'), (280,'_site_transient_browser_153e7b9fa47a89e6fe50b5245ea3ac46','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"67.0.3396.62\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'), (282,'_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e','1527987979','no'), (283,'_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:6:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Europe\";s:3:\"url\";s:33:\"https://2018.europe.wordcamp.org/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2018-06-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Belgrade, Serbia\";s:7:\"country\";s:2:\"RS\";s:8:\"latitude\";d:44.8084970000000026857378543354570865631103515625;s:9:\"longitude\";d:20.43228500000000025238477974198758602142333984375;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:63:\"WP Meetup #27 - Optimierung für Menschen mit LiveBeispiel(en)!\";s:3:\"url\";s:60:\"https://www.meetup.com/WP-Meetup-Paderborn/events/251172421/\";s:6:\"meetup\";s:19:\"WP Meetup Paderborn\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/WP-Meetup-Paderborn/\";s:4:\"date\";s:19:\"2018-06-05 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Paderborn, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.7200012207029971023075631819665431976318359375;s:9:\"longitude\";d:8.73999977111819958963678800500929355621337890625;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:49:\"WordPress Meetup Dortmund #4 - CSS für Anfänger\";s:3:\"url\";s:66:\"https://www.meetup.com/WordPress-Meetup-Dortmund/events/249388156/\";s:6:\"meetup\";s:25:\"WordPress Meetup Dortmund\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/WordPress-Meetup-Dortmund/\";s:4:\"date\";s:19:\"2018-06-07 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Dortmund, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.5136260000000021364030544646084308624267578125;s:9:\"longitude\";d:7.46044199999999957384488880052231252193450927734375;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:27:\"WordPress Meetup Osnabrück\";s:3:\"url\";s:60:\"https://www.meetup.com/wpmeetup-osnabrueck/events/245251528/\";s:6:\"meetup\";s:38:\"WordPress Meetup Osnabrück - Münster\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wpmeetup-osnabrueck/\";s:4:\"date\";s:19:\"2018-06-20 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Osnabrück, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:52.2734099999999983765519573353230953216552734375;s:9:\"longitude\";d:8.0439799999999994639665601425804197788238525390625;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:25:\"WordPress Meetup Hannover\";s:3:\"url\";s:66:\"https://www.meetup.com/Hannover-WordPress-Meetup/events/249551377/\";s:6:\"meetup\";s:25:\"Hannover WordPress Meetup\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/Hannover-WordPress-Meetup/\";s:4:\"date\";s:19:\"2018-07-10 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Hannover, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:52.36816400000000015779733075760304927825927734375;s:9:\"longitude\";d:9.72014899999999926194504951126873493194580078125;}}i:5;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:25:\"WordPress Meetup Münster\";s:3:\"url\";s:60:\"https://www.meetup.com/wpmeetup-osnabrueck/events/247801690/\";s:6:\"meetup\";s:38:\"WordPress Meetup Osnabrück - Münster\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wpmeetup-osnabrueck/\";s:4:\"date\";s:19:\"2018-07-18 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Münster, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.963650000000001227817847393453121185302734375;s:9:\"longitude\";d:7.62131000000000025096369427046738564968109130859375;}}}}','no'), (284,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/de_DE/wordpress-4.9.6.zip\";s:6:\"locale\";s:5:\"de_DE\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/de_DE/wordpress-4.9.6.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.6\";s:7:\"version\";s:5:\"4.9.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1527944780;s:15:\"version_checked\";s:5:\"4.9.6\";s:12:\"translations\";a:0:{}}','no'), (285,'_transient_timeout_feed_f014c832422b67a4cec692b17aa40756','1527987979','no'), (286,'_transient_feed_f014c832422b67a4cec692b17aa40756','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Releases – Deutsch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://de.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WordPress auf Deutsch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"\n Mon, 28 May 2018 10:51:56 +0000 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"de-DE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.0-alpha-43320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 4.9.6 Datenschutz- und Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://de.wordpress.org/2018/05/wordpress-4-9-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 May 2018 07:06:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=3471\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:422:\"Gestern wurde WordPress 4.9.6 veröffentlicht. Dabei handelt es sich um einen Datenschutz- und Wartungs-Release und es wird empfohlen, die neue Version zu installieren, um von den neuen Datenschutzfunktionen zu profitieren. Datenschutz Die General Data Protection Regulation der EU (GDPR; in Deutschland eher als Datenschutz-Grundverordnung DSGVO bekannt) wird ab 25. Mai Anwendung finden. Diese Verordnung sorgt [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11669:\"<p>Gestern wurde WordPress 4.9.6 veröffentlicht. Dabei handelt es sich um einen Datenschutz- und Wartungs-Release und es wird empfohlen, die neue Version zu installieren, um von den neuen Datenschutzfunktionen zu profitieren.</p>\n<p><span id=\"more-3471\"></span></p>\n<p><img class=\"size-full wp-image-3472\" src=\"https://de.wordpress.org/files/2018/05/GDPR-Banner.png\" alt=\"\" width=\"768\" height=\"384\" srcset=\"https://de.wordpress.org/files/2018/05/GDPR-Banner.png 768w, https://de.wordpress.org/files/2018/05/GDPR-Banner-300x150.png 300w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></p>\n<h2>Datenschutz</h2>\n<p>Die <i>General Data Protection Regulation</i> der EU (GDPR; in Deutschland eher als Datenschutz-Grundverordnung DSGVO bekannt) wird ab 25. Mai Anwendung finden. Diese Verordnung sorgt unter anderem dafür, dass transparent darüber informiert werden muss, welche personenbezogenen Daten zu welchem Zweck gesammelt und eventuell mit welchen Dritten geteilt werden. Gegebenenfalls muss vor der Verarbeitung der Daten die Einwilligung des Nutzers eingeholt werden, wenn die Datenverarbeitung nicht durch andere Bestimmungen der DSGVO erlaubt ist.</p>\n<p>Zudem bekommt der User ein Recht darauf, personenbezogene Daten anonymisieren oder löschen zu lassen oder einen Export seiner Daten zu bekommen. Mehr Informationen dazu gibt es auf einer <a href=\"http://ec.europa.eu/justice/smedataprotect/index_de.htm\">Informationsseite der EU</a>.</p>\n<p>Mit WordPress 4.9.6 werden nun einige Werkzeuge und Funktionen eingeführt, um es Website-Betreibern zu erleichtern, eine DSGVO-konforme Site zu betreiben.</p>\n<h2>Kommentare</h2>\n<p><img class=\"alignnone wp-image-3473 size-full\" src=\"https://de.wordpress.org/files/2018/05/wordpress-4-9-6-kommentar-checkbox.png\" alt=\"\" width=\"769\" height=\"806\" srcset=\"https://de.wordpress.org/files/2018/05/wordpress-4-9-6-kommentar-checkbox.png 769w, https://de.wordpress.org/files/2018/05/wordpress-4-9-6-kommentar-checkbox-286x300.png 286w, https://de.wordpress.org/files/2018/05/wordpress-4-9-6-kommentar-checkbox-768x805.png 768w\" sizes=\"(max-width: 769px) 100vw, 769px\" /></p>\n<p>Nicht eingeloggte Kommentatoren können über eine Checkbox entscheiden, ob ihr Name, E-Mail-Adresse und Website für zukünftige Kommentare auf der Website in einem Cookie gespeichert werden soll.</p>\n<h2>Seite für die Datenschutzerklärung</h2>\n<p><img class=\"size-full wp-image-3474\" src=\"https://de.wordpress.org/files/2018/05/wordpress-4-9-6-datenschutzerklaerung-seite-einstellungen.png\" alt=\"\" width=\"867\" height=\"457\" srcset=\"https://de.wordpress.org/files/2018/05/wordpress-4-9-6-datenschutzerklaerung-seite-einstellungen.png 867w, https://de.wordpress.org/files/2018/05/wordpress-4-9-6-datenschutzerklaerung-seite-einstellungen-300x158.png 300w, https://de.wordpress.org/files/2018/05/wordpress-4-9-6-datenschutzerklaerung-seite-einstellungen-768x405.png 768w\" sizes=\"(max-width: 867px) 100vw, 867px\" /></p>\n<p>Website-Betreiber können jetzt eine Seite für die Datenschutzerklärung erstellen, die auf den Login- und Registrierungs-Seiten angezeigt wird – für den Rest eurer Website solltet ihr sie manuell zu einem Menü hinzufügen. Plugins und Themes, die personenbezogene Daten sammeln, können euch über eine Funktion Inhalte als Vorschlag anzeigen, wenn ihr die Seite bearbeitet.</p>\n<p>Wenn ihr mit dem Feature eine Seite anlegt, wird sie mit Beispiel-Inhalten gefüllt, die ihr für eure Zwecke anpassen könnt – diese Inhalte einfach ungeprüft zu übernehmen ist keine gute Idee.</p>\n<p>Wenn ihr ein Plugin oder Theme betreut, das personenbezogene Daten sammelt, solltet ihr entsprechende Informationen für die Nutzer eurer Produkte erstellen, damit sie ihre Datenschutzerklärung entsprechend anpassen können.</p>\n<h2>Export und Löschen von Daten</h2>\n<p><img class=\"size-full wp-image-3475\" src=\"https://de.wordpress.org/files/2018/05/wordpress-4-9-6-personenbezogene-daten-exportieren.png\" alt=\"\" width=\"972\" height=\"531\" srcset=\"https://de.wordpress.org/files/2018/05/wordpress-4-9-6-personenbezogene-daten-exportieren.png 972w, https://de.wordpress.org/files/2018/05/wordpress-4-9-6-personenbezogene-daten-exportieren-300x164.png 300w, https://de.wordpress.org/files/2018/05/wordpress-4-9-6-personenbezogene-daten-exportieren-768x420.png 768w\" sizes=\"(max-width: 972px) 100vw, 972px\" /></p>\n<p>Über zwei neue Werkzeuge können gespeicherte personenbezogene Daten von Usern exportiert oder gelöscht werden. Wenn ihr eine Aufforderung zum Export oder zur Löschung bekommt, könnt ihr über die E-Mail-Adresse des entsprechenden registrierten Nutzers oder Kommentators eine Anfrage zur Bestätigung verschicken, um sicherzustellen, dass die Anfrage nicht von irgendwem gekommen ist.</p>\n<p>Eine solche Bestätigungsmail sieht beispielsweise so aus:</p>\n<pre>Hallo,\n\ndie folgende Anfrage wurde zur Ausführung auf deinem Konto eingereicht:\n\nPersonenbezogene Daten löschen\n\nUm diese zu bestätigen, klicke bitte auf den folgenden Link:\nhttps://example.com/wp-login.php?action=confirmaction\n\nFalls du diese Aktion nicht ausführen willst, kannst du diese E-Mail ignorieren und löschen.\n\nDiese E-Mail wurde an <EMAIL> gesendet.\n\nViele Grüße,\nvon allen auf <i>Name der Site</i>\nhttps://example.com</pre>\n<h2>Andere Änderungen</h2>\n<p>In WordPress 4.9.6 wurden 95 Änderungen vorgenommen, folgend ein paar besonders nennenswerte:</p>\n<ul>\n<li>»Eigene« wurde als Filter in die Mediathek eingefügt.</li>\n<li>Wenn ihr die Detailansicht eines Plugins im Backend aufruft, wird jetzt die mindestens notwendige PHP-Version angezeigt, falls vom Plugin-Entwickler angegeben.</li>\n<li>Es wurde ein neues PHP-Polyfill für Vorwärtskompatibilität und korrekte Validierung von Variablen eingefügt.</li>\n<li>TinyMCE wurde auf die neueste Version 4.7.11 aktualisiert.</li>\n</ul>\n<p>Der Beitrag »<a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">4.9.6 Update Guide</a>« enthält mehr Informationen zu den Neuerungen.</p>\n<p>Das Update auf die neue Version könnt ihr wie gewohnt über <i>Dashboard</i> › <i>Aktualisierungen</i> ausführen. Falls ihr automatische Updates nicht deaktiviert habt, ist die neue Version vielleicht schon bei euch angekommen. Wenn ihr noch auf WordPress 4.9.3 seid, müsst ihr das Update manuell installieren!</p>\n<p>Wenn ihr euch die neue Version herunterladen möchtet, findet ihr den Download-Link auf <a href=\"https://de.wordpress.org/download/\">de.wordpress.org/download</a>.</p>\n<p>Danke an alle, die an WordPress 4.9.6 mitgearbeitet haben:<br />\n<a href=\"https://profiles.wordpress.org/aaroncampbell/\"><NAME></a>,<a href=\"https://profiles.wordpress.org/jorbin/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/abdullahramzan/\"> abdullahramzan</a>,<a href=\"https://profiles.wordpress.org/adamsilverstein/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/schlessera/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/allendav/\"> allendav</a>,<a href=\"https://profiles.wordpress.org/afercia/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/andreamiddleton/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/azaozz/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/ayeshrajans/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/birgire/\"> <NAME> (birgire)</a>,<a href=\"https://profiles.wordpress.org/bridgetwillard/\"> bridgetwillard</a>,<a href=\"https://profiles.wordpress.org/burlingtonbytes/\"> Burlington Bytes</a>,<a href=\"https://profiles.wordpress.org/chetan200891/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/claudiu/\"> claudiu</a>,<a href=\"https://profiles.wordpress.org/coreymckrill/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/danielbachhuber/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/dlh/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/ocean90/\"> <NAME> (ocean90)</a>,<a href=\"https://profiles.wordpress.org/iseulde/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/ericdaams/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/fclaussen/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/garrett-eclipse/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/pento/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/idea15/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/helen/\"> <NAME>-Sandi</a>,<a href=\"https://profiles.wordpress.org/herregroen/\"> herregroen</a>,<a href=\"https://profiles.wordpress.org/iandunn/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/ianbelanger/\"> ibelanger</a>,<a href=\"https://profiles.wordpress.org/imath/\"> imath</a>,<a href=\"https://profiles.wordpress.org/audrasjb/\"> Jb Audras</a>,<a href=\"https://profiles.wordpress.org/jeffpaul/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/jeremyfelt/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/jesperher/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"> JJJ</a>,<a href=\"https://profiles.wordpress.org/joemcgill/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/johnbillion/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/desrosj/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/chanthaboune/\"> Josepha</a>,<a href=\"https://profiles.wordpress.org/jrf/\"> jrf</a>,<a href=\"https://profiles.wordpress.org/dejliglama/\"> <NAME>ensen</a>,<a href=\"https://profiles.wordpress.org/lakenh/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/laurelfulford/\"> laurelfulford</a>,<a href=\"https://profiles.wordpress.org/lbenicio/\"> lbenicio</a>,<a href=\"https://profiles.wordpress.org/macbookandrew/\"> macbookandrew</a>,<a href=\"https://profiles.wordpress.org/clorith/\"> <NAME>.</a>,<a href=\"https://profiles.wordpress.org/melchoyce/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/mnelson4/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/mikejolley/\"> <NAME>olley</a>,<a href=\"https://profiles.wordpress.org/casiepa/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/pbarthmaier/\"> pbrocks</a>,<a href=\"https://profiles.wordpress.org/postphotos/\"> postphotos</a>,<a href=\"https://profiles.wordpress.org/pmbaldha/\"> <NAME>ha</a>,<a href=\"https://profiles.wordpress.org/presstigers/\"> PressTigers</a>,<a href=\"https://profiles.wordpress.org/programmin/\"> programmin</a>,<a href=\"https://profiles.wordpress.org/littlerchicken/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/sergeybiryukov/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/satollo/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/stephdau/\"> <NAME> (stephdau)</a>,<a href=\"https://profiles.wordpress.org/subrataemfluence/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/karmatosed/\"> Tammie Lister</a>,<a href=\"https://profiles.wordpress.org/teddytime/\"> teddytime</a>,<a href=\"https://profiles.wordpress.org/thomasplevy/\"> thomasplevy</a>,<a href=\"https://profiles.wordpress.org/timothyblynjacobs/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/tz-media/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/tjnowell/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/tobifjellner/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/itowhid06/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/voneff/\"> voneff</a>,<a href=\"https://profiles.wordpress.org/earnjam/\"> <NAME></a> und<a href=\"https://profiles.wordpress.org/xkon/\"> Xenos (xkon) Konstantinos</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 4.9.5 Sicherheits- und Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://de.wordpress.org/2018/04/wordpress-4-9-5-sicherheits-und-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 22:17:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=3220\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:450:\"WordPress 4.9.5 ist jetzt verfügbar. Das ist ein Sicherheits- und Wartungs-Release für alle Versionen seit WordPress 3.7. Es wird dringend empfohlen, die Seiten sofort zu aktualisieren. WordPress-Versionen 4.9.4 und früher sind von drei Sicherheitsproblemen betroffen. Als Teil des kontinuierlichen Engagements des Core-Teams für die Sicherheitserhöhung wurden die folgenden Korrekturen in 4.9.5 implementiert: Behandle localhost nicht [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6557:\"<p>WordPress 4.9.5 ist jetzt verfügbar. Das ist ein Sicherheits- und Wartungs-Release für alle Versionen seit WordPress 3.7. Es wird dringend empfohlen, die Seiten sofort zu aktualisieren.</p>\n<p>WordPress-Versionen 4.9.4 und früher sind von drei Sicherheitsproblemen betroffen. Als Teil des kontinuierlichen Engagements des Core-Teams für die Sicherheitserhöhung wurden die folgenden Korrekturen in 4.9.5 implementiert:</p>\n<p><span id=\"more-3220\"></span></p>\n<ol>\n<li>Behandle localhost nicht standardmäßig als denselben Host.</li>\n<li>Verwende sichere Umleitungen beim Umleiten der Anmeldeseite, wenn SSL erzwungen wird.</li>\n<li>Stell sicher, dass der Versionsstring für die Verwendung in Generator-Tags korrekt escaped ist.</li>\n</ol>\n<p>Danke an <a href=\"https://profiles.wordpress.org/xknown\">xknown</a>, <a href=\"https://hackerone.com/nitstorm\"><NAME> (nitstorm)</a> und <a href=\"https://twitter.com/voldemortensen\"><NAME></a>, die die <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">Sicherheitslücke verantwortungsvoll gemeldet haben</a>.</p>\n<p>25 weitere Fehler wurden in WordPress 4.9.5 behoben. Besonders erwähnenswert waren:</p>\n<ul>\n<li>Die vorherigen Stile der Shortcodes für Untertitel wurden wiederhergestellt.</li>\n<li>Das Zuschneiden auf Touchscreen-Geräten wird nun unterstützt.</li>\n<li>Eine Vielzahl von Strings wie z. B. Fehlermeldungen wurden zur besseren Übersichtlichkeit aktualisiert.</li>\n<li>Die Position eines Dateianhang-Platzhalters beim Upload wurde korrigiert.</li>\n<li>Die benutzerdefinierte Nonce-Funktionalität im REST-API-JavaScript-Client wurde in der gesamten Codebasis konsistent gemacht.</li>\n<li>Verbesserte Kompatibilität mit PHP 7.2</li>\n</ul>\n<p><a href=\"https://make.wordpress.org/core/2018/04/02/wordpress-4-9-5/\">Dieser Beitrag</a> enthält weitere Informationen zu allen in 4.9.5 behobenen Problemen.</p>\n<p>Du kannst WordPress 4.9.5 <a href=\"https://wordpress.org/latest.zip\">hier herunterladen</a> oder über das Dashboard aktualisieren; klick dafür im Adminbereich links auf Dashboard -&gt; Aktualisierungen -&gt; Jetzt aktualisieren. Websites, auf denen die automatischen Hintergrund-Updates aktiviert wurden, erhalten das Update im Lauf der nächsten Stunden automatisch.</p>\n<p>Vielen Dank an alle, die zu WordPress 4.9.5 beigetragen haben:</p>\n<p><a href=\"https://profiles.wordpress.org/1265578519-1/\">1265578519</a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/schlessera/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexgso/\">alexgso</a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andrei0x309/\">andrei0x309</a>, <a href=\"https://profiles.wordpress.org/antipole/\">antipole</a>, <a href=\"https://profiles.wordpress.org/aranwer104/\">Anwer AR</a>, <a href=\"https://profiles.wordpress.org/birgire/\"><NAME> (birgire)</a>, <a href=\"https://profiles.wordpress.org/blair-jersyer/\">Blair jersyer</a>, <a href=\"https://profiles.wordpress.org/bandonrandon/\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/codegrau/\">codegrau</a>, <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dd32/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ocean90/\"><NAME> (ocean90)</a>, <a href=\"https://profiles.wordpress.org/electricfeet/\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/ericmeyer/\">ericmeyer</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/henrywright/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jipmoors/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joemcgill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joen/\"><NAME>ussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/junaidkbr/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/obenland/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lakenh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lancewillett/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\"><NAME>roder</a>, <a href=\"https://profiles.wordpress.org/mrmadhat/\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/nandorsky/\">nandorsky</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nid<NAME></a>, <a href=\"https://profiles.wordpress.org/swissspidy/\"><NAME>ler</a>, <a href=\"https://profiles.wordpress.org/qcmiao/\">qcmiao</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/larrach/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/otto42/\"><NAME> (Otto)</a>, <a href=\"https://profiles.wordpress.org/sebastienthivinfocom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shital-patel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/netweb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/karmatosed/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kwonye/\"><NAME></a> und <a href=\"https://profiles.wordpress.org/yahil/\"><NAME>akiya</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.9.4 Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://de.wordpress.org/2018/02/wordpress-4-9-4-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2018 16:56:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=3060\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"Heute wurde WordPress 4.9.4 veröffentlicht – kurz nach dem Release von WordPress 4.9.3. Grund dafür ist, dass WordPress 4.9.3 einen Bug enthält, der das Funktionieren automatischer Updates verhindert – dieser Bug wird mit WordPress 4.9.4 behoben. Das heißt konkret, dass ihr manuell auf WordPress 4.9.4 aktualisieren müsst (einfach im Backend unter Dashboard › Aktualisierungen auf [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:839:\"<p>Heute wurde WordPress 4.9.4 veröffentlicht – kurz nach dem <a href=\"https://de.wordpress.org/2018/02/wordpress-4-9-3-wartungs-release/\">Release von WordPress 4.9.3</a>. Grund dafür ist, dass WordPress 4.9.3 einen Bug enthält, der das Funktionieren automatischer Updates verhindert – dieser Bug wird mit WordPress 4.9.4 behoben.</p>\n<p>Das heißt konkret, dass ihr manuell auf WordPress 4.9.4 aktualisieren müsst (einfach im Backend unter <i>Dashboard</i> › <i>Aktualisierungen</i> auf <i>Jetzt aktualisieren</i> klicken), um zukünftig neue Minor-Versionen wieder automatisch zu bekommen.</p>\n<p>Für mehr technische Details zu dem Fehler könnt ihr euch den entsprechenden <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">Beitrag im Core-Development-Blog</a> anschauen.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.9.3 Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://de.wordpress.org/2018/02/wordpress-4-9-3-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2018 02:39:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=3055\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:397:\"Heute Nacht wurde WordPress 4.9.3 veröffentlicht. Es handelt sich dabei um ein reines Wartungs-Release mit insgesamt 34 Bugfixes, unter anderem werden Fehler in den Customizer Changesets, Widgets, dem visuellen Editor sowie Kompatibilitätsprobleme mit PHP 7.2 behoben. Eine komplette Liste aller Änderungen findest du in der Liste der Tickets und in der Changelog. Du kannst WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3759:\"<p>Heute Nacht wurde WordPress 4.9.3 veröffentlicht. Es handelt sich dabei um ein reines Wartungs-Release mit insgesamt 34 Bugfixes, unter anderem werden Fehler in den Customizer Changesets, Widgets, dem visuellen Editor sowie Kompatibilitätsprobleme mit PHP 7.2 behoben.</p>\n<p><span id=\"more-3055\"></span></p>\n<p>Eine komplette Liste aller Änderungen findest du in der <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.9.3&amp;group=component\">Liste der Tickets</a> und in der <a href=\"https://core.trac.wordpress.org/log/branches/4.9?rev=42630&amp;stop_rev=42521\">Changelog</a>.</p>\n<p>Du kannst WordPress 4.9.3 entweder <a href=\"https://wordpress.org/download/\">herunterladen</a> oder über das Dashboard aktualisieren. Klick dafür im Adminbereich links auf Dashboard -&gt; Aktualisierungen -&gt; Jetzt aktualisieren. Für Websites, auf denen die automatischen Hintergrund-Updates aktiviert wurden, werden die Update bereits ausgerollt.</p>\n<p>Danke an alle, die bei der Entwicklung von WordPress 4.9.3 geholfen haben:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu/\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bpayton/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chetan200891/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/coleh/\">coleh</a>, <a href=\"https://profiles.wordpress.org/darko-a7/\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/desertsnowman/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dd32/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/frank-klein/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pento/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/audrasjb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lizkarkoski/\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/clorith/\"><NAME>.</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/ndavison/\">ndavison</a>, <a href=\"https://profiles.wordpress.org/nickmomrik/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rishishah/\">rishishah</a>, <a href=\"https://profiles.wordpress.org/othellobloke/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sasiddiqui/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shooper/\"><NAME>ooper</a>, <a href=\"https://profiles.wordpress.org/netweb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/manikmist09/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a> und <a href=\"https://profiles.wordpress.org/westonruter/\"><NAME></a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 4.9.2 Sicherheits- und Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://de.wordpress.org/2018/01/wordpress-4-9-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2018 08:12:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=3042\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:419:\"Vor Kurzem wurde WordPress 4.9.2 veröffentlicht. Dabei handelt es sich um einen Sicherheits- und Wartungs-Release für alle Versionen seit WordPress 3.7 – ein Update wird dringend empfohlen. In den Flash-Fallback-Dateien von MediaElement (einer Bibliothek, die in WordPress eingesetzt wird) wurde eine XSS-Lücke gefunden. Da diese Fallback-Dateien für die meisten Fälle nicht mehr genutzt werden, wurden [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4153:\"<p>Vor Kurzem wurde WordPress 4.9.2 veröffentlicht. Dabei handelt es sich um einen Sicherheits- und Wartungs-Release für alle Versionen seit WordPress 3.7 – ein Update wird dringend empfohlen.</p>\n<p><span id=\"more-3042\"></span></p>\n<p>In den Flash-Fallback-Dateien von MediaElement (einer Bibliothek, die in WordPress eingesetzt wird) wurde eine XSS-Lücke gefunden. Da diese Fallback-Dateien für die meisten Fälle nicht mehr genutzt werden, wurden sie aus WordPress 4.9.2 entfernt. Falls ihr diese Funktionen doch benötigt, könnt ihr euch das Plugin »<a href=\"https://wordpress.org/plugins/mediaelement-flash-fallbacks/\">MediaElement Flash Fallbacks</a>« installieren, das die neue Version von MediaElement enthält, womit die Sicherheitslücke in der Bibliothek geschlossen wurde.</p>\n<p>Danke an <a href=\"https://opnsec.com\"><NAME></a> und <a href=\"https://widiz.com/\">Widiz</a>, die die <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">Sicherheitslücke verantwortungsvoll gemeldet haben</a>.</p>\n<p>Neben diesem Fix enthält die neue Version Lösungen für 21 weitere Probleme, darunter:</p>\n<ul>\n<li>JavaScript-Fehler behoben, die das Speichern von Beiträgen in Firefox verhindert haben.</li>\n<li>Das frühere »taxonomy-agnostic«-Verhalten von <code>get_category_link()</code> und <code>category_description()</code> wurde wiederhergestellt.</li>\n<li>Beim Theme-Wechsel wird jetzt auch versucht Widgets zuzuweisen, die bei einem vorherigen Wechsel wegen weniger Sidebars im neuen Theme nicht zugewiesen werden konnten und daher im Bereich <i>Inaktive Widgets</i> gelandet sind.</li>\n</ul>\n<p><a href=\"https://codex.wordpress.org/Version_4.9.2\">Im Codex gibt es mehr Informationen dazu, welche Probleme in 4.9.2 behoben wurde</a>.</p>\n<p>Ihr könnt die neue Version <a href=\"https://de.wordpress.org/download/\">hier von de.wordpress.org herunterladen</a>. Um eine bestehende Installation zu aktualisieren, geht im Backend auf <i>Dashboard</i> › <i>Aktualisierungen</i> – wenn ihr automatische Updates aktiv habt, ist 4.9.2 vermutlich bereits bei euch angekommen.</p>\n<p>Vielen Dank an alle, die bei 4.9.2 mitgeholfen haben: <a href=\"https://profiles.wordpress.org/0x6f0/\">0x6f0</a>,<a href=\"https://profiles.wordpress.org/jorbin/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/afercia/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/aduth/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/azaozz/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/blobfolio/\"> Blobfolio</a>,<a href=\"https://profiles.wordpress.org/boonebgorges/\"> Boone Gorges</a>,<a href=\"https://profiles.wordpress.org/icaleb/\"> Caleb Burks</a>,<a href=\"https://profiles.wordpress.org/poena/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/chasewg/\"> chasewg</a>,<a href=\"https://profiles.wordpress.org/chetan200891/\"> <NAME>japati</a>,<a href=\"https://profiles.wordpress.org/dd32/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/hardik-amipara/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/ionvv/\"> ionvv</a>,<a href=\"https://profiles.wordpress.org/jaswrks/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/jbpaul17/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/jeremyfelt/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/joemcgill/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/johnschulz/\"> johnschulz</a>,<a href=\"https://profiles.wordpress.org/juiiee8487/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/obenland/\"> Konstantin Obenland</a>,<a href=\"https://profiles.wordpress.org/markjaquith/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/rabmalin/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/peterwilsoncc/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/rachelbaker/\"> <NAME></a>,<a href=\"https://profiles.wordpress.org/rinkuyadav999/\"> Rinku Y</a>,<a href=\"https://profiles.wordpress.org/sergeybiryukov/\"> <NAME></a> und<a href=\"https://profiles.wordpress.org/westonruter/\"> Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 4.9.1 Sicherheits- und Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://de.wordpress.org/2017/11/wordpress-4-9-1-sicherheits-und-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2017 21:13:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=3016\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:442:\"WordPress 4.9.1 wurde heute veröffentlicht. Es ist ein Sicherheits- und Wartungs-Release für alle Versionen ab WordPress 3.7 und neuer. Das Entwicklungsteam empfiehlt die umgehende Aktualisierung. Die Versionen WordPress 4.9 und älter sind von 4 Sicherheitslücken betroffen, die potenziell als eine Multi-Vektor-Attacke ausgeführt werden können. Die folgenden Fixes wurden in 4.9.1 implementiert: Nutzung eines sauberen Hashes [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4449:\"<p>WordPress 4.9.1 wurde <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">heute veröffentlicht</a>. Es ist ein <strong>Sicherheits- und Wartungs-Release</strong> für alle Versionen ab WordPress 3.7 und neuer. Das Entwicklungsteam empfiehlt die umgehende Aktualisierung.</p>\n<p><span id=\"more-3016\"></span></p>\n<p>Die Versionen WordPress 4.9 und älter sind von 4 Sicherheitslücken betroffen, die potenziell als eine Multi-Vektor-Attacke ausgeführt werden können. Die folgenden Fixes wurden in 4.9.1 implementiert:</p>\n<ol>\n<li>Nutzung eines sauberen Hashes für den <code>newbloguser</code>-Key anstelle eines festgelegten Substrings.</li>\n<li>Attribute von Sprachen werden escaped bei <code>html</code>-Elementen.</li>\n<li>Sicherstellen, dass Enclosures-Attribute richtig in RSS- und Atom-Feeds escaped sind .</li>\n<li>Die Möglichkeit wurde entfernt, JavaScript-Dateien hochzuladen, für Benutzer, die keine <code>unfiltered_hmtl</code>-Berechtigungen haben.</li>\n</ol>\n<p>Vielen Dank an diejenigen, die diese Schwachstellen gemäß der <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a> gemeldet haben: <NAME> and <NAME>.</p>\n<p>Elf andere Fehler wurden in WordPress 4.9.1 behoben. Besonders erwähnenswert sind hier:</p>\n<ul>\n<li>Probleme, die in Zusammenhang mit dem Caching von Theme-Template-Dateien stehen.</li>\n<li>Ein MediaElement-JavaScript-Fehler, der User verschiedener Sprachen daran gehindert hat, Medien hochzuladen.</li>\n<li>Themes- und Plugin-Dateien konnten auf Windows-basierten Servern nicht bearbeitet werden.</li>\n</ul>\n<p>In <a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">diesem Beitrag</a> erfährst du mehr über alle Fehler, die in 4.9.1 behoben wurden.</p>\n<p>Du kannst WordPress 4.9.1 <a href=\"https://wordpress.org/latest.zip\">hier herunterladen</a> oder über das Dashboard aktualisieren, klick dafür im Adminbereich links auf Dashboard -&gt; Aktualisierungen -&gt; Jetzt aktualisieren. Websites, auf denen die automatischen Hintergrund-Updates aktiviert wurden, erhalten das Update im Lauf der nächsten Stunden automatisch.</p>\n<p>Vielen Dank an alle, die zu der Entwicklung von WordPress 4.9.1 beigetragen haben:</p>\n<p><a href=\"https://profiles.wordpress.org/schlessera/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ocean90/\"><NAME> (ocean90)</a>, <a href=\"https://profiles.wordpress.org/edo888/\">edo888</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mista-flo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pento/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ibenic/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">jeremyescott</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME>bourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/ryelle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/clorith/\"><NAME>.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/natacado/\">natacado</a>, <a href=\"https://profiles.wordpress.org/odysseygate/\">odyssey</a>, <a href=\"https://profiles.wordpress.org/precies/\">precies</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, und <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n\n \n \n \n \n\n\n\n\n\n\n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress 4.9 »Tipton«\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://de.wordpress.org/2017/11/wordpress-4-9-tipton/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Nov 2017 01:35:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=2854\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:426:\"Am 16. November 2017 wurde WordPress 4.9 Tipton, benannt nach dem Jazz-Musiker und Bandleader Billy Tipton, veröffentlicht. WordPress 4.9 kann heruntergeladen oder über das WordPress Backend aktualisiert werden. Customizer Planen und später veröffentlichen In WordPress 4.9 kannst du im Customizer Entwürfe erstellen und die automatische Veröffentlichung für einen späteren Zeitpunkt planen. Ganz so, wie man [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:8:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://de.wordpress.org/files/2017/11/wp49_004.mp4\";s:6:\"length\";s:7:\"1453394\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://de.wordpress.org/files/2017/11/wp49_005.mp4\";s:6:\"length\";s:6:\"518576\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://de.wordpress.org/files/2017/11/wp49_015.mp4\";s:6:\"length\";s:6:\"221751\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:73:\"https://de.wordpress.org/files/2017/11/customizer-drafting-scheduling.mp4\";s:6:\"length\";s:7:\"4828341\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:66:\"https://de.wordpress.org/files/2017/11/customizer-preview-link.mp4\";s:6:\"length\";s:7:\"7445755\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:67:\"https://de.wordpress.org/files/2017/11/add-media-to-text-widget.mp4\";s:6:\"length\";s:7:\"3278216\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:57:\"https://de.wordpress.org/files/2017/11/gallery-widget.mp4\";s:6:\"length\";s:7:\"7069683\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:55:\"https://de.wordpress.org/files/2017/11/code-editing.mp4\";s:6:\"length\";s:7:\"9971599\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:55370:\"<p>Am 16. November 2017 wurde WordPress 4.9 Tipton, benannt nach dem Jazz-Musiker und Bandleader Billy Tipton, veröffentlicht.</p>\n<p><span id=\"more-2854\"></span></p>\n<p>WordPress 4.9 kann <a href=\"https://wordpress.org/latest.zip\">heruntergeladen</a> oder über das WordPress Backend aktualisiert werden.</p>\n<h2>Customizer</h2>\n<h3>Planen und später veröffentlichen</h3>\n<p>In WordPress 4.9 kannst du im Customizer Entwürfe erstellen und die automatische Veröffentlichung für einen späteren Zeitpunkt planen. Ganz so, wie man es von Beiträgen her bereits kennt. So wäre – passend zur kommenden Weihnachtszeit  – die Änderung des Hintergrunds auf ein weihnachtliches Motiv möglich, das erst im Dezember sichtbar werden soll.</p>\n<p>Die Planung ist aber nicht nur auf das Design beschränkt, sondern betrifft nahezu alle Bereiche, die über den Customizer zugänglich sind, wie zum Beispiel Widgets, Menüs oder im Customizer erstellte Seiten. Doch es gibt auch Ausnahmen, das Wechseln des Themes kann zum Beispiel nicht für die Zukunft geplant werden.</p>\n<p><img class=\"alignnone wp-image-2856 size-full\" src=\"https://de.wordpress.org/files/2017/11/wp49_001.jpg\" alt=\"\" width=\"686\" height=\"430\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_001.jpg 686w, https://de.wordpress.org/files/2017/11/wp49_001-300x188.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" /></p>\n<div style=\"width: 612px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-2854-1\" width=\"612\" height=\"344\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/customizer-drafting-scheduling.mp4?_=1\" /><a href=\"https://de.wordpress.org/files/2017/11/customizer-drafting-scheduling.mp4\">https://de.wordpress.org/files/2017/11/customizer-drafting-scheduling.mp4</a></video></div>\n<p>&nbsp;</p>\n<h3>Revisionen</h3>\n<p>Apropos: &#8222;wie man es von Beiträgen her bereits kennt&#8220;. Auch die Revisionen haben Einzug in den Customizer gehalten. Wenn du Änderungen nicht speicherst und das Fenster einfach schließt, legt WordPress automatische Speicherungen an, die du wiederherstellen kannst.</p>\n<p><img class=\"alignnone wp-image-2858 size-full\" src=\"https://de.wordpress.org/files/2017/11/wp49_003.jpg\" alt=\"\" width=\"425\" height=\"180\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_003.jpg 425w, https://de.wordpress.org/files/2017/11/wp49_003-300x127.jpg 300w\" sizes=\"(max-width: 425px) 100vw, 425px\" /></p>\n<p>&nbsp;</p>\n<h3>Zusammenarbeit und Feedback durch Vorschau-Links</h3>\n<p>Nachdem du eine Änderung im Customizer gespeichert hast, erhältst du einen Vorschau-Link, den du mit anderen Menschen teilen kannst. Das schafft die Möglichkeit, die Änderungen ohne Anmeldung oder besondere Berechtigungen zu betrachten.</p>\n<p><img class=\"alignnone size-full wp-image-2857\" src=\"https://de.wordpress.org/files/2017/11/wp49_002.jpg\" alt=\"\" width=\"689\" height=\"377\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_002.jpg 689w, https://de.wordpress.org/files/2017/11/wp49_002-300x164.jpg 300w\" sizes=\"(max-width: 689px) 100vw, 689px\" /></p>\n<div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-2\" width=\"612\" height=\"344\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/customizer-preview-link.mp4?_=2\" /><a href=\"https://de.wordpress.org/files/2017/11/customizer-preview-link.mp4\">https://de.wordpress.org/files/2017/11/customizer-preview-link.mp4</a></video></div>\n<p>&nbsp;</p>\n<h3>Zugriffssperre bei Arbeiten im Customizer</h3>\n<p>Es kann immer nur eine Person im Customizer arbeiten, für andere ist der Zugriff in dieser Zeit gesperrt.</p>\n<p><a href=\"https://de.wordpress.org/files/2017/11/customizer-locking-take-over-1.png\"><img class=\"alignleft size-large wp-image-2887\" src=\"https://de.wordpress.org/files/2017/11/customizer-locking-take-over-1-1024x574.png\" alt=\"\" width=\"612\" height=\"343\" srcset=\"https://de.wordpress.org/files/2017/11/customizer-locking-take-over-1-1024x574.png 1024w, https://de.wordpress.org/files/2017/11/customizer-locking-take-over-1-300x168.png 300w, https://de.wordpress.org/files/2017/11/customizer-locking-take-over-1-768x431.png 768w\" sizes=\"(max-width: 612px) 100vw, 612px\" /></a></p>\n<p>&nbsp;</p>\n<h3>Veröffentlichung von automatisch erstellten Beiträgen</h3>\n<p>Vom Customizer erstellte Beiträge werden automatisch und zeitgleich mit geplanten Änderungen veröffentlicht.</p>\n<p>&nbsp;</p>\n<h3>Neues beim Theme-Wechsel</h3>\n<p>Nicht nur auf die bereits installierten, sondern auch auf die Themes von wordpress.org bietet der Customizer jetzt Zugriff. Die Auswahl kann gefiltert und jedes Theme mit einem einzigen Klick direkt installiert werden … <a href=\"https://make.wordpress.org/core/2017/10/24/a-new-themes-experience-in-the-customizer/\"><i>ausführliche Infos</i></a>.</p>\n<div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-3\" width=\"612\" height=\"415\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/wp49_004.mp4?_=3\" /><a href=\"https://de.wordpress.org/files/2017/11/wp49_004.mp4\">https://de.wordpress.org/files/2017/11/wp49_004.mp4</a></video></div>\n<p>&nbsp;</p>\n<h3>Vereinfachung bei der Menü-Erstellung</h3>\n<p>Mit einem Schritt-für-Schritt-Workflow wird das Anlegen von Menüs richtig einfach. Wichtige Dinge, wie die Zuordnung zur Position, werden optisch hervorgehoben … <a href=\"https://make.wordpress.org/core/2017/11/07/nav-menu-improvements-in-the-customizer-in-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-4\" width=\"612\" height=\"282\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/wp49_005.mp4?_=4\" /><a href=\"https://de.wordpress.org/files/2017/11/wp49_005.mp4\">https://de.wordpress.org/files/2017/11/wp49_005.mp4</a></video></div>\n<p>&nbsp;</p>\n<h2>Widgets</h2>\n<h3>Shortcodes in Text- und Video-Widget</h3>\n<p>Ein seit acht Jahren geäußerter Wunsch wurde nun endlich Wirklichkeit. Ab sofort ist es nicht mehr nötig <code>add_filter( \'widget_text\', \'do_shortcode\' )</code> zu bemühen, um Shortcodes in Text- und Video-Widgets einsetzen zu können … <a href=\"https://make.wordpress.org/core/2017/10/24/widget-improvements-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p>&nbsp;</p>\n<h3>Medien im Text-Widget</h3>\n<p>Das Text-Widget verträgt ab WordPress 4.9 das Einbetten von Bildern, Galerien, Audio und weiteren Medien. Nutze dafür den Button &#8222;Medien hinzufügen&#8220; … <a href=\"https://make.wordpress.org/core/2017/10/24/widget-improvements-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p><img class=\"alignnone size-full wp-image-2861\" src=\"https://de.wordpress.org/files/2017/11/wp49_006.jpg\" alt=\"\" width=\"424\" height=\"215\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_006.jpg 424w, https://de.wordpress.org/files/2017/11/wp49_006-300x152.jpg 300w\" sizes=\"(max-width: 424px) 100vw, 424px\" /></p>\n<div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-5\" width=\"612\" height=\"344\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/add-media-to-text-widget.mp4?_=5\" /><a href=\"https://de.wordpress.org/files/2017/11/add-media-to-text-widget.mp4\">https://de.wordpress.org/files/2017/11/add-media-to-text-widget.mp4</a></video></div>\n<p>&nbsp;</p>\n<h3>Embed-Shortcode in Text- und Video-Widget</h3>\n<p>Das Text-Widget unterstützt den Shortcode <code>embed</code>. In das Video-Widget können alle oEmbed-Videos eingefügt werden … <a href=\"https://make.wordpress.org/core/2017/10/24/widget-improvements-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p>&nbsp;</p>\n<h3>Galerie-Widget</h3>\n<p>Der Name lässt es schon vermuten: Bildergalerien können via Galerie-Widget hinzugefügt werden … <a href=\"https://make.wordpress.org/core/2017/09/25/introducing-the-gallery-widget/\"><i>ausführliche Infos</i></a>.</p>\n<p><img class=\"alignnone size-full wp-image-2862\" src=\"https://de.wordpress.org/files/2017/11/wp49_007.jpg\" alt=\"\" width=\"432\" height=\"270\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_007.jpg 432w, https://de.wordpress.org/files/2017/11/wp49_007-300x188.jpg 300w\" sizes=\"(max-width: 432px) 100vw, 432px\" /></p>\n<div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-6\" width=\"612\" height=\"344\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/gallery-widget.mp4?_=6\" /><a href=\"https://de.wordpress.org/files/2017/11/gallery-widget.mp4\">https://de.wordpress.org/files/2017/11/gallery-widget.mp4</a></video></div>\n<p>&nbsp;</p>\n<h3>Warnung bei ungesicherten Inhalten</h3>\n<p>Verlorene Änderungen durch ein Vergessen des Speicherns gehören bei Widgets der Vergangenheit an, denn WordPress erinnert dich daran.</p>\n<p><img class=\"alignnone size-full wp-image-2863\" src=\"https://de.wordpress.org/files/2017/11/wp49_008.jpg\" alt=\"\" width=\"422\" height=\"139\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_008.jpg 422w, https://de.wordpress.org/files/2017/11/wp49_008-300x99.jpg 300w\" sizes=\"(max-width: 422px) 100vw, 422px\" /></p>\n<p>&nbsp;</p>\n<h2>Die Feinheiten</h2>\n<h3>Zuverlässiger Theme-Wechsel</h3>\n<p>Widgets und Menüs werden in WordPress 4.9 nach einem Theme-Wechsel nun oft weiterhin angezeigt.Das klappt immer dann sehr gut, wenn die IDs oder Bezeichnungen gleich sind oder nur eine Position vorhanden ist. Durch ein ausgeklügeltes Mapping werden ähnliche Bezeichnungen erkannt und verarbeitet.</p>\n<p>&nbsp;</p>\n<h3>Sandbox für die Sicherheit</h3>\n<p>Wenn du fehlerhaften Code in den Theme- oder Plugin-Editor eingibst und speichern willst, wirst du gewarnt. Ein fataler Fehler wird nahezu unmöglich, da statt des White Screens die vorherige Version wiederhergestellt wird.</p>\n<p><a href=\"https://de.wordpress.org/files/2017/11/editor-code-error_cut.png\"><img class=\"alignnone size-large wp-image-2889\" src=\"https://de.wordpress.org/files/2017/11/editor-code-error_cut-1024x400.png\" alt=\"\" width=\"612\" height=\"239\" srcset=\"https://de.wordpress.org/files/2017/11/editor-code-error_cut-1024x400.png 1024w, https://de.wordpress.org/files/2017/11/editor-code-error_cut-300x117.png 300w, https://de.wordpress.org/files/2017/11/editor-code-error_cut-768x300.png 768w\" sizes=\"(max-width: 612px) 100vw, 612px\" /></a></p>\n<div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-7\" width=\"612\" height=\"343\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/code-editing.mp4?_=7\" /><a href=\"https://de.wordpress.org/files/2017/11/code-editing.mp4\">https://de.wordpress.org/files/2017/11/code-editing.mp4</a></video></div>\n<p>&nbsp;</p>\n<h3>Abgesicherter Wechsel der E-Mail-Adresse</h3>\n<p>Wer künftig die E-Mail-Adresse über das eigene Profil ändern will, muss das über einen Bestätigungslink in einer E-Mail verifizieren (<a href=\"https://core.trac.wordpress.org/ticket/16470\">#16470</a>) … <a href=\"https://make.wordpress.org/core/2017/10/13/account-security-improvements-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p>&nbsp;</p>\n<h2>Entwicklung</h2>\n<h3>Verbesserungen bei Rollen und Capabilities</h3>\n<ul>\n<li>Neue Capabilities für das Aktivieren und Deaktivieren von Plugins sowie das Installieren und Aktualisieren von Sprachdateien.</li>\n<li>Die Sicherheit wurde gegenüber unerlaubten Aktionen abgehärtet.</li>\n<li>Überarbeitung von User-Capability und Wechsel der Rollen in Multisite … <a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\"><i>ausführliche Infos</i></a>.</li>\n</ul>\n<p>&nbsp;</p>\n<h3>Warnung vor Arbeiten an Originaldateien</h3>\n<p>Ohne Absicherung den Code von Plugins oder Themes zu ändern, kann für böses Erwachen sorgen. Sobald du den Plugin- oder Theme-Editor öffnest, wird WordPress dich deswegen entsprechend vorwarnen.</p>\n<p>Doch Achtung! Wenn du erst einmal auf den Button &#8222;Verstanden&#8220; geklickt hast, wird diese Warnung nicht wieder auftauchen. Also: gut durchlesen und noch besser verinnerlichen … <a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p><img class=\"alignnone size-full wp-image-2864\" src=\"https://de.wordpress.org/files/2017/11/wp49_009.jpg\" alt=\"\" width=\"437\" height=\"344\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_009.jpg 437w, https://de.wordpress.org/files/2017/11/wp49_009-300x236.jpg 300w\" sizes=\"(max-width: 437px) 100vw, 437px\" /> <img class=\"alignnone size-full wp-image-2865\" src=\"https://de.wordpress.org/files/2017/11/wp49_010.jpg\" alt=\"\" width=\"445\" height=\"403\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_010.jpg 445w, https://de.wordpress.org/files/2017/11/wp49_010-300x272.jpg 300w\" sizes=\"(max-width: 445px) 100vw, 445px\" /></p>\n<p>&nbsp;</p>\n<h3>CodeMirror hinzugefügt</h3>\n<p>Syntax Highlighting, Linting und Auto-Vervollständigung stehen ab sofort in den Theme- und Plugin-Editoren, im Customizer (Zusätzliches CSS) sowie im HTML-Widget zur Verfügung … <a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p><img class=\"alignnone wp-image-2867 size-medium\" src=\"https://de.wordpress.org/files/2017/11/wp49_012-300x87.png\" alt=\"\" width=\"300\" height=\"87\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_012-300x87.png 300w, https://de.wordpress.org/files/2017/11/wp49_012.png 596w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></p>\n<p><img class=\"alignnone wp-image-2866 size-medium\" src=\"https://de.wordpress.org/files/2017/11/wp49_011-300x82.png\" alt=\"\" width=\"300\" height=\"82\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_011-300x82.png 300w, https://de.wordpress.org/files/2017/11/wp49_011.png 674w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></p>\n<p><img class=\"alignnone wp-image-2869 size-medium\" src=\"https://de.wordpress.org/files/2017/11/wp49_014-300x298.png\" alt=\"\" width=\"300\" height=\"298\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_014-300x298.png 300w, https://de.wordpress.org/files/2017/11/wp49_014-150x150.png 150w, https://de.wordpress.org/files/2017/11/wp49_014.png 546w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></p>\n<p><img class=\"alignnone wp-image-2869 size-medium\" src=\"https://de.wordpress.org/files/2017/11/wp49_014-300x298.png\" alt=\"\" width=\"300\" height=\"298\" srcset=\"https://de.wordpress.org/files/2017/11/wp49_014-300x298.png 300w, https://de.wordpress.org/files/2017/11/wp49_014-150x150.png 150w, https://de.wordpress.org/files/2017/11/wp49_014.png 546w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></p>\n<p>&nbsp;</p>\n<div style=\"width: 430px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2854-8\" width=\"430\" height=\"442\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://de.wordpress.org/files/2017/11/wp49_015.mp4?_=8\" /><a href=\"https://de.wordpress.org/files/2017/11/wp49_015.mp4\">https://de.wordpress.org/files/2017/11/wp49_015.mp4</a></video></div>\n<p>&nbsp;</p>\n<h2>Unter der Haube</h2>\n<ul>\n<li>Verbesserungen an der <a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Customize JS API</a></li>\n<li>JS Inhalt-Templates für <code>WP_Customize_Control</code> (<a href=\"https://core.trac.wordpress.org/ticket/30738\">#30738</a>)</li>\n<li>Nutzung von <code>WP_Term_Query</code>, wenn tax-Queries transformiert werden (<a href=\"https://core.trac.wordpress.org/ticket/37038\">#37038</a>)</li>\n<li>Unterstützung für MySQL-Server beim Verbinden mit IPv6-Hosts hinzugefügt (<a href=\"https://core.trac.wordpress.org/ticket/41722\">#41722</a>)</li>\n<li>Twitter Emojis: Twemoji-Kompatibilität für PHP (<a href=\"https://core.trac.wordpress.org/ticket/35293\">#35293</a>)</li>\n<li><a href=\"https://make.wordpress.org/core/2017/10/25/improvements-in-rest-api-request-parameter-regular-expressions/\">Verbesserungen in REST API-Anfragen</a> beim Parsen von URL-Parametern</li>\n<li><a href=\"https://make.wordpress.org/core/2017/10/18/multisite-focused-changes-in-4-9/\">Multisite fokussierte Änderungen</a></li>\n<li>Verbesserte Usability der Customize JS API (<a href=\"https://core.trac.wordpress.org/ticket/42083\">#42083</a>,<a href=\"https://core.trac.wordpress.org/ticket/37964\">#37964</a>,<a href=\"https://core.trac.wordpress.org/ticket/36167\"> #36167</a>)</li>\n<li>Upgrade von MediaElement auf Version 4.2.6 (see<a href=\"https://core.trac.wordpress.org/ticket/39686\"> #39686</a>)</li>\n</ul>\n<p>&nbsp;</p>\n<h2>Medien</h2>\n<ul>\n<li>Nutzung von max-width für Standard-Bildunterschriften (<a href=\"https://core.trac.wordpress.org/ticket/33981\">#33981</a>)</li>\n<li>Reduzierung von doppelten Custom-Header-Zuschnitten im Customizer (<a href=\"https://core.trac.wordpress.org/ticket/21819\">#21819</a>)</li>\n<li>Erstellungsdatum von Videos werden in Meta gespeichert (<a href=\"https://core.trac.wordpress.org/ticket/35218\">#35218</a>)</li>\n</ul>\n<p>&nbsp;</p>\n<h2>Press This in 4.9</h2>\n<p>Ist nun als <a href=\"https://wordpress.org/plugins/press-this/\">Plugin</a> vorhanden und wurde aus dem Core entfernt … <a href=\"https://make.wordpress.org/core/2017/11/02/press-this-in-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p>&nbsp;</p>\n<h2>Screenreader</h2>\n<p>Änderung der CSS-Klasse <code>screen-reader-text</code> … <a href=\"https://make.wordpress.org/core/2017/10/22/changes-to-the-screen-reader-text-css-class-in-wordpress-4-9/\"><i>ausführliche Infos</i></a>.</p>\n<p>&nbsp;</p>\n<h2>Polyglots</h2>\n<p>I18N: Einführung der Klasse <code>Plural_Forms</code> (<a href=\"https://core.trac.wordpress.org/ticket/41562\">#41562</a>)</p>\n<p>&nbsp;</p>\n<h2>Externe Bibliothek entfernt</h2>\n<p>SWFUpload wurde entfernt (<a href=\"https://core.trac.wordpress.org/ticket/41752\">#41752</a>)</p>\n<p>&nbsp;</p>\n<h2>PHP 7.2 kompatibel</h2>\n<p>Core und die Unit-Test-Suite sind voll kompatibel zur kommenden PHP-Version 7.2.</p>\n<p>&nbsp;</p>\n<h2>Danke!</h2>\n<h3>Entwicklung</h3>\n<p>Die Releaseleitung hatten <a href=\"https://choycedesign.com/\"><NAME></a> und <a href=\"https://weston.ruter.net/\"><NAME></a>, mit der Hilfe der nachfolgenden Contributors. Insgesamt waren es 443, davon 185, die zum ersten Mal bei der Entwicklung mitgeholfen haben:</p>\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorbin\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\"><NAME>stein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\"><NAME>jörklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xknown\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xavortm\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\"><NAME></a>, <a href=\"https://profiles.wordpress.org/afercia\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andrewp-2\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nacin\"><NAME></a>, <a href=\"https://profiles.wordpress.org/azaozz\"><NAME>zz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey &#8222;Rarst&#8220; Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\"><NAME>waldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andy\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aniketpant\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anilbasnet\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ahortin\"><NAME></a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\"><NAME></a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\"><NAME></a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann1978</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\"><NAME></a>, <a href=\"https://profiles.wordpress.org/quasel\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kau-boy\"><NAME></a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\"><NAME> (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\"><NAME></a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bpayton\"><NAME></a>, <a href=\"https://profiles.wordpress.org/brianhogg\"><NAME></a>, <a href=\"https://profiles.wordpress.org/krogsgard\"><NAME>sgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sixhours\"><NAME></a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\"><NAME></a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cmmarslender\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chris_d2d\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chriswiegman\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\"><NAME></a>, <a href=\"https://profiles.wordpress.org/presskopp\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cwpnolen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/needle\"><NAME></a>, <a href=\"https://profiles.wordpress.org/christophherr\"><NAME></a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cgrymala\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cdog\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielkanchev\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\"><NAME>ik</a>, <a href=\"https://profiles.wordpress.org/mte90\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dllh\"><NAME> (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\"><NAME></a>, <a href=\"https://profiles.wordpress.org/goto10\"><NAME> (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\"><NAME></a>, <a href=\"https://profiles.wordpress.org/turtlepod\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dglingren\"><NAME></a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\"><NAME>ke</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide &#8218;Folletto&#8216; Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\"><NAME></a>, <a href=\"https://profiles.wordpress.org/valendesigns\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dd32\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dotancohen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dougwollison\"><NAME></a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\"><NAME>aynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\"><NAME></a>, <a href=\"https://profiles.wordpress.org/oso96_2000\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chopinbach\"><NAME></a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iseulde\"><NAME></a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pushred\"><NAME></a>, <a href=\"https://profiles.wordpress.org/eherman24\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\"><NAME></a>, <a href=\"https://profiles.wordpress.org/frank-klein\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fjarrett\"><NAME></a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\"><NAME></a>, <a href=\"https://profiles.wordpress.org/voldemortensen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/garyj\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pento\"><NAME></a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\"><NAME></a>, <a href=\"https://profiles.wordpress.org/goranseric\"><NAME></a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\"><NAME></a>, <a href=\"https://profiles.wordpress.org/grantderepas\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tivnet\"><NAME> (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\"><NAME></a>, <a href=\"https://profiles.wordpress.org/helen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/henrywright\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hugobaeta\"><NAME></a>, <a href=\"https://profiles.wordpress.org/polevaultweb\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iandunn\"><NAME>n</a>, <a href=\"https://profiles.wordpress.org/ianedington\"><NAME></a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\"><NAME></a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (<NAME>)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jakept\"><NAME></a>, <a href=\"https://profiles.wordpress.org/whyisjake\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jnylen0\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\"><NAME>obb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cheffheid\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jbpaul17\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jpry\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joehoyle\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joemcgill\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joelcj91\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\"><NAME>urn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\"><NAME>mar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnpbloch\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\"><NAME>ino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jbrinley\"><NAME>ley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj\"><NAME></a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jjeaton\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shelob9\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joshuawold\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\"><NAME>oro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\"><NAME></a>, <a href=\"https://profiles.wordpress.org/justinbusa\"><NAME></a>, <a href=\"https://profiles.wordpress.org/justinsainton\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jshreve\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jtsternberg\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kadamwhite\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\"><NAME></a>, <a href=\"https://profiles.wordpress.org/zoonini\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\"><NAME></a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\"><NAME></a>, <a href=\"https://profiles.wordpress.org/wraithkenny\"><NAME></a>, <a href=\"https://profiles.wordpress.org/khag7\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kwight\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\"><NAME></a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Kon<NAME></a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kristastevens\">K<NAME></a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/leewillis77\"><NAME></a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Le<NAME></a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\"><NAME>man</a>, <a href=\"https://profiles.wordpress.org/tyxla\"><NAME></a>, <a href=\"https://profiles.wordpress.org/clorith\"><NAME>.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\"><NAME></a>, <a href=\"https://profiles.wordpress.org/markjaquith\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mrwweb\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mapk\"><NAME></a>, <a href=\"https://profiles.wordpress.org/markoheijnen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matveb\"><NAME></a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\"><NAME>ullenweg</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>, <a href=\"https://profiles.wordpress.org/veraxus\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mattwiebe\"><NAME>be</a>, <a href=\"https://profiles.wordpress.org/mattheu\"><NAME>-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\"><NAME></a>, <a href=\"https://profiles.wordpress.org/michael-arestad\"><NAME></a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/michelleweber\"><NAME>ber</a>, <a href=\"https://profiles.wordpress.org/stubgo\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mauteri\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mihai2u\"><NAME>a</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\"><NAME>roder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dimadin\"><NAME></a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\"><NAME></a>, <a href=\"https://profiles.wordpress.org/deremohan\"><NAME></a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\"><NAME></a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nikeo\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nikschavan\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nikv\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nbachiyski\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rabmalin\"><NAME></a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\"><NAME></a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\"><NAME> (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\"><NAME>ler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\"><NAME>ilde</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\"><NAME></a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\"><NAME></a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\"><NAME>lla</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iamfriendly\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rpayne7264\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iamjolly\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\"><NAME></a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\"><NAME></a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\"><NAME>as</a>, <a href=\"https://profiles.wordpress.org/welcher\"><NAME></a>, <a href=\"https://profiles.wordpress.org/salcode\"><NAME></a>, <a href=\"https://profiles.wordpress.org/samikeijonen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/solarissmoke\"><NAME></a>, <a href=\"https://profiles.wordpress.org/samuelsidler\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sar<NAME>ing</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\"><NAME></a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\"><NAME></a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\"><EMAIL></a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sgr33n\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sstoqnov\"><NAME></a>, <a href=\"https://profiles.wordpress.org/metodiew\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sillybean\"><NAME></a>, <a href=\"https://profiles.wordpress.org/netweb\"><NAME></a>, <a href=\"https://profiles.wordpress.org/stephenharris\"><NAME></a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\"><NAME></a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\"><NAME></a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\"><NAME></a>, <a href=\"https://profiles.wordpress.org/miyauchi\"><NAME></a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\"><NAME></a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tjnowell\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\"><NAME></a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\"><NAME></a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/zuige\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">V<NAME>adiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\"><NAME></a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\"><NAME>t</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\"><NAME>hi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\"><NAME></a>, <a href=\"https://profiles.wordpress.org/oxymoron\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tollmanz\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a> und <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.</p>\n<p><strong>Vielen Dank auch an die Polyglot-Teams, die WordPress in insgesamt 43 Sprachen übersetzt haben</strong>.</p>\n<h3>Übersetzung ins Deutsche</h3>\n<p><a class=\"web\" href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a class=\"web\" href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a class=\"web\" href=\"https://profiles.wordpress.org/arkonisus\"> <NAME></a>, <a class=\"web\" href=\"https://profiles.wordpress.org/fstaude\"><NAME></a>, <a class=\"web\" href=\"https://profiles.wordpress.org/pixelverbieger\"><NAME></a>, <a class=\"web\" href=\"https://profiles.wordpress.org/ocean90\"><NAME> (ocean90)</a>, <a href=\"https://profiles.wordpress.org/andree84\">andree84</a>, <a href=\"https://profiles.wordpress.org/la-geek\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/pandulu\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flashbash\">flashbash</a>, <a href=\"https://profiles.wordpress.org/gehei\">gehei</a>, <a href=\"https://profiles.wordpress.org/soean\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timse201\">timse201</a> und <a href=\"https://profiles.wordpress.org/ww_hoax\">ww_hoax</a>.</p>\n<h2>Externe Bibliotheken</h2>\n<p><a href=\"http://backbonejs.org/\">Backbone.js</a>, <a href=\"https://squirrelmail.org/\">Class POP3</a>, <a href=\"https://codemirror.net/\">CodeMirror</a>, <a href=\"https://plugins.jquery.com/color/\">Color Animations</a>, <a href=\"http://getid3.sourceforge.net/\">getID3()</a>, <a href=\"https://pear.horde.org/\">Horde Text Diff</a>, <a href=\"http://cherne.net/brian/resources/jquery.hoverIntent.html\">hoverIntent</a>, <a href=\"http://odyniec.net/projects/imgareaselect/\">imgAreaSelect</a>, <a href=\"https://github.com/Automattic/Iris\">Iris</a>, <a href=\"https://jquery.com/\">jQuery</a>, <a href=\"https://jqueryui.com/\">jQuery UI</a>, <a href=\"https://github.com/tzuryby/jquery.hotkeys\">jQuery Hotkeys</a>, <a href=\"http://benalman.com/projects/jquery-misc-plugins/\">jQuery serializeObject</a>, <a href=\"https://plugins.jquery.com/query-object/\">jQuery.query</a>, <a href=\"https://github.com/pvulgaris/jquery.suggest\">jQuery.suggest</a>, <a href=\"http://touchpunch.furf.com/\">jQuery UI Touch Punch</a>, <a href=\"https://github.com/douglascrockford/JSON-js\">json2</a>, <a href=\"http://masonry.desandro.com/\">Masonry</a>, <a href=\"http://mediaelementjs.com/\">MediaElement.js</a>, <a href=\"http://www.phpconcept.net/pclzip/\">PclZip</a>, <a href=\"https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html\">PemFTP</a>, <a href=\"http://www.openwall.com/phpass/\">phpass</a>, <a href=\"https://github.com/PHPMailer/PHPMailer\">PHPMailer</a>, <a href=\"http://www.plupload.com/\">Plupload</a>, <a href=\"https://github.com/paragonie/random_compat\">random_compat</a>, <a href=\"http://requests.ryanmccue.info/\">Requests</a>, <a href=\"http://simplepie.org/\">SimplePie</a>, <a href=\"http://scripts.incutio.com/xmlrpc/\">The Incutio XML-RPC Library</a>, <a href=\"http://codylindley.com/thickbox/\">Thickbox</a>, <a href=\"https://www.tinymce.com/\">TinyMCE</a>, <a href=\"https://github.com/twitter/twemoji\">Twemoji</a>, <a href=\"http://underscorejs.org/\">Underscore.js</a> und <a href=\"https://github.com/dropbox/zxcvbn\">zxcvbn</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.9 Release-Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://de.wordpress.org/2017/11/wordpress-4-9-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Nov 2017 07:57:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=2848\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"Heute wurde der dritte Release-Candidate (RC) für WordPress 4.9 veröffentlicht. Beim Stand eines RCs geht das Team davon aus, alle Dinge für die neue Version fertig zu haben, aber mit Millionen Nutzern und Tausenden Plugins sowie Themes kann es sein, dass das Team etwas übersehen hat. Und das ist passiert, denn der dritte RC war [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3462:\"<p>Heute wurde der dritte Release-Candidate (RC) für WordPress 4.9 veröffentlicht. Beim Stand eines RCs geht das Team davon aus, alle Dinge für die neue Version fertig zu haben, aber mit Millionen Nutzern und Tausenden Plugins sowie Themes kann es sein, dass das Team etwas übersehen hat. Und das ist passiert, denn der dritte RC war eigentlich nicht geplant, aber durch die Tests der Nutzer von RC 2 wurden noch Probleme gefunden, die nun in RC 3 behoben wurden.</p>\n<p><span id=\"more-2848\"></span></p>\n<p>Die finale Version von WordPress 4.9 soll am 14. November um 23 Uhr UTC (24 Uhr deutscher Zeit) veröffentlicht werden, aber dafür braucht das Core-Team immer noch eure Hilfe beim Testen. Falls noch weitere Probleme bis zum geplanten Release-Termin auftauchen, wird die neue Version vielleicht auf den folgenden Tag verschoben.</p>\n<p>Um WordPress 4.9 zu testen, könnt ihr das Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> nutzen oder euch die <a href=\"https://wordpress.org/wordpress-4.9-RC3.zip\">ZIP des Release-Candidates</a> herunterladen.</p>\n<p>Seit dem RC2 wurden etwas über 20 Änderungen vorgenommen. Mehr Details zu den Änderungen und Neuerungen von 4.9 gibt es in den Beiträgen zu <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>, <a href=\"https://de.wordpress.org/2017/11/wordpress-4-9-release-candidate/\">RC 1</a> und <a href=\"https://de.wordpress.org/2017/11/wordpress-4-9-release-candidate-2/\">RC 2</a>. Ein paar Bereiche, die in RC 3 besonders getestet werden sollten:</p>\n<ul>\n<li>Wechsel zwischen dem Visuell- und Text-Tab im Editor, und die Synchronisierung des Cursors zwischen den beiden Ansichten.</li>\n<li>Überschreiben von Linting-Fehlern im CSS-Editor des Customizers.</li>\n<li>Menüeinträge für eigene Links im Customizer hinzufügen.</li>\n<li>Planen von Customizer-Entwürfen (beispielsweise Seiten, die beim Hinzufügen eines Menüeintrags im Customizer erstellt werden) für die Veröffentlichung.</li>\n<li>Automatisches Speichern von Revisionen für Änderungen im Customizer.</li>\n<li>Styling der About-Seite.</li>\n</ul>\n<p>Wenn ihr Plugins oder Themes entwickelt habt, testet sie bitte mit 4.9 und aktualisiert die »Tested up to«-Version in der Readme auf 4.9. Wenn ihr Kompatibilitätsprobleme findet, schreibt sie in das englische Support-Forum, damit sie vor dem finalen Release geklärt werden können. Mehr Infos zu den entwicklungsspezifischen Neuerungen gibt es im zusammenfassenden <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">Field-Guide</a> zu den <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">4.9-Dev-Notes</a> im <a href=\"https://make.wordpress.org/core/\">Core-Development-Blog</a>.</p>\n<p>Wenn ihr meint, einen Bug gefunden zu haben, schreibt ihn in den <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha-/Beta-Bereich des Forums</a>. Alternativ könnt ihr auch einen reproduzierbaren Bug-Report im <a href=\"https://make.wordpress.org/core/reports/\">Trac</a> erstellen, wenn ihr euch damit auskennt. Dort findet ihr auch eine <a href=\"https://core.trac.wordpress.org/tickets/major\">Liste mit allen bekannten Problemen</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.9 Release-Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://de.wordpress.org/2017/11/wordpress-4-9-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Nov 2017 08:44:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=2834\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"Heute wurde der zweite Release-Candidate (RC) für WordPress 4.9 veröffentlicht. RC heißt, dass die neue Version soweit eigentlich fertig sein sollte. Mit Millionen Nutzern und Tausenden Plugins und Themes kann es aber sein, dass das Core-Team etwas übersehen hat. Die finale Version ist für den 14. November geplant, aber es wird eure Hilfe benötigt, um [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2804:\"<p>Heute wurde der zweite Release-Candidate (RC) für WordPress 4.9 veröffentlicht.</p>\n<p>RC heißt, dass die neue Version soweit eigentlich fertig sein sollte. Mit Millionen Nutzern und Tausenden Plugins und Themes kann es aber sein, dass das Core-Team etwas übersehen hat. Die finale Version ist für den 14. November geplant, aber es wird eure Hilfe benötigt, um das zu schaffen. Wenn ihr 4.9 noch nicht ausprobiert habt, ist jetzt ein guter Zeitpunkt!</p>\n<p>Um WordPress 4.9 zu testen, könnt ihr das Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> nutzen oder den <a href=\"https://wordpress.org/wordpress-4.9-RC2.zip\">Release-Candidate als ZIP</a> herunterladen.</p>\n<p><span id=\"more-2834\"></span></p>\n<p>Seit dem ersten RC wurden <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=42124&amp;stop_rev=42049&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">über 20 Änderungen</a> vorgenommen. Mehr Informationen zu den Neuerungen von 4.9 gibt es in den Beiträgen zu <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-4/\">Beta 4</a> und <a href=\"https://de.wordpress.org/2017/11/wordpress-4-9-release-candidate/\">RC1</a>. Konkrete Bereiche, die im zweiten RC getestet werden sollten:</p>\n<ul>\n<li>Theme-Installation im Customizer.</li>\n<li>Änderungen im Customizer zur Veröffentlichung planen.</li>\n<li>Themes mit Live-Vorschau im Customizer wechseln.</li>\n</ul>\n<p>Wenn ihr Plugins oder Themes erstellt habt, testet sie bitte mit 4.9 und ändert die »Tested up to«-Version in der Plugin-Readme auf 4.9. Wenn ihr Kompatibilitätsprobleme findet, schreibt sie in die englischen Support-Foren, damit die vor dem finalen Release geklärt werden können. Mehr Informationen zu den entwicklungsspezifischen Neuerungen von 4.9 gibt es im zusammenfassenden <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">Field-Guide</a> zu den <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">Dev-Notes</a> im <a href=\"https://make.wordpress.org/core/\">Core-Development-Blog</a>.</p>\n<p>Wenn ihr glaubt einen Bug gefunden zu haben, könnt ihr ihn im <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha-/Beta-Bereich</a> des Forums melden. Falls ihr euch mit der Erstellung eines reproduzierbaren Bug-Reports auskennt, erstellt einen im <a href=\"https://make.wordpress.org/core/reports/\">WordPress-Trac</a>, wo ihr auch eine <a href=\"https://core.trac.wordpress.org/tickets/major\">Liste der bekannten Bugs</a> findet.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.9 Release-Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://de.wordpress.org/2017/11/wordpress-4-9-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Nov 2017 09:47:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=2830\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"Gestern wurde der Release-Candidate (RC) für WordPress 4.9 veröffentlicht. RC bedeutet, dass das Entwicklungs-Team glaubt, die neue Version fertig zu haben – mit Millionen von Nutzern und tausenden Plugins und Themes ist es aber natürlich möglich, dass etwas übersehen wurde. Der finale Release soll am 14. November erscheinen, aber dafür benötigt das Core-Team eure Hilfe. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2439:\"<p>Gestern wurde der Release-Candidate (RC) für WordPress 4.9 veröffentlicht. RC bedeutet, dass das Entwicklungs-Team glaubt, die neue Version fertig zu haben – mit Millionen von Nutzern und tausenden Plugins und Themes ist es aber natürlich möglich, dass etwas übersehen wurde. Der finale Release soll am 14. November erscheinen, aber dafür benötigt das Core-Team eure Hilfe. Falls ihr die neue Version noch nicht getestet habt, ist jetzt der richtige Zeitpunkt!<span id=\"more-2830\"></span></p>\n<p>Um WordPress 4.9 RC zu testen, könnt ihr das Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> verwenden oder euch <a href=\"https://wordpress.org/wordpress-4.9-RC1.zip\">die ZIP</a> herunterladen.</p>\n<p>Seit der vierten Beta sind <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=42049&amp;stop_rev=42022&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">fast 30 Änderungen</a> dazugekommen – mehr Informationen zu den Neuerungen von 4.9 gibt es in den Beiträgen zu <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-3/\">Beta 3</a> und <a href=\"https://de.wordpress.org/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>.</p>\n<p>Wenn ihr Themes oder Plugins erstellt habt, testet sie bitte mit 4.9 und aktualisiert die »Tested up to«-Angabe in der Readme auf 4.9. Wenn ihr Kompatibilitätsprobleme feststellt, schreibt sie in die englischen Support-Foren, damit sie vor dem finalen Release geklärt werden können. Ein ausführlicher Beitrag zu den für Entwickler interessanten Änderungen wird es bald im <a href=\"https://make.wordpress.org/core/\">Make/Core-Blog</a> geben – dort findet ihr aber bereits jetzt schon einige interessante <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">Dev-Notes für 4.9</a>.</p>\n<p>Wenn ihr glaubt, einen Bug gefunden zu haben, meldet ihn im <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha-/Beta-Bereich</a> des Support-Forums. Falls ihr euch damit auskennt, einen reproduzierbaren Bug-Report zu erstellen, könnt ihr das <a href=\"https://make.wordpress.org/core/reports/\">im Trac</a> tun, wo ihr auch eine <a href=\"https://core.trac.wordpress.org/tickets/major\">Liste der bereits bekannten Bugs</a> findet.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:47:\"https://de.wordpress.org/category/release/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 02 Jun 2018 13:06:18 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 28 May 2018 10:51:56 GMT\";s:4:\"link\";s:61:\"<https://de.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20180602125722\";}','no'), (287,'_transient_timeout_feed_mod_f014c832422b67a4cec692b17aa40756','1527987979','no'), (288,'_transient_feed_mod_f014c832422b67a4cec692b17aa40756','1527944779','no'), (289,'_transient_timeout_feed_8d5c87fbe8c82bb2500f5d58f08a433a','1527987980','no'), (290,'_transient_feed_8d5c87fbe8c82bb2500f5d58f08a433a','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:2:\"\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:4:\"0.92\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:37:\"\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Deutschsprachiger Channel – WordPress Deutsch Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"http://de.planetwp.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"Der Planet listet Inhalte ausgewählter Blogs auf, die regelmäßig Beiträge zu WordPress publizieren.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 09:18:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"docs\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://backend.userland.com/rss092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"de-DE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Erste Erfahrungen mit WordPress und was ich gelernt habe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://www.elmastudio.de/erste-erfahrungen-mit-wordpress-und-was-ich-gelernt-habe/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"15 Jahre WordPress – aus Sicht der deutschen Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://presswerk.net/pw042/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WordPress: mit Statify anstatt Jetpack oder Analytics für mehr Performance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://www.perun.net/2018/05/25/wordpress-mit-statify-anstatt-jetpack-oder-analytics-fuer-mehr-performance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Pluggable Template-Funktionen im WordPress Child Theme modifizieren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://themecoder.de/2018/05/24/pluggable-template-funktionen-im-wordpress-child-theme-modifizieren/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress Multi-Networks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://presswerk.net/pw041/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress-Wochenrückblick KW20: WordPress 4.9.6 und mehr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://florianbrinkmann.com/6194/wordpress-wochenrueckblick-wordpress-4-9-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Gravatare und Emoji-Fallbacks für WordPress-Sites vom eigenen Server laden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://florianbrinkmann.com/6179/wordpress-lokale-emojis-und-gravatar/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Einfacher WordPress Spamschutz für Contact Form 7 ohne reCAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://themecoder.de/2018/05/17/einfacher-wordpress-spamschutz-fuer-contact-form-7-ohne-recaptcha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Das Schreckgespenst DSGVO, Teil 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://www.perun.net/2018/05/14/das-schreckgespenst-dsgvo-teil-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress News #230 / Antispam Bee, die DSGVO und WordPress-Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://tracking.feedpress.it/link/14399/9147021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:8;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:4:\"date\";s:29:\"Sat, 02 Jun 2018 13:06:18 GMT\";s:6:\"server\";s:6:\"Apache\";s:12:\"x-powered-by\";s:9:\"PHP/7.0.0\";s:4:\"link\";s:59:\"<http://de.planetwp.org/wp-json/>; rel=\"https://api.w.org/\"\";s:7:\"upgrade\";s:6:\"h2,h2c\";s:13:\"last-modified\";s:29:\"Fri, 01 Jun 2018 09:18:00 GMT\";s:4:\"etag\";s:34:\"\"bba1f5f6dc1f8f804ac9c1be63979d53\"\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";}}s:5:\"build\";s:14:\"20180602125722\";}','no'), (291,'_transient_timeout_feed_mod_8d5c87fbe8c82bb2500f5d58f08a433a','1527987980','no'), (292,'_transient_feed_mod_8d5c87fbe8c82bb2500f5d58f08a433a','1527944780','no'), (293,'_transient_timeout_dash_v2_898c881de4a92ca37616885905bba3b7','1527987980','no'), (294,'_transient_dash_v2_898c881de4a92ca37616885905bba3b7','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://de.wordpress.org/2018/05/wordpress-4-9-6/\'>WordPress 4.9.6 Datenschutz- und Wartungs-Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://www.elmastudio.de/erste-erfahrungen-mit-wordpress-und-was-ich-gelernt-habe/\'>Erste Erfahrungen mit WordPress und was ich gelernt habe</a></li><li><a class=\'rsswidget\' href=\'https://presswerk.net/pw042/\'>15 Jahre WordPress – aus Sicht der deutschen Community</a></li><li><a class=\'rsswidget\' href=\'https://www.perun.net/2018/05/25/wordpress-mit-statify-anstatt-jetpack-oder-analytics-fuer-mehr-performance/\'>WordPress: mit Statify anstatt Jetpack oder Analytics für mehr Performance</a></li></ul></div>','no'), (295,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1527944781;s:7:\"checked\";a:4:{s:7:\"kittnwp\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:15:\"twentyseventeen\";s:3:\"1.6\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'), (296,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1527944782;s:7:\"checked\";a:11:{s:25:\"adminimize/adminimize.php\";s:6:\"1.11.4\";s:21:\"acf-link/acf-link.php\";s:5:\"1.1.6\";s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"5.6.10\";s:19:\"akismet/akismet.php\";s:5:\"4.0.3\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:5:\"1.5.8\";s:25:\"debug-this/debug-this.php\";s:3:\"0.6\";s:33:\"duplicate-post/duplicate-post.php\";s:5:\"3.2.2\";s:9:\"hello.php\";s:3:\"1.7\";s:31:\"kint-debugger/kint-debugger.php\";s:3:\"1.2\";s:29:\"wp-smartcrop/wp-smartcrop.php\";s:5:\"1.4.7\";s:25:\"wp-sync-db/wp-sync-db.php\";s:3:\"1.6\";}s:8:\"response\";a:2:{s:21:\"acf-link/acf-link.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/acf-link\";s:4:\"slug\";s:8:\"acf-link\";s:6:\"plugin\";s:21:\"acf-link/acf-link.php\";s:11:\"new_version\";s:5:\"1.1.7\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/acf-link/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/acf-link.1.1.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:53:\"https://ps.w.org/acf-link/assets/icon.svg?rev=1285260\";s:3:\"svg\";s:53:\"https://ps.w.org/acf-link/assets/icon.svg?rev=1285260\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/acf-link/assets/banner-1544x500.png?rev=1285260\";s:2:\"1x\";s:63:\"https://ps.w.org/acf-link/assets/banner-772x250.png?rev=1285260\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.8.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:25:\"adminimize/adminimize.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/adminimize\";s:4:\"slug\";s:10:\"adminimize\";s:6:\"plugin\";s:25:\"adminimize/adminimize.php\";s:11:\"new_version\";s:6:\"1.11.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/adminimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/adminimize.1.11.4.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:61:\"https://s.w.org/plugins/geopattern-icon/adminimize_000000.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/adminimize/assets/banner-772x250.png?rev=1118207\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"custom-post-type-ui/custom-post-type-ui.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/custom-post-type-ui\";s:4:\"slug\";s:19:\"custom-post-type-ui\";s:6:\"plugin\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:11:\"new_version\";s:5:\"1.5.8\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/custom-post-type-ui/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.5.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/custom-post-type-ui/assets/icon-256x256.png?rev=1069557\";s:2:\"1x\";s:72:\"https://ps.w.org/custom-post-type-ui/assets/icon-128x128.png?rev=1069557\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/custom-post-type-ui/assets/banner-1544x500.png?rev=1069557\";s:2:\"1x\";s:74:\"https://ps.w.org/custom-post-type-ui/assets/banner-772x250.png?rev=1069557\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"debug-this/debug-this.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/debug-this\";s:4:\"slug\";s:10:\"debug-this\";s:6:\"plugin\";s:25:\"debug-this/debug-this.php\";s:11:\"new_version\";s:3:\"0.6\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/debug-this/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/debug-this.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/debug-this/assets/icon-256x256.png?rev=1555481\";s:2:\"1x\";s:63:\"https://ps.w.org/debug-this/assets/icon-256x256.png?rev=1555481\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/debug-this/assets/banner-772x250.png?rev=1555481\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:5:\"3.2.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/duplicate-post.3.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=1612753\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=1612753\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=1612986\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"kint-debugger/kint-debugger.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/kint-debugger\";s:4:\"slug\";s:13:\"kint-debugger\";s:6:\"plugin\";s:31:\"kint-debugger/kint-debugger.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/kint-debugger/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/kint-debugger.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/kint-debugger/assets/icon-256x256.png?rev=1562765\";s:2:\"1x\";s:66:\"https://ps.w.org/kint-debugger/assets/icon-256x256.png?rev=1562765\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/kint-debugger/assets/banner-772x250.png?rev=1562765\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-smartcrop/wp-smartcrop.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-smartcrop\";s:4:\"slug\";s:12:\"wp-smartcrop\";s:6:\"plugin\";s:29:\"wp-smartcrop/wp-smartcrop.php\";s:11:\"new_version\";s:5:\"1.4.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-smartcrop/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wp-smartcrop.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-smartcrop/assets/icon-256x256.png?rev=1371575\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smartcrop/assets/icon-128x128.png?rev=1371575\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-smartcrop/assets/banner-1544x500.png?rev=1371571\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-smartcrop/assets/banner-772x250.png?rev=1371571\";}s:11:\"banners_rtl\";a:0:{}}}}','no'), (299,'theme_mods_kittnwp','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}}','yes'), (301,'_transient_timeout_plugin_slugs','1528031259','no'), (302,'_transient_plugin_slugs','a:11:{i:0;s:25:\"adminimize/adminimize.php\";i:1;s:21:\"acf-link/acf-link.php\";i:2;s:34:\"advanced-custom-fields-pro/acf.php\";i:3;s:19:\"akismet/akismet.php\";i:4;s:43:\"custom-post-type-ui/custom-post-type-ui.php\";i:5;s:25:\"debug-this/debug-this.php\";i:6;s:33:\"duplicate-post/duplicate-post.php\";i:7;s:9:\"hello.php\";i:8;s:31:\"kint-debugger/kint-debugger.php\";i:9;s:29:\"wp-smartcrop/wp-smartcrop.php\";i:10;s:25:\"wp-sync-db/wp-sync-db.php\";}','no'), (303,'_site_transient_timeout_available_translations','1527957168','no'), (304,'_site_transient_available_translations','a:113:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-06 13:56:09\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-24 07:02:30\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-04 08:43:29\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.5/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-25 15:24:22\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.6/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-22 03:44:52\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-22 04:53:33\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 13:12:01\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-24 10:52:38\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-25 09:11:29\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-31 19:43:07\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 18:15:25\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.9.6/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 18:14:55\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 17:56:21\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.9.6/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-05 12:41:56\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-22 00:27:45\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 08:45:22\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-22 19:01:38\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 23:18:17\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 15:47:52\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-27 18:50:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-18 03:09:27\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-02-27 05:22:44\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 23:17:08\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 15:03:42\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2017-07-31 15:12:02\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.6/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-10-01 17:54:52\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-31 11:12:52\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-19 14:11:29\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-30 07:44:25\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-16 10:29:40\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 21:23:19\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-25 14:56:25\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-01-31 11:16:06\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.6/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-17 12:42:52\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-02-14 06:16:04\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-15 08:49:46\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 03:43:25\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 15:45:31\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 22:45:22\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-30 09:55:05\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-28 07:55:20\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 11:38:59\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.6/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-08 06:01:48\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-22 22:24:38\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.5/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-26 15:32:13\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-24 09:42:27\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.6/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-23 08:05:19\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-22 19:04:05\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 14:40:52\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.9.6/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-18 13:37:44\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-30 12:22:32\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-22 09:27:50\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-28 15:53:31\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-21 19:42:47\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-24 11:43:38\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-09 09:30:48\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.9.5/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-28 11:37:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-29 17:37:01\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-22 17:23:37\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-25 10:30:04\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-17 22:21:34\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.9.6\";s:7:\"updated\";s:19:\"2018-05-29 07:47:42\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.6/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-02 17:08:41\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-04 21:51:10\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-06 20:34:06\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-13 08:24:25\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-09 10:37:43\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-11 05:09:29\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-09 00:56:52\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-13 02:41:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-17 22:20:52\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'); /*!40000 ALTER TABLE `wpkittn_options` ENABLE KEYS */; UNLOCK TABLES; # Export von Tabelle wpkittn_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_postmeta`; CREATE TABLE `wpkittn_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_postmeta` WRITE; /*!40000 ALTER TABLE `wpkittn_postmeta` DISABLE KEYS */; INSERT INTO `wpkittn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'), (2,4,'_edit_lock','1527417267:2'), (3,47,'_edit_lock','1527428748:2'), (4,49,'_edit_lock','1527417101:2'), (5,55,'_edit_lock','1527417171:2'), (6,58,'_edit_lock','1499200118:1'), (7,231,'_form','<label> Dein Name (Pflichtfeld)\n [text* your-name] </label>\n\n<label> Deine E-Mail-Adresse (Pflichtfeld)\n [email* your-email] </label>\n\n<label> Betreff\n [text your-subject] </label>\n\n<label> Deine Nachricht\n [textarea your-message] </label>\n\n[submit \"Senden\"]'), (8,231,'_mail','a:8:{s:7:\"subject\";s:22:\"kittn \"[your-subject]\"\";s:6:\"sender\";s:39:\"[your-name] <<EMAIL>>\";s:4:\"body\";s:182:\"Von: [your-name] <[your-email]>\nBetreff: [your-subject]\n\nNachrichtentext:\n[your-message]\n\n-- \nDiese E-Mail wurde von einem Kontaktformular von kittn (http://kittn.local) gesendet\";s:9:\"recipient\";s:14:\"<EMAIL>\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'), (9,231,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:22:\"kittn \"[your-subject]\"\";s:6:\"sender\";s:33:\"kittn <<EMAIL>>\";s:4:\"body\";s:125:\"Nachrichtentext:\n[your-message]\n\n-- \nDiese E-Mail wurde von einem Kontaktformular von kittn (http://kittn.local) gesendet\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:24:\"Reply-To: <EMAIL>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'), (10,231,'_messages','a:8:{s:12:\"mail_sent_ok\";s:54:\"Vielen Dank für deine Mitteilung. Sie wurde versandt.\";s:12:\"mail_sent_ng\";s:111:\"Beim Versuch, deine Mitteilung zu versenden, ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.\";s:16:\"validation_error\";s:91:\"Ein oder mehrere Felder sind fehlerhaft. Bitte überprüfe sie und versuche es noch einmal.\";s:4:\"spam\";s:111:\"Beim Versuch, deine Mitteilung zu versenden, ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.\";s:12:\"accept_terms\";s:73:\"Du musst die Bedingungen akzeptieren bevor du deine Mitteilung absendest.\";s:16:\"invalid_required\";s:26:\"Das Feld ist erforderlich.\";s:16:\"invalid_too_long\";s:21:\"Das Feld ist zu lang.\";s:17:\"invalid_too_short\";s:21:\"Das Feld ist zu kurz.\";}'), (11,231,'_additional_settings',NULL), (12,231,'_locale','de_DE'), (13,27,'_edit_lock','1527417717:2'), (25,177,'_edit_lock','1527434361:2'), (26,69,'_edit_lock','1527416384:2'), (27,69,'_edit_last','2'), (28,76,'_edit_lock','1527416388:2'), (29,81,'_edit_lock','1527945597:3'), (30,81,'_edit_last','2'), (31,90,'_edit_lock','1527416429:2'), (32,90,'_edit_last','2'), (33,102,'_edit_lock','1527416794:2'), (34,102,'_edit_last','2'), (35,108,'_edit_lock','1527416803:2'), (36,117,'_edit_lock','1527416807:2'), (37,117,'_edit_last','2'), (38,124,'_edit_lock','1527423164:2'), (39,124,'_edit_last','2'), (40,126,'_edit_lock','1527423987:2'), (41,126,'_edit_last','2'), (42,136,'_edit_lock','1527416979:2'), (43,136,'_edit_last','2'), (44,143,'_edit_lock','1527416984:2'), (45,143,'_edit_last','2'), (46,151,'_edit_lock','1527426450:2'), (47,151,'_edit_last','2'), (48,158,'_edit_lock','1527417002:2'), (49,158,'_edit_last','2'), (50,166,'_edit_lock','1527417021:2'), (51,166,'_edit_last','2'), (52,172,'_edit_lock','1527417034:2'), (53,172,'_edit_last','2'), (54,203,'_edit_lock','1527417051:2'), (55,203,'_edit_last','2'), (56,209,'_edit_lock','1527416305:2'), (57,211,'_edit_lock','1527417092:2'), (58,211,'_edit_last','2'), (59,177,'_edit_last','2'), (60,4,'_edit_last','2'), (61,27,'_edit_last','2'), (62,47,'_edit_last','2'), (421,2,'_edit_lock','1527434818:3'); /*!40000 ALTER TABLE `wpkittn_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Export von Tabelle wpkittn_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_posts`; CREATE TABLE `wpkittn_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf<PASSWORD>_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_posts` WRITE; /*!40000 ALTER TABLE `wpkittn_posts` DISABLE KEYS */; INSERT INTO `wpkittn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (2,3,'2017-07-02 23:17:30','2017-07-02 21:17:30','Dies ist ein Beispiel einer statischen Seite. Du kannst sie bearbeiten und beispielsweise Infos über dich oder deine Website eingeben, damit die Leser wissen, woher du kommst und was du machst.\n\nDu kannst entweder beliebig viele Hauptseiten (wie diese hier) anlegen – oder auch Unterseiten, die sich in der Hierachiestruktur den Hauptseiten unterordnen. Du kannst diese alle innerhalb von WordPress ändern und verwalten.\n\nAls stolzer Besitzer einer neuen WordPress-Seite solltest du jetzt zur Übersichtsseite, dem <a href=\"http://wptest3.local/wp-admin/\">Dashboard</a> gehen, diese Seite hier löschen und damit loslegen, eigene Inhalte zu erstellen. Viel Spaß!','Beispiel-Seite','','publish','closed','open','','beispiel-seite','','','2017-07-02 23:17:30','2017-07-02 21:17:30','',0,'http://wptest3.local/?page_id=2',0,'page','',0), (4,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"default\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:15:\"acf_after_title\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:2:{i:0;s:13:\"custom_fields\";i:1;s:14:\"featured_image\";}s:11:\"description\";s:45:\"Main Content Builder um Inhalte zu erstellen.\";}','Content Builder','content-builder','publish','closed','closed','','group_588f05fb6d514','','','2018-05-27 12:36:38','2018-05-27 10:36:38','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=4',0,'acf-field-group','',0), (5,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:9:{s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"layouts\";a:19:{s:13:\"588dbdedaa1ec\";a:6:{s:3:\"key\";s:13:\"588dbdedaa1ec\";s:5:\"label\";s:8:\"Headline\";s:4:\"name\";s:8:\"headline\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc21c76a6c\";a:6:{s:3:\"key\";s:13:\"588dc21c76a6c\";s:5:\"label\";s:8:\"Richtext\";s:4:\"name\";s:8:\"richtext\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc2ac76a70\";a:6:{s:3:\"key\";s:13:\"588dc2ac76a70\";s:5:\"label\";s:4:\"List\";s:4:\"name\";s:4:\"list\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc2cc76a72\";a:6:{s:3:\"key\";s:13:\"588dc2cc76a72\";s:5:\"label\";s:5:\"Quote\";s:4:\"name\";s:5:\"quote\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"58ada32e037a9\";a:6:{s:3:\"key\";s:13:\"58ada32e037a9\";s:5:\"label\";s:4:\"Card\";s:4:\"name\";s:4:\"card\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc33d76a76\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:11:\"Media Image\";s:4:\"name\";s:11:\"media_image\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc35e76a78\";a:6:{s:3:\"key\";s:13:\"588dc35e76a78\";s:5:\"label\";s:7:\"Gallery\";s:4:\"name\";s:7:\"gallery\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc38576a7a\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:12:\"Image Slider\";s:4:\"name\";s:12:\"image_slider\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc3a576a7c\";a:6:{s:3:\"key\";s:13:\"588dc3a576a7c\";s:5:\"label\";s:11:\"Card Slider\";s:4:\"name\";s:11:\"card_slider\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc3d176a7e\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:14:\"Iframe Content\";s:4:\"name\";s:14:\"iframe_content\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc40c76a80\";a:6:{s:3:\"key\";s:13:\"588dc40c76a80\";s:5:\"label\";s:6:\"Button\";s:4:\"name\";s:6:\"button\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc42b76a82\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:13:\"Slide Out Box\";s:4:\"name\";s:13:\"slide_out_box\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc46976a84\";a:6:{s:3:\"key\";s:13:\"588dc46976a84\";s:5:\"label\";s:16:\"Horizontal Ruler\";s:4:\"name\";s:16:\"horizontal_ruler\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc49876a86\";a:6:{s:3:\"key\";s:13:\"588dc49876a86\";s:5:\"label\";s:6:\"Spacer\";s:4:\"name\";s:6:\"spacer\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc4d911e6e\";a:6:{s:3:\"key\";s:13:\"588dc4d911e6e\";s:5:\"label\";s:6:\"Anchor\";s:4:\"name\";s:6:\"anchor\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc4ff11e70\";a:6:{s:3:\"key\";s:13:\"588dc4ff11e70\";s:5:\"label\";s:14:\"Jumpnavigation\";s:4:\"name\";s:14:\"jumpnavigation\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588f1902586e7\";a:6:{s:3:\"key\";s:13:\"588f1902586e7\";s:5:\"label\";s:9:\"Accordion\";s:4:\"name\";s:9:\"accordion\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588f2b4092d1a\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:3:\"Tab\";s:4:\"name\";s:3:\"tab\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"58aa104d1303b\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:4:\"Grid\";s:4:\"name\";s:4:\"grid\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:12:\"button_label\";s:13:\"Add Component\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}','Content Builder','contentBuilder','publish','closed','closed','','field_588f05fb7043d','','','2018-05-27 12:36:38','2018-05-27 10:36:38','',4,'http://wptest11.local/?post_type=acf-field&#038;p=5',0,'acf-field','',0), (6,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1243beba5\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dbdedaa1ec\";}','Headline','headline','publish','closed','closed','','field_588f05fb71f3e','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=6',0,'acf-field','',0), (7,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d0c8982d6a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc21c76a6c\";}','Richtext','richtext','publish','closed','closed','','field_588f05fb71f52','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=7',1,'acf-field','',0), (8,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14386ff5e\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc2ac76a70\";}','List','list','publish','closed','closed','','field_588f05fb71f61','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=8',2,'acf-field','',0), (9,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14776b814\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc2cc76a72\";}','Quote','quote','publish','closed','closed','','field_588f05fb71f6e','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=9',3,'acf-field','',0), (10,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ada05f44678\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"58ada32e037a9\";}','Card','card','publish','closed','closed','','field_58ada335037aa','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=10',4,'acf-field','',0), (11,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14ba80c4f\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc33d76a76\";}','Media Image','media_image','publish','closed','closed','','field_588f05fb71f8a','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=11',5,'acf-field','',0), (12,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14e3b726a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc35e76a78\";}','Gallery','gallery','publish','closed','closed','','field_588f05fb71f98','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=12',6,'acf-field','',0), (13,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14ff0cfac\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc38576a7a\";}','Image Slider','image_slider','publish','closed','closed','','field_588f05fb71fa8','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=13',7,'acf-field','',0), (14,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ad8b9e7f0df\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc38576a7a\";}','Slider Options','slider_options','publish','closed','closed','','field_58ad8fbeee5c6','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=14',8,'acf-field','',0), (15,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d151449b86\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc3a576a7c\";}','Card Slider','card_slider','publish','closed','closed','','field_588f05fb71fb5','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=15',9,'acf-field','',0), (16,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ad8b9e7f0df\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc3a576a7c\";}','Slider Options','slider_options','publish','closed','closed','','field_58adc2cd42884','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=16',10,'acf-field','',0), (17,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1538e04f0\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc3d176a7e\";}','Iframe Content','iframe_content','publish','closed','closed','','field_588f05fb71fc3','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=17',11,'acf-field','',0), (18,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888b3535d81a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc40c76a80\";}','Button','button','publish','closed','closed','','field_588f05fb71fd1','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=18',12,'acf-field','',0), (19,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1562ba016\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc42b76a82\";}','Slide Out Box','slide_out_box','publish','closed','closed','','field_588f05fb71fde','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=19',13,'acf-field','',0), (20,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1598d02cf\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc46976a84\";}','Horizontal Ruler','horizontal_ruler','publish','closed','closed','','field_588f05fb71fec','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=20',14,'acf-field','',0), (21,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888dbc878ef5\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc49876a86\";}','Spacer','spacer','publish','closed','closed','','field_588f05fb71ff9','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=21',15,'acf-field','',0), (22,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888dd837949f\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc4d911e6e\";}','Anchor','anchor','publish','closed','closed','','field_588f05fb72007','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=22',16,'acf-field','',0), (23,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888dfa3c61cf\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc4ff11e70\";}','Jumpnavigation','jumpnavigation','publish','closed','closed','','field_588f05fb72015','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=23',17,'acf-field','',0), (24,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588f0c1c267a3\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588f1902586e7\";}','Accordion','accordion','publish','closed','closed','','field_588f1914586e8','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=24',18,'acf-field','',0), (25,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588f2b1962bd2\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588f2b4092d1a\";}','Tab','tab','publish','closed','closed','','field_588f2b4992d1b','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',5,'http://wptest11.local/?post_type=acf-field&p=25',19,'acf-field','',0), (26,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:13:\"58aa104d1303b\";s:5:\"clone\";a:1:{i:0;s:19:\"group_58aa0a105f705\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Grid','grid','publish','closed','closed','','field_58aa10591303c','','','2018-05-27 12:36:38','2018-05-27 10:36:38','',5,'http://wptest11.local/?post_type=acf-field&#038;p=26',20,'acf-field','',0), (27,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:98:\"Nur für Interne Zwecke (Sammelpunkt für alle Content Builder Module ohne Wrapper wie Accordions)\";}','Content Modules','content-modules','publish','closed','closed','','group_588dbdb84a8ec','','','2018-05-27 12:37:36','2018-05-27 10:37:36','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=27',0,'acf-field-group','',0), (28,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:9:{s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:61:\"Die reinen Inhalts Module, ohne Layout Wrapper wie Accordions\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"layouts\";a:16:{s:13:\"588dbdedaa1ec\";a:6:{s:3:\"key\";s:13:\"588dbdedaa1ec\";s:5:\"label\";s:8:\"Headline\";s:4:\"name\";s:8:\"headline\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc21c76a6c\";a:6:{s:3:\"key\";s:13:\"588dc21c76a6c\";s:5:\"label\";s:8:\"Richtext\";s:4:\"name\";s:8:\"richtext\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc2ac76a70\";a:6:{s:3:\"key\";s:13:\"588dc2ac76a70\";s:5:\"label\";s:4:\"List\";s:4:\"name\";s:4:\"list\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc2cc76a72\";a:6:{s:3:\"key\";s:13:\"588dc2cc76a72\";s:5:\"label\";s:5:\"Quote\";s:4:\"name\";s:5:\"quote\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"58ada2856cb9f\";a:6:{s:3:\"key\";s:13:\"58ada2856cb9f\";s:5:\"label\";s:4:\"Card\";s:4:\"name\";s:4:\"card\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc33d76a76\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:11:\"Media Image\";s:4:\"name\";s:11:\"media_image\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc35e76a78\";a:6:{s:3:\"key\";s:13:\"588dc35e76a78\";s:5:\"label\";s:7:\"Gallery\";s:4:\"name\";s:7:\"gallery\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc38576a7a\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:12:\"Image Slider\";s:4:\"name\";s:12:\"image_slider\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc3a576a7c\";a:6:{s:3:\"key\";s:13:\"588dc3a576a7c\";s:5:\"label\";s:11:\"Card Slider\";s:4:\"name\";s:11:\"card_slider\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc3d176a7e\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:14:\"Iframe Content\";s:4:\"name\";s:14:\"iframe_content\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc40c76a80\";a:6:{s:3:\"key\";s:13:\"588dc40c76a80\";s:5:\"label\";s:6:\"Button\";s:4:\"name\";s:6:\"button\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc42b76a82\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:13:\"Slide Out Box\";s:4:\"name\";s:13:\"slide_out_box\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc46976a84\";a:6:{s:3:\"key\";s:13:\"588dc46976a84\";s:5:\"label\";s:16:\"Horizontal Ruler\";s:4:\"name\";s:16:\"horizontal_ruler\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc49876a86\";a:6:{s:3:\"key\";s:13:\"588dc49876a86\";s:5:\"label\";s:6:\"Spacer\";s:4:\"name\";s:6:\"spacer\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc4d911e6e\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:6:\"Anchor\";s:4:\"name\";s:6:\"anchor\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:13:\"588dc4ff11e70\";a:6:{s:3:\"key\";s:13:\"<KEY>\";s:5:\"label\";s:14:\"Jumpnavigation\";s:4:\"name\";s:14:\"jumpnavigation\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:12:\"button_label\";s:18:\"Add Section Module\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}','Content Modules','contentModules','publish','closed','closed','','field_588dbdd6cf772','','','2018-05-27 12:37:36','2018-05-27 10:37:36','',27,'http://wptest11.local/?post_type=acf-field&#038;p=28',0,'acf-field','',0), (29,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1243beba5\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dbdedaa1ec\";}','Headline','headline','publish','closed','closed','','field_588dbe29cf773','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=29',0,'acf-field','',0), (30,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d0c8982d6a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc21c76a6c\";}','Richtext','richtext','publish','closed','closed','','field_588dc24176a6d','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=30',1,'acf-field','',0), (31,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14386ff5e\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc2ac76a70\";}','List','list','publish','closed','closed','','field_588dc2b676a71','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=31',2,'acf-field','',0), (32,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14776b814\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc2cc76a72\";}','Quote','quote','publish','closed','closed','','field_588dc2e676a73','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=32',3,'acf-field','',0), (33,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ada05f44678\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"58ada2856cb9f\";}','Card','card','publish','closed','closed','','field_58ada2916cba0','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=33',4,'acf-field','',0), (34,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14ba80c4f\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc33d76a76\";}','Media Image','media_image','publish','closed','closed','','field_588dc34776a77','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=34',5,'acf-field','',0), (35,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14e3b726a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc35e76a78\";}','Gallery','gallery','publish','closed','closed','','field_588dc36976a79','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=35',6,'acf-field','',0), (36,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d14ff0cfac\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc38576a7a\";}','Image Slider','image_slider','publish','closed','closed','','field_588dc38e76a7b','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=36',7,'acf-field','',0), (37,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ad8b9e7f0df\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc38576a7a\";}','Slider Options','slider_options','publish','closed','closed','','field_58ad8f6aa4601','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=37',8,'acf-field','',0), (38,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d151449b86\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc3a576a7c\";}','Card Slider','card_slider','publish','closed','closed','','field_588dc3b276a7d','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=38',9,'acf-field','',0), (39,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ad8b9e7f0df\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc3a576a7c\";}','Slider Options','slider_options','publish','closed','closed','','field_58ada2d09ddb6','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=39',10,'acf-field','',0), (40,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1538e04f0\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc3d176a7e\";}','Iframe Content','iframe_content','publish','closed','closed','','field_588dc3e176a7f','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=40',11,'acf-field','',0), (41,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888b3535d81a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc40c76a80\";}','Button','button','publish','closed','closed','','field_588dc41576a81','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=41',12,'acf-field','',0), (42,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1562ba016\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc42b76a82\";}','Slide Out Box','slide_out_box','publish','closed','closed','','field_588dc43776a83','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=42',13,'acf-field','',0), (43,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588d1598d02cf\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc46976a84\";}','Horizontal Ruler','horizontal_ruler','publish','closed','closed','','field_588dc47e76a85','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=43',14,'acf-field','',0), (44,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888dbc878ef5\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc49876a86\";}','Spacer','spacer','publish','closed','closed','','field_588dc4a776a87','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=44',15,'acf-field','',0), (45,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888dd837949f\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc4d911e6e\";}','Anchor','anchor','publish','closed','closed','','field_588dc4e611e6f','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=45',16,'acf-field','',0), (46,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_5888dfa3c61cf\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:13:\"588dc4ff11e70\";}','Jumpnavigation','jumpnavigation','publish','closed','closed','','field_588dc51111e71','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',28,'http://wptest11.local/?post_type=acf-field&p=46',17,'acf-field','',0), (47,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"post_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:15:\"acf_after_title\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Disqus','disqus','publish','closed','closed','','group_5957c6b8bbc7b','','','2018-05-27 15:48:01','2018-05-27 13:48:01','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=47',0,'acf-field-group','',0), (48,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:23:\"Disable disqus comments\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Comment Switch','commentSwitch','publish','closed','closed','','field_5957c6c01dda5','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',47,'http://wptest11.local/?post_type=acf-field&p=48',0,'acf-field','',0), (49,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:8:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}}s:8:\"position\";s:15:\"acf_after_title\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:14:\"featured_image\";}s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','Featured Image','featured-image','publish','closed','closed','','group_5957c7d5ea6a3','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',0,'http://wptest11.local/?post_type=acf-field-group&p=49',0,'acf-field-group','',0), (50,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Image','','publish','closed','closed','','field_595806fa910d4','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',49,'http://wptest11.local/?post_type=acf-field&p=50',0,'acf-field','',0), (51,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:10:\"rect_small\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','fi_image','publish','closed','closed','','field_5958073388375','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',49,'http://wptest11.local/?post_type=acf-field&p=51',1,'acf-field','',0), (52,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_595806de910d3','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',49,'http://wptest11.local/?post_type=acf-field&p=52',2,'acf-field','',0), (53,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:57:\"Should the image be spread over the entire browser width?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Fullbleed','fi_fullbleed','publish','closed','closed','','field_5957c7e058394','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',49,'http://wptest11.local/?post_type=acf-field&p=53',3,'acf-field','',0), (54,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:11:\"Image Ratio\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:9:\"uncropped\";s:9:\"Uncropped\";s:6:\"square\";s:6:\"1 to 1\";s:4:\"wide\";s:7:\"16 to 9\";s:9:\"extrawide\";s:8:\"21 to 10\";s:4:\"rect\";s:6:\"4 to 3\";}s:13:\"default_value\";a:1:{i:0;s:4:\"wide\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Ratio','fi_ratio','publish','closed','closed','','field_5957c82d58396','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',49,'http://wptest11.local/?post_type=acf-field&p=54',4,'acf-field','',0), (55,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}}s:8:\"position\";s:15:\"acf_after_title\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:14:\"featured_image\";}s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','Featured Images Labeling','featured-images-labeling','publish','closed','closed','','group_5957c878b0264','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',0,'http://wptest11.local/?post_type=acf-field-group&p=55',0,'acf-field-group','',0), (56,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"60\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline','fi_headline','publish','closed','closed','','field_5957c88d16f99','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',55,'http://wptest11.local/?post_type=acf-field&p=56',0,'acf-field','',0), (57,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:11:\"show_fields\";a:2:{i:0;s:5:\"title\";i:1;s:6:\"target\";}}','Link','fi_link','publish','closed','closed','','field_5957c8b016f9a','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',55,'http://wptest11.local/?post_type=acf-field&p=57',1,'acf-field','',0), (58,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:19:\"acf-options-globals\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','GLOB - Page Globals','glob-page-globals','publish','closed','closed','','group_5892064d58ebc','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',0,'http://wptest11.local/?post_type=acf-field-group&p=58',0,'acf-field-group','',0), (59,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Social','','publish','closed','closed','','field_595788ffc674c','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=59',0,'acf-field','',0), (60,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:8:{s:4:\"type\";s:7:\"message\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:28:\"Links to the social networks\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Social Networks','','publish','closed','closed','','field_58920659c6b26','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=60',1,'acf-field','',0), (61,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:20:\"Netzwerk hinzufügen\";}','Social Networks','pg_social_networks','publish','closed','closed','','field_5892069fc6b27','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=61',2,'acf-field','',0), (62,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:7:\"Twitter\";s:10:\"googleplus\";s:11:\"Google Plus\";s:9:\"pinterest\";s:9:\"Pinterest\";s:9:\"instagram\";s:9:\"Instagram\";s:5:\"vimeo\";s:5:\"Vimeo\";s:7:\"youtube\";s:7:\"Youtube\";}s:13:\"default_value\";a:0:{}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Netzwerk','network','publish','closed','closed','','field_589206b2c6b28','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',61,'http://wptest11.local/?post_type=acf-field&p=62',0,'acf-field','',0), (63,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link','link','publish','closed','closed','','field_589207ebc6b29','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',61,'http://wptest11.local/?post_type=acf-field&p=63',1,'acf-field','',0), (64,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:25:\"Beschriftung des Popovers\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_589207fec6b2a','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',61,'http://wptest11.local/?post_type=acf-field&p=64',2,'acf-field','',0), (65,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Copyright','','publish','closed','closed','','field_5957890fc674d','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=65',3,'acf-field','',0), (66,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:28:\"Individual Copyright Message\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Copyright','pg_copyright','publish','closed','closed','','field_59578955c6750','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=66',4,'acf-field','',0), (67,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Disqus','','publish','closed','closed','','field_59578922c674e','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=67',5,'acf-field','',0), (68,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:27:\"Name of your disqus account\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Disqus Name','pg_disqus_name','publish','closed','closed','','field_5957893dc674f','','','2017-07-04 22:28:31','2017-07-04 20:28:31','',58,'http://wptest11.local/?post_type=acf-field&p=68',6,'acf-field','',0), (69,3,'2017-07-04 22:28:31','2017-07-04 20:28:31','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Accordion','obj-accordion','publish','closed','closed','','group_588f0c1c267a3','','','2018-05-27 12:11:14','2018-05-27 10:11:14','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=69',0,'acf-field-group','',0), (70,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9c9d451cdb','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',69,'http://wptest11.local/?post_type=acf-field&p=70',0,'acf-field','',0), (71,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:19:\"field_588f184112307\";s:3:\"min\";i:1;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:21:\"Accordion hinzufügen\";}','Accordion','accordion','publish','closed','closed','','field_588f182a12306','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',69,'http://wptest11.local/?post_type=acf-field&p=71',1,'acf-field','',0), (72,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:40:\"Accordion Block - please specify a title\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Header','header','publish','closed','closed','','field_588f184112307','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',71,'http://wptest11.local/?post_type=acf-field&p=72',0,'acf-field','',0), (73,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:30:\"Accordion Body für den Inhalt\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588dbdb84a8ec\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Body','body','publish','closed','closed','','field_588f187812308','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',71,'http://wptest11.local/?post_type=acf-field&p=73',1,'acf-field','',0), (74,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9c9e151cdc','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',69,'http://wptest11.local/?post_type=acf-field&p=74',2,'acf-field','',0), (75,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_588f0c1c28c46','','','2018-05-27 12:11:14','2018-05-27 10:11:14','',69,'http://wptest11.local/?post_type=acf-field&#038;p=75',3,'acf-field','',0), (76,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','OBJ - Anchor','obj-anchor','publish','closed','closed','','group_5888dd837949f','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',0,'http://wptest11.local/?post_type=acf-field-group&p=76',0,'acf-field-group','',0), (77,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9c8fd3eb0c','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',76,'http://wptest11.local/?post_type=acf-field&p=77',0,'acf-field','',0), (78,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:67:\"Anchor name - no special characters and can not start with a number\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:6:\"anchor\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Anchor Name','anchorname','publish','closed','closed','','field_5888de219b8fb','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',76,'http://wptest11.local/?post_type=acf-field&p=78',1,'acf-field','',0), (79,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9c90c3eb0d','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',76,'http://wptest11.local/?post_type=acf-field&p=79',2,'acf-field','',0), (80,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:91:\"If the anchor is too high or too low, the position value can be adjusted (higher or lower).\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Position','position','publish','closed','closed','','field_5888ded99b8fc','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',76,'http://wptest11.local/?post_type=acf-field&p=80',3,'acf-field','',0), (81,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Button','obj-button','publish','closed','closed','','group_5888b3535d81a','','','2018-05-27 12:11:54','2018-05-27 10:11:54','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=81',0,'acf-field-group','',0), (82,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9c6e1126b1','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=82',0,'acf-field','',0), (83,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:11:\"show_fields\";a:2:{i:0;s:5:\"title\";i:1;s:6:\"target\";}}','Link','link','publish','closed','closed','','field_5958af421afec','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=83',1,'acf-field','',0), (84,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:35:\"Is the button a simple back button?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Backbutton','backbutton','publish','closed','closed','','field_5888b95e17345','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=84',2,'acf-field','',0), (85,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9c6ae570ca','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=85',3,'acf-field','',0), (86,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_5888bccf00140','','','2018-05-27 12:11:54','2018-05-27 10:11:54','',81,'http://wptest11.local/?post_type=acf-field&#038;p=86',4,'acf-field','',0), (87,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:7:\"default\";s:7:\"Default\";s:3:\"big\";s:3:\"Big\";s:5:\"small\";s:5:\"Small\";}s:13:\"default_value\";a:0:{}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Size','size','publish','closed','closed','','field_5958dee400773','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=87',5,'acf-field','',0), (88,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:76:\"If the button centered has been created, you can also give it the full width\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Full Width','fullwidth','publish','closed','closed','','field_5888b35c17342','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=88',6,'acf-field','',0), (89,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:58:\"The buttons are arranged left-aligned, can be overwritten.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:7:\"default\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Position','position','publish','closed','closed','','field_5888b8a817343','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',81,'http://wptest11.local/?post_type=acf-field&p=89',7,'acf-field','',0), (90,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Card','obj-card','publish','closed','closed','','group_58ada05f44678','','','2018-05-27 12:12:20','2018-05-27 10:12:20','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=90',0,'acf-field-group','',0), (91,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Media','','publish','closed','closed','','field_58ada06f826d2','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=91',0,'acf-field','',0), (92,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:10:\"rect_small\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";i:50;s:10:\"min_height\";i:50;s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:19:\"jpg, jpeg, gif, png\";}','Image','photo','publish','closed','closed','','field_58ada0a9826d3','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=92',1,'acf-field','',0), (93,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Content','','publish','closed','closed','','field_5956392e88be2','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=93',2,'acf-field','',0), (94,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline','headline','publish','closed','closed','','field_58ada126826d5','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=94',3,'acf-field','',0), (95,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subline','subline','publish','closed','closed','','field_58ada130826d6','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=95',4,'acf-field','',0), (96,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Meta','meta','publish','closed','closed','','field_58ada137826d7','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=96',5,'acf-field','',0), (97,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Body','body','publish','closed','closed','','field_58ada13d826d8','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=97',6,'acf-field','',0), (98,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:11:\"show_fields\";a:2:{i:0;s:5:\"title\";i:1;s:6:\"target\";}}','Link','link','publish','closed','closed','','field_5958b13b89db1','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=98',7,'acf-field','',0), (99,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58ada1e9826dc','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=99',8,'acf-field','',0), (100,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58ada1fe826dd','','','2018-05-27 12:12:20','2018-05-27 10:12:20','',90,'http://wptest11.local/?post_type=acf-field&#038;p=100',9,'acf-field','',0), (101,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:11:\"Image Ratio\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:9:\"uncropped\";s:9:\"Uncropped\";s:6:\"square\";s:6:\"1 to 1\";s:4:\"wide\";s:7:\"16 to 9\";s:9:\"extrawide\";s:8:\"21 to 10\";s:4:\"rect\";s:6:\"4 to 3\";}s:13:\"default_value\";a:1:{i:0;s:9:\"uncropped\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Ratio','ratio','publish','closed','closed','','field_58ada235826df','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',90,'http://wptest11.local/?post_type=acf-field&p=101',10,'acf-field','',0), (102,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Card Slider','obj-card-slider','publish','closed','closed','','group_588d151449b86','','','2018-05-27 12:12:40','2018-05-27 10:12:40','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=102',0,'acf-field-group','',0), (103,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58aa01f8df323','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',102,'http://wptest11.local/?post_type=acf-field&p=103',0,'acf-field','',0), (104,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:11:\"Card Slides\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:1;s:3:\"max\";i:10;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:19:\"Eintrag hinzufügen\";}','Slides','slides','publish','closed','closed','','field_588dbbdecb659','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',102,'http://wptest11.local/?post_type=acf-field&p=104',1,'acf-field','',0), (105,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_58ada05f44678\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Card','card','publish','closed','closed','','field_58adc25d32e35','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',104,'http://wptest11.local/?post_type=acf-field&p=105',0,'acf-field','',0), (106,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58aa0205df324','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',102,'http://wptest11.local/?post_type=acf-field&p=106',2,'acf-field','',0), (107,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58aa0218df325','','','2018-05-27 12:12:40','2018-05-27 10:12:40','',102,'http://wptest11.local/?post_type=acf-field&#038;p=107',3,'acf-field','',0), (108,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','OBJ - Gallery','obj-gallery','publish','closed','closed','','group_588d14e3b726a','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',0,'http://wptest11.local/?post_type=acf-field-group&p=108',0,'acf-field-group','',0), (109,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9ca8ccafc2','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',108,'http://wptest11.local/?post_type=acf-field&p=109',0,'acf-field','',0), (110,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:1;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:16:\"Bild hinzufügen\";}','Galerie Einträge','gallery_entries','publish','closed','closed','','field_588dba0d1d0ce','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',108,'http://wptest11.local/?post_type=acf-field&p=110',1,'acf-field','',0), (111,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";i:50;s:10:\"min_height\";i:50;s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:9:\"jpeg, jpg\";}','Bild','photo','publish','closed','closed','','field_588dba341d0cf','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',110,'http://wptest11.local/?post_type=acf-field&p=111',0,'acf-field','',0), (112,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:63:\"Optionale Bildunterschrift, wird erst in der Lightbox sichtbar.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"60\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Bildunterschrift','caption','publish','closed','closed','','field_588dba761d0d0','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',110,'http://wptest11.local/?post_type=acf-field&p=112',1,'acf-field','',0), (113,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9ca9b9ec3b','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',108,'http://wptest11.local/?post_type=acf-field&p=113',2,'acf-field','',0), (114,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:96:\"Smart for a thumbnail layout in Tumbler Styles (Photogrid), Simple for simple thumbnail matching\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:6:\"simple\";s:6:\"Simple\";s:5:\"smart\";s:5:\"Smart\";}s:13:\"default_value\";a:1:{i:0;s:6:\"simple\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Layouttype','layout_type','publish','closed','closed','','field_588db8811d0ca','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',108,'http://wptest11.local/?post_type=acf-field&p=114',3,'acf-field','',0), (115,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:179:\"Thumbnail width for the Simple Layout. Regularly, the width of thumbnails depends on the number of images per row. If this is too big or too small, you can set the width yourself.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:3:\"20%\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Width','width','publish','closed','closed','','field_588db8fc1d0cc','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',108,'http://wptest11.local/?post_type=acf-field&p=115',4,'acf-field','',0), (116,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:57:\"Image ratio of the thumbnails for the Simple layout mode.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:4:{s:6:\"square\";s:6:\"1 to 1\";s:4:\"wide\";s:7:\"16 to 9\";s:9:\"extrawide\";s:8:\"21 to 10\";s:4:\"rect\";s:6:\"4 to 3\";}s:13:\"default_value\";a:1:{i:0;s:6:\"square\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Ratio','format','publish','closed','closed','','field_588e1032d748b','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',108,'http://wptest11.local/?post_type=acf-field&p=116',5,'acf-field','',0), (117,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Headline','obj-headline','publish','closed','closed','','group_588d1243beba5','','','2018-05-27 12:13:01','2018-05-27 10:13:01','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=117',0,'acf-field-group','',0), (118,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9caea9403e','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',117,'http://wptest11.local/?post_type=acf-field&p=118',0,'acf-field','',0), (119,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline','headline','publish','closed','closed','','field_588d1281170d8','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',117,'http://wptest11.local/?post_type=acf-field&p=119',1,'acf-field','',0), (120,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9caf59403f','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',117,'http://wptest11.local/?post_type=acf-field&p=120',2,'acf-field','',0), (121,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58a9cb0c94040','','','2018-05-27 12:13:01','2018-05-27 10:13:01','',117,'http://wptest11.local/?post_type=acf-field&#038;p=121',3,'acf-field','',0), (122,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:18:\"Semantic HTML Size\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:6:{s:2:\"h1\";s:2:\"H1\";s:2:\"h2\";s:2:\"H2\";s:2:\"h3\";s:2:\"H3\";s:2:\"h4\";s:2:\"H4\";s:2:\"h5\";s:2:\"H5\";s:2:\"h6\";s:2:\"H6\";}s:13:\"default_value\";a:1:{i:0;s:2:\"h2\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Semantische Größe','size','publish','closed','closed','','field_588d128f170d9','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',117,'http://wptest11.local/?post_type=acf-field&p=122',4,'acf-field','',0), (123,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:15:\"Visual Fontsize\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{s:7:\"default\";s:7:\"Default\";s:2:\"h1\";s:2:\"H1\";s:2:\"h2\";s:2:\"H2\";s:2:\"h3\";s:2:\"H3\";s:2:\"h4\";s:2:\"H4\";s:2:\"h5\";s:2:\"H5\";s:2:\"h6\";s:2:\"H6\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Override Size','overwrite','publish','closed','closed','','field_588d12b1170da','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',117,'http://wptest11.local/?post_type=acf-field&p=123',5,'acf-field','',0), (124,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Horizontal Ruler','obj-horizontal-ruler','publish','closed','closed','','group_588d1598d02cf','','','2018-05-27 12:15:53','2018-05-27 10:15:53','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=124',0,'acf-field-group','',0), (125,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Horizontal Ruler','horizontal_ruler','publish','closed','closed','','field_588dbc3e14bbe','','','2018-05-27 12:15:53','2018-05-27 10:15:53','',124,'http://wptest11.local/?post_type=acf-field&#038;p=125',0,'acf-field','',0), (126,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"field\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Iframe Content','obj-iframe-content','publish','closed','closed','','group_588d1538e04f0','','','2018-05-27 12:16:09','2018-05-27 10:16:09','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=126',0,'acf-field-group','',0), (127,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9cd5e82a76','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=127',0,'acf-field','',0), (128,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:8:{s:4:\"type\";s:7:\"message\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:167:\"To include content that is included via Iframe (e.g., Youtube or Vimeo videos, Google Maps, or other iFrame content). Under Embed comes the iFrame Code (copy & paste).\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Iframe Content','','publish','closed','closed','','field_588d166b43cf2','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=128',1,'acf-field','',0), (129,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:11:\"Iframe Code\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:2;s:9:\"new_lines\";s:0:\"\";}','Embed','embed','publish','closed','closed','','field_588d169643cf3','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=129',2,'acf-field','',0), (130,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Caption','caption','publish','closed','closed','','field_588d16c443cf5','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=130',3,'acf-field','',0), (131,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9cd6a82a77','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=131',4,'acf-field','',0), (132,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58a9cdcd82a78','','','2018-05-27 12:16:09','2018-05-27 10:16:09','',126,'http://wptest11.local/?post_type=acf-field&#038;p=132',5,'acf-field','',0), (133,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:46:\"Do you want to display the content responsive?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Responsive','responsive','publish','closed','closed','','field_58a9d31910928','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=133',6,'acf-field','',0), (134,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:19:\"Ratio of the iFrame\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:4:\"16:9\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Ratio','ratio','publish','closed','closed','','field_588d16a043cf4','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=134',7,'acf-field','',0), (135,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:43:\"Alignment for content smaller than the page\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:13:\"default_value\";a:1:{i:0;s:6:\"center\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Align','align','publish','closed','closed','','field_58a9d40b68263','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',126,'http://wptest11.local/?post_type=acf-field&p=135',8,'acf-field','',0), (136,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Image Slider','obj-image-slider','publish','closed','closed','','group_588d14ff0cfac','','','2018-05-27 12:31:50','2018-05-27 10:31:50','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=136',0,'acf-field-group','',0), (137,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9d52ae0508','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',136,'http://wptest11.local/?post_type=acf-field&p=137',0,'acf-field','',0), (138,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:21:\"Images for the Slider\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:1;s:3:\"max\";i:10;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:17:\"Slide hinzufügen\";}','Images','photos','publish','closed','closed','','field_588db18db691a','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',136,'http://wptest11.local/?post_type=acf-field&p=138',1,'acf-field','',0), (139,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:8:\"rw_small\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";i:50;s:10:\"min_height\";i:50;s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:9:\"jpeg, jpg\";}','Image','photo','publish','closed','closed','','field_588db1afb691b','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',138,'http://wptest11.local/?post_type=acf-field&p=139',0,'acf-field','',0), (140,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9d533b242a','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',136,'http://wptest11.local/?post_type=acf-field&p=140',2,'acf-field','',0), (141,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58a9d55bb242b','','','2018-05-27 12:31:50','2018-05-27 10:31:50','',136,'http://wptest11.local/?post_type=acf-field&#038;p=141',3,'acf-field','',0), (142,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:26:\"Image Ratio for all Slides\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:9:\"uncropped\";s:9:\"Uncropped\";s:6:\"square\";s:6:\"1 to 1\";s:4:\"wide\";s:7:\"16 to 9\";s:9:\"extrawide\";s:8:\"21 to 10\";s:4:\"rect\";s:6:\"4 to 3\";}s:13:\"default_value\";a:1:{i:0;s:4:\"wide\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Ratio','ratio','publish','closed','closed','','field_588e627444661','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',136,'http://wptest11.local/?post_type=acf-field&p=142',4,'acf-field','',0), (143,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Jumpnavigation','obj-jumpnavigation','publish','closed','closed','','group_5888dfa3c61cf','','','2018-05-27 12:16:50','2018-05-27 10:16:50','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=143',0,'acf-field-group','',0), (144,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9d660f981b','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',143,'http://wptest11.local/?post_type=acf-field&p=144',0,'acf-field','',0), (145,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:1;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:19:\"Eintrag hinzufügen\";}','Anchors','anchor','publish','closed','closed','','field_5888e17d40dd2','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',143,'http://wptest11.local/?post_type=acf-field&p=145',1,'acf-field','',0), (146,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:16:\"Name of the link\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Linkname','linkname','publish','closed','closed','','field_5888e1a140dd3','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',145,'http://wptest11.local/?post_type=acf-field&p=146',0,'acf-field','',0), (147,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:64:\"Name of the anchor without # (and no other no special character)\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Anchor Name','anchorname','publish','closed','closed','','field_5888e1e140dd4','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',145,'http://wptest11.local/?post_type=acf-field&p=147',1,'acf-field','',0), (148,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9d66bf981c','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',143,'http://wptest11.local/?post_type=acf-field&p=148',2,'acf-field','',0), (149,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_5888e0d640dd0','','','2018-05-27 12:16:50','2018-05-27 10:16:50','',143,'http://wptest11.local/?post_type=acf-field&#038;p=149',3,'acf-field','',0), (150,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:239:\"The default layout is a simple left-aligned string of the links, with the full width, the buttons are arranged in the full width (break at too small size but around which the buttons are interrelated). The buttons are arranged like a list.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:7:\"default\";s:7:\"Default\";s:9:\"fullwidth\";s:10:\"Full width\";s:4:\"list\";s:4:\"list\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Layout','layout','publish','closed','closed','','field_5888e06040dcf','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',143,'http://wptest11.local/?post_type=acf-field&p=150',4,'acf-field','',0), (151,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - List','obj-list','publish','closed','closed','','group_588d14386ff5e','','','2018-05-27 12:17:20','2018-05-27 10:17:20','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=151',0,'acf-field-group','',0), (152,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9d6c196bd7','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',151,'http://wptest11.local/?post_type=acf-field&p=152',0,'acf-field','',0), (153,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:19:\"field_588d216e3d176\";s:3:\"min\";i:1;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:19:\"Eintrag hinzufügen\";}','List','list','publish','closed','closed','','field_588d21583d175','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',151,'http://wptest11.local/?post_type=acf-field&p=153',1,'acf-field','',0), (154,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Entry','entry','publish','closed','closed','','field_588d216e3d176','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',153,'http://wptest11.local/?post_type=acf-field&p=154',0,'acf-field','',0), (155,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9d6cb96bd8','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',151,'http://wptest11.local/?post_type=acf-field&p=155',2,'acf-field','',0), (156,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_588d214d3d174','','','2018-05-27 12:17:20','2018-05-27 10:17:20','',151,'http://wptest11.local/?post_type=acf-field&#038;p=156',3,'acf-field','',0), (157,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:2:\"ul\";s:11:\"Unsorted UL\";s:2:\"ol\";s:9:\"Sorted OL\";}s:13:\"default_value\";a:1:{i:0;s:2:\"ul\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Type','listtype','publish','closed','closed','','field_588d21413d173','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',151,'http://wptest11.local/?post_type=acf-field&p=157',4,'acf-field','',0), (158,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Media Image','obj-media-image','publish','closed','closed','','group_588d14ba80c4f','','','2018-05-27 12:17:39','2018-05-27 10:17:39','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=158',0,'acf-field-group','',0), (159,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9d7588fb83','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',158,'http://wptest11.local/?post_type=acf-field&p=159',0,'acf-field','',0), (160,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:10:\"rect_small\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";i:50;s:10:\"min_height\";i:50;s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','photo','publish','closed','closed','','field_588db3795d70d','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',158,'http://wptest11.local/?post_type=acf-field&p=160',1,'acf-field','',0), (161,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"60\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Caption','caption','publish','closed','closed','','field_588db3a55d70e','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',158,'http://wptest11.local/?post_type=acf-field&p=161',2,'acf-field','',0), (162,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9d7698fb84','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',158,'http://wptest11.local/?post_type=acf-field&p=162',3,'acf-field','',0), (163,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58a9d7958fb85','','','2018-05-27 12:17:39','2018-05-27 10:17:39','',158,'http://wptest11.local/?post_type=acf-field&#038;p=163',4,'acf-field','',0), (164,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:10:\"Bildformat\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:9:\"uncropped\";s:9:\"Uncropped\";s:6:\"square\";s:6:\"1 to 1\";s:4:\"wide\";s:7:\"16 to 9\";s:9:\"extrawide\";s:8:\"21 to 10\";s:4:\"rect\";s:6:\"4 to 3\";}s:13:\"default_value\";a:1:{i:0;s:9:\"uncropped\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Ratio','ratio','publish','closed','closed','','field_588e62e6a2179','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',158,'http://wptest11.local/?post_type=acf-field&p=164',5,'acf-field','',0), (165,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:215:\"If it is a picture in the portrait format, it can be that it is longer than the viewport is high. The height limit limits the height to maximum viewport height - you no longer have to scroll around the entire image.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Hight Restriction','heightrestriction','publish','closed','closed','','field_588db3de5d710','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',158,'http://wptest11.local/?post_type=acf-field&p=165',6,'acf-field','',0), (166,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Quote','obj-quote','publish','closed','closed','','group_588d14776b814','','','2018-05-27 12:32:39','2018-05-27 10:32:39','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=166',0,'acf-field-group','',0), (167,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58aa048cdec88','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',166,'http://wptest11.local/?post_type=acf-field&p=167',0,'acf-field','',0), (168,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:3;s:9:\"new_lines\";s:7:\"wpautop\";}','Quote','quote','publish','closed','closed','','field_588dbd7994195','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',166,'http://wptest11.local/?post_type=acf-field&p=168',1,'acf-field','',0), (169,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Source','source','publish','closed','closed','','field_588dbd9794196','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',166,'http://wptest11.local/?post_type=acf-field&p=169',2,'acf-field','',0), (170,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58aa049adec89','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',166,'http://wptest11.local/?post_type=acf-field&p=170',3,'acf-field','',0), (171,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58aa04aafa3b4','','','2018-05-27 12:32:39','2018-05-27 10:32:39','',166,'http://wptest11.local/?post_type=acf-field&#038;p=171',4,'acf-field','',0), (172,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Richtext','obj-richtext','publish','closed','closed','','group_588d0c8982d6a','','','2018-05-27 12:19:39','2018-05-27 10:19:39','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=172',0,'acf-field-group','',0), (173,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58a9da6130d4d','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',172,'http://wptest11.local/?post_type=acf-field&p=173',0,'acf-field','',0), (174,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Richtext','richtext','publish','closed','closed','','field_588d0ca6c90b5','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',172,'http://wptest11.local/?post_type=acf-field&p=174',1,'acf-field','',0), (175,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58a9da6e30d4e','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',172,'http://wptest11.local/?post_type=acf-field&p=175',2,'acf-field','',0), (176,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58a9da9730d4f','','','2018-05-27 12:19:39','2018-05-27 10:19:39','',172,'http://wptest11.local/?post_type=acf-field&#038;p=176',3,'acf-field','',0), (177,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Grid','obj-grid','publish','closed','closed','','group_58aa0a105f705','','','2018-05-27 16:55:55','2018-05-27 14:55:55','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=177',0,'acf-field-group','',0), (178,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58aa0a1066a48','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',177,'http://wptest11.local/?post_type=acf-field&p=178',0,'acf-field','',0), (179,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:1;s:3:\"max\";i:20;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:15:\"Box hinzufügen\";}','Box','box','publish','closed','closed','','field_58aa0a1066a79','','','2018-05-27 16:44:42','2018-05-27 14:44:42','',177,'http://wptest11.local/?post_type=acf-field&#038;p=179',1,'acf-field','',0), (180,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58aa0d990bd47','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',179,'http://wptest11.local/?post_type=acf-field&p=180',0,'acf-field','',0), (181,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:27:\"Column Body für den Inhalt\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588dbdb84a8ec\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Body','body','publish','closed','closed','','field_58aa0a106ad69','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',179,'http://wptest11.local/?post_type=acf-field&p=181',1,'acf-field','',0), (182,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58aa0dc80bd48','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',179,'http://wptest11.local/?post_type=acf-field&p=182',2,'acf-field','',0), (183,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58aa0ddc0bd49','','','2018-05-27 13:10:16','2018-05-27 11:10:16','',179,'http://wptest11.local/?post_type=acf-field&#038;p=183',3,'acf-field','',0), (186,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58aa0a1066a8d','','','2017-07-04 22:28:32','2017-07-04 20:28:32','',177,'http://wptest11.local/?post_type=acf-field&p=186',2,'acf-field','',0), (187,3,'2017-07-04 22:28:32','2017-07-04 20:28:32','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_58aa0a1066a9f','','','2018-05-27 16:07:47','2018-05-27 14:07:47','',177,'http://wptest11.local/?post_type=acf-field&#038;p=187',3,'acf-field','',0), (189,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:29:\"Breite of the inner container\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:6:{s:7:\"default\";s:7:\"Default\";s:4:\"full\";s:13:\"Full Viewport\";s:9:\"bigger-25\";s:10:\"Bigger 25%\";s:9:\"bigger-45\";s:10:\"Bigger 45%\";s:10:\"smaller-25\";s:11:\"Smaller 25%\";s:10:\"smaller-50\";s:11:\"Smaller 50%\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Inner Container','innerContainer','publish','closed','closed','','field_58aa0b13f0ab5','','','2018-05-27 16:07:47','2018-05-27 14:07:47','',177,'http://wptest11.local/?post_type=acf-field&#038;p=189',4,'acf-field','',0), (190,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:78:\"Optional anchor for jump navigation without # (and without special characters)\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Anchor','anchor','publish','closed','closed','','field_58aa0b9df0ab6','','','2018-05-27 16:07:47','2018-05-27 14:07:47','',177,'http://wptest11.local/?post_type=acf-field&#038;p=190',5,'acf-field','',0), (191,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Layout','','publish','closed','closed','','field_58aa0beef0ab7','','','2018-05-27 16:07:47','2018-05-27 14:07:47','',177,'http://wptest11.local/?post_type=acf-field&#038;p=191',6,'acf-field','',0), (195,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Background','','publish','closed','closed','','field_58c2ba4297cc4','','','2018-05-27 16:07:47','2018-05-27 14:07:47','',177,'http://wptest11.local/?post_type=acf-field&#038;p=195',10,'acf-field','',0), (196,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:19:\"jpg, jpeg, png, gif\";}','Backgroundimage','backgroundImage','publish','closed','closed','','field_58c2ba7c97cc5','','','2018-05-27 16:13:20','2018-05-27 14:13:20','',177,'http://wptest11.local/?post_type=acf-field&#038;p=196',11,'acf-field','',0), (197,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:77:\"Do you want the background container to be as broad as the content container?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Adapt Container','adaptContainer','publish','closed','closed','','field_58c2bab997cc6','','','2018-05-27 16:13:20','2018-05-27 14:13:20','',177,'http://wptest11.local/?post_type=acf-field&#038;p=197',14,'acf-field','',0), (198,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:57:\"Width of the background image - default always full width\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:7:\"default\";s:4:\"Full\";s:9:\"halfRight\";s:10:\"Half right\";s:8:\"halfLeft\";s:9:\"Half left\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Width','width','publish','closed','closed','','field_58c2bad797cc7','','','2018-05-27 16:13:20','2018-05-27 14:13:20','',177,'http://wptest11.local/?post_type=acf-field&#038;p=198',15,'acf-field','',0), (200,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','bgStyle','publish','closed','closed','','field_58c2bb861d560','','','2018-05-27 16:19:06','2018-05-27 14:19:06','',177,'http://wptest11.local/?post_type=acf-field&#038;p=200',16,'acf-field','',0), (201,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:45:\"Background Position of the image (css syntax)\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:13:\"center center\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Position','position','publish','closed','closed','','field_58c2bbc61d561','','','2018-05-27 16:13:20','2018-05-27 14:13:20','',177,'http://wptest11.local/?post_type=acf-field&#038;p=201',13,'acf-field','',0), (202,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:29:\"Ratio of the background image\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:9:\"uncropped\";s:9:\"Uncropped\";s:6:\"square\";s:6:\"1 to 1\";s:4:\"wide\";s:7:\"16 to 9\";s:9:\"extrawide\";s:8:\"21 to 10\";s:4:\"rect\";s:6:\"4 to 3\";}s:13:\"default_value\";a:1:{i:0;s:9:\"uncropped\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Ratio','ratio','publish','closed','closed','','field_58c2bbe11d562','','','2018-05-27 16:13:20','2018-05-27 14:13:20','',177,'http://wptest11.local/?post_type=acf-field&#038;p=202',12,'acf-field','',0), (203,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Slide Out Box','obj-slide-out-box','publish','closed','closed','','group_588d1562ba016','','','2018-05-27 12:20:40','2018-05-27 10:20:40','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=203',0,'acf-field-group','',0), (204,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58aa000786b7d','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',203,'http://wptest11.local/?post_type=acf-field&p=204',0,'acf-field','',0), (205,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:31:\"Activation link to open the box\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Trigger','trigger','publish','closed','closed','','field_588dbb906c46a','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',203,'http://wptest11.local/?post_type=acf-field&p=205',1,'acf-field','',0), (206,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Body','body','publish','closed','closed','','field_588dbba66c46b','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',203,'http://wptest11.local/?post_type=acf-field&p=206',2,'acf-field','',0), (207,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58aa001986b7e','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',203,'http://wptest11.local/?post_type=acf-field&p=207',3,'acf-field','',0), (208,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_588dbb5c6c469','','','2018-05-27 12:20:40','2018-05-27 10:20:40','',203,'http://wptest11.local/?post_type=acf-field&#038;p=208',4,'acf-field','',0), (209,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','OBJ - Spacer','obj-spacer','publish','closed','closed','','group_5888dbc878ef5','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',0,'http://wptest11.local/?post_type=acf-field-group&p=209',0,'acf-field-group','',0), (210,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:48:\"Element to expand the distance. A spacer is 20px\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:13:{s:4:\"0.25\";s:4:\"0.25\";s:3:\"0.5\";s:3:\"0.5\";s:4:\"0.75\";s:4:\"0.75\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";}s:13:\"default_value\";a:1:{i:0;s:3:\"0.5\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Spacer','spacer','publish','closed','closed','','field_5888dbd1149fc','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',209,'http://wptest11.local/?post_type=acf-field&p=210',0,'acf-field','',0), (211,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','OBJ - Tab','obj-tab','publish','closed','closed','','group_588f2b1962bd2','','','2018-05-27 12:21:22','2018-05-27 10:21:22','',0,'http://wptest11.local/?post_type=acf-field-group&#038;p=211',0,'acf-field-group','',0), (212,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Main','','publish','closed','closed','','field_58aa00b216c3d','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',211,'http://wptest11.local/?post_type=acf-field&p=212',0,'acf-field','',0), (213,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:19:\"field_588f340bb4d84\";s:3:\"min\";i:1;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:15:\"Tab hinzufügen\";}','Tab','tab','publish','closed','closed','','field_588f2b19650f4','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',211,'http://wptest11.local/?post_type=acf-field&p=213',1,'acf-field','',0), (214,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:16:\"Title of the tab\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Header','header','publish','closed','closed','','field_588f340bb4d84','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',213,'http://wptest11.local/?post_type=acf-field&p=214',0,'acf-field','',0), (215,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:30:\"Accordion Body für den Inhalt\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"group_588dbdb84a8ec\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Body','body','publish','closed','closed','','field_588f2b1967330','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',213,'http://wptest11.local/?post_type=acf-field&p=215',1,'acf-field','',0), (216,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Options','','publish','closed','closed','','field_58aa00c016c3e','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',211,'http://wptest11.local/?post_type=acf-field&p=216',2,'acf-field','',0), (217,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:37:\"Enter additional styling classes here\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Style','style','publish','closed','closed','','field_588f2b19650e4','','','2018-05-27 12:21:22','2018-05-27 10:21:22','',211,'http://wptest11.local/?post_type=acf-field&#038;p=217',3,'acf-field','',0), (218,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"template--acf-parklot.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:5:\"local\";s:3:\"php\";}','Setup - Slider','setup-slider','publish','closed','closed','','group_58ad8b9e7f0df','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',0,'http://wptest11.local/?post_type=acf-field-group&p=218',0,'acf-field-group','',0), (219,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:19:\"Position der Slides\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:6:\"center\";s:5:\"Mitte\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";}s:13:\"default_value\";a:1:{i:0;s:6:\"center\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Slide Position','slidePosition','publish','closed','closed','','field_58ad8ba6c529b','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=219',0,'acf-field','',0), (220,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:96:\"Anzahl der gleichzeitig sichtbaren Slides. Auf `auto` haben die Slides eine Individuelle Breite.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:7:{s:7:\"default\";s:7:\"Default\";s:4:\"auto\";s:4:\"Auto\";s:3:\"two\";s:1:\"2\";s:5:\"three\";s:1:\"3\";s:4:\"four\";s:1:\"4\";s:4:\"five\";s:1:\"5\";s:3:\"six\";s:1:\"6\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Slides per View','slidesPerView','publish','closed','closed','','field_58ad8c35c529c','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=220',1,'acf-field','',0), (221,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:27:\"Abstand zwischen den Slides\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:11:\"z.B. : 20px\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Space Between','spaceBetween','publish','closed','closed','','field_58ad8d02c529d','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=221',2,'acf-field','',0), (222,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:38:\"Damit können Slides gruppiert werden.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:6:{s:7:\"disable\";s:11:\"Ungruppiert\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";}s:13:\"default_value\";a:1:{i:0;s:7:\"disable\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Group Cell','groupCell','publish','closed','closed','','field_58ad8d30c529e','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=222',3,'acf-field','',0), (223,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:134:\"Falls mehrere Slides gleichzeitig dargestellt werden, kann man mittels Responsive die Spaltenanzahl reduzieren bei kleinerem Viewport.\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Responsive','responsive','publish','closed','closed','','field_58ad8db6c52a0','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=223',4,'acf-field','',0), (224,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:59:\"Mit Autoheight ist die Höhe der einzelnen Slides Dynamisch\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Autoheight','autoheight','publish','closed','closed','','field_58ad8ecbc52a6','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=224',5,'acf-field','',0), (225,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:34:\"Geschwindigkeit des Autoplay Modus\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:4:{s:7:\"default\";s:11:\"Deaktiviert\";s:4:\"slow\";s:4:\"Slow\";s:6:\"medium\";s:6:\"Medium\";s:4:\"fast\";s:4:\"Fast\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Autoplay','autoplay','publish','closed','closed','','field_58ad8df2c52a1','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=225',6,'acf-field','',0), (226,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:41:\"Einstellung der Animationsgeschwindigkeit\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:4:{s:7:\"default\";s:7:\"Default\";s:4:\"slow\";s:4:\"Slow\";s:6:\"medium\";s:6:\"Medium\";s:4:\"Fast\";s:4:\"Fast\";}s:13:\"default_value\";a:1:{i:0;s:7:\"default\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Animation Speed','speed','publish','closed','closed','','field_58ad8e3fc52a2','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=226',7,'acf-field','',0), (227,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:30:\"Soll der Slider endlos laufen?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Loop','loop','publish','closed','closed','','field_58ad8e7ac52a3','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=227',8,'acf-field','',0), (228,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:48:\"Mit Freescroll kann der Slider frei beweg werden\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Freescroll','freescroll','publish','closed','closed','','field_58ad8d9cc529f','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=228',9,'acf-field','',0), (229,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:37:\"Soll die Navigation versteckt werden?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Hide Navigation','navigation','publish','closed','closed','','field_58ad8e89c52a4','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=229',10,'acf-field','',0), (230,3,'2017-07-04 22:28:33','2017-07-04 20:28:33','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:37:\"Soll die Pagination versteckt werden?\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"25\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Hide Pagination','pagination','publish','closed','closed','','field_58ad8eb0c52a5','','','2017-07-04 22:28:33','2017-07-04 20:28:33','',218,'http://wptest11.local/?post_type=acf-field&p=230',11,'acf-field','',0), (231,3,'2018-05-25 17:03:17','2018-05-25 15:03:17','<label> Dein Name (Pflichtfeld)\n [text* your-name] </label>\n\n<label> Deine E-Mail-Adresse (Pflichtfeld)\n [email* your-email] </label>\n\n<label> Betreff\n [text your-subject] </label>\n\n<label> Deine Nachricht\n [textarea your-message] </label>\n\n[submit \"Senden\"]\nkittn \"[your-subject]\"\n[your-name] <<EMAIL>>\nVon: [your-name] <[your-email]>\nBetreff: [your-subject]\n\nNachrichtentext:\n[your-message]\n\n-- \nDiese E-Mail wurde von einem Kontaktformular von kittn (http://kittn.local) gesendet\nhello@kittn.de\nReply-To: [your-email]\n\n0\n0\n\nkittn \"[your-subject]\"\nkittn <<EMAIL>.local>\nNachrichtentext:\n[your-message]\n\n-- \nDiese E-Mail wurde von einem Kontaktformular von kittn (http://kittn.local) gesendet\n[your-email]\nReply-To: <EMAIL>\n\n0\n0\nVielen Dank für deine Mitteilung. Sie wurde versandt.\nBeim Versuch, deine Mitteilung zu versenden, ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.\nEin oder mehrere Felder sind fehlerhaft. Bitte überprüfe sie und versuche es noch einmal.\nBeim Versuch, deine Mitteilung zu versenden, ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.\nDu musst die Bedingungen akzeptieren bevor du deine Mitteilung absendest.\nDas Feld ist erforderlich.\nDas Feld ist zu lang.\nDas Feld ist zu kurz.','Kontaktformular 1','','publish','closed','closed','','kontaktformular-1','','','2018-05-25 17:03:17','2018-05-25 15:03:17','',0,'http://kittn.local/?post_type=wpcf7_contact_form&p=231',0,'wpcf7_contact_form','',0), (241,3,'2018-05-27 13:10:16','2018-05-27 11:10:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Box Name','boxName','publish','closed','closed','','field_5b0a9130d39c4','','','2018-05-27 16:55:55','2018-05-27 14:55:55','',179,'http://kittn.local/?post_type=acf-field&#038;p=241',4,'acf-field','',0), (242,3,'2018-05-27 13:10:16','2018-05-27 11:10:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Grid Layout','gridLayout','publish','closed','closed','','field_5b0a8d89d39c2','','','2018-05-27 16:19:06','2018-05-27 14:19:06','',177,'http://kittn.local/?post_type=acf-field&#038;p=242',8,'acf-field','',0), (243,3,'2018-05-27 13:10:16','2018-05-27 11:10:16','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:1;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Old Specification','oldSpec','publish','closed','closed','','field_5b0a8db1d39c3','','','2018-05-27 16:19:37','2018-05-27 14:19:37','',177,'http://kittn.local/?post_type=acf-field&#038;p=243',9,'acf-field','',0), (244,3,'2018-05-27 15:47:30','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','closed','','','','','2018-05-27 15:47:30','0000-00-00 00:00:00','',0,'http://kittn.local/?p=244',0,'post','',0), (245,3,'2018-05-27 15:48:15','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','closed','','','','','2018-05-27 15:48:15','0000-00-00 00:00:00','',0,'http://kittn.local/?p=245',0,'post','',0), (246,3,'2018-05-27 16:04:14','2018-05-27 14:04:14','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:7:\"cssgrid\";s:8:\"CSS Grid\";s:7:\"flexbox\";s:7:\"Flexbox\";}s:13:\"default_value\";a:1:{i:0;s:7:\"cssgrid\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:13:\"return_format\";s:5:\"value\";s:11:\"placeholder\";s:0:\"\";}','Grid Type','gridType','publish','closed','closed','','field_5b0aba994a7b8','','','2018-05-27 16:19:06','2018-05-27 14:19:06','',177,'http://kittn.local/?post_type=acf-field&#038;p=246',7,'acf-field','',0), (247,3,'2018-05-27 16:06:44','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','closed','','','','','2018-05-27 16:06:44','0000-00-00 00:00:00','',0,'http://kittn.local/?p=247',0,'post','',0), (248,3,'2018-05-27 16:07:55','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','closed','','','','','2018-05-27 16:07:55','0000-00-00 00:00:00','',0,'http://kittn.local/?p=248',0,'post','',0), (249,3,'2018-05-27 16:13:29','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','closed','','','','','2018-05-27 16:13:29','0000-00-00 00:00:00','',0,'http://kittn.local/?p=249',0,'post','',0), (256,3,'2018-05-27 17:22:45','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','closed','','','','','2018-05-27 17:22:45','0000-00-00 00:00:00','',0,'http://kittn.local/?p=256',0,'post','',0); /*!40000 ALTER TABLE `wpkittn_posts` ENABLE KEYS */; UNLOCK TABLES; # Export von Tabelle wpkittn_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_term_relationships`; CREATE TABLE `wpkittn_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; # Export von Tabelle wpkittn_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_term_taxonomy`; CREATE TABLE `wpkittn_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wpkittn_term_taxonomy` DISABLE KEYS */; INSERT INTO `wpkittn_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0); /*!40000 ALTER TABLE `wpkittn_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Export von Tabelle wpkittn_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_termmeta`; CREATE TABLE `wpkittn_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; # Export von Tabelle wpkittn_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_terms`; CREATE TABLE `wpkittn_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_terms` WRITE; /*!40000 ALTER TABLE `wpkittn_terms` DISABLE KEYS */; INSERT INTO `wpkittn_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Allgemein','allgemein',0); /*!40000 ALTER TABLE `wpkittn_terms` ENABLE KEYS */; UNLOCK TABLES; # Export von Tabelle wpkittn_usermeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_usermeta`; CREATE TABLE `wpkittn_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_usermeta` WRITE; /*!40000 ALTER TABLE `wpkittn_usermeta` DISABLE KEYS */; INSERT INTO `wpkittn_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (38,3,'nickname','kittn'), (39,3,'first_name',''), (40,3,'last_name',''), (41,3,'description',''), (42,3,'rich_editing','true'), (43,3,'syntax_highlighting','true'), (44,3,'comment_shortcuts','false'), (45,3,'admin_color','fresh'), (46,3,'use_ssl','0'), (47,3,'show_admin_bar_front','true'), (48,3,'locale',''), (49,3,'wpkittn_capabilities','a:1:{s:13:\"administrator\";b:1;}'), (50,3,'wpkittn_user_level','10'), (51,3,'dismissed_wp_pointers','wp496_privacy'), (52,3,'session_tokens','a:1:{s:64:\"3d47dd90ca8d7f97c6617e57254859d7122e36a6d4f362c7bcda182197cf1d04\";a:4:{s:10:\"expiration\";i:1528117576;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:5:\"login\";i:1527944776;}}'), (53,3,'wpkittn_dashboard_quick_press_last_post_id','256'), (54,3,'acf_user_settings','a:0:{}'); /*!40000 ALTER TABLE `wpkittn_usermeta` ENABLE KEYS */; UNLOCK TABLES; # Export von Tabelle wpkittn_users # ------------------------------------------------------------ DROP TABLE IF EXISTS `wpkittn_users`; CREATE TABLE `wpkittn_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; LOCK TABLES `wpkittn_users` WRITE; /*!40000 ALTER TABLE `wpkittn_users` DISABLE KEYS */; INSERT INTO `wpkittn_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (3,'kittn','$P$Ben4cfiwaF2r12H/MWx/MLVr.npiSJ1','kittn','<EMAIL>','','2018-05-27 15:22:29','1527434549:$P$BGMEbf.gAuaTQOFq77eOj/oRdaLK.w/',0,'kittn'); /*!40000 ALTER TABLE `wpkittn_users` ENABLE KEYS */; UNLOCK TABLES; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>10-100 CREATE TYPE [dbo].[TraceFlags] AS TABLE ( [TraceFlag] SMALLINT NULL, [Status] SMALLINT NULL, [Global] SMALLINT NULL, [Session] SMALLINT NULL);
<filename>temoa_utopia.sql<gh_stars>1-10 BEGIN TRANSACTION; /* ------------------------------------------------------- Tables in this section correspond to Sets ------------------------------------------------------- */ -- User-defined flags to split set elements into proper subsets CREATE TABLE time_period_labels ( t_period_labels text primary key, t_period_labels_desc text); INSERT INTO "time_period_labels" VALUES('e', 'existing vintages'); INSERT INTO "time_period_labels" VALUES('f', 'future'); CREATE TABLE technology_labels ( tech_labels text primary key, tech_labels_desc text); INSERT INTO "technology_labels" VALUES('r', 'resource technology'); INSERT INTO "technology_labels" VALUES('p', 'production technology'); INSERT INTO "technology_labels" VALUES('pb', 'baseload production technology'); INSERT INTO "technology_labels" VALUES('ps', 'storage production technology'); CREATE TABLE commodity_labels ( comm_labels text primary key, comm_labels_desc text); INSERT INTO "commodity_labels" VALUES('p', 'physical commodity'); INSERT INTO "commodity_labels" VALUES('e', 'emissions commodity'); INSERT INTO "commodity_labels" VALUES('d', 'demand commodity'); CREATE TABLE sector_labels ( sector text primary key); INSERT INTO "sector_labels" VALUES('supply'); INSERT INTO "sector_labels" VALUES('electric'); INSERT INTO "sector_labels" VALUES('transport'); INSERT INTO "sector_labels" VALUES('commercial'); INSERT INTO "sector_labels" VALUES('residential'); INSERT INTO "sector_labels" VALUES('industrial'); --Tables below correspond to Temoa sets CREATE TABLE time_periods ( t_periods integer primary key, flag text, FOREIGN KEY(flag) REFERENCES time_period_labels(t_period_labels)); INSERT INTO "time_periods" VALUES(1960,'e'); INSERT INTO "time_periods" VALUES(1970,'e'); INSERT INTO "time_periods" VALUES(1980,'e'); INSERT INTO "time_periods" VALUES(1990,'f'); INSERT INTO "time_periods" VALUES(2000,'f'); INSERT INTO "time_periods" VALUES(2010,'f'); INSERT INTO "time_periods" VALUES(2020,'f'); CREATE TABLE time_season ( t_season text primary key ); INSERT INTO "time_season" VALUES('inter'); INSERT INTO "time_season" VALUES('summer'); INSERT INTO "time_season" VALUES('winter'); CREATE TABLE time_of_day ( t_day text primary key ); INSERT INTO "time_of_day" VALUES('day'); INSERT INTO "time_of_day" VALUES('night'); CREATE TABLE technologies ( tech text primary key, flag text, sector text, tech_desc text, tech_category text, FOREIGN KEY(flag) REFERENCES technology_labels(tech_labels), FOREIGN KEY(sector) REFERENCES sector_labels(sector)); INSERT INTO "technologies" VALUES('IMPDSL1','r','supply',' imported diesel','petroleum'); INSERT INTO "technologies" VALUES('IMPGSL1','r','supply',' imported gasoline','petroleum'); INSERT INTO "technologies" VALUES('IMPHCO1','r','supply',' imported coal','coal'); INSERT INTO "technologies" VALUES('IMPOIL1','r','supply',' imported crude oil','petroleum'); INSERT INTO "technologies" VALUES('IMPURN1','r','supply',' imported uranium','uranium'); INSERT INTO "technologies" VALUES('IMPFEQ','r','supply',' imported fossil equivalent',''); INSERT INTO "technologies" VALUES('IMPHYD','r','supply',' imported water -- doesnt exist in Utopia','water'); INSERT INTO "technologies" VALUES('E01','pb','electric',' coal power plant','coal'); INSERT INTO "technologies" VALUES('E21','pb','electric',' nuclear power plant','nuclear'); INSERT INTO "technologies" VALUES('E31','pb','electric',' hydro power','hydro'); INSERT INTO "technologies" VALUES('E51','ps','electric',' electric storage','storage'); INSERT INTO "technologies" VALUES('E70','p','electric',' diesel power plant','diesel'); INSERT INTO "technologies" VALUES('RHE','p','residential',' electric residential heating','electric'); INSERT INTO "technologies" VALUES('RHO','p','residential',' diesel residential heating','diesel'); INSERT INTO "technologies" VALUES('RL1','p','residential',' residential lighting','electric'); INSERT INTO "technologies" VALUES('SRE','p','supply',' crude oil processor','petroleum'); INSERT INTO "technologies" VALUES('TXD','p','transport',' diesel powered vehicles','diesel'); INSERT INTO "technologies" VALUES('TXE','p','transport',' electric powered vehicles','electric'); INSERT INTO "technologies" VALUES('TXG','p','transport',' gasoline powered vehicles','gasoline'); --can include a column that designates the commodity type (physical, emissions, demand) CREATE TABLE commodities ( comm_name text primary key, flag text, comm_desc text, FOREIGN KEY(flag) REFERENCES commodity_labels(comm_labels)); INSERT INTO "commodities" VALUES('ethos','p','# dummy commodity to supply inputs (makes graph easier to read)'); INSERT INTO "commodities" VALUES('DSL','p','# diesel'); INSERT INTO "commodities" VALUES('ELC','p','# electricity'); INSERT INTO "commodities" VALUES('FEQ','p','# fossil equivalent'); INSERT INTO "commodities" VALUES('GSL','p','# gasoline'); INSERT INTO "commodities" VALUES('HCO','p','# coal'); INSERT INTO "commodities" VALUES('HYD','p','# water'); INSERT INTO "commodities" VALUES('OIL','p','# crude oil'); INSERT INTO "commodities" VALUES('URN','p','# uranium'); INSERT INTO "commodities" VALUES('co2','e','#CO2 emissions'); INSERT INTO "commodities" VALUES('nox','e','#NOX emissions'); INSERT INTO "commodities" VALUES('RH','d','# residential heating'); INSERT INTO "commodities" VALUES('RL','d','# residential lighting'); INSERT INTO "commodities" VALUES('TX','d','# transportation'); /* ------------------------------------------------------- Tables in this section correspond to Parameters ------------------------------------------------------- */ CREATE TABLE SegFrac ( season_name text, time_of_day_name text, segfrac real check (segfrac>=0 AND segfrac<=1), segfrac_notes text, PRIMARY KEY(season_name, time_of_day_name), --here's where I define primary key as a combo of columns FOREIGN KEY(season_name) REFERENCES time_season(t_season), FOREIGN KEY(time_of_day_name) REFERENCES time_of_day(t_day) ); INSERT INTO "SegFrac" VALUES('inter','day',0.1667,'# I-D'); INSERT INTO "SegFrac" VALUES('inter','night',0.0833,'# I-N'); INSERT INTO "SegFrac" VALUES('summer','day',0.1667,'# S-D'); INSERT INTO "SegFrac" VALUES('summer','night',0.0833,'# S-N'); INSERT INTO "SegFrac" VALUES('winter','day',0.3333,'# W-D'); INSERT INTO "SegFrac" VALUES('winter','night',0.1667,'# W-N'); CREATE TABLE DemandSpecificDistribution ( season_name text, time_of_day_name text, demand_name text, dds real check (dds>=0 AND dds<=1), dds_notes text, PRIMARY KEY(season_name, time_of_day_name, demand_name), FOREIGN KEY(season_name) REFERENCES time_season(t_season), FOREIGN KEY(time_of_day_name) REFERENCES time_of_day(t_day), FOREIGN KEY(demand_name) REFERENCES commodities(comm_name) ); INSERT INTO "DemandSpecificDistribution" VALUES('inter','day','RH',.12,''); INSERT INTO "DemandSpecificDistribution" VALUES('inter','night','RH',.06,''); INSERT INTO "DemandSpecificDistribution" VALUES('winter','day','RH',.5467,''); INSERT INTO "DemandSpecificDistribution" VALUES('winter','night','RH',.2733,''); INSERT INTO "DemandSpecificDistribution" VALUES('inter','day','RL',.15,''); INSERT INTO "DemandSpecificDistribution" VALUES('inter','night','RL',.05,''); INSERT INTO "DemandSpecificDistribution" VALUES('summer','day','RL',.15,''); INSERT INTO "DemandSpecificDistribution" VALUES('summer','night','RL',.05,''); INSERT INTO "DemandSpecificDistribution" VALUES('winter','day','RL',.50,''); INSERT INTO "DemandSpecificDistribution" VALUES('winter','night','RL',.10,''); CREATE TABLE CapacityToActivity ( tech text primary key, c2a real, c2a_notes, FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "CapacityToActivity" VALUES('E01',31.54,''); INSERT INTO "CapacityToActivity" VALUES('E21',31.54,''); INSERT INTO "CapacityToActivity" VALUES('E31',31.54,''); INSERT INTO "CapacityToActivity" VALUES('E51',31.54,''); INSERT INTO "CapacityToActivity" VALUES('E70',31.54,''); INSERT INTO "CapacityToActivity" VALUES('RHE',1,''); INSERT INTO "CapacityToActivity" VALUES('RHO',1,''); INSERT INTO "CapacityToActivity" VALUES('RL1',1,''); INSERT INTO "CapacityToActivity" VALUES('SRE',1,''); INSERT INTO "CapacityToActivity" VALUES('TXD',1,''); INSERT INTO "CapacityToActivity" VALUES('TXE',1,''); INSERT INTO "CapacityToActivity" VALUES('TXG',1,''); CREATE TABLE GlobalDiscountRate ( rate real ); INSERT INTO "GlobalDiscountRate" VALUES(0.05); CREATE TABLE DiscountRate ( tech text, vintage integer, tech_rate real, tech_rate_notes text, PRIMARY KEY(tech, vintage), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods)); CREATE TABLE EmissionActivity ( emis_comm text, input_comm text, tech text, vintage integer, output_comm text, emis_act real, emis_act_units text, emis_act_notes text, PRIMARY KEY(emis_comm, input_comm, tech, vintage, output_comm), FOREIGN KEY(emis_comm) REFERENCES commodities(comm_name), FOREIGN KEY(input_comm) REFERENCES commodities(comm_name), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods), FOREIGN KEY(output_comm) REFERENCES commodities(comm_name) ); INSERT INTO "EmissionActivity" VALUES('co2','ethos','IMPDSL1',1990,'DSL',0.075,'',''); INSERT INTO "EmissionActivity" VALUES('co2','ethos','IMPGSL1',1990,'GSL',0.075,'',''); INSERT INTO "EmissionActivity" VALUES('co2','ethos','IMPHCO1',1990,'HCO',0.089,'',''); INSERT INTO "EmissionActivity" VALUES('co2','ethos','IMPOIL1',1990,'OIL',0.075,'',''); INSERT INTO "EmissionActivity" VALUES('nox','DSL','TXD',1970,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','DSL','TXD',1980,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','DSL','TXD',1990,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','DSL','TXD',2000,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','DSL','TXD',2010,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','GSL','TXG',1970,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','GSL','TXG',1980,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','GSL','TXG',1990,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','GSL','TXG',2000,'TX',1,'',''); INSERT INTO "EmissionActivity" VALUES('nox','GSL','TXG',2010,'TX',1,'',''); CREATE TABLE EmissionLimit ( periods integer, emis_comm text, emis_limit real, emis_limit_units text, emis_limit_notes text, PRIMARY KEY(periods, emis_comm), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(emis_comm) REFERENCES commodities(comm_name) ); CREATE TABLE Demand ( periods integer, demand_comm text, demand real, demand_units text, demand_notes text, PRIMARY KEY(periods, demand_comm), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(demand_comm) REFERENCES commodities(comm_name) ); INSERT INTO "Demand" VALUES(1990,'RH',25.2,'',''); INSERT INTO "Demand" VALUES(2000,'RH',37.8,'',''); INSERT INTO "Demand" VALUES(2010,'RH',56.7,'',''); INSERT INTO "Demand" VALUES(1990,'RL',5.6,'',''); INSERT INTO "Demand" VALUES(2000,'RL',8.4,'',''); INSERT INTO "Demand" VALUES(2010,'RL',12.6,'',''); INSERT INTO "Demand" VALUES(1990,'TX',5.2,'',''); INSERT INTO "Demand" VALUES(2000,'TX',7.8,'',''); INSERT INTO "Demand" VALUES(2010,'TX',11.69,'',''); CREATE TABLE TechInputSplit ( periods integer, input_comm text, tech text, ti_split real, ti_split_notes text, PRIMARY KEY(periods, input_comm, tech), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(input_comm) REFERENCES commodities(comm_name), FOREIGN KEY(tech) REFERENCES technologies(tech) ); CREATE TABLE TechOutputSplit ( periods integer, tech text, output_comm text, to_split real, to_split_notes text, PRIMARY KEY(periods, tech, output_comm), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(output_comm) REFERENCES commodities(comm_name) ); INSERT INTO "TechOutputSplit" VALUES('1990','SRE','DSL',0.7,''); INSERT INTO "TechOutputSplit" VALUES('2000','SRE','DSL',0.7,''); INSERT INTO "TechOutputSplit" VALUES('2010','SRE','DSL',0.7,''); INSERT INTO "TechOutputSplit" VALUES('1990','SRE','GSL',0.3,''); INSERT INTO "TechOutputSplit" VALUES('2000','SRE','GSL',0.3,''); INSERT INTO "TechOutputSplit" VALUES('2010','SRE','GSL',0.3,''); CREATE TABLE MinCapacity ( periods integer, tech text, mincap real, mincap_units text, mincap_notes text, PRIMARY KEY(periods, tech), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "MinCapacity" VALUES(1990,'E31',0.13,'',''); INSERT INTO "MinCapacity" VALUES(2000,'E31',0.13,'',''); INSERT INTO "MinCapacity" VALUES(2010,'E31',0.13,'',''); INSERT INTO "MinCapacity" VALUES(1990,'SRE',0.1,'',''); CREATE TABLE MaxCapacity ( periods integer, tech text, maxcap real, maxcap_units text, maxcap_notes text, PRIMARY KEY(periods, tech), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "MaxCapacity" VALUES(1990,'E31',0.13,'',''); INSERT INTO "MaxCapacity" VALUES(2000,'E31',0.17,'',''); INSERT INTO "MaxCapacity" VALUES(2010,'E31',0.21,'',''); INSERT INTO "MaxCapacity" VALUES(1990,'RHE',0.0,'',''); INSERT INTO "MaxCapacity" VALUES(1990,'TXD',0.6,'',''); INSERT INTO "MaxCapacity" VALUES(2000,'TXD',1.76,'',''); INSERT INTO "MaxCapacity" VALUES(2010,'TXD',4.76,'',''); CREATE TABLE MinActivity ( periods integer, tech text, minact real, minact_units text, minact_notes text, PRIMARY KEY(periods, tech), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech) ); CREATE TABLE MaxActivity ( periods integer, tech text, maxact real, maxact_units text, maxact_notes text, PRIMARY KEY(periods, tech), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech) ); CREATE TABLE GrowthRateMax ( tech text, growthrate_max real, growthrate_max_notes text, FOREIGN KEY(tech) REFERENCES technologies(tech) ); CREATE TABLE GrowthRateSeed ( tech text, growthrate_seed real, growthrate_seed_units text, growthrate_seed_notes text, FOREIGN KEY(tech) REFERENCES technologies(tech) ); CREATE TABLE LifetimeTech ( tech text, life real, life_notes text, PRIMARY KEY(tech), FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "LifetimeTech" VALUES('E01',40,''); INSERT INTO "LifetimeTech" VALUES('E21',40,''); INSERT INTO "LifetimeTech" VALUES('E31',100,''); INSERT INTO "LifetimeTech" VALUES('E51',100,''); INSERT INTO "LifetimeTech" VALUES('E70',40,''); INSERT INTO "LifetimeTech" VALUES('RHE',30,''); INSERT INTO "LifetimeTech" VALUES('RHO',30,''); INSERT INTO "LifetimeTech" VALUES('RL1',10,''); INSERT INTO "LifetimeTech" VALUES('SRE',50,''); INSERT INTO "LifetimeTech" VALUES('TXD',15,''); INSERT INTO "LifetimeTech" VALUES('TXE',15,''); INSERT INTO "LifetimeTech" VALUES('TXG',15,''); INSERT INTO "LifetimeTech" VALUES('IMPDSL1',1000,''); INSERT INTO "LifetimeTech" VALUES('IMPGSL1',1000,''); INSERT INTO "LifetimeTech" VALUES('IMPHCO1',1000,''); INSERT INTO "LifetimeTech" VALUES('IMPOIL1',1000,''); INSERT INTO "LifetimeTech" VALUES('IMPURN1',1000,''); INSERT INTO "LifetimeTech" VALUES('IMPHYD',1000,''); INSERT INTO "LifetimeTech" VALUES('IMPFEQ',1000,''); CREATE TABLE LifetimeProcess ( tech text, vintage integer, life_process real, life_process_notes text, PRIMARY KEY(tech, vintage), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods) ); INSERT INTO "LifetimeProcess" VALUES('RL1',1980,20,'#forexistingcap'); INSERT INTO "LifetimeProcess" VALUES('TXD',1970,30,'#forexistingcap'); INSERT INTO "LifetimeProcess" VALUES('TXD',1980,30,'#forexistingcap'); INSERT INTO "LifetimeProcess" VALUES('TXG',1970,30,'#forexistingcap'); INSERT INTO "LifetimeProcess" VALUES('TXG',1980,30,'#forexistingcap'); CREATE TABLE LifetimeLoanTech ( tech text, loan real, loan_notes text, PRIMARY KEY(tech), FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "LifetimeLoanTech" VALUES('E01',40,''); INSERT INTO "LifetimeLoanTech" VALUES('E21',40,''); INSERT INTO "LifetimeLoanTech" VALUES('E31',100,''); INSERT INTO "LifetimeLoanTech" VALUES('E51',100,''); INSERT INTO "LifetimeLoanTech" VALUES('E70',40,''); INSERT INTO "LifetimeLoanTech" VALUES('RHE',30,''); INSERT INTO "LifetimeLoanTech" VALUES('RHO',30,''); INSERT INTO "LifetimeLoanTech" VALUES('RL1',10,''); INSERT INTO "LifetimeLoanTech" VALUES('SRE',50,''); INSERT INTO "LifetimeLoanTech" VALUES('TXD',15,''); INSERT INTO "LifetimeLoanTech" VALUES('TXE',15,''); INSERT INTO "LifetimeLoanTech" VALUES('TXG',15,''); CREATE TABLE CapacityFactorTech ( season_name text, time_of_day_name text, tech text, cf_tech real check (cf_tech >=0 AND cf_tech <=1), cf_tech_notes text, PRIMARY KEY(season_name, time_of_day_name, tech), FOREIGN KEY(season_name) REFERENCES time_season(t_season), FOREIGN KEY(time_of_day_name) REFERENCES time_of_day(t_day), FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "CapacityFactorTech" VALUES('inter','day','E01',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('inter','night','E01',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('winter','day','E01',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('winter','night','E01',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('summer','day','E01',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('summer','night','E01',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('inter','day','E21',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('inter','night','E21',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('winter','day','E21',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('winter','night','E21',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('summer','day','E21',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('summer','night','E21',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('inter','day','E31',0.275,''); INSERT INTO "CapacityFactorTech" VALUES('inter','night','E31',0.275,''); INSERT INTO "CapacityFactorTech" VALUES('winter','day','E31',0.275,''); INSERT INTO "CapacityFactorTech" VALUES('winter','night','E31',0.275,''); INSERT INTO "CapacityFactorTech" VALUES('summer','day','E31',0.275,''); INSERT INTO "CapacityFactorTech" VALUES('summer','night','E31',0.275,''); INSERT INTO "CapacityFactorTech" VALUES('inter','day','E51',0.17,''); INSERT INTO "CapacityFactorTech" VALUES('inter','night','E51',0.17,''); INSERT INTO "CapacityFactorTech" VALUES('winter','day','E51',0.17,''); INSERT INTO "CapacityFactorTech" VALUES('winter','night','E51',0.17,''); INSERT INTO "CapacityFactorTech" VALUES('summer','day','E51',0.17,''); INSERT INTO "CapacityFactorTech" VALUES('summer','night','E51',0.17,''); INSERT INTO "CapacityFactorTech" VALUES('inter','day','E70',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('inter','night','E70',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('winter','day','E70',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('winter','night','E70',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('summer','day','E70',0.8,''); INSERT INTO "CapacityFactorTech" VALUES('summer','night','E70',0.8,''); CREATE TABLE CapacityFactorProcess ( season_name text, time_of_day_name text, tech text, vintage integer, cf_process real check (cf_process >=0 AND cf_process <=1), cf_process_notes text, PRIMARY KEY(season_name, time_of_day_name, tech, vintage), FOREIGN KEY(season_name) REFERENCES time_season(t_season), FOREIGN KEY(time_of_day_name) REFERENCES time_of_day(t_day), FOREIGN KEY(tech) REFERENCES technologies(tech) ); INSERT INTO "CapacityFactorProcess" VALUES('inter','day','E31',2000,0.2753,''); INSERT INTO "CapacityFactorProcess" VALUES('inter','night','E31',2000,0.2753,''); INSERT INTO "CapacityFactorProcess" VALUES('winter','day','E31',2000,0.2753,''); INSERT INTO "CapacityFactorProcess" VALUES('winter','night','E31',2000,0.2753,''); INSERT INTO "CapacityFactorProcess" VALUES('summer','day','E31',2000,0.2753,''); INSERT INTO "CapacityFactorProcess" VALUES('summer','night','E31',2000,0.2753,''); INSERT INTO "CapacityFactorProcess" VALUES('inter','day','E31',2010,0.2756,''); INSERT INTO "CapacityFactorProcess" VALUES('inter','night','E31',2010,0.2756,''); INSERT INTO "CapacityFactorProcess" VALUES('winter','day','E31',2010,0.2756,''); INSERT INTO "CapacityFactorProcess" VALUES('winter','night','E31',2010,0.2756,''); INSERT INTO "CapacityFactorProcess" VALUES('summer','day','E31',2010,0.2756,''); INSERT INTO "CapacityFactorProcess" VALUES('summer','night','E31',2010,0.2756,''); CREATE TABLE Efficiency ( input_comm text, tech text, vintage integer, output_comm text, efficiency real check (efficiency>0), eff_notes text, PRIMARY KEY(input_comm, tech, vintage, output_comm), FOREIGN KEY(input_comm) REFERENCES commodities(comm_name), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods), FOREIGN KEY(output_comm) REFERENCES commodities(comm_name) ); INSERT INTO "Efficiency" VALUES('ethos','IMPDSL1',1990,'DSL',1.00,''); INSERT INTO "Efficiency" VALUES('ethos','IMPGSL1',1990,'GSL',1.00,''); INSERT INTO "Efficiency" VALUES('ethos','IMPHCO1',1990,'HCO',1.00,''); INSERT INTO "Efficiency" VALUES('ethos','IMPOIL1',1990,'OIL',1.00,''); INSERT INTO "Efficiency" VALUES('ethos','IMPURN1',1990,'URN',1.00,''); INSERT INTO "Efficiency" VALUES('ethos','IMPFEQ',1990,'FEQ',1.00,''); INSERT INTO "Efficiency" VALUES('ethos','IMPHYD',1990,'HYD',1.00,''); INSERT INTO "Efficiency" VALUES('HCO','E01',1960,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HCO','E01',1970,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HCO','E01',1980,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HCO','E01',1990,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HCO','E01',2000,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HCO','E01',2010,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('FEQ','E21',1990,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('FEQ','E21',2000,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('FEQ','E21',2010,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('URN','E21',1990,'ELC',0.40,'# 1/2.5'); INSERT INTO "Efficiency" VALUES('URN','E21',2000,'ELC',0.40,'# 1/2.5'); INSERT INTO "Efficiency" VALUES('URN','E21',2010,'ELC',0.40,'# 1/2.5'); INSERT INTO "Efficiency" VALUES('HYD','E31',1980,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HYD','E31',1990,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HYD','E31',2000,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('HYD','E31',2010,'ELC',0.32,'# 1/3.125'); INSERT INTO "Efficiency" VALUES('DSL','E70',1960,'ELC',0.294,'# 1/3.4'); INSERT INTO "Efficiency" VALUES('DSL','E70',1970,'ELC',0.294,'# 1/3.4'); INSERT INTO "Efficiency" VALUES('DSL','E70',1980,'ELC',0.294,'# 1/3.4'); INSERT INTO "Efficiency" VALUES('DSL','E70',1990,'ELC',0.294,'# 1/3.4'); INSERT INTO "Efficiency" VALUES('DSL','E70',2000,'ELC',0.294,'# 1/3.4'); INSERT INTO "Efficiency" VALUES('DSL','E70',2010,'ELC',0.294,'# 1/3.4'); INSERT INTO "Efficiency" VALUES('ELC','E51',1980,'ELC',0.720,'# 1/1.3889'); INSERT INTO "Efficiency" VALUES('ELC','E51',1990,'ELC',0.720,'# 1/1.3889'); INSERT INTO "Efficiency" VALUES('ELC','E51',2000,'ELC',0.720,'# 1/1.3889'); INSERT INTO "Efficiency" VALUES('ELC','E51',2010,'ELC',0.720,'# 1/1.3889'); INSERT INTO "Efficiency" VALUES('ELC','RHE',1990,'RH',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','RHE',2000,'RH',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','RHE',2010,'RH',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','RHO',1970,'RH',0.7,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','RHO',1980,'RH',0.7,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','RHO',1990,'RH',0.7,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','RHO',2000,'RH',0.7,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','RHO',2010,'RH',0.7,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','RL1',1980,'RL',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','RL1',1990,'RL',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','RL1',2000,'RL',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','RL1',2010,'RL',1.00,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('OIL','SRE',1990,'DSL',1.00,'# direct translation from PRC_INP2, PRC_OUT'); INSERT INTO "Efficiency" VALUES('OIL','SRE',2000,'DSL',1.00,'# direct translation from PRC_INP2, PRC_OUT'); INSERT INTO "Efficiency" VALUES('OIL','SRE',2010,'DSL',1.00,'# direct translation from PRC_INP2, PRC_OUT'); INSERT INTO "Efficiency" VALUES('OIL','SRE',1990,'GSL',1.00,'# direct translation from PRC_INP2, PRC_OUT'); INSERT INTO "Efficiency" VALUES('OIL','SRE',2000,'GSL',1.00,'# direct translation from PRC_INP2, PRC_OUT'); INSERT INTO "Efficiency" VALUES('OIL','SRE',2010,'GSL',1.00,'# direct translation from PRC_INP2, PRC_OUT'); INSERT INTO "Efficiency" VALUES('DSL','TXD',1970,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','TXD',1980,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','TXD',1990,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','TXD',2000,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('DSL','TXD',2010,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','TXE',1990,'TX',0.827,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','TXE',2000,'TX',0.827,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('ELC','TXE',2010,'TX',0.827,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('GSL','TXG',1970,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('GSL','TXG',1980,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('GSL','TXG',1990,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('GSL','TXG',2000,'TX',0.231,'# direct translation from DMD_EFF'); INSERT INTO "Efficiency" VALUES('GSL','TXG',2010,'TX',0.231,'# direct translation from DMD_EFF'); CREATE TABLE ExistingCapacity ( tech text, vintage integer, exist_cap real, exist_cap_units text, exist_cap_notes text, PRIMARY KEY(tech, vintage), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods) ); INSERT INTO "ExistingCapacity" VALUES('E01',1960,0.175,'',''); INSERT INTO "ExistingCapacity" VALUES('E01',1970,0.175,'',''); INSERT INTO "ExistingCapacity" VALUES('E01',1980,0.15,'',''); INSERT INTO "ExistingCapacity" VALUES('E31',1980,0.1,'',''); INSERT INTO "ExistingCapacity" VALUES('E51',1980,0.5,'',''); INSERT INTO "ExistingCapacity" VALUES('E70',1960,0.05,'',''); INSERT INTO "ExistingCapacity" VALUES('E70',1970,0.05,'',''); INSERT INTO "ExistingCapacity" VALUES('E70',1980,0.2,'',''); INSERT INTO "ExistingCapacity" VALUES('RHO',1970,12.5,'',''); INSERT INTO "ExistingCapacity" VALUES('RHO',1980,12.5,'',''); INSERT INTO "ExistingCapacity" VALUES('RL1',1980,5.6,'',''); INSERT INTO "ExistingCapacity" VALUES('TXD',1970,0.4,'',''); INSERT INTO "ExistingCapacity" VALUES('TXD',1980,0.2,'',''); INSERT INTO "ExistingCapacity" VALUES('TXG',1970,3.1,'',''); INSERT INTO "ExistingCapacity" VALUES('TXG',1980,1.5,'',''); CREATE TABLE CostInvest ( tech text, vintage integer, cost_invest real, cost_invest_units text, cost_invest_notes text, PRIMARY KEY(tech, vintage), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods) ); INSERT INTO "CostInvest" VALUES('E01',1990,2000,'',''); INSERT INTO "CostInvest" VALUES('E01',2000,1300,'',''); INSERT INTO "CostInvest" VALUES('E01',2010,1200,'',''); INSERT INTO "CostInvest" VALUES('E21',1990,5000,'',''); INSERT INTO "CostInvest" VALUES('E21',2000,5000,'',''); INSERT INTO "CostInvest" VALUES('E21',2010,5000,'',''); INSERT INTO "CostInvest" VALUES('E31',1990,3000,'',''); INSERT INTO "CostInvest" VALUES('E31',2000,3000,'',''); INSERT INTO "CostInvest" VALUES('E31',2010,3000,'',''); INSERT INTO "CostInvest" VALUES('E51',1990,900,'',''); INSERT INTO "CostInvest" VALUES('E51',2000,900,'',''); INSERT INTO "CostInvest" VALUES('E51',2010,900,'',''); INSERT INTO "CostInvest" VALUES('E70',1990,1000,'',''); INSERT INTO "CostInvest" VALUES('E70',2000,1000,'',''); INSERT INTO "CostInvest" VALUES('E70',2010,1000,'',''); INSERT INTO "CostInvest" VALUES('RHE',1990,90,'',''); INSERT INTO "CostInvest" VALUES('RHE',2000,90,'',''); INSERT INTO "CostInvest" VALUES('RHE',2010,90,'',''); INSERT INTO "CostInvest" VALUES('RHO',1990,100,'',''); INSERT INTO "CostInvest" VALUES('RHO',2000,100,'',''); INSERT INTO "CostInvest" VALUES('RHO',2010,100,'',''); INSERT INTO "CostInvest" VALUES('SRE',1990,100,'',''); INSERT INTO "CostInvest" VALUES('SRE',2000,100,'',''); INSERT INTO "CostInvest" VALUES('SRE',2010,100,'',''); INSERT INTO "CostInvest" VALUES('TXD',1990,1044,'',''); INSERT INTO "CostInvest" VALUES('TXD',2000,1044,'',''); INSERT INTO "CostInvest" VALUES('TXD',2010,1044,'',''); INSERT INTO "CostInvest" VALUES('TXE',1990,2000,'',''); INSERT INTO "CostInvest" VALUES('TXE',2000,1750,'',''); INSERT INTO "CostInvest" VALUES('TXE',2010,1500,'',''); INSERT INTO "CostInvest" VALUES('TXG',1990,1044,'',''); INSERT INTO "CostInvest" VALUES('TXG',2000,1044,'',''); INSERT INTO "costInvest" VALUES('TXG',2010,1044,'',''); CREATE TABLE CostFixed ( periods integer NOT NULL, tech text NOT NULL, vintage integer NOT NULL, cost_fixed real, cost_fixed_units text, cost_fixed_notes text, PRIMARY KEY(periods, tech, vintage), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods) ); INSERT INTO "CostFixed" VALUES(1990,'E01',1960,40,'',''); INSERT INTO "CostFixed" VALUES(1990,'E01',1970,40,'',''); INSERT INTO "CostFixed" VALUES(1990,'E01',1980,40,'',''); INSERT INTO "CostFixed" VALUES(1990,'E01',1990,40,'',''); INSERT INTO "CostFixed" VALUES(2000,'E01',1970,70,'',''); INSERT INTO "CostFixed" VALUES(2000,'E01',1980,70,'',''); INSERT INTO "CostFixed" VALUES(2000,'E01',1990,70,'',''); INSERT INTO "CostFixed" VALUES(2000,'E01',2000,70,'',''); INSERT INTO "CostFixed" VALUES(2010,'E01',1980,100,'',''); INSERT INTO "CostFixed" VALUES(2010,'E01',1990,100,'',''); INSERT INTO "CostFixed" VALUES(2010,'E01',2000,100,'',''); INSERT INTO "CostFixed" VALUES(2010,'E01',2010,100,'',''); INSERT INTO "CostFixed" VALUES(1990,'E21',1990,500,'',''); INSERT INTO "CostFixed" VALUES(2000,'E21',1990,500,'',''); INSERT INTO "CostFixed" VALUES(2010,'E21',1990,500,'',''); INSERT INTO "CostFixed" VALUES(2000,'E21',2000,500,'',''); INSERT INTO "CostFixed" VALUES(2010,'E21',2000,500,'',''); INSERT INTO "CostFixed" VALUES(2010,'E21',2010,500,'',''); INSERT INTO "CostFixed" VALUES(1990,'E31',1980,75,'',''); INSERT INTO "CostFixed" VALUES(1990,'E31',1990,75,'',''); INSERT INTO "CostFixed" VALUES(2000,'E31',1980,75,'',''); INSERT INTO "CostFixed" VALUES(2000,'E31',1990,75,'',''); INSERT INTO "CostFixed" VALUES(2000,'E31',2000,75,'',''); INSERT INTO "CostFixed" VALUES(2010,'E31',1980,75,'',''); INSERT INTO "CostFixed" VALUES(2010,'E31',1990,75,'',''); INSERT INTO "CostFixed" VALUES(2010,'E31',2000,75,'',''); INSERT INTO "CostFixed" VALUES(2010,'E31',2010,75,'',''); INSERT INTO "CostFixed" VALUES(1990,'E51',1980,30,'',''); INSERT INTO "CostFixed" VALUES(1990,'E51',1990,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E51',1980,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E51',1990,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E51',2000,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E51',1980,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E51',1990,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E51',2000,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E51',2010,30,'',''); INSERT INTO "CostFixed" VALUES(1990,'E70',1960,30,'',''); INSERT INTO "CostFixed" VALUES(1990,'E70',1970,30,'',''); INSERT INTO "CostFixed" VALUES(1990,'E70',1980,30,'',''); INSERT INTO "CostFixed" VALUES(1990,'E70',1990,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E70',1970,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E70',1980,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E70',1990,30,'',''); INSERT INTO "CostFixed" VALUES(2000,'E70',2000,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E70',1980,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E70',1990,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E70',2000,30,'',''); INSERT INTO "CostFixed" VALUES(2010,'E70',2010,30,'',''); INSERT INTO "CostFixed" VALUES(1990,'RHO',1970,1,'',''); INSERT INTO "CostFixed" VALUES(1990,'RHO',1980,1,'',''); INSERT INTO "CostFixed" VALUES(1990,'RHO',1990,1,'',''); INSERT INTO "CostFixed" VALUES(2000,'RHO',1980,1,'',''); INSERT INTO "CostFixed" VALUES(2000,'RHO',1990,1,'',''); INSERT INTO "CostFixed" VALUES(2000,'RHO',2000,1,'',''); INSERT INTO "CostFixed" VALUES(2010,'RHO',1990,1,'',''); INSERT INTO "CostFixed" VALUES(2010,'RHO',2000,1,'',''); INSERT INTO "CostFixed" VALUES(2010,'RHO',2010,1,'',''); INSERT INTO "CostFixed" VALUES(1990,'RL1',1980, 9.46,'',''); INSERT INTO "CostFixed" VALUES(1990,'RL1',1990, 9.46,'',''); INSERT INTO "CostFixed" VALUES(2000,'RL1',2000, 9.46,'',''); INSERT INTO "CostFixed" VALUES(2010,'RL1',2010, 9.46,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXD',1970,52,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXD',1980,52,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXD',1990,52,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXD',1980,52,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXD',1990,52,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXD',2000,52,'',''); INSERT INTO "CostFixed" VALUES(2010,'TXD',2000,52,'',''); INSERT INTO "CostFixed" VALUES(2010,'TXD',2010,52,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXE',1990,100,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXE',1990,90,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXE',2000,90,'',''); INSERT INTO "CostFixed" VALUES(2010,'TXE',2000,80,'',''); INSERT INTO "CostFixed" VALUES(2010,'TXE',2010,80,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXG',1970,48,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXG',1980,48,'',''); INSERT INTO "CostFixed" VALUES(1990,'TXG',1990,48,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXG',1980,48,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXG',1990,48,'',''); INSERT INTO "CostFixed" VALUES(2000,'TXG',2000,48,'',''); INSERT INTO "CostFixed" VALUES(2010,'TXG',2000,48,'',''); INSERT INTO "CostFixed" VALUES(2010,'TXG',2010,48,'',''); CREATE TABLE CostVariable ( periods integer NOT NULL, tech text NOT NULL, vintage integer NOT NULL, cost_variable real, cost_variable_units text, cost_variable_notes text, PRIMARY KEY(periods, tech, vintage), FOREIGN KEY(periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods) ); INSERT INTO "CostVariable" VALUES(1990,'IMPDSL1',1990,10,'',''); INSERT INTO "CostVariable" VALUES(2000,'IMPDSL1',1990,10,'',''); INSERT INTO "CostVariable" VALUES(2010,'IMPDSL1',1990,10,'',''); INSERT INTO "CostVariable" VALUES(1990,'IMPGSL1',1990,15,'',''); INSERT INTO "CostVariable" VALUES(2000,'IMPGSL1',1990,15,'',''); INSERT INTO "CostVariable" VALUES(2010,'IMPGSL1',1990,15,'',''); INSERT INTO "CostVariable" VALUES(1990,'IMPHCO1',1990,2,'',''); INSERT INTO "CostVariable" VALUES(2000,'IMPHCO1',1990,2,'',''); INSERT INTO "CostVariable" VALUES(2010,'IMPHCO1',1990,2,'',''); INSERT INTO "CostVariable" VALUES(1990,'IMPOIL1',1990,8,'',''); INSERT INTO "CostVariable" VALUES(2000,'IMPOIL1',1990,8,'',''); INSERT INTO "CostVariable" VALUES(2010,'IMPOIL1',1990,8,'',''); INSERT INTO "CostVariable" VALUES(1990,'IMPURN1',1990,2,'',''); INSERT INTO "CostVariable" VALUES(2000,'IMPURN1',1990,2,'',''); INSERT INTO "CostVariable" VALUES(2010,'IMPURN1',1990,2,'',''); INSERT INTO "CostVariable" VALUES(1990,'E01',1960,0.3,'',''); INSERT INTO "CostVariable" VALUES(1990,'E01',1970,0.3,'',''); INSERT INTO "CostVariable" VALUES(1990,'E01',1980,0.3,'',''); INSERT INTO "CostVariable" VALUES(1990,'E01',1990,0.3,'',''); INSERT INTO "CostVariable" VALUES(2000,'E01',1970,0.3,'',''); INSERT INTO "CostVariable" VALUES(2000,'E01',1980,0.3,'',''); INSERT INTO "CostVariable" VALUES(2000,'E01',1990,0.3,'',''); INSERT INTO "CostVariable" VALUES(2000,'E01',2000,0.3,'',''); INSERT INTO "CostVariable" VALUES(2010,'E01',1980,0.3,'',''); INSERT INTO "CostVariable" VALUES(2010,'E01',1990,0.3,'',''); INSERT INTO "CostVariable" VALUES(2010,'E01',2000,0.3,'',''); INSERT INTO "CostVariable" VALUES(2010,'E01',2010,0.3,'',''); INSERT INTO "CostVariable" VALUES(1990,'E21',1990,1.5,'',''); INSERT INTO "CostVariable" VALUES(2000,'E21',1990,1.5,'',''); INSERT INTO "CostVariable" VALUES(2010,'E21',1990,1.5,'',''); INSERT INTO "CostVariable" VALUES(2000,'E21',2000,1.5,'',''); INSERT INTO "CostVariable" VALUES(2010,'E21',2000,1.5,'',''); INSERT INTO "CostVariable" VALUES(2010,'E21',2010,1.5,'',''); INSERT INTO "CostVariable" VALUES(1990,'E70',1960,0.4,'',''); INSERT INTO "CostVariable" VALUES(1990,'E70',1970,0.4,'',''); INSERT INTO "CostVariable" VALUES(1990,'E70',1980,0.4,'',''); INSERT INTO "CostVariable" VALUES(1990,'E70',1990,0.4,'',''); INSERT INTO "CostVariable" VALUES(2000,'E70',1970,0.4,'',''); INSERT INTO "CostVariable" VALUES(2000,'E70',1980,0.4,'',''); INSERT INTO "CostVariable" VALUES(2000,'E70',1990,0.4,'',''); INSERT INTO "CostVariable" VALUES(2000,'E70',2000,0.4,'',''); INSERT INTO "CostVariable" VALUES(2010,'E70',1980,0.4,'',''); INSERT INTO "CostVariable" VALUES(2010,'E70',1990,0.4,'',''); INSERT INTO "CostVariable" VALUES(2010,'E70',2000,0.4,'',''); INSERT INTO "CostVariable" VALUES(2010,'E70',2010,0.4,'',''); INSERT INTO "CostVariable" VALUES(1990,'SRE',1990,10,'',''); INSERT INTO "CostVariable" VALUES(2000,'SRE',1990,10,'',''); INSERT INTO "CostVariable" VALUES(2000,'SRE',2000,10,'',''); INSERT INTO "CostVariable" VALUES(2010,'SRE',1990,10,'',''); INSERT INTO "CostVariable" VALUES(2010,'SRE',2000,10,'',''); INSERT INTO "CostVariable" VALUES(2010,'SRE',2010,10,'',''); /* ------------------------------------------------------- Tables in this section store model outputs ------------------------------------------------------- */ CREATE TABLE Output_VFlow_Out ( scenario text, sector text, t_periods integer, t_season text, t_day text, input_comm text, tech text, vintage integer, output_comm text, vflow_out real, PRIMARY KEY(scenario, t_periods, t_season, t_day, input_comm, tech, vintage, output_comm), FOREIGN KEY(sector) REFERENCES sector_labels(sector), FOREIGN KEY(t_periods) REFERENCES time_periods(t_periods), FOREIGN KEY(t_season) REFERENCES time_periods(t_periods), FOREIGN KEY(t_day) REFERENCES time_of_day(t_day), FOREIGN KEY(input_comm) REFERENCES commodities(comm_name), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods), FOREIGN KEY(output_comm) REFERENCES commodities(comm_name)); CREATE TABLE Output_VFlow_In ( scenario text, sector text, t_periods integer, t_season text, t_day text, input_comm text, tech text, vintage integer, output_comm text, vflow_in real, PRIMARY KEY(scenario, t_periods, t_season, t_day, input_comm, tech, vintage, output_comm), FOREIGN KEY(sector) REFERENCES sector_labels(sector), FOREIGN KEY(t_periods) REFERENCES time_periods(t_periods), FOREIGN KEY(t_season) REFERENCES time_periods(t_periods), FOREIGN KEY(t_day) REFERENCES time_of_day(t_day), FOREIGN KEY(input_comm) REFERENCES commodities(comm_name), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods), FOREIGN KEY(output_comm) REFERENCES commodities(comm_name)); CREATE TABLE Output_V_Capacity ( scenario text, sector text, tech text, vintage integer, capacity real, PRIMARY KEY(scenario, tech, vintage), FOREIGN KEY(sector) REFERENCES sector_labels(sector), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods)); CREATE TABLE Output_CapacityByPeriodAndTech ( scenario text, sector text, t_periods integer, tech text, capacity real, PRIMARY KEY(scenario, t_periods, tech), FOREIGN KEY(sector) REFERENCES sector_labels(sector), FOREIGN KEY(t_periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech)); CREATE TABLE Output_Emissions ( scenario text, sector text, t_periods integer, emissions_comm text, tech text, vintage integer, emissions real, PRIMARY KEY(scenario, t_periods, emissions_comm, tech, vintage), FOREIGN KEY(sector) REFERENCES sector_labels(sector), FOREIGN KEY(emissions_comm) REFERENCES EmissionActivity(emis_comm), FOREIGN KEY(t_periods) REFERENCES time_periods(t_periods), FOREIGN KEY(tech) REFERENCES technologies(tech) FOREIGN KEY(vintage) REFERENCES time_periods(t_periods)); CREATE TABLE Output_Costs ( scenario text, sector text, output_name text, tech text, vintage integer, output_cost real, PRIMARY KEY(scenario, output_name, tech, vintage), FOREIGN KEY(sector) REFERENCES sector_labels(sector), FOREIGN KEY(tech) REFERENCES technologies(tech), FOREIGN KEY(vintage) REFERENCES time_periods(t_periods)); CREATE TABLE Output_Objective ( scenario text, objective_name text, total_system_cost real ); COMMIT;
<reponame>yang2556269/WX -- phpMyAdmin SQL Dump -- version 4.5.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 2016-09-18 08:27:04 -- 服务器版本: 5.7.11 -- PHP Version: 7.0.4 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `test` -- -- -------------------------------------------------------- -- -- 表的结构 `a` -- CREATE TABLE `a` ( `id` int(11) NOT NULL, `name` varchar(10) NOT NULL DEFAULT '', `price` int(11) NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- 转存表中的数据 `a` -- INSERT INTO `a` (`id`, `name`, `price`) VALUES (1, '0', 0), (2, '1', 1), (3, '2', 2), (4, '3', 3), (5, '4', 4), (6, '5', 5), (7, '6', 6), (8, '7', 7), (9, '8', 8), (10, '9', 9), (11, '10', 10), (12, '11', 11), (13, '12', 12), (14, '13', 13), (15, '14', 14), (16, '15', 15), (17, '16', 16), (18, '17', 17), (19, '18', 18), (20, '19', 19), (21, '20', 20), (22, '21', 21), (23, '22', 22), (24, '23', 23), (25, '24', 24), (26, '25', 25), (27, '26', 26), (28, '27', 27), (29, '28', 28), (30, '29', 29), (31, '30', 30), (32, '31', 31), (33, '32', 32), (34, '33', 33), (35, '34', 34), (36, '35', 35), (37, '36', 36), (38, '37', 37), (39, '38', 38), (40, '39', 39), (41, '40', 40), (42, '41', 41), (43, '42', 42), (44, '43', 43), (45, '44', 44), (46, '45', 45), (47, '46', 46), (48, '47', 47), (49, '48', 48), (50, '49', 49); -- -------------------------------------------------------- -- -- 表的结构 `account` -- CREATE TABLE `account` ( `id` int(11) NOT NULL, `acc_name` varchar(30) NOT NULL DEFAULT ''COMMENT ) ; -- -- 转存表中的数据 `account` -- INSERT INTO `account` (`id`, `acc_name`, `acc_id`, `wx_name`, `app_id`, `app_secret`, `token`, `welcome`, `create_time`, `update_time`) VALUES (7, '3', '1', '1', '1', '1', 'admin', '2', 1474171291, 1474184947); -- -------------------------------------------------------- -- -- 表的结构 `basic` -- CREATE TABLE `basic` ( `id` int(11) NOT NULL, `username` varchar(20) NOT NULL DEFAULT ''COMMENT ) ; -- -------------------------------------------------------- -- -- 表的结构 `node` -- CREATE TABLE `node` ( `id` int(11) NOT NULL, `n_name` varchar(155) NOT NULL DEFAULT ''COMMENT ) ; -- -- 转存表中的数据 `node` -- INSERT INTO `node` (`id`, `n_name`, `module_name`, `control_name`, `action_name`, `is_menu`, `typeid`, `style`) VALUES (1, '用户管理', '#', '#', '#', 2, 0, 'fa fa-users'), (2, '用户列表', 'admin', 'user', 'index', 2, 1, ''), (3, '添加用户', 'admin', 'user', 'useradd', 1, 2, ''), (4, '编辑用户', 'admin', 'user', 'useredit', 1, 2, ''), (5, '删除用户', 'admin', 'user', 'userdel', 1, 2, ''), (6, '角色列表', 'admin', 'role', 'index', 2, 1, ''), (7, '添加角色', 'admin', 'role', 'roleadd', 1, 6, ''), (8, '编辑角色', 'admin', 'role', 'roleedit', 1, 6, ''), (9, '删除角色', 'admin', 'role', 'roledel', 1, 6, ''), (10, '分配权限', 'admin', 'role', 'giveaccess', 1, 6, ''), (11, '系统管理', '#', '#', '#', 2, 0, 'fa fa-desktop'), (12, '数据备份/还原', 'admin', 'data', 'index', 2, 11, ''), (13, '备份数据', 'admin', 'data', 'importdata', 1, 12, ''), (14, '还原数据', 'admin', 'data', 'backdata', 1, 12, ''), (15, '权限列表', 'admin', 'node', 'index', 2, 1, ''), (16, '增加权限', 'admin', 'node', 'nodeadd', 1, 15, ''), (17, '修改权限', 'admin', 'node', 'nodeedit', 1, 15, ''), (18, '删除权限', 'admin', 'node', 'nodedel', 1, 15, ''), (19, '公众号管理', '#', '#', '#', 2, 0, 'fa fa-desktop'), (20, 'test', 'admin', 'user', 'test', 2, 1, ''), (21, '我的公众号', 'admin', 'account', 'index', 2, 19, ''), (22, '添加公众号', 'admin', 'account', 'addaccount', 2, 19, ''), (23, '删除公众号', 'admin', 'account', 'delaccount', 1, 19, ''), (24, '编辑公众号', 'admin', 'account', 'editaccount', 1, 19, ''), (25, '公众号功能', 'admin', 'account', 'functions', 1, 21, ''), (26, '公众号设置', '#', '#', '#', 2, 0, 'fa fa-desktop'), (27, '基础设置', 'admin', 'basic', 'index', 2, 26, ''), (28, '关注回复', 'admin', 'basic', 'huifu', 1, 27, ''), (29, '关键字回复', 'admin', 'basic', 'keyword', 1, 27, ''), (33, 'haha', 'admin', 'wechat_request', 'text', 2, 1, ''), (34, '微信入口', 'admin', 'wechat', 'index', 1, 21, ''); -- -------------------------------------------------------- -- -- 表的结构 `role` -- CREATE TABLE `role` ( `id` int(11) NOT NULL COMMENT 'id', `rolename` varchar(155) NOT NULL COMMENT '角色名称', `rule` varchar(255) DEFAULT ''COMMENT ) ; -- -- 转存表中的数据 `role` -- INSERT INTO `role` (`id`, `rolename`, `rule`) VALUES (1, '超级管理员', ''), (2, '系统维护员', '1,2,3,4,5,6,7,8,9,10'), (3, '新闻发布员', '1,2,3,4,5'); -- -------------------------------------------------------- -- -- 表的结构 `user` -- CREATE TABLE `user` ( `id` int(11) NOT NULL, `username` varchar(255) COLLATE utf8_bin DEFAULT ''COMMENT ) ; -- -- 转存表中的数据 `user` -- INSERT INTO `user` (`id`, `username`, `password`, `loginnum`, `last_login_ip`, `last_login_time`, `real_name`, `status`, `typeid`, `token`) VALUES (1, 'admin', '<PASSWORD>', 118, '127.0.0.1', 1474185314, 'admin', 1, 1, ''), (2, 'xiaobai', 'c4ca42<PASSWORD>923820dcc<PASSWORD>', 10, '127.0.0.1', 1473662144, '小白', 1, 2, ''); -- -- Indexes for dumped tables -- -- -- Indexes for table `a` -- ALTER TABLE `a` ADD PRIMARY KEY (`id`); -- -- 在导出的表使用AUTO_INCREMENT -- -- -- 使用表AUTO_INCREMENT `a` -- ALTER TABLE `a` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51; -- -- 使用表AUTO_INCREMENT `account` -- ALTER TABLE `account` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- 使用表AUTO_INCREMENT `basic` -- ALTER TABLE `basic` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- 使用表AUTO_INCREMENT `node` -- ALTER TABLE `node` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- 使用表AUTO_INCREMENT `role` -- ALTER TABLE `role` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id'; -- -- 使用表AUTO_INCREMENT `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
create temp table prs as select ipr.issue_id, pr.created_at, pr.merged_at as merged_at from gha_issues_pull_requests ipr, gha_pull_requests pr where pr.id = ipr.pull_request_id and pr.merged_at is not null and pr.created_at >= '{{from}}' and pr.created_at < '{{to}}' and pr.event_id = ( select i.event_id from gha_pull_requests i where i.id = pr.id order by i.updated_at desc limit 1 ) ; create temp table prs_groups as select r.repo_group, ipr.issue_id, pr.created_at, pr.merged_at as merged_at from gha_issues_pull_requests ipr, gha_pull_requests pr, gha_repos r where r.id = ipr.repo_id and r.repo_group is not null and pr.id = ipr.pull_request_id and pr.merged_at is not null and pr.created_at >= '{{from}}' and pr.created_at < '{{to}}' and pr.event_id = ( select i.event_id from gha_pull_requests i where i.id = pr.id order by i.updated_at desc limit 1 ) ; create temp table tdiffs as select extract(epoch from merged_at - created_at) / 3600 as open_to_merge from prs ; create temp table tdiffs_groups as select repo_group, extract(epoch from merged_at - created_at) / 3600 as open_to_merge from prs_groups ; select 'time_metrics;All;median_open_to_merge,percentile_85_open_to_merge' as name, greatest(percentile_disc(0.5) within group (order by open_to_merge asc), 0) as m_o2m, greatest(percentile_disc(0.85) within group (order by open_to_merge asc), 0) as pc_o2m from tdiffs union select 'time_metrics;' || repo_group || ';median_open_to_merge,percentile_85_open_to_merge' as name, greatest(percentile_disc(0.5) within group (order by open_to_merge asc), 0) as m_o2m, greatest(percentile_disc(0.85) within group (order by open_to_merge asc), 0) as pc_o2m from tdiffs_groups group by repo_group order by name asc ; drop table tdiffs; drop table tdiffs_groups; drop table prs; drop table prs_groups;
{{ config( enabled = False ) }} select * from "{{ this.schema }}"."seed"
-- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- CREATE TABLE IF NOT EXISTS environments ( name varchar(256) NOT NULL, broker varchar(1024) NOT NULL, CONSTRAINT PK_name PRIMARY KEY (name), UNIQUE (broker) ); CREATE TABLE IF NOT EXISTS topics_stats ( topic_stats_id INTEGER PRIMARY KEY AUTOINCREMENT, environment varchar(255) NOT NULL, cluster varchar(255) NOT NULL, broker varchar(255) NOT NULL, tenant varchar(255) NOT NULL, namespace varchar(255) NOT NULL, bundle varchar(255) NOT NULL, persistent varchar(36) NOT NULL, topic varchar(255) NOT NULL, producer_count INTEGER, subscription_count INTEGER, msg_rate_in double, msg_throughput_in double, msg_rate_out double, msg_throughput_out double, average_msg_size double, storage_size double, time_stamp integer ); CREATE TABLE IF NOT EXISTS publishers_stats ( publisher_stats_id INTEGER PRIMARY KEY AUTOINCREMENT, producer_id INTEGER, topic_stats_id INTEGER NOT NULL, producer_name varchar(255) NOT NULL, msg_rate_in double, msg_throughput_in double, average_msg_size double, address varchar(255), connected_since varchar(128), client_version varchar(36), metadata text, time_stamp integer, CONSTRAINT FK_publishers_stats_topic_stats_id FOREIGN KEY (topic_stats_id) References topics_stats(topic_stats_id) ); CREATE TABLE IF NOT EXISTS replications_stats ( replication_stats_id INTEGER PRIMARY KEY AUTOINCREMENT, topic_stats_id INTEGER NOT NULL, cluster varchar(255) NOT NULL, connected false, msg_rate_in double, msg_rate_out double, msg_rate_expired double, msg_throughput_in double, msg_throughput_out double, msg_rate_redeliver double, replication_backlog INTEGER, replication_delay_in_seconds integer, inbound_connection varchar(255), inbound_connected_since varchar(255), outbound_connection varchar(255), outbound_connected_since varchar(255), time_stamp integer, CONSTRAINT FK_replications_stats_topic_stats_id FOREIGN KEY (topic_stats_id) References topics_stats(topic_stats_id) ); CREATE TABLE IF NOT EXISTS subscriptions_stats ( subscription_stats_id INTEGER PRIMARY KEY AUTOINCREMENT, topic_stats_id INTEGER NOT NULL, subscription varchar(255) NULL, msg_backlog integer, msg_rate_expired double, msg_rate_out double, msg_throughput_out double, msg_rate_redeliver double, number_of_entries_since_first_not_acked_message integer, total_non_contiguous_deleted_messages_range integer, subscription_type varchar(16), blocked_subscription_on_unacked_msgs false, time_stamp integer, UNIQUE (topic_stats_id, subscription), CONSTRAINT FK_subscriptions_stats_topic_stats_id FOREIGN KEY (topic_stats_id) References topics_stats(topic_stats_id) ); CREATE TABLE IF NOT EXISTS consumers_stats ( consumer_stats_id INTEGER PRIMARY KEY AUTOINCREMENT, consumer varchar(255) NOT NULL, topic_stats_id INTEGER NOT NUll, replication_stats_id integer, subscription_stats_id integer, address varchar(255), available_permits integer, connected_since varchar(255), msg_rate_out double, msg_throughput_out double, msg_rate_redeliver double, client_version varchar(36), time_stamp integer, metadata text ); CREATE TABLE IF NOT EXISTS tokens ( token_id integer PRIMARY KEY AUTOINCREMENT, role varchar(256) NOT NULL, description varchar(128), token varchar(1024) NOT NULL, UNIQUE (role) ); CREATE TABLE IF NOT EXISTS users ( user_id integer PRIMARY KEY AUTOINCREMENT, access_token varchar(256) NOT NULL, name varchar(256) NOT NULL, description varchar(128), email varchar(256), phone_number varchar(48), location varchar(256), company varchar(256), expire integer NOT NUll, password varchar(256), UNIQUE (name) ); CREATE TABLE IF NOT EXISTS roles ( role_id integer PRIMARY KEY AUTOINCREMENT, role_name varchar(256) NOT NULL, role_source varchar(256) NOT NULL, description varchar(128), resource_id integer NOT NULL, resource_type varchar(48) NOT NULL, resource_name varchar(48) NOT NULL, resource_verbs varchar(256) NOT NULL, flag INT NOT NULL, UNIQUE(role_name, role_source) ); CREATE TABLE IF NOT EXISTS tenants ( tenant_id integer PRIMARY KEY AUTOINCREMENT, tenant varchar(255) NOT NULL, admin_roles varchar(255), allowed_clusters varchar(255), UNIQUE(tenant) ); CREATE TABLE IF NOT EXISTS namespaces ( namespace_id integer PRIMARY KEY AUTOINCREMENT, tenant varchar(255) NOT NULL, namespace varchar(255) NOT NULL, UNIQUE(tenant, namespace) );
alter table pedido add codigo varchar(36)not null after id; update pedido set codigo = uuid(); alter table pedido add constraint uk_pedido_codigo unique(codigo);
DELIMITER // DROP PROCEDURE IF EXISTS sp_partner_member_orders // /* BPメンバーの注文書一覧 */ CREATE PROCEDURE sp_partner_member_orders ( in_partner_id integer, in_date date ) BEGIN DECLARE curr_ym char(6); DECLARE next_ym char(6); SET curr_ym = DATE_FORMAT(in_date, '%Y%m'); SET next_ym = DATE_FORMAT(date_add(in_date, interval 1 month), '%Y%m'); select m.id , concat(m.first_name, ' ', m.last_name) as name , min(c.start_date) as start_date , max(c.end_date) as end_date , curr_p.id as project_id , curr_p.name as project_name , if(curr_bp_order.id is null, false, true) as has_curr_order , if(next_bp_order.id is null, false, true) as has_next_order , if(max(curr_pm.id) is null, false, true) as is_working , if(ifnull(max(c.end_date), '9999-12-31') < current_date(), true, false) as is_retired from eb_subcontractor s left join eb_bp_contract c on c.is_deleted = 0 and c.company_id = s.id left join eb_member m on m.is_deleted = 0 and m.id = c.member_id left join eb_projectmember curr_pm on curr_pm.is_deleted = 0 and curr_pm.member_id = m.id and curr_pm.end_date >= current_date() left join eb_project curr_p on curr_p.is_deleted = 0 and curr_p.id = curr_pm.project_id left join eb_bpmemberorder curr_bp_order on curr_bp_order.is_deleted = 0 and curr_bp_order.project_member_id = curr_pm.id and concat(curr_bp_order.year, curr_bp_order.month) = curr_ym left join eb_projectmember next_pm on next_pm.is_deleted = 0 and next_pm.member_id = m.id and next_pm.end_date >= current_date() left join eb_bpmemberorder next_bp_order on next_bp_order.is_deleted = 0 and next_bp_order.project_member_id = next_pm.id and concat(next_bp_order.year, next_bp_order.month) = next_ym where s.is_deleted = 0 and s.id = in_partner_id group by m.id, m.first_name, m.last_name, curr_p.id, curr_p.name, curr_bp_order.id, next_bp_order.id order by max(c.end_date) desc, concat(m.first_name, ' ', m.last_name) asc ; END // DELIMITER ;
<reponame>hmah78/OMS_2 -- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Nov 27, 2020 at 03:29 PM -- Server version: 5.7.31 -- PHP Version: 7.3.21 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `oms` -- -- -------------------------------------------------------- -- -- Table structure for table `guardian` -- DROP TABLE IF EXISTS `guardian`; CREATE TABLE IF NOT EXISTS `guardian` ( `id` int(255) NOT NULL AUTO_INCREMENT, `firstname` varchar(30) NOT NULL, `lastname` varchar(30) NOT NULL, `email` varchar(50) NOT NULL, `cnic` varchar(15) NOT NULL, `contact` varchar(12) NOT NULL, `income` int(255) NOT NULL, `address` varchar(100) DEFAULT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `guardian` -- INSERT INTO `guardian` (`id`, `firstname`, `lastname`, `email`, `cnic`, `contact`, `income`, `address`, `password`) VALUES (1, 'Aezaz', 'Ali', '<EMAIL>', '35200-5250005-5', '0321 7423434', 1, 'qazi house canal view raod', 'ok123'), (2, 'Awais', 'Furqan', '<EMAIL>', '35200-5250005-5', '0321 7423434', 1, 'qazi house canal view raod', 'awais3344'); -- -------------------------------------------------------- -- -- Table structure for table `guardian_application` -- DROP TABLE IF EXISTS `guardian_application`; CREATE TABLE IF NOT EXISTS `guardian_application` ( `firstname` varchar(30) NOT NULL, `lastname` varchar(30) NOT NULL, `email` varchar(50) NOT NULL, `cnic` varchar(15) NOT NULL, `contact` varchar(12) NOT NULL, `income` int(255) NOT NULL, `address` varchar(100) DEFAULT NULL, `prefStID` int(255) NOT NULL, `guadAppID` int(255) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`guadAppID`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `guardian_application` -- INSERT INTO `guardian_application` (`firstname`, `lastname`, `email`, `cnic`, `contact`, `income`, `address`, `prefStID`, `guadAppID`) VALUES ('Awais', 'Furqan', '<EMAIL>', '35200-5250005-5', '0321 7423434', 3, 'qazi house canal view raod', 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `sponsor` -- DROP TABLE IF EXISTS `sponsor`; CREATE TABLE IF NOT EXISTS `sponsor` ( `id` int(255) NOT NULL AUTO_INCREMENT, `firstname` varchar(30) NOT NULL, `lastname` varchar(30) NOT NULL, `email` varchar(50) NOT NULL, `cnic` varchar(15) NOT NULL, `contact` varchar(12) NOT NULL, `income` int(255) NOT NULL, `address` varchar(100) DEFAULT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `sponsor` -- INSERT INTO `sponsor` (`id`, `firstname`, `lastname`, `email`, `cnic`, `contact`, `income`, `address`, `password`) VALUES (1, 'Furqan', 'Athar ', '<EMAIL>', '35200-5250005-5', '0321 7423434', 4, 'qazi house canal view raod', 'furqan3344'); -- -------------------------------------------------------- -- -- Table structure for table `sponsor_application` -- DROP TABLE IF EXISTS `sponsor_application`; CREATE TABLE IF NOT EXISTS `sponsor_application` ( `firstname` varchar(30) NOT NULL, `lastname` varchar(30) NOT NULL, `email` varchar(50) NOT NULL, `cnic` varchar(15) NOT NULL, `contact` varchar(12) NOT NULL, `income` int(255) NOT NULL, `address` varchar(100) DEFAULT NULL, `prefStID` int(255) NOT NULL, `sponAppID` int(255) NOT NULL AUTO_INCREMENT, `status` varchar(10) NOT NULL DEFAULT 'Pending', PRIMARY KEY (`sponAppID`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `sponsor_application` -- INSERT INTO `sponsor_application` (`firstname`, `lastname`, `email`, `cnic`, `contact`, `income`, `address`, `prefStID`, `sponAppID`, `status`) VALUES ('Furqan', 'Athar ', '<EMAIL>', '35200-5250005-5', '0321 7423434', 20, 'qazi house canal view raod', 1, 1, 'Pending'), ('Furqan', 'Athar ', '<EMAIL>', '35200-5250005-5', '0321 7423434', 1, 'qazi house canal view raod', 1, 2, 'Pending'); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; DROP TABLE IF EXISTS `employee`; CREATE TABLE IF NOT EXISTS `employee` ( `employee_id` int(255) NOT NULL AUTO_INCREMENT, `First_name` varchar(30) NOT NULL, `Last_name` varchar(30) NOT NULL, `Email` varchar(50) NOT NULL, `Password` varchar(50) NOT NULL, `Cnic` varchar(15) NOT NULL, `Contact` varchar(12) NOT NULL, `Desigantion` varchar(255) NOT NULL, `EVC` int(100) NOT NULL, PRIMARY KEY (`employee_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `event`; CREATE TABLE IF NOT EXISTS `event` ( `event_id` int(255) NOT NULL AUTO_INCREMENT, `title` varchar(30) NOT NULL, `doe` varchar(30) NOT NULL, `capacity` int(50) NOT NULL, `event_budget` int(50) NOT NULL, `Location` varchar(15) NOT NULL, PRIMARY KEY (`event_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `student`; CREATE TABLE IF NOT EXISTS `student` ( `student_id` int(255) NOT NULL AUTO_INCREMENT, `First_name` varchar(90) NOT NULL, `Last_name` varchar(90) NOT NULL, `DOB` varchar(30) NOT NULL, `Gender` varchar(50) NOT NULL, `CNIC` varchar(15) NOT NULL, `Place_birth` varchar(15) NOT NULL, PRIMARY KEY (`student_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
-- Add up migration script here CREATE TABLE IF NOT EXISTS api_key ( email VARCHAR(255) PRIMARY KEY, content TEXT ); CREATE TABLE IF NOT EXISTS api_token ( id SERIAL PRIMARY KEY, email VARCHAR(255), last_used DATE NOT NULL DEFAULT CURRENT_DATE, content TEXT );
select name, addr, count(1) from table1 group by name, addr order by name, addr;
SELECT dimtime.DateValue, lanein.Entering_id, col.Name, COUNT(DISTINCT lanein.Card_Id) AS CardCount FROM dbo.DimTime dimtime JOIN CardActivities lanein ON lanein.StartTime <= dimtime.DateValue and lanein.ActivityId = 3 JOIN BoardColumns col on col.Id = lanein.Entering_id LEFT JOIN CardActivities laneout ON lanein.Leaving_id = laneout.Entering_id and laneout.ActivityId = 3 --AND lanein.Card_Id = laneout.Card_Id --AND laneout.EndTime <= dimtime.DateValue WHERE --laneout.What IS NULL DimTime.DateValue BETWEEN '01-01-2010' AND GETDATE()+1 GROUP BY dimtime.DateValue,lanein.Entering_id, col.Name
<filename>db/sql/20200422160902_add_labels.sql -- +goose Up CREATE TABLE labels ( id serial PRIMARY KEY, key varchar(255), value varchar(255), resource varchar(255), resource_id INTEGER, -- auditing info created_at timestamp NOT NULL DEFAULT (NOW() at time zone 'utc') ); -- +goose Down DROP TABLE labels;
<filename>posda/posdatools/queries/sql/CreateDicomEditCompareDisposition.sql -- Name: CreateDicomEditCompareDisposition -- Schema: posda_files -- Columns: [] -- Args: ['subprocess_invocation_id', 'process_pid', 'dest_dir'] -- Tags: ['adding_ctp', 'for_scripting'] -- Description: Create an entry in dicom_edit_compare_disposition -- -- From script only. Don't run from user interface (needs valid subprocess_invocation_id) insert into dicom_edit_compare_disposition( subprocess_invocation_id, start_creation_time, current_disposition, process_pid, dest_dir )values ( ?, now(), 'Starting Up', ?, ? )
SELECT o_orderpriority, count(*) AS order_count FROM orders WHERE o_orderdate >= date'1993-07-01' AND o_orderdate < date'1993-07-01' + interval 3 month AND EXISTS ( SELECT * FROM lineitem WHERE l_orderkey = o_orderkey AND l_commitdate < l_receiptdate) GROUP BY o_orderpriority ORDER BY o_orderpriority;
<reponame>ANASMALVAT/HealthPlus<gh_stars>100-1000 -- MySQL dump 10.16 Distrib 10.1.34-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: test_HMS2 -- ------------------------------------------------------ -- Server version 10.1.34-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `BloodGroupingRh` -- DROP TABLE IF EXISTS `BloodGroupingRh`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `BloodGroupingRh` ( `tst_bloodG_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `bloodGroup` varchar(10) DEFAULT NULL, `rhesusD` varchar(10) DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_bloodG_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `BloodGroupingRh_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `BloodGroupingRh` -- LOCK TABLES `BloodGroupingRh` WRITE; /*!40000 ALTER TABLE `BloodGroupingRh` DISABLE KEYS */; INSERT INTO `BloodGroupingRh` VALUES ('BG0001','pr0003','A','positive',NULL,'2016-12-09 23:41:02'),('BG0002','pr0004','B','negative',NULL,'2016-12-09 23:41:03'),('bg0003',NULL,' a ',' a ',' ','2016-12-09 23:41:04'),('bg0004',NULL,' a ',' a ',' ','2016-12-09 23:41:05'),('bg0005',NULL,' A ',' A ',' ','2016-12-09 23:41:05'),('bg0006',NULL,' A+ ',' positive ',' lapp001 ','2016-12-09 23:41:06'); /*!40000 ALTER TABLE `BloodGroupingRh` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LipidTest` -- DROP TABLE IF EXISTS `LipidTest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LipidTest` ( `tst_li_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `cholestrolHDL` varchar(10) DEFAULT NULL, `cholestrolLDL` varchar(10) DEFAULT NULL, `triglycerides` varchar(10) DEFAULT NULL, `totalCholestrolLDLHDLratio` varchar(10) DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_li_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `LipidTest_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LipidTest` -- LOCK TABLES `LipidTest` WRITE; /*!40000 ALTER TABLE `LipidTest` DISABLE KEYS */; INSERT INTO `LipidTest` VALUES ('LI0001','pr0001','56','45','89','5',NULL,'2016-12-09 23:40:40'),('LI0002','pr0002','89','12','23','6',NULL,'2016-12-09 23:40:41'),('li0003',NULL,' a ',' a ',' a ',' a ',' ','2016-12-09 23:40:42'),('li0004',NULL,' a ',' a ',' a ',' a ',' ','2016-12-09 23:40:43'),('li0005',NULL,' a ',' a ',' a ',' a ',' lapp001 ','2016-12-09 23:40:43'),('li0006',NULL,' a ',' a ',' a ',' a ',' lapp001 ','2016-12-09 23:40:44'),('li0007',NULL,' a ',' a ',' a ',' a ',' lapp001 ','2016-12-09 23:40:45'),('li0008',NULL,' a ',' a ',' a ',' a ',' lapp001 ','2016-12-09 23:40:46'),('li0009',NULL,' a ',' a ',' a ',' a ',' ','2016-12-09 23:40:47'); /*!40000 ALTER TABLE `LipidTest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `LiverFunctionTest` -- DROP TABLE IF EXISTS `LiverFunctionTest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `LiverFunctionTest` ( `tst_liver_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `totalProtein` float DEFAULT NULL, `albumin` float DEFAULT NULL, `globulin` float DEFAULT NULL, `totalBilirubin` float DEFAULT NULL, `directBilirubin` float DEFAULT NULL, `sgotast` float DEFAULT NULL, `sgptalt` float DEFAULT NULL, `alkalinePhospates` float DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_liver_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `LiverFunctionTest_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LiverFunctionTest` -- LOCK TABLES `LiverFunctionTest` WRITE; /*!40000 ALTER TABLE `LiverFunctionTest` DISABLE KEYS */; INSERT INTO `LiverFunctionTest` VALUES ('LV0001','pr0007',56,5,89,95,65,23,35,56,NULL,'2016-12-09 23:40:27'),('LV0002','pr0008',56,5,89,95,65,23,35,22,NULL,'2016-12-09 23:40:28'),('lv0003',NULL,1,2,3,4,5,6,7,8,' ','2016-12-09 23:40:29'); /*!40000 ALTER TABLE `LiverFunctionTest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `RenalFunctionTest` -- DROP TABLE IF EXISTS `RenalFunctionTest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `RenalFunctionTest` ( `tst_renal_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `creatinine` float DEFAULT NULL, `urea` float DEFAULT NULL, `totalBilirubin` float DEFAULT NULL, `directBilirubin` float DEFAULT NULL, `sgotast` float DEFAULT NULL, `sgptalt` float DEFAULT NULL, `alkalinePhospates` float DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_renal_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `RenalFunctionTest_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `RenalFunctionTest` -- LOCK TABLES `RenalFunctionTest` WRITE; /*!40000 ALTER TABLE `RenalFunctionTest` DISABLE KEYS */; INSERT INTO `RenalFunctionTest` VALUES ('RE0001','pr0009',56,5,89,95,65,23,35,NULL,'2016-12-09 23:40:10'),('RE0002','pr0010',56,5,89,95,65,23,35,NULL,'2016-12-09 23:40:11'),('re0003',NULL,0,0,0,0,0,0,0,' ','2016-12-09 23:40:12'); /*!40000 ALTER TABLE `RenalFunctionTest` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SeriumCreatinePhosphokinase` -- DROP TABLE IF EXISTS `SeriumCreatinePhosphokinase`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SeriumCreatinePhosphokinase` ( `tst_SCP_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `hiv12ELISA` varchar(10) DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_SCP_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `SeriumCreatinePhosphokinase_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SeriumCreatinePhosphokinase` -- LOCK TABLES `SeriumCreatinePhosphokinase` WRITE; /*!40000 ALTER TABLE `SeriumCreatinePhosphokinase` DISABLE KEYS */; INSERT INTO `SeriumCreatinePhosphokinase` VALUES ('SCP0001','pr0011','78',NULL,'2016-05-09 20:41:27'),('SCP0002','pr0012','25',NULL,'2016-05-09 20:41:27'); /*!40000 ALTER TABLE `SeriumCreatinePhosphokinase` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `SeriumCreatinePhosphokinaseTotal` -- DROP TABLE IF EXISTS `SeriumCreatinePhosphokinaseTotal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `SeriumCreatinePhosphokinaseTotal` ( `tst_SCPT_id` varchar(10) NOT NULL DEFAULT '', `test_id` varchar(10) DEFAULT NULL, `prescription_id` varchar(10) DEFAULT NULL, `cpkTotal` int(10) DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_SCPT_id`), KEY `test_id` (`test_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `SeriumCreatinePhosphokinaseTotal_ibfk_1` FOREIGN KEY (`test_id`) REFERENCES `lab_test` (`test_id`), CONSTRAINT `SeriumCreatinePhosphokinaseTotal_ibfk_2` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SeriumCreatinePhosphokinaseTotal` -- LOCK TABLES `SeriumCreatinePhosphokinaseTotal` WRITE; /*!40000 ALTER TABLE `SeriumCreatinePhosphokinaseTotal` DISABLE KEYS */; INSERT INTO `SeriumCreatinePhosphokinaseTotal` VALUES ('scpt0001',NULL,NULL,0,'lapp001','2016-05-09 20:41:27'),('scpt0002',NULL,NULL,54,' lapp001 ','2016-05-09 20:41:27'); /*!40000 ALTER TABLE `SeriumCreatinePhosphokinaseTotal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `UrineFullReport` -- DROP TABLE IF EXISTS `UrineFullReport`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `UrineFullReport` ( `tst_ur_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `appearance` varchar(10) DEFAULT NULL, `sgRefractometer` varchar(10) DEFAULT NULL, `ph` float DEFAULT NULL, `protein` varchar(10) DEFAULT NULL, `glucose` varchar(10) DEFAULT NULL, `ketoneBodies` varchar(10) DEFAULT NULL, `bilirubin` varchar(10) DEFAULT NULL, `urobilirubin` varchar(10) DEFAULT NULL, `contrifugedDepositsphaseContrastMicroscopy` varchar(10) DEFAULT NULL, `pusCells` varchar(10) DEFAULT NULL, `redCells` varchar(10) DEFAULT NULL, `epithelialCells` varchar(10) DEFAULT NULL, `casts` varchar(10) DEFAULT NULL, `cristals` varchar(10) DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_ur_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `UrineFullReport_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `UrineFullReport` -- LOCK TABLES `UrineFullReport` WRITE; /*!40000 ALTER TABLE `UrineFullReport` DISABLE KEYS */; INSERT INTO `UrineFullReport` VALUES ('ur0001',NULL,' as ',' sa ',0,' as ',' asa ',' ass ',' assa ',' sa ',' asa ',' asas ',' asa ',' asa ',' asa ',' asa ',' ','2016-12-09 23:41:41'),('ur0002',NULL,' a ',' b ',0,' d ',' e ',' g ',' h ',' i ',' j ',' k ',' l ',' m ',' o ',' n ',' ','2016-12-09 23:41:42'); /*!40000 ALTER TABLE `UrineFullReport` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `appointment` -- DROP TABLE IF EXISTS `appointment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `appointment` ( `appointment_id` varchar(15) NOT NULL DEFAULT '', `date` datetime DEFAULT NULL, `info` varchar(100) DEFAULT NULL, `patient_id` varchar(10) DEFAULT NULL, `bill_id` varchar(10) DEFAULT NULL, `slmc_reg_no` varchar(20) DEFAULT NULL, `cancelled` tinyint(1) DEFAULT NULL, PRIMARY KEY (`appointment_id`), KEY `patient_id` (`patient_id`), KEY `slmc_reg_no` (`slmc_reg_no`), KEY `bill_id` (`bill_id`), CONSTRAINT `appointment_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`), CONSTRAINT `appointment_ibfk_2` FOREIGN KEY (`slmc_reg_no`) REFERENCES `doctor` (`slmc_reg_no`), CONSTRAINT `appointment_ibfk_3` FOREIGN KEY (`bill_id`) REFERENCES `bill` (`bill_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `appointment` -- LOCK TABLES `appointment` WRITE; /*!40000 ALTER TABLE `appointment` DISABLE KEYS */; INSERT INTO `appointment` VALUES ('app001','2016-07-08 10:30:00','info','hms0001pa','hms0001b','15682',1),('app002','2016-07-08 11:30:00','info','hms0002pa','hms0002b','16787',1),('app003','2016-12-06 16:00:00',NULL,'hms0001pa','hms0003b','15682',1),('app004','2017-01-08 16:00:00',NULL,'hms0001pa','hms0004b','22387',0),('app005','2017-01-08 15:00:00',NULL,'hms0001pa',NULL,'21987',0),('app006','2017-01-10 16:00:00',NULL,'hms0001pa',NULL,'15682',0),('app007','2017-01-09 16:00:00',NULL,'hms0001pa',NULL,'16787',0),('app008','2017-01-10 16:00:00',NULL,'hms0001pa',NULL,'15682',0),('app009','2015-01-10 16:00:00',NULL,'hms0001pa',NULL,'15682',0); /*!40000 ALTER TABLE `appointment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bill` -- DROP TABLE IF EXISTS `bill`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bill` ( `bill_id` varchar(10) NOT NULL DEFAULT '', `bill_date` datetime DEFAULT NULL, `doctor_fee` int(11) DEFAULT NULL, `hospital_fee` int(11) DEFAULT NULL, `pharmacy_fee` int(11) DEFAULT NULL, `laboratory_fee` int(11) DEFAULT NULL, `appointment_fee` int(11) DEFAULT NULL, `vat` int(11) DEFAULT NULL, `discount` int(11) DEFAULT NULL, `total` int(11) DEFAULT NULL, `payment_method` varchar(25) DEFAULT NULL, `consultant_id` varchar(10) DEFAULT NULL, `patient_id` varchar(10) DEFAULT NULL, `refund` int(11) DEFAULT NULL, PRIMARY KEY (`bill_id`), KEY `patient_id` (`patient_id`), KEY `consultant_id` (`consultant_id`), CONSTRAINT `bill_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bill` -- LOCK TABLES `bill` WRITE; /*!40000 ALTER TABLE `bill` DISABLE KEYS */; INSERT INTO `bill` VALUES ('hms0001b','2016-12-30 14:30:00',0,0,0,0,500,0,0,500,'online','19245','hms0001pa',1),('hms0002b','2017-01-02 10:30:00',0,0,0,0,500,0,0,500,'cash','19245','hms0002pa',0),('hms0003b','2017-01-05 13:30:00',0,0,0,0,500,0,0,500,'online','18452','hms0003pa',0),('hms0004b','2017-01-10 14:41:45',200,150,450,0,0,40,NULL,840,'Cash','22387','hms0001pa',NULL),('hms0005b','2017-01-10 22:31:18',0,0,0,0,500,25,NULL,525,'Cash','null','hms0001pa',NULL),('hms0006b','2017-01-10 22:32:43',200,150,0,1000,0,65,NULL,1415,'Cash','null','hms0001pa',NULL),('hms0007b','2016-08-30 14:30:00',200,150,300,0,500,60,0,1210,'cash','18452','hms0001pa',0); /*!40000 ALTER TABLE `bill` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `completeBloodCount` -- DROP TABLE IF EXISTS `completeBloodCount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `completeBloodCount` ( `tst_CBC_id` varchar(10) NOT NULL DEFAULT '', `prescription_id` varchar(10) DEFAULT NULL, `totalWhiteCellCount` int(10) DEFAULT NULL, `differentialCount` int(10) DEFAULT NULL, `neutrophils` int(10) DEFAULT NULL, `lymphocytes` int(10) DEFAULT NULL, `monocytes` int(10) DEFAULT NULL, `eosonophils` int(10) DEFAULT NULL, `basophils` int(10) DEFAULT NULL, `haemoglobin` float DEFAULT NULL, `redBloodCells` float DEFAULT NULL, `meanCellVolume` float DEFAULT NULL, `haematocrit` float DEFAULT NULL, `meanCellHaemoglobin` float DEFAULT NULL, `mchConcentration` float DEFAULT NULL, `redCellsDistributionWidth` float DEFAULT NULL, `plateletCount` int(15) DEFAULT NULL, `appointment_id` varchar(15) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`tst_CBC_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `completeBloodCount_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `completeBloodCount` -- LOCK TABLES `completeBloodCount` WRITE; /*!40000 ALTER TABLE `completeBloodCount` DISABLE KEYS */; INSERT INTO `completeBloodCount` VALUES ('CBC0001','pr0005',0,56,5,89,95,65,23,35,87,100,500,36,56,48,500,NULL,'2016-05-09 20:41:27'),('CBC0002','pr0006',0,56,5,89,95,65,23,35,87,100,500,36,56,53,600,NULL,'2016-05-09 20:41:27'),('cbc0003',NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,' ','2016-05-09 20:41:27'),('cbc0004',NULL,23,34,0,10,23,12,12,12,12,12,12,12,12,12,12,' ','2016-05-09 20:41:27'); /*!40000 ALTER TABLE `completeBloodCount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `diagnose_history` -- DROP TABLE IF EXISTS `diagnose_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `diagnose_history` ( `diagnostic_id` varchar(10) NOT NULL DEFAULT '', `patient_id` varchar(10) DEFAULT NULL, `diagnose` varchar(150) DEFAULT NULL, `date` date DEFAULT NULL, `consultant_id` varchar(10) DEFAULT NULL, `prescription_id` varchar(10) DEFAULT NULL, PRIMARY KEY (`diagnostic_id`), KEY `patient_id` (`patient_id`), KEY `consultant_id` (`consultant_id`), KEY `prescription_id` (`prescription_id`), CONSTRAINT `diagnose_history_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`), CONSTRAINT `diagnose_history_ibfk_2` FOREIGN KEY (`consultant_id`) REFERENCES `doctor` (`slmc_reg_no`), CONSTRAINT `diagnose_history_ibfk_3` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `diagnose_history` -- LOCK TABLES `diagnose_history` WRITE; /*!40000 ALTER TABLE `diagnose_history` DISABLE KEYS */; /*!40000 ALTER TABLE `diagnose_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `doctor` -- DROP TABLE IF EXISTS `doctor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `doctor` ( `slmc_reg_no` varchar(20) NOT NULL DEFAULT '', `user_id` varchar(10) DEFAULT NULL, `education` varchar(100) DEFAULT NULL, `training` varchar(100) DEFAULT NULL, `experienced_areas` varchar(100) DEFAULT NULL, `experience` varchar(100) DEFAULT NULL, `achievements` varchar(100) DEFAULT NULL, `channelling_fee` int(11) DEFAULT NULL, PRIMARY KEY (`slmc_reg_no`), KEY `user_id` (`user_id`), CONSTRAINT `doctor_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `doctor` -- LOCK TABLES `doctor` WRITE; /*!40000 ALTER TABLE `doctor` DISABLE KEYS */; INSERT INTO `doctor` VALUES ('15682','hms0005u','MBBS SriLanka(Colombo) MD Australia','intern at general hospital Badulla','physiology','13 years','8 years of experirnce in consulting',800),('16787','hms0009u','MBBS SriLanka(Karapitiya) MD Australia','intern at general hospital Badulla','paediatrics','12 years','7 years of experirnce in consulting',500),('18452','hms0003u','MBBS SriLanka(Karapitiya) MD China','intern at general hospital Badulla','neurology','10 years','4 years of experirnce in consulting',1000),('19245','hms0002u','MBBS SriLanka(Colombo) MD China','intern at general hospital Colombo','cardiology','9 years','3 years of experience in consulting',700),('19993','hms0010u','MBBS SriLanka(Colombo) MD USA','intern at general hospital Matara','endocrineology','9 years','4 years of experirnce in consulting',650),('21462','hms0004u','MBBS SriLanka(Peradeniya) MD USA','intern at general hospital Kandy','neurology','7 years','2 years of experirnce in consulting',900),('21987','hms0006u','MBBS SriLanka(Colombo) MD USA','intern at general hospital Maharagama','physiology','7 years','2 years of experirnce in consulting',700),('22287','hms0008u','MBBS SriLanka(Colombo) MD China','intern at general hospital Colombo','orthopedics','8 years','3 years of experirnce in consulting',600),('22387','hms0001u','MBBS SriLanka(Colombo) MD USA','intern at general hospital Karapitiya','cardiology','6 years','1 year of experience in consulting',600),('22987','hms0007u','MBBS SriLanka(Peradeniya) MD USA','intern at general hospital Monaragala','orthopedics','6 years','1 year of experirnce in consulting',600),('28987','hms0011u','MBBS SriLanka(Karapitiya) Diploma in Disaster Management','intern at general hospital Monaragala','risk managment','4 years','best Asian disaster management personel award from Japan in 2014',400); /*!40000 ALTER TABLE `doctor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `doctor_availability` -- DROP TABLE IF EXISTS `doctor_availability`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `doctor_availability` ( `time_slot_id` varchar(10) NOT NULL DEFAULT '', `slmc_reg_no` varchar(20) DEFAULT NULL, `day` int(11) DEFAULT NULL, `time_slot` varchar(15) DEFAULT NULL, `current_week_appointments` int(11) DEFAULT NULL, `next_week_appointments` int(11) DEFAULT NULL, PRIMARY KEY (`time_slot_id`), KEY `slmc_reg_no` (`slmc_reg_no`), CONSTRAINT `doctor_availability_ibfk_1` FOREIGN KEY (`slmc_reg_no`) REFERENCES `doctor` (`slmc_reg_no`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `doctor_availability` -- LOCK TABLES `doctor_availability` WRITE; /*!40000 ALTER TABLE `doctor_availability` DISABLE KEYS */; INSERT INTO `doctor_availability` VALUES ('t0002','19245',2,'14:00-18:00',1,0),('t0003','18452',2,'16:00-18:00',2,0),('t0004','21462',1,'7:00-10:00',0,0),('t0005','15682',3,'16:00-18:00',1,0),('t0006','21987',1,'15:00-18:00',1,0),('t0007','22987',2,'9:00-12:00',1,0),('t0008','22287',1,'16:00-18:00',0,1),('t0009','16787',2,'16:00-18:00',2,0),('t0010','19993',1,'15:00-19:00',2,0),('t0011','28987',2,'16:00-18:00',0,0),('t0012','22387',4,'16:00-18:00',0,0),('t0013','22387',3,'09.00-11.00',0,0),('t0014','22387',7,'10.00-12.00',0,0); /*!40000 ALTER TABLE `doctor_availability` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drug` -- DROP TABLE IF EXISTS `drug`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drug` ( `drug_id` varchar(10) NOT NULL DEFAULT '', `drug_name` varchar(20) DEFAULT NULL, `dangerous_drug` tinyint(1) DEFAULT NULL, PRIMARY KEY (`drug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drug` -- LOCK TABLES `drug` WRITE; /*!40000 ALTER TABLE `drug` DISABLE KEYS */; INSERT INTO `drug` VALUES ('d0001','paracetamol',1),('d0002','nafcillin',1),('d0003','acetic acid',1),('d0004','amoxicillin',0),('d0005','Cloxacillin',0); /*!40000 ALTER TABLE `drug` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drug_brand_names` -- DROP TABLE IF EXISTS `drug_brand_names`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drug_brand_names` ( `brand_id` varchar(10) NOT NULL DEFAULT '', `brand_name` varchar(40) DEFAULT NULL, `generic_name` varchar(40) DEFAULT NULL, `drug_type` varchar(20) DEFAULT NULL, `drug_unit` varchar(10) DEFAULT NULL, `unit_price` int(11) DEFAULT NULL, PRIMARY KEY (`brand_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drug_brand_names` -- LOCK TABLES `drug_brand_names` WRITE; /*!40000 ALTER TABLE `drug_brand_names` DISABLE KEYS */; INSERT INTO `drug_brand_names` VALUES ('br0001','panadol','paracetamol','tablet','mg',2),('br0002','calpol','paracetamol','tablet','mg',5),('br0003','tylenol','paracetamol','tablet','mg',3),('br0004','tipol','paracetamol','tablet','mg',2),('br0005','nafcil','nafcillin','tablet','mg',4),('br0006','nallpen','nafcillin','tablet','mg',5),('br0007','unipen','nafcillin','tablet','mg',4),('br0008','vosol ','acetic acid','tablet','mg',3),('br0009','acetasol','acetic acid','tablet','mg',2),('br0010','vasotate','acetic acid','tablet','mg',2),('br0011','amoxil ','amoxicillin','tablet','mg',3),('br0012','polymox','amoxicillin','tablet','mg',5),('br0013','trimox','amoxicillin','tablet','mg',4),('br0014','wymox','amoxicillin','tablet','mg',2),('br0015','Cloxapen','Cloxacillin','tablet','mg',3),('br0016','Clobex','Cloxacillin','tablet','mg',4); /*!40000 ALTER TABLE `drug_brand_names` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lab_appointment` -- DROP TABLE IF EXISTS `lab_appointment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lab_appointment` ( `lab_appointment_id` varchar(15) NOT NULL DEFAULT '', `test_id` varchar(10) DEFAULT NULL, `date` datetime DEFAULT NULL, `info` varchar(100) DEFAULT NULL, `patient_id` varchar(10) DEFAULT NULL, `bill_id` varchar(10) DEFAULT NULL, `lab_assistant_id` varchar(20) DEFAULT NULL, `cancelled` tinyint(1) DEFAULT NULL, `doctor_id` varchar(15) DEFAULT NULL, PRIMARY KEY (`lab_appointment_id`), KEY `patient_id` (`patient_id`), KEY `lab_assistant_id` (`lab_assistant_id`), KEY `bill_id` (`bill_id`), KEY `test_id` (`test_id`), CONSTRAINT `lab_appointment_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`), CONSTRAINT `lab_appointment_ibfk_2` FOREIGN KEY (`lab_assistant_id`) REFERENCES `lab_assistant` (`lab_assistant_id`), CONSTRAINT `lab_appointment_ibfk_3` FOREIGN KEY (`bill_id`) REFERENCES `bill` (`bill_id`), CONSTRAINT `lab_appointment_ibfk_4` FOREIGN KEY (`test_id`) REFERENCES `lab_test` (`test_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lab_appointment` -- LOCK TABLES `lab_appointment` WRITE; /*!40000 ALTER TABLE `lab_appointment` DISABLE KEYS */; INSERT INTO `lab_appointment` VALUES ('lapp001','t001','2016-12-03 16:04:40',NULL,'hms0001pa','hms0001b',NULL,0,NULL),('lapp002','t002','2017-01-17 14:00:00',NULL,'hms0001pa',NULL,NULL,0,'22387'),('lapp003','t002','2017-01-17 14:00:00',NULL,'hms0001pa',NULL,NULL,0,'22387'),('lapp004','t002','2017-01-17 14:00:00',NULL,'hms0001pa',NULL,NULL,0,'19245'),('lapp005','t001','2017-01-17 16:00:00',NULL,'hms0001pa',NULL,NULL,0,'22387'),('lapp006','t002','2017-01-17 14:00:00',NULL,'hms0001pa',NULL,NULL,0,'19245'); /*!40000 ALTER TABLE `lab_appointment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lab_appointment_timetable` -- DROP TABLE IF EXISTS `lab_appointment_timetable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lab_appointment_timetable` ( `app_id` varchar(15) NOT NULL DEFAULT '', `app_test_id` varchar(15) DEFAULT NULL, `app_day` int(11) DEFAULT NULL, `time_slot` varchar(15) DEFAULT NULL, `current_week_appointments` int(11) DEFAULT NULL, `next_week_appointments` int(11) DEFAULT NULL, PRIMARY KEY (`app_id`), KEY `app_test_id` (`app_test_id`), CONSTRAINT `lab_appointment_timetable_ibfk_1` FOREIGN KEY (`app_test_id`) REFERENCES `lab_test` (`test_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lab_appointment_timetable` -- LOCK TABLES `lab_appointment_timetable` WRITE; /*!40000 ALTER TABLE `lab_appointment_timetable` DISABLE KEYS */; INSERT INTO `lab_appointment_timetable` VALUES ('labt0001','t001',1,'14:00-18:00',0,0),('labt0002','t001',2,'14:00-18:00',4,0),('labt0003','t001',3,'16:00-18:00',4,0),('labt0004','t002',1,'08:00-10:00',1,0),('labt0005','t002',7,'14:00-16:00',0,0),('labt0006','t002',3,'14:00-18:00',5,0),('labt0007','t003',5,'15:00-19:00',6,0),('labt0008','t003',1,'16:00-18:00',0,0),('labt0009','t003',2,'16:00-19:00',2,0),('labt0010','t004',5,'17:00-20:00',0,0),('labt0011','t004',1,'08:00-12:00',5,0),('labt0012','t004',3,'14:00-18:00',1,0),('labt0013','t005',2,'16:00-18:00',8,0),('labt0014','t005',7,'16:00-18:00',5,0),('labt0015','t005',1,'15:00-19:00',0,0),('labt0016','t006',5,'17:00-18:00',8,0),('labt0017','t006',3,'12:00-14:00',6,0),('labt0018','t006',6,'14:00-18:00',3,0),('labt0019','t007',6,'19:00-21:00',7,0),('labt0020','t007',2,'09:00-12:00',0,0),('labt0021','t007',1,'13:00-16:00',2,0),('labt0022','t008',7,'08:00-11:00',0,0),('labt0023','t008',4,'14:00-16:00',2,0),('labt0024','t008',1,'12:00-14:00',3,0); /*!40000 ALTER TABLE `lab_appointment_timetable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lab_assistant` -- DROP TABLE IF EXISTS `lab_assistant`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lab_assistant` ( `lab_assistant_id` varchar(10) NOT NULL DEFAULT '', `user_id` varchar(10) DEFAULT NULL, `education` varchar(100) DEFAULT NULL, `training` varchar(100) DEFAULT NULL, `experience` varchar(100) DEFAULT NULL, `achievements` varchar(100) DEFAULT NULL, PRIMARY KEY (`lab_assistant_id`), KEY `user_id` (`user_id`), CONSTRAINT `lab_assistant_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lab_assistant` -- LOCK TABLES `lab_assistant` WRITE; /*!40000 ALTER TABLE `lab_assistant` DISABLE KEYS */; INSERT INTO `lab_assistant` VALUES ('hms0001l','hms0012u','high school diploma','trainee at clinical laboratory assistant certificate program','1 yr','Strong attention to detail|Excellent manual dexterity|Good analytical judgment'),('hms0002l','hms0013u','high school diploma','trainee at general hospital Karapitiya','2 yr','Strong attention to detail'),('hms0003l','hms0014u','high school diploma','trainee at clinical laboratory assistant certificate program','4 yr','Good analytical judgment'),('hms0004l','hms0015u','high school diploma','on the job','2 yr','Strong attention to detail|Excellent manual dexterity|Good analytical judgment'); /*!40000 ALTER TABLE `lab_assistant` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lab_test` -- DROP TABLE IF EXISTS `lab_test`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lab_test` ( `test_id` varchar(10) NOT NULL DEFAULT '', `test_name` varchar(50) DEFAULT NULL, `test_description` varchar(150) DEFAULT NULL, `test_fee` int(11) DEFAULT NULL, PRIMARY KEY (`test_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lab_test` -- LOCK TABLES `lab_test` WRITE; /*!40000 ALTER TABLE `lab_test` DISABLE KEYS */; INSERT INTO `lab_test` VALUES ('t001','Urine Full Report','Urine test to analyze the body mineral and fluid levels',500),('t002','Lipid Test','Checks the lipid/cholesterol levels in the body',1000),('t003','Blood Grouping Rh','Checks the blood group',1500),('t004','Complete Blood Count','Counts the total in each type of blood cells',1000),('t005','Liver Function Test','Checks the functionality of the liver',2000),('t006','Renal Function Test','Checks the functionality of the kideny',2000),('t007','Serium Creatine Phosphokinase','measures the amount of creatine phosphokinase (CPK) present in the blood',3000),('t008','Serium Creatine Phosphokinase Total','measures the amount of creatine phosphokinase (CPK) present in the blood',3000); /*!40000 ALTER TABLE `lab_test` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `medical_history` -- DROP TABLE IF EXISTS `medical_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `medical_history` ( `history_id` varchar(15) NOT NULL DEFAULT '', `patient_id` varchar(10) DEFAULT NULL, `doctor_id` varchar(20) DEFAULT NULL, `date` date DEFAULT NULL, `history` varchar(500) DEFAULT NULL, PRIMARY KEY (`history_id`), KEY `patient_id` (`patient_id`), KEY `doctor_id` (`doctor_id`), CONSTRAINT `medical_history_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`), CONSTRAINT `medical_history_ibfk_2` FOREIGN KEY (`doctor_id`) REFERENCES `doctor` (`slmc_reg_no`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `medical_history` -- LOCK TABLES `medical_history` WRITE; /*!40000 ALTER TABLE `medical_history` DISABLE KEYS */; INSERT INTO `medical_history` VALUES ('his0001','hms0001pa','22387','2016-01-01','Took medicine for dengue fever'),('his0002','hms0002pa','19245','2016-02-21','Did heart surgery 2 months ago|Allergy to heavy dose could cause unconsciousness'),('his0003','hms0003pa','15682','2016-01-31','Took medicine for dengue fever'),('his0004','hms0004pa','22387','2016-03-01','Wheezing|Allergic to antibiotics|Runny nose'),('his0005','hms0005pa','21462','2016-05-01','Diagnosed with hypertension and began on unknown medication|Stopped after 6 months because of drowsiness|Drugs were used to treat seizures|Diarrhea '),('his0006','hms0006pa','19245','2016-04-01','Lung problems and previous heart diseases|Allergic to penicillin|Constipation'),('his0007','hms0007pa','21987','2016-08-01','Migraine|Allergic to chocolate'),('his0008','hms0008pa','22387','2016-01-10','Heart attack due to heavy drinking|Chemotherapy drug|Breathing difficulties'),('his0055','hms0055pa','15682','2016-01-01','Sufferd with kidney failure|Previous Penecilin usage|Vomiting or diarrhea'),('his0056','hms0056pa','15682','2016-07-12','Motion abnormalities'),('his0057','hms0057pa','21987','2016-04-23','No palpable nodes in the cervical supraclavicular auxillary or inguinal areas|Chemotherapy drugs|Nausea or abdominal cramps'),('his0058','hms0058pa','19983','2016-05-12','Cholesterol is elevated|Sulfur drugs|Weak/rapid pulse'),('his0059','hms0059pa','22387','2016-05-26','Risk of myocardial infarction'),('his0060','hms0060pa','22387','2016-04-14','Systolic murmur'),('his0061','hms0061pa','21987','2016-03-31','Lumbo-sacral back pain|Previous Pencilin usage|Frequent drop in blood pressure'),('his0062','hms0062pa','21987','2016-03-28','Fibrocystic breast disease'),('his0063','hms0063pa','22387','2016-01-01','Chest pain with features of angina pectoris|Bee pollen products'),('his0064','hms0064pa','22387','2016-02-25','Systolic ejection murmur'),('his0065','hms0065pa','21287','2016-02-22','Lumbosacral back pain|Aspirin|Itchy|Watery eyes '),('his0066','hms0002pa','22387','2016-12-03','testings tests 0001'),('his0067','hms0001pa','22387','2017-01-09','Translate proponoj amba? profesia kaj homa ma?ino tradukoj inter 75 lingvoj. Tradukistoj povas anka? redakti pagis laborpostenoj pere de nia enreta portalo. Libera tradukisto de Cambridge Vortaroj - Kembri?o Vortaro traduki'); /*!40000 ALTER TABLE `medical_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `patient` -- DROP TABLE IF EXISTS `patient`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `patient` ( `patient_id` varchar(10) NOT NULL DEFAULT '', `person_id` varchar(15) DEFAULT NULL, `drug_allergies_and_reactions` varchar(500) DEFAULT NULL, PRIMARY KEY (`patient_id`), KEY `person_id` (`person_id`), CONSTRAINT `patient_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `person` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `patient` -- LOCK TABLES `patient` WRITE; /*!40000 ALTER TABLE `patient` DISABLE KEYS */; INSERT INTO `patient` VALUES ('hms0001pa','hms00018','None,asas,asasas'),('hms0002pa','hms00058 ','Alergy to heavy dose could cause unconsciousness'),('hms0003pa','hms00051 ','none'),('hms0004pa','hms00044 ','Allergy to antibiotics'),('hms0005pa','hms00001 ','Diagnosed with hypertension and began on unknown medication|Stopped after 6 months because of drowsiness'),('hms0006pa','hms00002 ','Allergy to penicillin'),('hms0007pa','hms00003 ','Migraines and allergies occur due to food'),('hms0008pa','hms00004 ','Breathing difficulties to sulfur containing drugs'),('hms0009pa','hms00005 ','Constipation can be occured ue to antibiotics'),('hms0010pa','hms00006 ','None'),('hms0011pa','hms00007 ','None'),('hms0012pa','hms00008 ','none'),('hms0013pa','hms00009 ','Bee/Pollen products'),('hms0014pa','hms00010 ','Non'),('hms0015pa','hms00011 ','None'),('hms0016pa','hms00012 ','Easy bruising'),('hms0017pa','hms00013 ','Dyes can cause severe itching in palms'),('hms0018pa','hms00014 ','None'),('hms0019pa','hms00015 ','None '),('hms0020pa','hms00016 ','Intestianal bleeding can be occured if Ibuprofen is used '),('hms0021pa','hms00017 ','Bee/Pollen products'),('hms0022pa','hms00019 ','Morphine allergy '); /*!40000 ALTER TABLE `patient` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `patient_message_receive` -- DROP TABLE IF EXISTS `patient_message_receive`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `patient_message_receive` ( `message_id` varchar(15) NOT NULL DEFAULT '', `receiver` varchar(20) DEFAULT NULL, `sender` varchar(20) DEFAULT NULL, `subject` varchar(50) DEFAULT NULL, `message` varchar(500) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`message_id`), KEY `receiver` (`receiver`), KEY `sender` (`sender`), CONSTRAINT `patient_message_receive_ibfk_1` FOREIGN KEY (`receiver`) REFERENCES `patient` (`patient_id`), CONSTRAINT `patient_message_receive_ibfk_2` FOREIGN KEY (`sender`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `patient_message_receive` -- LOCK TABLES `patient_message_receive` WRITE; /*!40000 ALTER TABLE `patient_message_receive` DISABLE KEYS */; INSERT INTO `patient_message_receive` VALUES ('000001','pt0085','dr0001','information','test message','2016-10-20 00:00:00'),('000004','pt0066','rec001','Information','Cancellation of appointment on 2016-12-31','2016-09-20 00:00:00'),('000007','pt0066','dr0004','Information','Appointment cancelled','2016-10-29 00:00:00'),('000008','pt0066','dr0005','Information','Appointment cancelled','2016-10-29 00:00:00'),('000009','pt0066','dr0008','Information','Appointment cancelled','2016-10-29 00:00:00'); /*!40000 ALTER TABLE `patient_message_receive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `patient_message_send` -- DROP TABLE IF EXISTS `patient_message_send`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `patient_message_send` ( `message_id` varchar(15) NOT NULL DEFAULT '', `receiver` varchar(20) DEFAULT NULL, `sender` varchar(50) DEFAULT NULL, `email` varchar(20) DEFAULT NULL, `message` varchar(500) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`message_id`), KEY `receiver` (`receiver`), CONSTRAINT `patient_message_send_ibfk_1` FOREIGN KEY (`receiver`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `patient_message_send` -- LOCK TABLES `patient_message_send` WRITE; /*!40000 ALTER TABLE `patient_message_send` DISABLE KEYS */; INSERT INTO `patient_message_send` VALUES ('100000','rc0001','Kumudika','<EMAIL>','Good Service. Thank you!','2016-11-27 00:00:00'),('100001','rc0001','Prian','<EMAIL>','Good service.','2016-11-27 00:00:00'); /*!40000 ALTER TABLE `patient_message_send` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `patient_useraccount` -- DROP TABLE IF EXISTS `patient_useraccount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `patient_useraccount` ( `patient_id` varchar(10) NOT NULL DEFAULT '', `person_id` varchar(15) DEFAULT NULL, `username` varchar(15) DEFAULT NULL, `password` varchar(50) DEFAULT NULL, PRIMARY KEY (`patient_id`), KEY `person_id` (`person_id`), CONSTRAINT `patient_useraccount_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `person` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `patient_useraccount` -- LOCK TABLES `patient_useraccount` WRITE; /*!40000 ALTER TABLE `patient_useraccount` DISABLE KEYS */; INSERT INTO `patient_useraccount` VALUES ('hms0001pa','hms00018 ','pts001','001pa'),('hms0002pa','hms00058 ','pts002','002pa'),('hms0003pa','hms00051 ','pts003','003pa'),('hms0004pa','hms00044 ','pts004','004pa'),('hms0005pa','hms00001 ','pts005','005pa'),('hms0006pa','hms00002 ','pts006','006pa'),('hms0007pa','hms00003 ','pts007','007pa'),('hms0008pa','hms00004 ','pts008','008pa'),('hms0009pa','hms00005 ','pts009','009pa'),('hms0010pa','hms00006 ','pts010','010pa'),('hms0011pa','hms00007 ','pts011','011pa'),('hms0012pa','hms00008 ','pts012','012pa'),('hms0013pa','hms00009 ','pts013','013pa'),('hms0014pa','hms00010 ','pts014','014pa'),('hms0015pa','hms00011 ','pts015','015pa'),('hms0016pa','hms00012 ','pts016','016pa'),('hms0017pa','hms00013 ','pts017','017pa'),('hms0018pa','hms00014 ','pts018','018pa'),('hms0019pa','hms00015 ','pts019','019pa'),('hms0020pa','hms00016 ','pts020','020pa'),('hms0021pa','hms00017 ','pts021','021pa'),('hms0022pa','hms00019 ','pts022','022pa'); /*!40000 ALTER TABLE `patient_useraccount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `person` -- DROP TABLE IF EXISTS `person`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `person` ( `person_id` varchar(15) NOT NULL DEFAULT '', `user_id` varchar(10) DEFAULT NULL, `nic` varchar(10) DEFAULT NULL, `gender` char(1) DEFAULT NULL, `date_of_birth` date DEFAULT NULL, `address` varchar(50) DEFAULT NULL, `mobile` varchar(10) DEFAULT NULL, `first_name` char(20) DEFAULT NULL, `last_name` char(20) DEFAULT NULL, `email` varchar(50) DEFAULT NULL, `nationality` varchar(20) DEFAULT NULL, `religion` varchar(20) DEFAULT NULL, PRIMARY KEY (`person_id`), KEY `user_id` (`user_id`), CONSTRAINT `person_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `person` -- LOCK TABLES `person` WRITE; /*!40000 ALTER TABLE `person` DISABLE KEYS */; INSERT INTO `person` VALUES ('hms00001',NULL,'652489712V','M','1965-09-04','No 26 Galla Estate Rajamawatha JaEla','0774523687','Kasun','Weerasekara','<EMAIL>','Sri Lankan','Buddhism'),('hms00002',NULL,'895630096V','F','1989-03-03','G10 Brilliance Ambuldeniya Road Madiwala Kotte','0777658889','Bhagya','Silva','<EMAIL>','Sri Lankan','Buddhism'),('hms00003',NULL,'765875355V','F','1976-03-27','54 Gonahena Weboda Kadawatha','0715422896','Thilini','Madugalle','<EMAIL>','Sri Lankan','Buddhism'),('hms00004',NULL,'581665742V','M','1958-06-14','267/c/4 Sampathpura Koratota Kaduwela','0715655322','Supun','Peiris','<EMAIL>','Sri Lankan','Buddhism'),('hms00005',NULL,'475266897V','F','1947-01-26','457 Chapel Lane Nugegoda','0712256987','Nethmi','Pathirana','','Sri Lankan','Buddhism'),('hms00006',NULL,'557896324V','F','1955-10-15','334/d Balagolla Kegalle','0719987562','Tharushi','Perera','','Sri Lankan','Buddhism'),('hms00007',NULL,'611653222V','M','1961-06-13','22 Suhada Pedesa Mankada Road Kadawatha','0715547822','Tharindu','Gunawardena','<EMAIL>','Sri Lankan','Buddhism'),('hms00008',NULL,'566757991V','F','1956-06-23','466 Peradeniya Road Kadawatha','0754879665','Hiruni','Herath','','Sri Lankan','Buddhism'),('hms00009',NULL,'585339441V','F','1958-02-02','4 Better Homes Kotugoda','0714456985','Thilini','Premaratne','','Sri Lankan','Buddhism'),('hms00010',NULL,'496125348V','F','1949-04-21','No 1 Kohilawatte Road Kotikawaththa','0775442198','Nipuni','Jayakody','','Sri Lankan','Buddhism'),('hms00011',NULL,'521147146V','M','1952-04-23','98 Sri Saranankara Road Kalubovila','0714479858','Pasindu','Pathirana','','Sri Lankan','Buddhism'),('hms00012',NULL,'451698742V','M','1945-06-17','25/1 Wellampitiya Road Sedawatte','0724459896','Chathura','Senanayake','','Sri Lankan','Buddhism'),('hms00013',NULL,'668562143V','F','1966-12-21','13/2 A Fairline Road Dehiwala','0775479625','Dinithi','Dahanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00014',NULL,'812235673V','M','1981-08-10','249/9 Pipe Road Koswatta','0754782659','Sandun','Cooray','<EMAIL>','Sri Lankan','Buddhism'),('hms00015',NULL,'715236548V','F','1971-01-23','236 Gangarama Road Piliyandala','0772256965','Upeksha','Jayawickrama','<EMAIL>','Sri Lankan','Buddhism'),('hms00016',NULL,'568562143V','F','1956-12-21','4 Old Kesbawa Road Nugegoda','0777215695','Shashini','Jayatilleka','','Sri Lankan','Buddhism'),('hms00017',NULL,'651298742V','M','1965-05-08','87 Mihidu Mawatha Colombo','0777459651','Tharaka','Bandaranaike','<EMAIL>','Sri Lankan','Buddhism'),('hms00018',NULL,'801876589V','M','1980-07-05','54 Vijemangala Roadd Kohuwala','0774126562','Ishara','Madugalle','<EMAIL>','Sri Lankan','Buddhism'),('hms00019',NULL,'625844762V','F','1962-03-24','72/a Dehiwela Road Pepiliyana','0774788512','Nathasha','Rajapaksa','<EMAIL>','Sri Lankan','Buddhism'),('hms00020',NULL,'587999856V','F','1958-10-25','No 2 2nd Lane Rawathawatte','0712259743','Sarah','Wickremasinghe','','Sri Lankan','Buddhism'),('hms00021',NULL,'471988956V','M','0000-00-00','16 Galwala Road Mirihana','0724785236','Roshan','Silva',' ','Sri Lankan','Buddhism'),('hms00022',NULL,'591298724V','M','1959-05-08','22 Seevali Mawatha Kiribathgoda','0785365259','Nuwan','Ranaweera','<EMAIL>','Sri Lankan','Buddhism'),('hms00023',NULL,'601147852V','M','1960-04-23','65/4 Asiri Mawatha Kalubovila','0777891145','Hashan','Priyantha','<EMAIL>','Sri Lankan','Buddhism'),('hms00024',NULL,'635585891V','F','1963-02-27','3 Union Place Colombo 2','0777459621','Vinodi','Peiris','<EMAIL>','Sri Lankan','Buddhism'),('hms00025',NULL,'547789656V','F','1954-10-04','150/b Koswatta Road Kalapaluwawa Rajagiriya','0718967412','Iresha','Karunaratne','','Sri Lankan','Buddhism'),('hms00026',NULL,'561098742V','M','1956-04-18','22 Henawatta Road Pannipitiya','0758789625','Dinesh','Jayakody','','Sri Lankan','Buddhism'),('hms00027',NULL,'451740982V','M','1945-06-22','610 Kotte Road Pitakotte','0774785665','Sasindu','Gunawardena','<EMAIL>','Sri Lankan','Buddhism'),('hms00028',NULL,'751274589V','M','1975-05-06','217 Bandaragama Road Gammanpila','0757896651','Dilshan','Jayatilleka','<EMAIL>','Sri Lankan','Buddhism'),('hms00029',NULL,'517424585V','F','1951-08-29','15/1 Bethasda Place Colombo 5','0777896525','Vinodi','Jayasinghe','<EMAIL>','Sri Lankan','Buddhism'),('hms00030',NULL,'412987421V','M','1941-10-24','No 43 Yakabadda Road Akurassa','0714469852','Chanaka','Pathirana','','Sri Lankan','Buddhism'),('hms00031',NULL,'641859725V','M','1964-07-03','24 Pamunuwa Road Maharagama','0754496878','Nishan','Ranaweera','<EMAIL>','Sri Lankan','Buddhism'),('hms00032',NULL,'712755897V','M','1971-10-01','No 65140 Alwitigala Mawatha Colombo 5','0774751125','Sameera','Gunasekera','<EMAIL>','Sri Lankan','Buddhism'),('hms00033',NULL,'682799985V','M','1968-10-05','76 Chandrika Kumaratunga Mawatha Malabe','0778745655','Gihan','Peiris','<EMAIL>','Sri Lankan','Buddhism'),('hms00034',NULL,'622478896V','M','1962-09-03','264/3 Atigala Mawatha Ampilipity','0773117864','Hashan','Ekanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00035',NULL,'742256848V','M','1974-08-12','66/6 Rathnayaka Mawatha Battaramulla','0779995487','Malindu','Jagath','<EMAIL>','Sri Lankan','Buddhism'),('hms00036',NULL,'561024585V','M','1956-04-11','No 33 School Road Kadirana Negombo','0724876652','Harsha','Karunaratne','<EMAIL>','Sri Lankan','Buddhism'),('hms00037',NULL,'701276589V','M','1970-05-06','22 Medankara Road Dehiwala','0779945521','Maduranga','Dissanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00038',NULL,'415587965V','F','1941-02-27','458 Somadevi Place Kirulapone','0716654896','Geethma','Gunawardena','null','Sri Lankan','Buddhism'),('hms00039',NULL,'556298742V','F','1955-05-08','358 Thuththiripitiya Watta Olupaliyawa','0772658741','Anuradha','Chandrasiri','<EMAIL>','Sri Lankan','Buddhism'),('hms00040',NULL,'487596221V','F','1948-09-15','No 218/13 Katukurunda Road Moratuwa','0777456698','Sithmi','Pathirana','<EMAIL>','Sri Lankan','Buddhism'),('hms00041',NULL,'552985522V','M','1955-10-24','245 Veediya Bandara Mawatha Mulleriyawa','0717421332','Uvindu','Jayasinghe','<EMAIL>','Sri Lankan','Buddhism'),('hms00042',NULL,'661771272V','M','1966-06-25','111/E Jude Mawatha Thimbirigusgatuwa','0771756625','Sasith','Balasuriya',' <EMAIL>','Sri Lankan','Buddhism'),('hms00043',NULL,'682714985V','M','1968-09-27','No 63/2 Circular Road Attidiya','0772441665','Thushara','Hemantha','<EMAIL>','Sri Lankan','Buddhism'),('hms00044',NULL,'625144896V','F','1962-01-14','No 37/10 Hanwella Road Padukka','0714526321','Kalani','Fernando','<EMAIL>','Sri Lankan','Buddhism'),('hms00045',NULL,'541877265V','M','1954-07-05','88 Rajamawatha Road Ratmalana','0754789958','Chinthaka','Jayatilleka','<EMAIL>','Sri Lankan','Buddhism'),('hms00046',NULL,'725116848V','F','1972-01-11','43/c Nagoda Kandana Road Kadewatta','0776452113','Chamudi','Abeynaike','<EMAIL>','Sri Lankan','Buddhism'),('hms00047',NULL,'391807065V','M','1939-06-28','245/8 Jayathilaka Mawatha Panadura','0752455617','Janitha','Perera','<EMAIL>','Sri Lankan','Buddhism'),('hms00048',NULL,'552478962V','M','1955-09-03','32 Suramya Gama Bandarawela','0775487452','Sumudu','Samarasinghe','<EMAIL>','Sri Lankan','Buddhism'),('hms00049',NULL,'645155496V','F','1964-01-15','216 de Soyza Road Moratumulla','0774469852','Nishi','Chandrasiri','<EMAIL>','Sri Lankan','Buddhism'),('hms00050',NULL,'801145236V','M','1980-04-23','8 Balagalawatta Hendala Wattala','0754478962','Rajitha','Perera','<EMAIL>','Sri Lankan','Buddhism'),('hms00051',NULL,'745526821V','F','1974-02-21','456 Kaluwala Road Pahala','0777896254','Maleesha','Silva','<EMAIL>','Sri Lankan','Buddhism'),('hms00052',NULL,'692752586V','M','1969-10-01','No 15 Patalirukkarama Road Wekada','0776578922','Kevin','Dissanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00053',NULL,'712245698V','M','1971-08-11','24/6 Susantha Sirirathne Mawatha Koralawella','0754489628','Mahesh','Hemantha','<EMAIL>','Sri Lankan','Buddhism'),('hms00055',NULL,'782144658V','M','1978-08-01','779/1/A Negambo Road Mabola','0775412364','Sumudu','Wijewardene','<EMAIL>','Sri Lankan','Buddhism'),('hms00056',NULL,'625125686V','F','1962-01-12','547 Ranagala Mawatha Colombo 08','0774558231','Sathya','Mahadevan','<EMAIL>','Sri Lankan','Hinduism'),('hms00057',NULL,'602456988V','M','1960-09-01','110/4 Polhena Road Madapatha ','0716322514','Kavindu','Karunaratne','<EMAIL>','Sri Lankan','Buddhism'),('hms00058',NULL,'637151420V','F','1963-08-02','32 Poorwarama Road Colombo 5','0778521651','Sanjula','Subramaniam','<EMAIL>','Sri Lankan','Hinduism'),('hms00059',NULL,'651259686V','M','1965-05-04','265 Kanaththa Road Mirihana','0776542897','Akila','Fernando','<EMAIL>','Sri Lankan','Buddhism'),('hms00060',NULL,'911175265V','M','1991-04-26','44 Katuwana Road Homagama ','0758976653','Nuwan','Ekanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00061',NULL,'642256848V','M','1964-08-12','407/A Mahinda Mawatha Alubomulla','0778526649','Ahmad','Mushraf','<EMAIL>','Sri Lankan','Islam'),('hms00062',NULL,'511758265V','M','1951-06-23','881 Melder Place Nugegoda','0712441265','Dinesh','Seneviratne','<EMAIL>','Sri Lankan','Buddhism'),('hms00063',NULL,'602976988V','M','1960-10-23','64/2 Dharamanikethana Place Nawala','0776522589','Janitha','Ranaweera','<EMAIL>','Sri Lankan','Buddhism'),('hms00064',NULL,'627526586V','F','1962-09-08','No 383 Raja Road Rajagiriya','0755477456','Chamudi','Premaratne','<EMAIL>','Sri Lankan','Buddhism'),('hms00065',NULL,'940273862V','M','1994-01-27','Nandana Sarammudali Mawatha Matara','0712925487','Harsha','Dhananjaya','<EMAIL>','Sri Lankan','Buddhism'),('hms00066',NULL,'938433020V','F','1993-12-08','318/b Kadurupokuna Tangalle','0773060152','Piumi','Dinuka','<EMAIL>','Sri Lankan','Buddhism'),('hms00067',NULL,'905402342V','F','1990-02-09','123/a Gangodawila Nugegoda','0773322401','Nawab','Irishad','<EMAIL>','Sri Lankan','Islam'),('hms00068',NULL,'982345621V','M','1998-08-21','45/a Gangodawila Nugegoda','0762323123','Lasini','Wasana','<EMAIL>','Sri Lankan','Budhdhism'),('hms00069',NULL,'912368745V','M','1991-08-23','234/23 Kalapaluwawa Rajagiriya','0712354980','Punujith','Hewagamage','<EMAIL>','Sri Lankan','Budhdhism'),('hms00070',NULL,'795456721V','F','1979-02-14','318/b Kadurupokuna Tangalle','0772619619','Dilakshi','Anurudhdhika','<EMAIL>','Sri Lankan','Budhdhism'),('hms00071',NULL,'893452312V','M','1989-12-10','318/b Kadurupokuna Tangalle','0771876386','Charuka','Dilshan','<EMAIL>','Sri Lankan','Budhdhism'),('hms00072',NULL,'946782356V','F','1994-06-26','Aruna Nelumkulama Vavuniya','0775686234','Kirushanthi','Thyagaraja','<EMAIL>','Sri Lankan','Hinduism'),('hms00073',NULL,'926782312V','F','1991-06-26','21/a Weeraketiya Tangalle','0763060152','Shashini','Maleesha','<EMAIL>','Sri Lankan','Budhdhism'),('hms00074',NULL,'816753456V','F','1981-06-23','234/23 Kalapaluwawa Rajagiriya','0773336260','Sumudu','Kumari','<EMAIL>','Sri Lankan','Budhdhism'),('hms00075',NULL,'865912345V','F','1986-03-31','318/b Kadurupokuna Tangalle','777512150','Yasintha','Sewwandi','<EMAIL>','Sri Lankan','Budhdhism'),('hms00076',NULL,'523312334V','M','1952-11-26','45/a Kirulapana Nugegoda','0777200292','Bandu','Wijethilaka','<EMAIL>','Sri Lankan','Budhdhism'),('hms00077',NULL,'935463498V','F','1993-02-15','Vikalpa Polommaruwa Tangalle','0714470127','Darshika','Vikalpani','<EMAIL>','Sri Lankan','Budhdhism'),('hms00078',NULL,'936782156V','F','1993-06-26','132/C Nawam mawatha Hambantota','0472243546','Arosha','Sale','<EMAIL>','Sri Lankan','Islam'),('hms00079',NULL,'932420054V','M','1993-08-29','<NAME>dugama Galle','0773324312','Thiraj','Senevirathna','<EMAIL>','Sri Lankan','Budhdhism'),('hms00080',NULL,'935945667V','F','1993-04-03','Dilini Yanthampalawa Kurunegala','0712345863','Priyanwada','Kulasooriya','<EMAIL>','Sri Lankan','Budhdhism'),('hms00081','hms0001u','723452312V','M','1972-12-10','67/a Jambugasmulla Lane Nugegoda','0772343544','Keerthi','Perera','<EMAIL>','Sri Lankan','Buddhism'),('hms00082','hms0002u','792343467V','M','1979-08-21','89/23 Liyangemulla Seeduwa','0711849117','Ruwan','Wanigasinghe','<EMAIL>','Sri Lankan','Buddhism'),('hms00083','hms0003u','732501278V','M','1973-09-06','76/24 Batalandahena IDH','0712002924','Haris','Silva','<EMAIL>','Sri Lankan','Buddhism'),('hms00084','hms0004u','805672341V','F','1980-03-07','376/b Alawaththa Road Maharagama','0713060152','Harshika','Kumuduni','<EMAIL>','Sri Lankan','Buddhism'),('hms00085','hms0005u','758433020V','F','1975-12-08','23/a Pepiliyana Road Kohuwala','0712619619','Deepika','Wijethilaka','<EMAIL>','Sri Lankan','Buddhism'),('hms00086','hms0006u','652483466V','M','1965-09-04','13/b Arawwala Maharagama','0773338567','Upul','Dasanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00087','hms0007u','781254566V','M','1978-05-04','124/b Isadin Town Matara','0783563722','Benat','Wijethilaka','<EMAIL>','Sri Lankan','Buddhism'),('hms00088','hms0008u','806892223V','F','1980-07-07','123/d Sunethradevi Road Pepiliyana','0710899455','Charithra','Fenando','<EMAIL>','Sri Lankan','Buddhism'),('hms00089','hms0009u','892894357V','M','1989-10-15','23/c Granberg Road Maharagama','0777224559','Chalith','Desaman','<EMAIL>','Sri Lankan','Buddhism'),('hms00090','hms0010u','682784669V','M','1968-10-04','12/b Depanama Pannipitiya','0783060152','Sandaruwan','Jayawickrama','<EMAIL>','Sri Lankan','Buddhism'),('hms00091','hms0011u','882467952V','M','1988-09-23','20 Rohitha Road Aththidiya','0775489698','Sumedha','Dahanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00092','hms0012u','732776595V','M','1973-10-03','79/2b Kawdana Road Dehiwela','0756678544','Malindu','Weerasekara','<EMAIL>','Sri Lankan','Buddhism'),('hms00093','hms0013u','795532875V','F','1979-07-22','29/2 Kalutara Road Moratuwa','0716654985','Prabhani','Weerakoon','<EMAIL>','Sri Lankan','Buddhism'),('hms00094','hms0014u','698566321V','F','1969-12-21','44/a Koswatta Road Nawala Rajagiriya','0776522489','Hiruni','Nanayakkara','<EMAIL>','Sri Lankan','Buddhism'),('hms00095','hms0015u','803349756V','M','1980-11-29','151/1 Amarasekara Mawatha Nugegoda','0754489632','Subash','Madushanka','<EMAIL>','Sri Lankan','Buddhism'),('hms00096','hms0016u','752466879V','M','1975-09-02','78 Station Road Biyagama','0772785641','Dhanura','Edirisinghe','<EMAIL>','Sri Lankan','Buddhism'),('hms00097','hms0017u','915895439V','F','1991-03-29','132/c Pitakotta Madiwela','0775565454','Gihani','Ekanayake','<EMAIL>','Sri Lankan','Buddhism'),('hms00098','hms0018u','895552344V','F','1989-02-24','Sewana Athuraliya Matara','0783564534','Dulanji','Manohari','<EMAIL>','Sri Lankan','Buddhism'),('hms00099','hms0019u','822345679V','M','1982-08-21','Amana Kalapaluwawa Rajagiriya','0772943454','Gihan','Chamindu','<EMAIL>','Sri Lankan','Buddhism'),('hms00100','hms0020u','872984565V','M','1987-10-24','123/f Yanthampalawa Kurunegala','0713457779','Lakshitha','Rangana','<EMAIL>','Sri Lankan','Buddhism'),('hms00101','hms0021u','943562172V','m','1994-12-21','514/2 Vinayalankara Mawatha, Horana','0712453714','Heshan','Eranga','<EMAIL>','null','null'); /*!40000 ALTER TABLE `person` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pharmacist` -- DROP TABLE IF EXISTS `pharmacist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pharmacist` ( `pharmacist_id` varchar(10) NOT NULL DEFAULT '', `user_id` varchar(10) DEFAULT NULL, `education` varchar(100) DEFAULT NULL, `training` varchar(100) DEFAULT NULL, `experience` varchar(100) DEFAULT NULL, `achievements` varchar(100) DEFAULT NULL, PRIMARY KEY (`pharmacist_id`), KEY `user_id` (`user_id`), CONSTRAINT `pharmacist_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pharmacist` -- LOCK TABLES `pharmacist` WRITE; /*!40000 ALTER TABLE `pharmacist` DISABLE KEYS */; INSERT INTO `pharmacist` VALUES ('hms0001p','hms0016u','Master Pharmaceutical Sciences','trainee at general hospital Kalubowila','3 yrs','Award for pre-pharmacy studies'),('hms0002p','hms0017u','Bachelor Pharmaceutical Sciences','trainee at general hospital Colombo','2 yrs','Associate in pre-pharmacy studies'); /*!40000 ALTER TABLE `pharmacist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pharmacy_history` -- DROP TABLE IF EXISTS `pharmacy_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pharmacy_history` ( `history_id` varchar(15) NOT NULL DEFAULT '', `prescription_id` varchar(15) DEFAULT NULL, `bill_id` varchar(15) DEFAULT NULL, `date` date DEFAULT NULL, `no_of_drugs` int(11) DEFAULT NULL, `excluded` varchar(150) DEFAULT NULL, PRIMARY KEY (`history_id`), KEY `prescription_id` (`prescription_id`), KEY `bill_id` (`bill_id`), CONSTRAINT `pharmacy_history_ibfk_1` FOREIGN KEY (`prescription_id`) REFERENCES `prescription` (`prescription_id`), CONSTRAINT `pharmacy_history_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `bill` (`bill_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pharmacy_history` -- LOCK TABLES `pharmacy_history` WRITE; /*!40000 ALTER TABLE `pharmacy_history` DISABLE KEYS */; INSERT INTO `pharmacy_history` VALUES ('ph0001','pres00001','hms0001b','2016-08-09',NULL,'Ritaline'),('ph0002','pres00002','hms0002b','2016-09-09',NULL,''); /*!40000 ALTER TABLE `pharmacy_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pharmacy_stock` -- DROP TABLE IF EXISTS `pharmacy_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pharmacy_stock` ( `stock_id` varchar(10) NOT NULL DEFAULT '', `drug_id` varchar(15) DEFAULT NULL, `brand_id` varchar(15) DEFAULT NULL, `stock` int(11) DEFAULT NULL, `remaining_quantity` int(11) DEFAULT NULL, `manufac_date` date DEFAULT NULL, `exp_date` date DEFAULT NULL, `supplier_id` varchar(10) DEFAULT NULL, `date` date DEFAULT NULL, PRIMARY KEY (`stock_id`), KEY `drug_id` (`drug_id`), CONSTRAINT `pharmacy_stock_ibfk_1` FOREIGN KEY (`drug_id`) REFERENCES `drug` (`drug_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pharmacy_stock` -- LOCK TABLES `pharmacy_stock` WRITE; /*!40000 ALTER TABLE `pharmacy_stock` DISABLE KEYS */; INSERT INTO `pharmacy_stock` VALUES ('stk0001','d0001','br0001',500,450,'2016-08-10','2017-09-01','sup0001','2016-08-20'),('stk0002','d0002','br0005',500,400,'2016-08-10','2017-09-01','sup0002','2016-08-20'),('stk0003','d0003','br0008',500,400,'2016-08-10','2017-09-01','sup0003','2016-08-20'),('stk0004','d0004','br0011',500,400,'2016-08-10','2017-09-01','sup0004','2016-08-20'),('stk0005','d0001','br0002',500,50,'2016-08-10','2017-09-01','sup0005','2016-08-20'),('stk0006','d0002','br0006',500,50,'2016-08-10','2017-09-01','sup0006','2016-08-20'),('stk0007','d0002','br0007',500,400,'2016-08-10','2017-09-01','sup0007','2016-08-20'),('stk0008','d0003','br0009',500,100,'2016-08-10','2017-09-01','sup0008','2016-08-20'),('stk0009','d0001','br0003',500,400,'2016-08-10','2017-09-01','sup0001','2016-08-20'),('stk0010','d0003','br0010',500,480,'2016-08-10','2017-09-01','sup0002','2016-08-20'),('stk0011','d0002','br0005',500,450,'2016-08-10','2017-09-01','sup0005','2016-08-20'),('stk0012','d0001','br0004',500,400,'2016-08-10','2017-09-01','sup0004','2016-08-20'),('stk0013','d0004','br0012',500,350,'2016-08-10','2017-09-01','sup0003','2016-08-20'),('stk0014','d0003','br0008',500,400,'2016-08-10','2017-09-01','sup0005','2016-08-20'),('stk0015','d0002','br0005',500,400,'2016-08-10','2017-09-01','sup0007','2016-08-20'),('stk0016','d0001','br0002',500,50,'2016-08-10','2017-09-01','sup0008','2016-08-20'),('stk0017','d0003','br0009',500,200,'2016-08-10','2017-09-01','sup0001','2016-08-20'),('stk0018','d0001','br0003',500,350,'2016-08-10','2017-09-01','sup0004','2016-08-20'),('stk0019','d0002','br0007',500,400,'2016-08-10','2017-09-01','sup0002','2016-08-20'),('stk0020','d0003','br0010',500,400,'2016-08-10','2017-09-01','sup0005','2016-08-20'),('stk0021','d0004','br0013',500,450,'2016-08-10','2017-09-01','sup0003','2016-08-20'),('stk0022','d0004','br0014',500,400,'2016-08-10','2017-09-01','sup0004','2016-08-20'),('stk0023','d0001','br0004',500,350,'2016-08-10','2017-09-01','sup0006','2016-08-20'),('stk0024','d0001','br0001',500,500,'2017-01-01','2019-01-01','sup0001','2017-01-11'),('stk0025','d0002','br0006',400,400,'2017-01-01','2019-01-16','sup0005','2017-01-11'),('stk0026','d0005','br0015',400,400,'2017-01-03','2019-01-23','sup0006','2017-01-11'),('stk0027','d0005','br0016',600,600,'2017-01-17','2018-01-19','sup0008','2017-01-11'); /*!40000 ALTER TABLE `pharmacy_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `prescription` -- DROP TABLE IF EXISTS `prescription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prescription` ( `prescription_id` varchar(10) NOT NULL DEFAULT '', `patient_id` varchar(10) DEFAULT NULL, `consultant_id` varchar(20) DEFAULT NULL, `date` date DEFAULT NULL, `drugs_dose` varchar(300) DEFAULT NULL, `tests` varchar(100) DEFAULT NULL, PRIMARY KEY (`prescription_id`), KEY `patient_id` (`patient_id`), KEY `consultant_id` (`consultant_id`), CONSTRAINT `prescription_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`), CONSTRAINT `prescription_ibfk_2` FOREIGN KEY (`consultant_id`) REFERENCES `doctor` (`slmc_reg_no`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `prescription` -- LOCK TABLES `prescription` WRITE; /*!40000 ALTER TABLE `prescription` DISABLE KEYS */; INSERT INTO `prescription` VALUES ('pres00001','hms0001pa','22387','2016-01-01','paracetamol 2 pills 3 times perday','ECG|Blood test'),('pres00002','hms0003pa','15682','2016-02-21','methadone 1 pill 3 times per day afetr meals|ondanstron 1 pill per day at night after meals','FBC/APTT'),('pres00003','hms0007pa','21987','2016-05-06','topiramate 1 pill per day after meals per day time','ECG|Blood test'),('pres00004','hms0024pa','15682','2016-03-25','clariten-D 2 pills per day','Blood culture'),('pres00005','hms0033pa','22287','2016-05-08','paracetamol 2 pills 3 times per day','ECG|Blood test'),('pres00006','hms0043pa','15682','2016-02-21','methadone 1 pill 3 times per day afetr meals|Ondanstron 1 pill per day at night after meals','FBC/APTT'),('pres00007','hms0057pa','21987','2016-05-06','topiramate 1 pill per day after meals per day time','ECG|Blood test'),('pres00008','hms0064pa','15682','2016-03-25','clariten-D 2 pills per day','blood culture'),('pres00009','hms0012pa','16787','2016-04-14','ritalin 10mg 1 pill 3 times per day',''),('pres00010','hms0002pa','22387','2016-12-03','','NULL'),('pres00011','hms0001pa','22387','2017-01-09','acetasol 100mg|nallpen 50mg|calpol 200mg','NULL'); /*!40000 ALTER TABLE `prescription` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `refund` -- DROP TABLE IF EXISTS `refund`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `refund` ( `refund_id` varchar(15) NOT NULL DEFAULT '', `bill_id` varchar(15) DEFAULT NULL, `payment_type` varchar(50) DEFAULT NULL, `reason` varchar(150) DEFAULT NULL, `amount` int(11) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`refund_id`), KEY `bill_id` (`bill_id`), CONSTRAINT `refund_ibfk_1` FOREIGN KEY (`bill_id`) REFERENCES `bill` (`bill_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `refund` -- LOCK TABLES `refund` WRITE; /*!40000 ALTER TABLE `refund` DISABLE KEYS */; INSERT INTO `refund` VALUES ('r0001','hms0003b','Cash','unable to attend on that day',400,'2016-10-06 00:00:00'),('r0002','hms0002b','cash','NO reason',700,'2017-01-05 15:23:02'),('r0003','hms0001b','cash','NO reason',500,'2017-01-05 15:23:02'),('r0004','hms0004b','cash','NO reason',600,'2017-01-05 15:23:02'); /*!40000 ALTER TABLE `refund` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `signup` -- DROP TABLE IF EXISTS `signup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `signup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fname` varchar(50) NOT NULL, `lname` varchar(50) DEFAULT NULL, `nic` varchar(10) DEFAULT NULL, `address` varchar(100) DEFAULT NULL, `contact` int(10) DEFAULT NULL, `email` varchar(50) DEFAULT NULL, `gender` varchar(50) DEFAULT NULL, `dob` varchar(50) DEFAULT NULL, `religion` varchar(50) DEFAULT NULL, `nationality` varchar(50) DEFAULT NULL, `maritalstatus` varchar(50) DEFAULT NULL, `medicalhistory` varchar(50) DEFAULT NULL, `username` varchar(50) DEFAULT NULL, `password` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `signup` -- LOCK TABLES `signup` WRITE; /*!40000 ALTER TABLE `signup` DISABLE KEYS */; INSERT INTO `signup` VALUES (1,'','','','',0,'','','','\n','','','','',''),(2,'kumudika','Rupasinghe','936180124V','12/9 godakanda',7733333,'<EMAIL>','female','2016-10-26','Buddhist\n','Sinhalese','Single','Good Health Condition','kumu','123'),(3,'Sanath','Kamal','69435232V','23/ Mathara',443332,'<EMAIL>','male','2016-10-03','Buddhist\n','Sinhalese','Married','Elbow Injury','sanath','123'),(4,'hasi','rupe','1266868','fefe',86868,'hryryr','female','2322-02-02','Buddhist\n','Sinhalese','Single','','hasi','rupe'),(5,'aravinda','de silva','25646','gfhfghf',54345,'gf','male','25','Buddhist\n','Sinhalese','Single','','aravi','119'),(6,'lalanka','de silva','1425','junun',255,'hyhy','male','5355-05-05','Buddhist\n','Sinhalese','Single','','lalanka','lala'),(7,'Sanduni','Thrimahavithana','936070884V','Sathara, Kurunduwattha, Walgama, Matara',719219254,'<EMAIL>','female','1993-04-16','Buddhist\n','Sinhalese','Single','','sanduni','ucsc@123'),(8,'vv','vv','44','44',44,'44','male','2016-10-22','Buddhist\n','Sinhalese','Single','44','44','44'),(9,'tt','tt','33','55',55,'55','female','2016-10-28','Buddhist\n','Sinhalese','Single','555','55','55'),(10,'gg','gg','6','6',6,'6','female','2016-10-27','Buddhist\n','Sinhalese','Single','6','6','6'),(11,'u','u','8','8',8,'8','female','2016-10-21','Buddhist\n','Sinhalese','Single','88','88','88'),(12,'k','k','9','9',9,'9','female','2016-10-28','Buddhist\n','Sinhalese','Single','9','9','9'),(13,'ku','kuuuo','8','8',8,'8','female','2016-10-27','Buddhist\n','Sinhalese','Single','8','8','8'),(14,'r','r','4','44',44,'4','female','2016-10-27','Buddhist\n','Sinhalese','Single','4','4','4'),(15,'Sanath','rupasinghe','3333333333','3',2,'9','male','2016-10-21','Buddhist\n','Sinhalese','Single','e','e','e'),(16,'sampath','silva','99','99',99,'99','m','2016-10-22','Buddhist\n','Sinhalese','Single','9','9','9'),(17,'Kumudika','Rupasinghe','9303453V','12/1 , Godakanda',776854545,'<EMAIL>','f','1993-06-06','Buddhist\n','Sinhalese','Single','Good Condition','kumudika','123'),(18,'Kumudika','Rupasinghe','3424','galle',8687,'<EMAIL>','f','1993-10-22','Buddhist\n','Sinhalese','Single','Good condition','kumudika','123'),(19,'Kumudika','Rupasinghe','9303453V','galle,Galle',771231232,'<EMAIL>','f','1993-10-26','Buddhist\n','Sinhalese','Single','Good Condition','kumudika','123'),(20,'Test','Test patient','000000V','test road , test.',0,'<EMAIL>','m','2016-10-21','Buddhist\n','Sinhalese','Single','None','test','123'),(21,'Nuwan','De Zoysa','6854492V','123/2 , Souther Road , Mavanella',77685434,'<EMAIL>','m','1980-10-19','Buddhist\n','Sinhalese','Single','Shoulder Injury','nuwan','nuwan'),(22,'Ruwan','Rajapaksha','653422V','12 , Madamulana , Hambanthota',7545343,'<EMAIL>','m','1967-11-02','Buddhist\n','Sinhalese','Single','Brain Damage','ruwan','123'),(23,'Rasidu','Rupasinghe','20049682V','godakanda,galle',918564458,'<EMAIL>','m','2004-12-11','Buddhist\n','Sinhalese','Single','Dengue','rasi','rasidu'),(24,'chathura','rajapaksha','915656644','godakanda',91256631,'<EMAIL>','m','2255-06-12','Buddhist\n','Sinhalese','Single','dengue','chathu','chathu'),(25,'Dilhara','Perera','9343432V','12/B , Mawathagama , Ja Ela',76543456,'<EMAIL>','m','1990-10-29','Buddhist\n','Sinhalese','Single','Good Conditon','dilhara','123'),(26,'Avishka','Gunawardana','934332V','23 B , Kagalle Road , Kegalle',76584545,'<EMAIL>','m','2016-10-21','Buddhist\n','Sinhalese','Single','Dislocated Shoulder','avishka','123'),(27,'Avishka','Gunawardana','934332V','23 B , Kagalle Road , Kegalle',76584545,'<EMAIL>','m','2016-10-21','Buddhist\n','Sinhalese','Single','Dislocated Shoulder','avishka','123'),(28,'Arjuna','Ranathunga','453242V','33L , Mathara',776453423,'<EMAIL>','m','1968-10-26','Buddhist\n','Sinhalese','Single','None','arjuna','123'),(29,'Siddharth','Rampaul','9433423V','2 , Maharashta , India',77645344,'<EMAIL>','m','1980-10-29','Buddhist\n','Sinhalese','Single','Dislocated Shoulder','sidd','123'),(30,'Rasindu','Weerasooriya','9423243V','23, Panadura road , Panadura',77654434,'<EMAIL>','m','1994-10-26','Buddhist\n','Sinhalese','Single','NONE','rasi','123'),(31,'Thilini','Bandara','9534223V','34, Mahalwarawa, Maharagama',7123232,'<EMAIL>','f','1990-10-31','Buddhist\n','Sinhalese','Single','Dengue Fever','thilini','123'),(32,'Lalith','Kothalawala','6532423V','2, Low level road , Maharagama',776564545,'<EMAIL>','m','1967-10-26','Buddhist\n','Sinhalese','Single','Good Condition','lalith','123'),(33,'Kasuni','Wathsala','954343V','23, Kuliyapitya',7765654,'<EMAIL>','f','1995-10-19','Buddhist\n','Sinhalese','Single','Dislocated elbow','kasuni','123'),(34,'Upul','Chandana','954334V','12, Udaha road , Kurunegala',754343,'<EMAIL>','m','1991-10-26','Buddhist\n','Sinhalese','Single','NONE','upul','123'); /*!40000 ALTER TABLE `signup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `suppliers` -- DROP TABLE IF EXISTS `suppliers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `suppliers` ( `supplier_id` varchar(10) DEFAULT NULL, `supplier_name` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `suppliers` -- LOCK TABLES `suppliers` WRITE; /*!40000 ALTER TABLE `suppliers` DISABLE KEYS */; INSERT INTO `suppliers` VALUES ('sup0001','Biolase'),('sup0002','Biomet Inc.'),('sup0003','JTech Medical'),('sup0004','Medtronic Inc.'),('sup0005','Via Biomedical Inc.'),('sup0006','Solta Medical Inc.'),('sup0007','Nelson Laboratories Inc.'),('sup0008','Hospira Inc.'); /*!40000 ALTER TABLE `suppliers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sys_user` -- DROP TABLE IF EXISTS `sys_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sys_user` ( `person_id` varchar(15) DEFAULT NULL, `user_id` varchar(10) NOT NULL DEFAULT '', `user_name` varchar(20) DEFAULT NULL, `user_type` varchar(15) DEFAULT NULL, `other_info` varchar(100) DEFAULT NULL, `password` varchar(35) DEFAULT NULL, `online` tinyint(1) DEFAULT NULL, `login` datetime DEFAULT NULL, `logout` datetime DEFAULT NULL, `profile_pic` varchar(20) DEFAULT 'p2.png', `suspend` int(11) DEFAULT NULL, PRIMARY KEY (`user_id`), KEY `person_id` (`person_id`), CONSTRAINT `sys_user_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `person` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sys_user` -- LOCK TABLES `sys_user` WRITE; /*!40000 ALTER TABLE `sys_user` DISABLE KEYS */; INSERT INTO `sys_user` VALUES ('hms00081','hms0001u','user001','doctor','specialist in cardiology','1234',0,'2018-07-25 02:17:41','2018-07-25 02:18:12','user001ProfPic.png',NULL),('hms00083','hms0003u','user003','doctor','specialist in neurology','ccc123',NULL,NULL,NULL,'p2.png',NULL),('hms00084','hms0004u','user004','doctor','specialist in neurology','ddd123',1,'2018-07-25 10:21:49',NULL,'p2.png',NULL),('hms00085','hms0005u','user005','doctor','specialist in physiology','eee123',NULL,NULL,NULL,'p2.png',NULL),('hms00086','hms0006u','user006','doctor','specialist in physiology','aaa456',NULL,NULL,NULL,'p2.png',NULL),('hms00087','hms0007u','user007','doctor','specialist in orthopedics','bbb456',NULL,NULL,NULL,'p2.png',NULL),('hms00088','hms0008u','user008','doctor','specialist in orthopedics','ccc456',NULL,NULL,NULL,'p2.png',NULL),('hms00089','hms0009u','user009','doctor','specialist in paediatrics','ddd456',NULL,NULL,NULL,'p2.png',NULL),('hms00090','hms0010u','user010','doctor','specialist in endocrineology','eee456',NULL,NULL,NULL,'p2.png',NULL),('hms00091','hms0011u','user011','doctor','opd doctor','fff456',NULL,NULL,NULL,'p2.png',NULL),('hms00092','hms0012u','user012','lab_assistant','3 years of experience','1234',NULL,NULL,NULL,'user012ProfPic.png',NULL),('hms00093','hms0013u','user013','lab_assistant','3 years of experience','laaa2',NULL,NULL,NULL,'p2.png',NULL),('hms00094','hms0014u','user014','lab_assistant','4 years of experience','laaa3',NULL,NULL,NULL,'p2.png',NULL),('hms00095','hms0015u','user015','lab_assistant','2 years of experience','laaa4',NULL,NULL,NULL,'p2.png',NULL),('hms00096','hms0016u','user016','pharmacist','5 years of experience','1234',0,'2018-07-25 02:18:31','2018-07-25 02:19:10','user016ProfPic.png',NULL),('hms00097','hms0017u','user017','pharmacist','3 years of experience','pxxx123',NULL,NULL,NULL,'p2.png',NULL),('hms00098','hms0018u','user018','receptionist','diploma in british council','1234',NULL,NULL,NULL,'user018ProfPic.png',NULL),('hms00099','hms0019u','user019','receptionist','diploma in british council','rxx02',NULL,NULL,NULL,'p2.png',NULL),('hms00100','hms0020u','user020','cashier','CIMA qualified','1234',0,'2018-07-25 02:29:01','2018-07-25 02:29:06','user020ProfPic.png',NULL),('hms00101','hms0021u','user021','admin','','1234',1,'2018-07-25 10:33:32','2016-12-07 13:43:27','user021ProfPic.png',NULL); /*!40000 ALTER TABLE `sys_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tempappointment` -- DROP TABLE IF EXISTS `tempappointment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tempappointment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `doctor_id` varchar(15) DEFAULT NULL, `time` time DEFAULT NULL, `date` date DEFAULT NULL, `patient_id` varchar(15) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tempappointment` -- LOCK TABLES `tempappointment` WRITE; /*!40000 ALTER TABLE `tempappointment` DISABLE KEYS */; INSERT INTO `tempappointment` VALUES (1,'<NAME>','08:00:00','2016-12-12','pr0101'),(2,'<NAME>','08:00:00','2016-12-12','pr0101'),(3,'<NAME>','08:00:00','2016-12-12','pr0101'),(4,'<NAME>','08:00:00','2016-12-12','pr0101'),(5,'<NAME>','08:00:00','2016-12-12','pr0101'),(6,'<NAME>','08:00:00','2016-12-12','pr0101'),(7,'','08:00:00','2016-12-12','pr0119'),(8,'<NAME>','08:00:00','2016-12-12','pr0102'),(9,'<NAME>','08:00:00','2016-12-12','pr0102'),(10,'<NAME>','08:00:00','2016-12-12','pr0101'),(11,'<NAME>','08:00:00','2016-12-12','pr0101'),(12,'<NAME>','08:00:00','2016-12-12','pr0101'),(13,'<NAME>','08:00:00','2016-12-12','pr0102'),(14,'<NAME>','08:00:00','2016-12-12','pr0101'),(15,'<NAME>','08:00:00','2016-12-12','pr0101'),(16,'<NAME>','08:00:00','2016-12-12','pr0101'),(17,'<NAME>','08:00:00','2016-12-12','pr0101'),(18,'<NAME>','08:00:00','2016-12-12','pr0101'),(19,'<NAME>','08:00:00','2016-12-12','pr0101'),(20,'<NAME>','08:00:00','2016-12-12','pr0101'),(21,'<NAME>','08:00:00','2016-12-12','pr0018 '),(22,'undefined','08:00:00','2016-12-12','pr0058 '); /*!40000 ALTER TABLE `tempappointment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tmp_bill` -- DROP TABLE IF EXISTS `tmp_bill`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tmp_bill` ( `tmp_bill_id` varchar(10) NOT NULL DEFAULT '', `doctor_fee` int(11) DEFAULT NULL, `hospital_fee` int(11) DEFAULT NULL, `pharmacy_fee` int(11) DEFAULT NULL, `laboratory_fee` int(11) DEFAULT NULL, `appointment_fee` int(11) DEFAULT NULL, `vat` int(11) DEFAULT NULL, `discount` int(11) DEFAULT NULL, `consultant_id` varchar(10) DEFAULT NULL, `patient_id` varchar(10) DEFAULT NULL, PRIMARY KEY (`tmp_bill_id`), KEY `patient_id` (`patient_id`), KEY `consultant_id` (`consultant_id`), CONSTRAINT `tmp_bill_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `patient` (`patient_id`), CONSTRAINT `tmp_bill_ibfk_2` FOREIGN KEY (`consultant_id`) REFERENCES `doctor` (`slmc_reg_no`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tmp_bill` -- LOCK TABLES `tmp_bill` WRITE; /*!40000 ALTER TABLE `tmp_bill` DISABLE KEYS */; /*!40000 ALTER TABLE `tmp_bill` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_message` -- DROP TABLE IF EXISTS `user_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_message` ( `message_id` varchar(15) NOT NULL DEFAULT '', `reciver` varchar(20) DEFAULT NULL, `sender` varchar(20) DEFAULT NULL, `subject` varchar(50) DEFAULT NULL, `message` varchar(500) DEFAULT NULL, `date` datetime DEFAULT NULL, `rd` tinyint(1) DEFAULT '0', PRIMARY KEY (`message_id`), KEY `reciver` (`reciver`), KEY `sender` (`sender`), CONSTRAINT `user_message_ibfk_1` FOREIGN KEY (`reciver`) REFERENCES `sys_user` (`user_id`), CONSTRAINT `user_message_ibfk_2` FOREIGN KEY (`sender`) REFERENCES `sys_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_message` -- LOCK TABLES `user_message` WRITE; /*!40000 ALTER TABLE `user_message` DISABLE KEYS */; INSERT INTO `user_message` VALUES ('msg00002','hms0001u','hms0018u','test','test message','2017-01-08 12:11:26',1),('msg00003','hms0001u','hms0018u','test','test message 3','2017-01-08 12:27:09',0),('msg00004','hms0001u','hms0018u','test','test message 04','2017-01-08 12:41:32',0),('msg00005','hms0018u','hms0001u','test','test message 5','2017-01-08 12:48:31',1),('msg00007','hms0001u','hms0018u','test','test message 6','2017-01-08 15:10:56',0),('msg00009','hms0018u','hms0008u','subject of the message','test message 8 kjsd dask asdk asjdh asjd askdj aksjd kjasd askjd askdj askjd asdkj asd asd asd asasd asd wer rer eref wedw qww etre dfer werwe werwe erwew','2017-01-09 00:48:31',1),('msg00010','hms0001u','hms0012u','testing','test message 20','2017-01-09 20:40:10',1),('msg00011','hms0012u','hms0001u','reply for the test','test message 21','2017-01-09 20:41:28',0),('msg00012','hms0016u','hms0001u','test message','test message 50','2017-01-09 22:42:43',1),('msg00013','hms0016u','hms0020u','test','test message 55','2017-01-10 01:55:26',0),('msg00014','hms0020u','hms0016u','test','test message 28','2017-01-10 01:56:18',0),('msg00015','hms0021u','hms0016u','test','testing message 78','2017-01-12 01:01:47',0),('msg00016','hms0001u','hms0021u','test','test message 88','2017-01-12 01:34:57',0); /*!40000 ALTER TABLE `user_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `website_messages` -- DROP TABLE IF EXISTS `website_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `website_messages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(60) DEFAULT NULL, `last_name` varchar(70) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `message` varchar(1000) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1014 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `website_messages` -- LOCK TABLES `website_messages` WRITE; /*!40000 ALTER TABLE `website_messages` DISABLE KEYS */; INSERT INTO `website_messages` VALUES (1000,'Kumudika','Rupasinghe','<EMAIL>','Good Service'),(1001,'Kumudika','Rupasinghe','<EMAIL>','1000'),(1002,'Chandana','Perera','<EMAIL>','Good health Care. Thank you.'),(1003,'Lasith','Bandara','<EMAIL>','Thank you for the care.'),(1004,'Sanath','Jayasooriya','<EMAIL>','Good Service. Thank you.'),(1005,'Hasini','Samarawickrama','<EMAIL>','I appreciate your service.'),(1006,'Dilshan','Perera','<EMAIL>','Average Service.'),(1007,'Nuwan','Silva','<EMAIL>','Good capable doctors. Thank you for the service.'),(1008,'Chathura','Dassanayaka','<EMAIL>','Could you please send me your consultant list in Cardiology.'),(1009,'Sanduni','Thrimahavithana','<EMAIL>','ABC'),(1010,'Ku','Mudika','<EMAIL>','Good Service.!'),(1011,'Eanjan','Ramanayaka','<EMAIL>','Good Service!'),(1012,'','','',''),(1013,'Amali','Perera','<EMAIL>','Should have more improvements'); /*!40000 ALTER TABLE `website_messages` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-08-02 12:51:13
<reponame>Madhur1997/skeema CREATE TABLE `hasfloat` ( id int(10) unsigned NOT NULL, decimal_is_fine decimal(25,2), float_is_bad float(23), /* annotations: has-float */ float2_is_bad float(7,4), /* annotations: has-float */ double_is_bad double(53,2), /* annotations: has-float */ PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
<reponame>Caprowni/concourse DROP INDEX worker_resource_caches_uniq; DROP INDEX worker_task_caches_uniq; DROP INDEX worker_resource_config_check_sessions_uniq;
<filename>src/olympia/migrations/782-add-theme-update-counts.sql<gh_stars>1-10 CREATE TABLE `theme_update_counts` ( `id` int(11) UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `addon_id` int(11) UNSIGNED NOT NULL DEFAULT '0', `count` int(11) UNSIGNED NOT NULL DEFAULT '0', `date` date NOT NULL DEFAULT '0000-00-00' ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `theme_update_counts` ADD CONSTRAINT `theme_update_counts_addon_id_key` FOREIGN KEY (`addon_id`) REFERENCES `addons` (`id`); CREATE INDEX `theme_update_counts_addon_id_index` ON `theme_update_counts` (`addon_id`); CREATE INDEX `theme_update_counts_count_index` ON `theme_update_counts` (`count`); CREATE INDEX `theme_update_counts_date_index` ON `theme_update_counts` (`date`); CREATE INDEX `theme_update_counts_addon_id_count_index` ON `theme_update_counts` (`addon_id`,`count`);
<filename>src/app/voltdb/voltdb_src/tests/frontend/org/voltdb/planner/testplans-const-ddl.sql CREATE TABLE T1 ( T1_PK INTEGER NOT NULL ,INT1 INTEGER ,CONSTRAINT T1_PK_TREE PRIMARY KEY(T1_PK)); CREATE VIEW V_T1 ( V1 ,COUNT_T1_PK ) AS SELECT INT1 ,COUNT(*) FROM T1 GROUP BY INT1 ; CREATE TABLE T2 ( T2_PK integer NOT NULL , CHAR1 varchar(50) NOT NULL , CONSTRAINT PK_T2 PRIMARY KEY ( T2_PK ) );
-- phpMyAdmin SQL Dump -- version 4.7.9 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Apr 03, 2019 at 01:50 PM -- Server version: 5.7.21 -- PHP Version: 7.2.4 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `lisi_lisi` -- -- -------------------------------------------------------- -- -- Table structure for table `about_projects` -- DROP TABLE IF EXISTS `about_projects`; CREATE TABLE IF NOT EXISTS `about_projects` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` text COLLATE utf8_unicode_ci, `image` int(11) DEFAULT NULL, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', `link` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', PRIMARY KEY (`id`), KEY `about_projects_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `about_projects` -- INSERT INTO `about_projects` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `text_ka`, `image`, `landing_id`, `link`) VALUES (1, NULL, '2019-03-05 08:13:11', '2019-03-06 04:34:02', 'great project', 'great project great project', 7, 1, 'https://www.facebook.com/Lisi.Development/'); -- -------------------------------------------------------- -- -- Table structure for table `aparatmnets` -- DROP TABLE IF EXISTS `aparatmnets`; CREATE TABLE IF NOT EXISTS `aparatmnets` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `space` int(10) UNSIGNED DEFAULT NULL, `active` tinyint(1) DEFAULT '1', `rooms` varchar(256) COLLATE utf8_unicode_ci DEFAULT '[]', `floor` int(10) UNSIGNED NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `aparatmnets_floor_foreign` (`floor`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `backups` -- DROP TABLE IF EXISTS `backups`; CREATE TABLE IF NOT EXISTS `backups` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `file_name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `backup_size` varchar(10) COLLATE utf8_unicode_ci DEFAULT '', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `backups_name_unique` (`name`), UNIQUE KEY `backups_file_name_unique` (`file_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `blocks` -- DROP TABLE IF EXISTS `blocks`; CREATE TABLE IF NOT EXISTS `blocks` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `image` int(11) DEFAULT NULL, `project_id` int(10) UNSIGNED NOT NULL DEFAULT '1', `active` tinyint(1) DEFAULT '1', `floors` int(10) UNSIGNED DEFAULT NULL, PRIMARY KEY (`id`), KEY `blocks_project_id_foreign` (`project_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `blocks` -- INSERT INTO `blocks` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `title_en`, `title_ru`, `image`, `project_id`, `active`, `floors`) VALUES (1, NULL, '2019-02-22 08:26:34', '2019-02-22 09:01:08', 'Block title', NULL, NULL, 1, 1, 1, 2), (2, NULL, '2019-02-22 09:00:58', '2019-02-22 09:00:58', 'block c', NULL, NULL, 0, 1, 1, 4), (3, NULL, '2019-02-22 09:01:30', '2019-02-22 09:01:30', 'Block sd', NULL, NULL, 0, 2, 1, 4), (4, NULL, '2019-02-22 09:01:46', '2019-02-22 09:01:46', 'block hotel', NULL, NULL, 0, 2, 1, 3); -- -------------------------------------------------------- -- -- Table structure for table `callbacks` -- DROP TABLE IF EXISTS `callbacks`; CREATE TABLE IF NOT EXISTS `callbacks` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `firstname` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `phone` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `project` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `active` tinyint(1) DEFAULT '0', `email` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `callbacks` -- INSERT INTO `callbacks` (`id`, `deleted_at`, `created_at`, `updated_at`, `firstname`, `phone`, `project`, `active`, `email`) VALUES (1, NULL, '2019-03-11 08:26:43', '2019-03-11 08:26:43', 'vas', 're123123', 'lisi', 0, NULL), (2, NULL, '2019-03-11 08:30:03', '2019-03-11 08:30:03', 'test', '324234234234', 'lisi', 0, NULL), (3, NULL, '2019-03-11 08:31:20', '2019-03-11 08:31:20', 'test', 'asdasd', 'lisi', 0, NULL), (4, NULL, '2019-03-11 08:32:21', '2019-03-12 03:05:41', 'vas', '324234234234', 'lisi', 1, NULL), (5, NULL, '2019-03-12 03:21:39', '2019-03-12 03:21:39', NULL, NULL, NULL, 0, NULL), (6, NULL, '2019-03-12 03:21:45', '2019-03-12 03:21:45', NULL, NULL, NULL, 0, NULL), (7, NULL, '2019-03-12 03:22:07', '2019-03-12 03:22:07', NULL, NULL, NULL, 0, NULL), (8, NULL, '2019-03-12 03:22:58', '2019-03-12 03:22:58', NULL, NULL, NULL, 0, '<EMAIL>'), (9, NULL, '2019-03-27 06:14:07', '2019-03-27 06:14:07', 'sdfsdf', '3123123', 'lisi', 0, NULL), (10, NULL, '2019-03-27 06:14:07', '2019-03-27 06:14:07', 'sdfsdf', '3123123', 'lisi', 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `catalogs` -- DROP TABLE IF EXISTS `catalogs`; CREATE TABLE IF NOT EXISTS `catalogs` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `text_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_en` text COLLATE utf8_unicode_ci, `text_ru` text COLLATE utf8_unicode_ci, `image` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `company_views` -- DROP TABLE IF EXISTS `company_views`; CREATE TABLE IF NOT EXISTS `company_views` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `text_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `image` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `company_views` -- INSERT INTO `company_views` (`id`, `deleted_at`, `created_at`, `updated_at`, `text_ka`, `text_en`, `text_ru`, `image`, `active`) VALUES (1, NULL, '2019-02-25 07:30:31', '2019-02-25 07:30:31', 'sss', NULL, NULL, 0, 1); -- -------------------------------------------------------- -- -- Table structure for table `departments` -- DROP TABLE IF EXISTS `departments`; CREATE TABLE IF NOT EXISTS `departments` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `tags` varchar(1000) COLLATE utf8_unicode_ci DEFAULT '[]', `color` varchar(50) COLLATE utf8_unicode_ci DEFAULT '', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `departments_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `departments` -- INSERT INTO `departments` (`id`, `name`, `tags`, `color`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'Administration', '[]', '#000', NULL, '2019-02-22 06:24:06', '2019-02-22 06:24:06'); -- -------------------------------------------------------- -- -- Table structure for table `employees` -- DROP TABLE IF EXISTS `employees`; CREATE TABLE IF NOT EXISTS `employees` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `designation` varchar(50) COLLATE utf8_unicode_ci DEFAULT '', `gender` varchar(191) COLLATE utf8_unicode_ci DEFAULT 'Male', `email` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `dept` int(10) UNSIGNED NOT NULL DEFAULT '1', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `employees_email_unique` (`email`), KEY `employees_dept_foreign` (`dept`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `employees` -- INSERT INTO `employees` (`id`, `name`, `designation`, `gender`, `email`, `dept`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'admin', 'Super Admin', 'Male', '<EMAIL>', 1, NULL, '2019-02-22 06:24:25', '2019-02-22 06:24:25'); -- -------------------------------------------------------- -- -- Table structure for table `floors` -- DROP TABLE IF EXISTS `floors`; CREATE TABLE IF NOT EXISTS `floors` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `floors` -- INSERT INTO `floors` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `title_en`, `title_ru`) VALUES (1, NULL, '2019-02-25 04:25:46', '2019-02-25 04:25:46', 'pirveli ', 'first', 'pervi'), (2, NULL, '2019-02-25 04:37:56', '2019-02-25 04:37:56', 'meore', 'second', 'vtaroi'), (4, NULL, '2019-02-25 04:39:16', '2019-02-25 04:39:16', 'mesame', 'third', 'treti'), (5, NULL, '2019-02-25 04:39:16', '2019-02-25 04:39:16', 'moetxe', 'fourth', 'chitiri'); -- -------------------------------------------------------- -- -- Table structure for table `green_zones` -- DROP TABLE IF EXISTS `green_zones`; CREATE TABLE IF NOT EXISTS `green_zones` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `image` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT '0', `tag_id` int(10) UNSIGNED NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `green_zones_tag_id_foreign` (`tag_id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `green_zones` -- INSERT INTO `green_zones` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `title_en`, `title_ru`, `image`, `active`, `tag_id`) VALUES (1, NULL, '2019-02-25 07:10:59', '2019-02-26 05:27:38', '80 procenti', '80 Percent', NULL, 3, 1, 1), (2, NULL, '2019-02-26 05:26:20', '2019-02-26 05:27:30', '20 percent', '20 %', NULL, 0, 1, 1), (3, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '10', NULL, NULL, 0, 1, 1), (4, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '20', NULL, NULL, 0, 1, 1), (5, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '30', NULL, NULL, 0, 1, 2), (6, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '40', NULL, NULL, 0, 1, 2), (7, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '50', NULL, NULL, 0, 1, 2), (8, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '60', NULL, NULL, 0, 1, 2), (9, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '70', NULL, NULL, 0, 1, 2), (10, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '80', NULL, NULL, 0, 1, 2), (11, NULL, '2019-02-26 05:26:20', '2019-02-26 05:26:20', '90', NULL, NULL, 0, 1, 2); -- -------------------------------------------------------- -- -- Table structure for table `home_sliders` -- DROP TABLE IF EXISTS `home_sliders`; CREATE TABLE IF NOT EXISTS `home_sliders` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `text_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `home_sliders` -- INSERT INTO `home_sliders` (`id`, `deleted_at`, `created_at`, `updated_at`, `text_ka`, `text_en`, `text_ru`, `image_id`, `active`) VALUES (1, NULL, '2019-02-22 07:22:33', '2019-02-22 07:22:33', 'სლაიდერ', 'Slider', NULL, 2, 1), (2, NULL, '2019-02-22 07:23:02', '2019-02-22 07:23:02', 'სლაიდერ 2', 'Slider 2', NULL, 3, 1), (3, NULL, '2019-02-25 06:32:27', '2019-02-25 06:32:27', 'სლაიდერ 3', 'slider 3', NULL, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `landings` -- DROP TABLE IF EXISTS `landings`; CREATE TABLE IF NOT EXISTS `landings` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `landing_home` tinyint(1) DEFAULT '1', `season` tinyint(1) DEFAULT '1', `about_project` tinyint(1) DEFAULT '1', `project_info` tinyint(1) DEFAULT '1', `project_summary` tinyint(1) DEFAULT '1', `landing_apartment` tinyint(1) DEFAULT '1', `footer` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `landings` -- INSERT INTO `landings` (`id`, `deleted_at`, `created_at`, `updated_at`, `title`, `landing_home`, `season`, `about_project`, `project_info`, `project_summary`, `landing_apartment`, `footer`) VALUES (1, NULL, '2019-02-27 03:05:20', '2019-03-06 08:13:58', 'lisi', 1, 1, 1, 1, 1, 1, 0), (2, NULL, '2019-02-27 03:05:25', '2019-03-07 04:44:04', 'kokhta', 1, 1, 0, 0, 0, 0, 0), (3, NULL, '2019-02-27 03:05:31', '2019-02-27 03:07:09', 'batumi', 1, 1, 1, 1, 1, 1, 1), (4, '2019-02-27 05:24:39', '2019-02-27 05:17:31', '2019-02-27 05:24:39', 'lisi', 1, 1, 1, 1, 1, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `landing_apartments` -- DROP TABLE IF EXISTS `landing_apartments`; CREATE TABLE IF NOT EXISTS `landing_apartments` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `image` int(11) DEFAULT NULL, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `landing_apartments_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `landing_apartments` -- INSERT INTO `landing_apartments` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `text_ka`, `image`, `landing_id`) VALUES (1, NULL, '2019-03-06 08:26:07', '2019-03-06 08:26:07', 'Apartment', 'text apartment', 8, 1); -- -------------------------------------------------------- -- -- Table structure for table `landing_footers` -- DROP TABLE IF EXISTS `landing_footers`; CREATE TABLE IF NOT EXISTS `landing_footers` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `email` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `phone` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `address` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `landing_footers_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `landing_footers` -- INSERT INTO `landing_footers` (`id`, `deleted_at`, `created_at`, `updated_at`, `email`, `phone`, `address`, `landing_id`) VALUES (1, NULL, '2019-03-06 04:42:55', '2019-03-06 04:42:55', '<EMAIL>', '+958875 67815', 'Bolsunovska 13-15, Kiev', 1), (2, NULL, '2019-03-06 08:43:58', '2019-03-06 08:43:58', '<EMAIL>', '+995778822', 'bakuriani', 2); -- -------------------------------------------------------- -- -- Table structure for table `landing_homes` -- DROP TABLE IF EXISTS `landing_homes`; CREATE TABLE IF NOT EXISTS `landing_homes` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` text COLLATE utf8_unicode_ci, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', `image` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `landing_homes_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `landing_homes` -- INSERT INTO `landing_homes` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `text_ka`, `landing_id`, `image`) VALUES (1, NULL, '2019-03-05 06:57:11', '2019-03-06 04:22:33', 'LIsi is perfect', 'ქართულად ლისი', 1, 6), (2, NULL, '2019-03-06 03:30:44', '2019-03-06 08:44:29', 'landing kokhta', 'kokhta text', 2, 8); -- -------------------------------------------------------- -- -- Table structure for table `landing_socials` -- DROP TABLE IF EXISTS `landing_socials`; CREATE TABLE IF NOT EXISTS `landing_socials` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `facebook` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `twitter` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `instagram` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `youtube` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `landing_socials_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `landing_socials` -- INSERT INTO `landing_socials` (`id`, `deleted_at`, `created_at`, `updated_at`, `facebook`, `twitter`, `instagram`, `youtube`, `email`, `landing_id`) VALUES (1, NULL, '2019-03-05 08:36:26', '2019-03-05 08:36:26', 'https://www.facebook.com/Lisi.Development/', 'https://www.facebook.com/Lisi.Development/', 'https://www.facebook.com/Lisi.Development/', 'https://www.facebook.com/Lisi.Development/', 'https://www.facebook.com/Lisi.Development/', 1); -- -------------------------------------------------------- -- -- Table structure for table `la_configs` -- DROP TABLE IF EXISTS `la_configs`; CREATE TABLE IF NOT EXISTS `la_configs` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `key` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `section` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `value` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `la_configs` -- INSERT INTO `la_configs` (`id`, `key`, `section`, `value`, `created_at`, `updated_at`) VALUES (1, 'sitename', '', 'Admin', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (2, 'sitename_part1', '', 'Admin', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (3, 'sitename_part2', '', 'Skeleton', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (4, 'sitename_short', '', 'AS', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (5, 'site_description', '', 'Admin Panel Description', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (6, 'sidebar_search', '', '1', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (7, 'show_messages', '', '1', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (8, 'show_notifications', '', '1', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (9, 'show_tasks', '', '1', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (10, 'show_rightsidebar', '', '1', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (11, 'skin', '', 'skin-white', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (12, 'layout', '', 'fixed', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (13, 'default_email', '', '<EMAIL>', '2019-02-22 06:24:06', '2019-02-22 06:24:06'); -- -------------------------------------------------------- -- -- Table structure for table `la_menus` -- DROP TABLE IF EXISTS `la_menus`; CREATE TABLE IF NOT EXISTS `la_menus` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `url` varchar(256) COLLATE utf8_unicode_ci NOT NULL, `icon` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'fa-cube', `type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'module', `parent` int(10) UNSIGNED NOT NULL DEFAULT '0', `hierarchy` int(10) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `la_menus` -- INSERT INTO `la_menus` (`id`, `name`, `url`, `icon`, `type`, `parent`, `hierarchy`, `created_at`, `updated_at`) VALUES (1, 'Team', '#', 'fa-group', 'custom', 0, 1, '2019-02-22 06:24:05', '2019-02-22 06:24:05'), (2, 'Users', 'users', 'fa-group', 'module', 1, 0, '2019-02-22 06:24:05', '2019-02-22 06:24:05'), (3, 'Uploads', 'uploads', 'fa-files-o', 'module', 0, 0, '2019-02-22 06:24:05', '2019-02-22 06:24:05'), (4, 'Departments', 'departments', 'fa-tags', 'module', 1, 0, '2019-02-22 06:24:05', '2019-02-22 06:24:05'), (5, 'Employees', 'employees', 'fa-group', 'module', 1, 0, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (6, 'Roles', 'roles', 'fa-user-plus', 'module', 1, 0, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (7, 'Permissions', 'permissions', 'fa-magic', 'module', 1, 0, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (8, 'Tests', 'tests', 'fa fa-cube', 'module', 0, 0, '2019-02-22 06:29:20', '2019-02-22 06:29:20'), (11, 'Navigations', 'navigations', 'fa fa-cube', 'module', 0, 0, '2019-02-22 06:59:00', '2019-02-22 06:59:00'), (12, 'Home_sliders', 'home_sliders', 'fa fa-cube', 'module', 0, 0, '2019-02-22 07:08:10', '2019-02-22 07:08:10'), (14, 'Green_zones', 'green_zones', 'fa fa-cube', 'module', 0, 0, '2019-02-22 07:14:32', '2019-02-22 07:14:32'), (15, 'Catalogs', 'catalogs', 'fa fa-cube', 'module', 0, 0, '2019-02-22 07:27:14', '2019-02-22 07:27:14'), (16, 'Company_views', 'company_views', 'fa fa-cube', 'module', 0, 0, '2019-02-22 07:34:47', '2019-02-22 07:34:47'), (18, 'Teams', 'teams', 'fa fa-cube', 'module', 0, 0, '2019-02-22 08:10:03', '2019-02-22 08:10:03'), (19, 'Projects', 'projects', 'fa fa-cube', 'module', 0, 0, '2019-02-22 08:13:18', '2019-02-22 08:13:18'), (20, 'Blocks', 'blocks', 'fa fa-cube', 'module', 0, 0, '2019-02-22 08:25:32', '2019-02-22 08:25:32'), (21, 'Floors', 'floors', 'fa fa-cube', 'module', 0, 0, '2019-02-22 08:53:06', '2019-02-22 08:53:06'), (22, 'Aparatmnets', 'aparatmnets', 'fa fa-cube', 'module', 0, 0, '2019-02-22 08:57:16', '2019-02-22 08:57:16'), (23, 'Tags', 'tags', 'fa fa-tags', 'module', 0, 0, '2019-02-26 05:23:10', '2019-02-26 05:23:10'), (24, 'Text_Images', 'text_images', 'fa fa-cube', 'module', 0, 0, '2019-02-26 06:10:59', '2019-02-26 06:10:59'), (25, 'Landings', 'landings', 'fa fa-cube', 'module', 0, 0, '2019-02-27 03:00:37', '2019-02-27 03:00:37'), (29, 'Landing_Homes', 'landing_homes', 'fa fa-cube', 'module', 0, 0, '2019-03-05 06:56:38', '2019-03-05 06:56:38'), (30, 'Seasons', 'seasons', 'fa fa-cube', 'module', 0, 0, '2019-03-05 07:50:57', '2019-03-05 07:50:57'), (31, 'About_projects', 'about_projects', 'fa fa-cube', 'module', 0, 0, '2019-03-05 08:09:49', '2019-03-05 08:09:49'), (32, 'Landing_socials', 'landing_socials', 'fa fa-cube', 'module', 0, 0, '2019-03-05 08:35:27', '2019-03-05 08:35:27'), (34, 'Landing_footers', 'landing_footers', 'fa fa-cube', 'module', 0, 0, '2019-03-06 04:42:28', '2019-03-06 04:42:28'), (35, 'Project_infos', 'project_infos', 'fa fa-cube', 'module', 0, 0, '2019-03-06 05:09:50', '2019-03-06 05:09:50'), (36, 'Project_summaries', 'project_summaries', 'fa fa-cube', 'module', 0, 0, '2019-03-06 07:10:31', '2019-03-06 07:10:31'), (37, 'Landing_apartments', 'landing_apartments', 'fa fa-cube', 'module', 0, 0, '2019-03-06 08:24:21', '2019-03-06 08:24:21'), (38, 'Callbacks', 'callbacks', 'fa fa-cube', 'module', 0, 0, '2019-03-11 05:53:42', '2019-03-11 05:53:42'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; CREATE TABLE IF NOT EXISTS `migrations` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `migration` varchar(191) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_05_26_050000_create_modules_table', 1), (2, '2014_05_26_055000_create_module_field_types_table', 1), (3, '2014_05_26_060000_create_module_fields_table', 1), (4, '2014_10_12_000000_create_users_table', 1), (5, '2014_10_12_100000_create_password_resets_table', 1), (6, '2014_12_01_000000_create_uploads_table', 1), (7, '2016_05_26_064006_create_departments_table', 1), (8, '2016_05_26_064007_create_employees_table', 1), (9, '2016_05_26_064446_create_roles_table', 1), (10, '2016_07_05_115343_create_role_user_table', 1), (11, '2016_07_07_134058_create_backups_table', 1), (12, '2016_07_07_134058_create_menus_table', 1), (13, '2016_09_10_163337_create_permissions_table', 1), (14, '2016_09_10_163520_create_permission_role_table', 1), (15, '2016_09_22_105958_role_module_fields_table', 1), (16, '2016_09_22_110008_role_module_table', 1), (17, '2016_10_06_115413_create_la_configs_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `modules` -- DROP TABLE IF EXISTS `modules`; CREATE TABLE IF NOT EXISTS `modules` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `label` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `name_db` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `view_col` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `model` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `controller` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `fa_icon` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'fa-cube', `is_gen` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `modules` -- INSERT INTO `modules` (`id`, `name`, `label`, `name_db`, `view_col`, `model`, `controller`, `fa_icon`, `is_gen`, `created_at`, `updated_at`) VALUES (1, 'Users', 'Users', 'users', 'name', 'User', 'UsersController', 'fa-group', 1, '2019-02-22 06:24:03', '2019-02-22 06:24:06'), (2, 'Uploads', 'Uploads', 'uploads', 'name', 'Upload', 'UploadsController', 'fa-files-o', 1, '2019-02-22 06:24:04', '2019-02-22 06:24:06'), (3, 'Departments', 'Departments', 'departments', 'name', 'Department', 'DepartmentsController', 'fa-tags', 1, '2019-02-22 06:24:04', '2019-02-22 06:24:06'), (4, 'Employees', 'Employees', 'employees', 'name', 'Employee', 'EmployeesController', 'fa-group', 1, '2019-02-22 06:24:04', '2019-02-22 06:24:06'), (5, 'Roles', 'Roles', 'roles', 'name', 'Role', 'RolesController', 'fa-user-plus', 1, '2019-02-22 06:24:04', '2019-02-22 06:24:06'), (6, 'Backups', 'Backups', 'backups', 'name', 'Backup', 'BackupsController', 'fa-hdd-o', 1, '2019-02-22 06:24:04', '2019-02-22 06:24:06'), (7, 'Permissions', 'Permissions', 'permissions', 'name', 'Permission', 'PermissionsController', 'fa-magic', 1, '2019-02-22 06:24:04', '2019-02-22 06:24:06'), (9, 'Tests', 'Tests', 'tests', 'title', 'Test', 'TestsController', 'fa-cube', 1, '2019-02-22 06:28:53', '2019-02-22 06:29:20'), (16, 'Navigations', 'Navigations', 'navigations', 'menu_ka', 'Navigation', 'NavigationsController', 'fa-cube', 1, '2019-02-22 06:51:16', '2019-02-22 06:59:00'), (17, 'Home_sliders', 'Home_sliders', 'home_sliders', 'text_ka', 'Home_slider', 'Home_slidersController', 'fa-cube', 1, '2019-02-22 07:05:08', '2019-02-22 07:08:10'), (19, 'Green_zones', 'Green_zones', 'green_zones', 'title_ka', 'Green_zone', 'Green_zonesController', 'fa-cube', 1, '2019-02-22 07:13:03', '2019-02-22 07:14:32'), (20, 'Catalogs', 'Catalogs', 'catalogs', 'text_ka', 'Catalog', 'CatalogsController', 'fa-cube', 1, '2019-02-22 07:24:14', '2019-02-22 07:27:14'), (21, 'Company_views', 'Company_views', 'company_views', 'text_ka', 'Company_view', 'Company_viewsController', 'fa-cube', 1, '2019-02-22 07:32:26', '2019-02-22 07:34:47'), (23, 'Teams', 'Teams', 'teams', 'fullname_ka', 'Team', 'TeamsController', 'fa-cube', 1, '2019-02-22 07:50:07', '2019-02-22 08:10:03'), (24, 'Projects', 'Projects', 'projects', 'title_ka', 'Project', 'ProjectsController', 'fa-cube', 1, '2019-02-22 08:10:48', '2019-02-25 08:52:25'), (25, 'Blocks', 'Blocks', 'blocks', 'title_ka', 'Block', 'BlocksController', 'fa-cube', 1, '2019-02-22 08:18:57', '2019-02-22 08:25:32'), (26, 'Floors', 'Floors', 'floors', 'title_ka', 'Floor', 'FloorsController', 'fa-cube', 1, '2019-02-22 08:42:58', '2019-02-22 08:53:06'), (27, 'Aparatmnets', 'Aparatmnets', 'aparatmnets', 'block_id', 'Aparatmnet', 'AparatmnetsController', 'fa-cube', 1, '2019-02-22 08:53:48', '2019-02-25 05:24:56'), (28, 'Tags', 'Tags', 'tags', 'title', 'Tag', 'TagsController', 'fa-tags', 1, '2019-02-26 05:22:32', '2019-02-26 05:23:10'), (29, 'Text_Images', 'Text_Images', 'text_images', 'title_ka', 'Text_Image', 'Text_ImagesController', 'fa-cube', 1, '2019-02-26 06:08:01', '2019-02-26 06:10:59'), (30, 'Landings', 'Landings', 'landings', 'title', 'Landing', 'LandingsController', 'fa-cube', 1, '2019-02-27 02:59:12', '2019-02-27 03:06:23'), (34, 'Landing_Homes', 'Landing_Homes', 'landing_homes', 'title_ka', 'Landing_Home', 'Landing_HomesController', 'fa-cube', 1, '2019-03-05 06:55:08', '2019-03-05 06:56:38'), (35, 'Seasons', 'Seasons', 'seasons', 'title_ka', 'Season', 'SeasonsController', 'fa-cube', 1, '2019-03-05 07:49:35', '2019-03-05 07:50:57'), (36, 'About_projects', 'About_projects', 'about_projects', 'title_ka', 'About_project', 'About_projectsController', 'fa-cube', 1, '2019-03-05 08:08:40', '2019-03-05 08:09:49'), (37, 'Landing_socials', 'Landing_socials', 'landing_socials', 'facebook', 'Landing_social', 'Landing_socialsController', 'fa-cube', 1, '2019-03-05 08:33:34', '2019-03-05 08:35:27'), (39, 'Landing_footers', 'Landing_footers', 'landing_footers', 'email', 'Landing_footer', 'Landing_footersController', 'fa-cube', 1, '2019-03-06 04:40:48', '2019-03-06 04:42:28'), (40, 'Project_infos', 'Project_infos', 'project_infos', 'title_ka', 'Project_info', 'Project_infosController', 'fa-cube', 1, '2019-03-06 05:07:21', '2019-03-06 05:09:50'), (41, 'Project_summaries', 'Project_summaries', 'project_summaries', 'title_ka', 'Project_summary', 'Project_summariesController', 'fa-cube', 1, '2019-03-06 07:03:30', '2019-03-06 07:10:31'), (42, 'Landing_apartments', 'Landing_apartments', 'landing_apartments', 'title_ka', 'Landing_apartment', 'Landing_apartmentsController', 'fa-cube', 1, '2019-03-06 08:20:26', '2019-03-06 08:24:21'), (43, 'Callbacks', 'Callbacks', 'callbacks', 'firstname', 'Callback', 'CallbacksController', 'fa-cube', 1, '2019-03-11 05:51:50', '2019-03-11 05:53:42'); -- -------------------------------------------------------- -- -- Table structure for table `module_fields` -- DROP TABLE IF EXISTS `module_fields`; CREATE TABLE IF NOT EXISTS `module_fields` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `colname` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `label` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `module` int(10) UNSIGNED NOT NULL, `field_type` int(10) UNSIGNED NOT NULL, `unique` tinyint(1) NOT NULL DEFAULT '0', `defaultvalue` varchar(191) COLLATE utf8_unicode_ci NOT NULL, `minlength` int(10) UNSIGNED NOT NULL DEFAULT '0', `maxlength` int(10) UNSIGNED NOT NULL DEFAULT '0', `required` tinyint(1) NOT NULL DEFAULT '0', `popup_vals` text COLLATE utf8_unicode_ci NOT NULL, `sort` int(10) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `module_fields_module_foreign` (`module`), KEY `module_fields_field_type_foreign` (`field_type`) ) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `module_fields` -- INSERT INTO `module_fields` (`id`, `colname`, `label`, `module`, `field_type`, `unique`, `defaultvalue`, `minlength`, `maxlength`, `required`, `popup_vals`, `sort`, `created_at`, `updated_at`) VALUES (1, 'name', 'Name', 1, 16, 0, '', 5, 250, 1, '', 0, '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (2, 'context_id', 'Context', 1, 13, 0, '0', 0, 0, 0, '', 0, '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (3, 'email', 'Email', 1, 8, 1, '', 0, 250, 0, '', 0, '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (4, 'password', 'Password', 1, 17, 0, '', 6, 250, 1, '', 0, '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (5, 'type', 'User Type', 1, 7, 0, 'Employee', 0, 0, 0, '[\"Employee\",\"Client\"]', 0, '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (6, 'name', 'Name', 2, 16, 0, '', 5, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (7, 'path', 'Path', 2, 19, 0, '', 0, 250, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (8, 'extension', 'Extension', 2, 19, 0, '', 0, 20, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (9, 'user_id', 'Owner', 2, 7, 0, '1', 0, 0, 0, '@users', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (10, 'public', 'Is Public', 2, 2, 0, '0', 0, 0, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (11, 'type', 'Type', 2, 13, 0, '0', 0, 20, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (12, 'size', 'Size', 2, 22, 0, '', 0, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (13, 'url', 'Url', 2, 19, 0, '', 0, 250, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (14, 'name', 'Name', 3, 16, 1, '', 1, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (15, 'tags', 'Tags', 3, 20, 0, '[]', 0, 0, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (16, 'color', 'Color', 3, 19, 0, '', 0, 50, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (17, 'name', 'Name', 4, 16, 0, '', 5, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (18, 'designation', 'Designation', 4, 19, 0, '', 0, 50, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (19, 'gender', 'Gender', 4, 18, 0, 'Male', 0, 0, 1, '[\"Male\",\"Female\"]', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (20, 'email', 'Email', 4, 8, 1, '', 5, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (21, 'dept', 'Department', 4, 7, 0, '0', 0, 0, 1, '@departments', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (22, 'name', 'Name', 5, 16, 1, '', 1, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (23, 'display_name', 'Display Name', 5, 19, 0, '', 0, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (24, 'description', 'Description', 5, 21, 0, '', 0, 1000, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (25, 'parent', 'Parent Role', 5, 7, 0, '1', 0, 0, 0, '@roles', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (26, 'dept', 'Department', 5, 7, 0, '1', 0, 0, 0, '@departments', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (27, 'name', 'Name', 6, 16, 1, '', 0, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (28, 'file_name', 'File Name', 6, 19, 1, '', 0, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (29, 'backup_size', 'File Size', 6, 19, 0, '0', 0, 10, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (30, 'name', 'Name', 7, 16, 1, '', 1, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (31, 'display_name', 'Display Name', 7, 19, 0, '', 0, 250, 1, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (32, 'description', 'Description', 7, 21, 0, '', 0, 1000, 0, '', 0, '2019-02-22 06:24:04', '2019-02-22 06:24:04'), (35, 'title', 'title', 9, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 06:29:05', '2019-02-22 06:29:05'), (36, 'new_field', 'new_field', 9, 21, 0, '', 0, 0, 0, '', 0, '2019-02-22 06:30:23', '2019-02-22 06:30:23'), (49, 'menu', 'menu', 9, 15, 0, '', 0, 0, 0, '[\"header\",\"burger\",\"footer\"]', 0, '2019-02-22 06:46:11', '2019-02-22 06:49:47'), (50, 'menu_ka', 'menu ka', 16, 19, 0, '', 0, 256, 1, '', 0, '2019-02-22 06:57:19', '2019-02-22 06:57:19'), (51, 'menu_en', 'menu en', 16, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 06:57:36', '2019-02-22 06:57:36'), (52, 'menu_ru', 'menu ru', 16, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 06:57:51', '2019-02-22 06:57:51'), (53, 'active', 'Active', 16, 2, 0, 'true', 0, 0, 0, '', 0, '2019-02-22 06:58:12', '2019-02-22 07:01:10'), (54, 'menu_location', 'menu location', 16, 15, 0, '', 0, 0, 0, '[\"Menu\",\"Burger\",\"Footer\"]', 0, '2019-02-22 06:59:49', '2019-02-25 04:00:50'), (55, 'text_ka', 'text ka', 17, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:05:30', '2019-02-22 07:05:30'), (56, 'text_en', 'text en', 17, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:06:09', '2019-02-22 07:06:09'), (57, 'text_ru', 'text ru', 17, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:06:27', '2019-02-22 07:06:27'), (58, 'image_id', 'Image', 17, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 07:07:52', '2019-02-25 07:45:48'), (63, 'title_ka', 'Title ka', 19, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:13:24', '2019-02-22 07:13:24'), (64, 'title_en', 'Title en', 19, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:13:38', '2019-02-22 07:13:38'), (65, 'title_ru', 'Title ru', 19, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:13:55', '2019-02-22 07:13:55'), (66, 'image', 'Image', 19, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 07:14:09', '2019-02-22 07:14:09'), (67, 'active', 'Active', 19, 2, 0, 'false', 0, 0, 0, '', 0, '2019-02-22 07:14:22', '2019-02-22 07:14:22'), (68, 'active', 'Active', 17, 2, 0, 'false', 0, 0, 1, '', 0, '2019-02-22 07:15:59', '2019-02-22 07:15:59'), (69, 'text_ka', 'Catalog Title ka', 20, 21, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:24:54', '2019-02-22 07:25:46'), (70, 'text_en', 'Catalog Title en', 20, 21, 0, '', 0, 0, 0, '', 0, '2019-02-22 07:26:05', '2019-02-22 07:26:05'), (71, 'text_ru', 'Catalog Title ru', 20, 21, 0, '', 0, 0, 0, '', 0, '2019-02-22 07:26:25', '2019-02-22 07:26:25'), (72, 'image', 'Image', 20, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 07:26:43', '2019-02-22 07:26:43'), (73, 'active', 'Active', 20, 2, 0, 'false', 0, 0, 0, '', 0, '2019-02-22 07:27:04', '2019-02-22 07:27:04'), (74, 'text_ka', 'Company View Text ka', 21, 22, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:33:04', '2019-02-22 07:33:04'), (75, 'text_en', 'Company View Text en', 21, 22, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:33:28', '2019-02-22 07:33:28'), (76, 'text_ru', 'Company View Text ru', 21, 22, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:33:49', '2019-02-22 07:33:49'), (77, 'image', 'Image', 21, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 07:34:08', '2019-02-22 07:34:08'), (78, 'active', 'Active', 21, 2, 0, 'true', 0, 0, 0, '', 0, '2019-02-22 07:34:30', '2019-02-22 07:34:30'), (84, 'fullname_ka', 'Full name ka', 23, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:50:59', '2019-02-22 07:50:59'), (85, 'full_name en', 'Full name en', 23, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:53:15', '2019-02-22 07:53:15'), (86, 'Full name ru', 'Full name ru', 23, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 07:53:27', '2019-02-22 07:53:27'), (87, 'image', 'Image', 23, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 08:08:41', '2019-02-22 08:08:41'), (88, 'position_ka', 'Position ka', 23, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:09:00', '2019-02-22 08:09:00'), (89, 'position_en', 'Position en', 23, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:09:16', '2019-02-22 08:09:16'), (90, 'position_ru', 'Position ru', 23, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:09:37', '2019-02-22 08:09:37'), (91, 'active', 'Active', 23, 2, 0, 'true', 0, 0, 1, '', 0, '2019-02-22 08:09:54', '2019-02-22 08:09:54'), (92, 'title_ka', 'Title ka', 24, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:11:18', '2019-02-22 08:11:18'), (93, 'title_en', 'Title en', 24, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:11:28', '2019-02-22 08:11:28'), (94, 'title_ru', 'Title ru', 24, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:11:44', '2019-02-22 08:11:44'), (95, 'text_ka', 'Text ka', 24, 21, 0, '', 0, 0, 0, '', 0, '2019-02-22 08:12:12', '2019-02-22 08:12:12'), (96, 'text_en', 'Text en', 24, 21, 0, '', 0, 0, 0, '', 0, '2019-02-22 08:12:28', '2019-02-22 08:12:28'), (97, 'text_ru', 'Text ru', 24, 21, 0, '', 0, 0, 0, '', 0, '2019-02-22 08:12:51', '2019-02-22 08:12:51'), (98, 'image', 'Image', 24, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 08:13:10', '2019-02-22 08:13:10'), (99, 'title_ka', 'Block Title ka', 25, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:19:24', '2019-02-22 08:19:24'), (100, 'title_en', 'Block Title en', 25, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:19:45', '2019-02-22 08:19:45'), (101, 'title_ru', 'Block Title ru', 25, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:19:54', '2019-02-22 08:19:54'), (102, 'image', 'Image', 25, 12, 0, '', 0, 0, 0, '', 0, '2019-02-22 08:24:29', '2019-02-22 08:24:29'), (103, 'project_id', 'Project', 25, 7, 0, '', 0, 0, 0, '@projects', 0, '2019-02-22 08:25:05', '2019-02-22 08:25:05'), (104, 'active', 'Active', 25, 2, 0, 'true', 0, 0, 0, '', 0, '2019-02-22 08:25:24', '2019-02-22 08:25:24'), (105, 'floors', 'Floors', 25, 13, 0, '', 0, 11, 0, '', 0, '2019-02-22 08:28:49', '2019-02-22 08:28:49'), (106, 'title_ka', 'Floor ka', 26, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:50:16', '2019-02-22 08:50:16'), (107, 'title_en', 'Floor en', 26, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:50:48', '2019-02-22 08:50:48'), (108, 'title_ru', 'Floor ru', 26, 19, 0, '', 0, 256, 0, '', 0, '2019-02-22 08:50:59', '2019-02-22 08:50:59'), (111, 'title_ka', 'Title ka', 27, 19, 0, '', 0, 256, 0, '', 1, '2019-02-22 08:54:33', '2019-02-22 08:55:04'), (112, 'title_en', 'Title en', 27, 19, 0, '', 0, 256, 0, '', 2, '2019-02-22 08:55:15', '2019-02-22 08:55:15'), (113, 'title_ru', 'Title ru', 27, 19, 0, '', 0, 256, 0, '', 3, '2019-02-22 08:55:28', '2019-02-22 08:55:28'), (114, 'space', 'Space', 27, 13, 0, '', 0, 11, 0, '', 5, '2019-02-22 08:56:10', '2019-02-22 08:56:10'), (116, 'active', 'Sold', 27, 2, 0, 'true', 0, 0, 0, '', 6, '2019-02-22 08:57:04', '2019-02-22 08:57:04'), (117, 'rooms', 'Rooms', 27, 15, 0, '', 0, 0, 0, '[\"bedroom\",\"kitchen\",\"balcony\",\"toilet\"]', 7, '2019-02-22 08:59:43', '2019-02-22 08:59:43'), (120, 'floor', 'Floor', 27, 7, 0, '', 0, 0, 0, '@floors', 4, '2019-02-25 05:18:31', '2019-02-25 05:18:31'), (122, 'slug', 'Slug', 24, 19, 0, '', 0, 256, 0, '', 0, '2019-02-25 08:52:13', '2019-02-25 08:52:13'), (123, 'title', 'Name', 28, 19, 1, '', 0, 256, 1, '', 0, '2019-02-26 05:22:55', '2019-02-26 05:22:55'), (124, 'tag_id', 'Tag', 19, 7, 0, '', 0, 0, 0, '@tags', 0, '2019-02-26 05:26:04', '2019-02-26 05:26:04'), (125, 'title_ka', 'Title', 29, 19, 0, '', 0, 256, 0, '', 0, '2019-02-26 06:08:19', '2019-02-26 06:08:19'), (126, 'title_en', 'Title en', 29, 19, 0, '', 0, 256, 0, '', 0, '2019-02-26 06:08:33', '2019-02-26 06:08:33'), (127, 'title_ru', 'Title ru', 29, 19, 0, '', 0, 256, 0, '', 0, '2019-02-26 06:08:50', '2019-02-26 06:08:50'), (128, 'text_ka', 'Text', 29, 21, 0, '', 0, 0, 0, '', 0, '2019-02-26 06:09:10', '2019-02-26 06:09:10'), (129, 'text_en', 'text en', 29, 21, 0, '', 0, 0, 0, '', 0, '2019-02-26 06:09:23', '2019-02-26 06:09:23'), (130, 'text_ru', 'Text ru', 29, 21, 0, '', 0, 0, 0, '', 0, '2019-02-26 06:09:39', '2019-02-26 06:09:39'), (131, 'image', 'Image', 29, 12, 0, '', 0, 0, 0, '', 0, '2019-02-26 06:09:50', '2019-02-26 06:09:50'), (132, 'active', 'Active', 29, 2, 0, 'true', 0, 0, 0, '', 0, '2019-02-26 06:10:08', '2019-02-26 06:10:08'), (133, 'tag_id', 'Tag', 29, 7, 0, '', 0, 256, 0, '@tags', 0, '2019-02-26 06:10:48', '2019-02-26 06:13:36'), (142, 'title', 'Title', 30, 19, 0, '', 0, 256, 0, '', 1, '2019-02-27 03:06:07', '2019-02-27 03:06:07'), (143, 'landing_home', 'Landing_home', 30, 2, 0, 'true', 0, 0, 0, '', 2, '2019-02-27 05:18:23', '2019-03-05 07:13:32'), (147, 'title_ka', 'Title', 34, 19, 0, '', 0, 256, 0, '', 1, '2019-03-05 06:55:45', '2019-03-05 06:55:45'), (148, 'text_ka', 'Text', 34, 21, 0, '', 0, 0, 0, '', 2, '2019-03-05 06:55:58', '2019-03-05 06:55:58'), (149, 'landing_id', 'Landing', 34, 7, 0, '', 0, 0, 0, '@landings', 4, '2019-03-05 06:56:30', '2019-03-05 06:56:30'), (150, 'title_ka', 'Title', 35, 19, 0, '', 0, 256, 0, '', 1, '2019-03-05 07:49:56', '2019-03-05 07:49:56'), (151, 'text_ka', 'Text', 35, 21, 0, '', 0, 0, 0, '', 2, '2019-03-05 07:50:08', '2019-03-05 07:50:08'), (152, 'landing_id', 'Landing', 35, 7, 0, '', 0, 0, 0, '@landings', 4, '2019-03-05 07:50:41', '2019-03-05 07:50:41'), (153, 'season', 'Season', 30, 2, 0, 'true', 0, 0, 0, '', 3, '2019-03-05 07:52:02', '2019-03-05 08:15:49'), (154, 'about_project', 'About Project', 30, 2, 0, 'true', 0, 0, 0, '', 4, '2019-03-05 07:52:56', '2019-03-05 07:52:56'), (155, 'project_info', 'Project Info', 30, 2, 0, 'true', 0, 0, 0, '', 5, '2019-03-05 07:53:17', '2019-03-05 07:53:17'), (156, 'project_summary', 'Project Summary', 30, 2, 0, 'true', 0, 0, 0, '', 6, '2019-03-05 07:53:50', '2019-03-05 07:53:50'), (157, 'landing_apartment', 'Landing Apartment', 30, 2, 0, 'true', 0, 0, 0, '', 7, '2019-03-05 07:54:08', '2019-03-06 08:16:51'), (158, 'footer', 'Footer', 30, 2, 0, 'true', 0, 0, 0, '', 8, '2019-03-05 07:54:27', '2019-03-05 07:54:27'), (159, 'title_ka', 'Title', 36, 19, 0, '', 0, 256, 0, '', 1, '2019-03-05 08:08:58', '2019-03-05 08:08:58'), (160, 'text_ka', 'Text', 36, 21, 0, '', 0, 0, 0, '', 2, '2019-03-05 08:09:09', '2019-03-05 08:09:09'), (161, 'image', 'Image', 36, 12, 0, '', 0, 0, 0, '', 3, '2019-03-05 08:09:21', '2019-03-05 08:09:21'), (162, 'landing_id', 'Landing', 36, 7, 0, '', 0, 0, 0, '@landings', 5, '2019-03-05 08:09:39', '2019-03-05 08:09:39'), (163, 'facebook', 'Facebook', 37, 19, 0, '', 0, 256, 0, '', 0, '2019-03-05 08:34:05', '2019-03-05 08:34:05'), (164, 'twitter', 'Twitter', 37, 19, 0, '', 0, 256, 0, '', 0, '2019-03-05 08:34:19', '2019-03-05 08:44:22'), (165, 'instagram', 'Instagram', 37, 19, 0, '', 0, 256, 0, '', 0, '2019-03-05 08:34:39', '2019-03-05 08:34:39'), (166, 'youtube', 'Youtube', 37, 19, 0, '', 0, 256, 0, '', 0, '2019-03-05 08:35:02', '2019-03-05 08:35:02'), (167, 'email', 'Email', 37, 19, 0, '', 0, 256, 0, '', 0, '2019-03-05 08:35:19', '2019-03-05 08:35:19'), (168, 'landing_id', 'Landing', 37, 7, 0, '', 0, 0, 0, '@landings', 0, '2019-03-05 08:37:14', '2019-03-05 08:37:14'), (169, 'image', 'Image', 34, 12, 0, '', 0, 256, 0, '', 3, '2019-03-06 04:21:46', '2019-03-06 04:21:56'), (170, 'image', 'Image', 35, 12, 0, '', 0, 0, 0, '', 3, '2019-03-06 04:23:54', '2019-03-06 04:23:54'), (171, 'link', 'Link', 36, 19, 0, '', 0, 256, 1, '', 4, '2019-03-06 04:32:20', '2019-03-06 04:32:42'), (176, 'email', 'Email', 39, 8, 0, '', 0, 256, 1, '', 0, '2019-03-06 04:41:02', '2019-03-06 04:41:02'), (177, 'phone', 'Phone', 39, 19, 0, '', 0, 256, 1, '', 0, '2019-03-06 04:41:16', '2019-03-06 04:41:16'), (178, 'address', 'Address', 39, 19, 0, '', 0, 256, 1, '', 0, '2019-03-06 04:41:30', '2019-03-06 04:41:30'), (179, 'landing_id', 'Landing', 39, 7, 0, '', 0, 0, 0, '@landings', 0, '2019-03-06 04:42:18', '2019-03-06 04:42:18'), (180, 'title_ka', 'Title', 40, 19, 0, '', 0, 256, 0, '', 0, '2019-03-06 05:08:00', '2019-03-06 05:08:00'), (181, 'text_ka', 'Text', 40, 21, 0, '', 0, 0, 0, '', 0, '2019-03-06 05:08:15', '2019-03-06 05:08:15'), (182, 'icon', 'Icon', 40, 22, 0, '', 0, 256, 0, '', 0, '2019-03-06 05:08:34', '2019-03-06 05:08:34'), (184, 'landing_id', 'Landing', 40, 7, 0, '', 0, 0, 0, '@landings', 0, '2019-03-06 05:09:36', '2019-03-06 05:09:36'), (185, 'title_ka', 'Title', 41, 19, 0, '', 0, 256, 0, '', 0, '2019-03-06 07:07:13', '2019-03-06 07:16:53'), (186, 'text_ka', 'Text', 41, 21, 0, '', 0, 0, 0, '', 0, '2019-03-06 07:07:27', '2019-03-06 07:07:27'), (187, 'sub_text', 'Sub Text', 41, 19, 0, '', 0, 256, 0, '', 0, '2019-03-06 07:08:21', '2019-03-06 07:14:50'), (188, 'prefix', 'Prefix', 41, 19, 0, '', 0, 3, 0, '', 0, '2019-03-06 07:08:44', '2019-03-06 07:08:44'), (189, 'number', 'Number', 41, 19, 0, '', 0, 256, 0, '', 0, '2019-03-06 07:09:32', '2019-03-06 07:14:40'), (190, 'sufix', 'Sufix', 41, 19, 0, '', 0, 3, 0, '', 0, '2019-03-06 07:09:46', '2019-03-06 07:09:46'), (191, 'landing_id', 'Landing', 41, 7, 0, '', 0, 0, 0, '@landings', 0, '2019-03-06 07:13:13', '2019-03-06 07:13:13'), (192, 'is_title', 'Is Title', 41, 2, 0, '0', 0, 0, 1, '', 0, '2019-03-06 07:13:54', '2019-03-06 07:16:25'), (193, 'title_ka', 'Title', 42, 19, 0, '', 0, 256, 0, '', 0, '2019-03-06 08:20:55', '2019-03-06 08:20:55'), (194, 'text_ka', 'Text', 42, 22, 0, '', 0, 256, 0, '', 0, '2019-03-06 08:22:07', '2019-03-06 08:22:07'), (195, 'image', 'Image', 42, 12, 0, '', 0, 0, 0, '', 0, '2019-03-06 08:23:40', '2019-03-06 08:23:40'), (196, 'landing_id', 'Landing', 42, 7, 0, '', 0, 0, 0, '@landings', 0, '2019-03-06 08:24:05', '2019-03-06 08:24:05'), (197, 'firstname', 'Name', 43, 19, 0, '', 0, 256, 0, '', 1, '2019-03-11 05:52:21', '2019-03-11 05:52:21'), (198, 'phone', 'Phone', 43, 19, 0, '', 0, 256, 0, '', 2, '2019-03-11 05:52:48', '2019-03-11 05:52:48'), (199, 'project', 'Project', 43, 19, 0, '', 0, 256, 0, '', 3, '2019-03-11 05:53:07', '2019-03-11 05:53:07'), (200, 'active', 'Contacted Back', 43, 2, 0, 'false', 0, 0, 0, '', 5, '2019-03-11 05:53:33', '2019-03-12 03:03:20'), (201, 'email', 'Email', 43, 8, 0, '', 0, 256, 0, '', 4, '2019-03-12 03:02:55', '2019-03-12 03:05:26'); -- -------------------------------------------------------- -- -- Table structure for table `module_field_types` -- DROP TABLE IF EXISTS `module_field_types`; CREATE TABLE IF NOT EXISTS `module_field_types` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `module_field_types` -- INSERT INTO `module_field_types` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'Address', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (2, 'Checkbox', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (3, 'Currency', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (4, 'Date', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (5, 'Datetime', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (6, 'Decimal', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (7, 'Dropdown', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (8, 'Email', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (9, 'File', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (10, 'Float', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (11, 'HTML', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (12, 'Image', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (13, 'Integer', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (14, 'Mobile', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (15, 'Multiselect', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (16, 'Name', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (17, 'Password', '<PASSWORD>', '2019-02-22 06:24:03'), (18, 'Radio', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (19, 'String', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (20, 'Taginput', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (21, 'Textarea', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (22, 'TextField', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (23, 'URL', '2019-02-22 06:24:03', '2019-02-22 06:24:03'), (24, 'Files', '2019-02-22 06:24:03', '2019-02-22 06:24:03'); -- -------------------------------------------------------- -- -- Table structure for table `navigations` -- DROP TABLE IF EXISTS `navigations`; CREATE TABLE IF NOT EXISTS `navigations` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `menu_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `menu_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `menu_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `active` tinyint(1) DEFAULT '1', `menu_location` varchar(256) COLLATE utf8_unicode_ci DEFAULT '[]', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `navigations` -- INSERT INTO `navigations` (`id`, `deleted_at`, `created_at`, `updated_at`, `menu_ka`, `menu_en`, `menu_ru`, `active`, `menu_location`) VALUES (1, NULL, '2019-02-22 07:00:22', '2019-02-22 07:00:30', 'მთავარი', 'Home', NULL, 1, '[\"Menu\"]'), (2, NULL, '2019-02-22 07:02:10', '2019-02-22 07:03:17', 'ჩვენს შესახებ', 'About', NULL, 1, '[\"Menu\"]'), (3, NULL, '2019-02-22 07:02:23', '2019-02-25 04:01:10', 'ბურგერ', 'BUrger', NULL, 1, '[\"Burger\"]'), (4, NULL, '2019-02-22 07:02:37', '2019-02-25 04:01:22', 'ბურგერ მენუ', 'BUrger 3', NULL, 1, '[\"Menu\",\"Burger\"]'); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; CREATE TABLE IF NOT EXISTS `password_resets` ( `email` varchar(191) COLLATE utf8_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; CREATE TABLE IF NOT EXISTS `permissions` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `display_name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `description` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `permissions_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `permissions` -- INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'ADMIN_PANEL', 'Admin Panel', 'Admin Panel Permission', NULL, '2019-02-22 06:24:06', '2019-02-22 06:24:06'); -- -------------------------------------------------------- -- -- Table structure for table `permission_role` -- DROP TABLE IF EXISTS `permission_role`; CREATE TABLE IF NOT EXISTS `permission_role` ( `permission_id` int(10) UNSIGNED NOT NULL, `role_id` int(10) UNSIGNED NOT NULL, PRIMARY KEY (`permission_id`,`role_id`), KEY `permission_role_role_id_foreign` (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `permission_role` -- INSERT INTO `permission_role` (`permission_id`, `role_id`) VALUES (1, 1), (1, 2); -- -------------------------------------------------------- -- -- Table structure for table `projects` -- DROP TABLE IF EXISTS `projects`; CREATE TABLE IF NOT EXISTS `projects` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` text COLLATE utf8_unicode_ci, `text_en` text COLLATE utf8_unicode_ci, `text_ru` text COLLATE utf8_unicode_ci, `image` int(11) DEFAULT NULL, `slug` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `projects` -- INSERT INTO `projects` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `title_en`, `title_ru`, `text_ka`, `text_en`, `text_ru`, `image`, `slug`) VALUES (1, NULL, '2019-02-22 08:26:14', '2019-02-25 08:58:29', 'lisi greens', 'lisi greens english', NULL, NULL, NULL, NULL, 4, 'lisi-greens'), (2, NULL, '2019-02-22 09:00:39', '2019-02-25 08:58:36', 'lisi kokhta', NULL, NULL, NULL, NULL, NULL, 0, 'lisi-kokhta'); -- -------------------------------------------------------- -- -- Table structure for table `project_infos` -- DROP TABLE IF EXISTS `project_infos`; CREATE TABLE IF NOT EXISTS `project_infos` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` text COLLATE utf8_unicode_ci, `icon` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `project_infos_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `project_infos` -- INSERT INTO `project_infos` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `text_ka`, `icon`, `landing_id`) VALUES (1, NULL, '2019-03-06 05:10:43', '2019-03-06 05:10:43', 'About Project', 'text herere', '<i class=\"fas fa-air-freshener\"></i>', 1), (2, NULL, '2019-03-06 05:11:00', '2019-03-06 05:11:00', 'About 2', 'lorme text', '<i class=\"fas fa-air-freshener\"></i>', 1), (3, NULL, '2019-03-06 05:11:23', '2019-03-06 05:11:23', 'about 3', 'lorem dolares ipsum', '<i class=\"fas fa-air-freshener\"></i>', 1); -- -------------------------------------------------------- -- -- Table structure for table `project_summaries` -- DROP TABLE IF EXISTS `project_summaries`; CREATE TABLE IF NOT EXISTS `project_summaries` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `text_ka` text COLLATE utf8_unicode_ci, `sub_text` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `prefix` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `number` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', `sufix` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', `is_title` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `project_summaries_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `project_summaries` -- INSERT INTO `project_summaries` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `text_ka`, `sub_text`, `prefix`, `number`, `sufix`, `landing_id`, `is_title`) VALUES (1, NULL, '2019-03-06 07:11:19', '2019-03-06 07:15:18', 'Summary', 'long text for title', 'small text with numbers', '$', '1', NULL, 1, 1), (2, NULL, '2019-03-06 07:17:23', '2019-03-07 05:34:00', '', NULL, 'Грузии был оформлен', '$', '1', NULL, 1, 0), (3, NULL, '2019-03-06 07:17:42', '2019-03-06 07:17:42', '', NULL, 'again small 2', NULL, '150', 'k', 1, 0), (4, NULL, '2019-03-06 07:17:57', '2019-03-06 07:17:57', '', NULL, 'sub text of three', NULL, '500', NULL, 1, 0), (5, NULL, '2019-03-06 07:18:12', '2019-03-06 07:18:12', '', NULL, 'three more and', NULL, '166', 'k', 1, 0), (6, NULL, '2019-03-06 07:18:30', '2019-03-06 07:18:30', '', NULL, 'two more and', '$', '500', NULL, 1, 0), (7, '2019-03-07 04:45:13', '2019-03-06 07:18:49', '2019-03-07 04:45:13', '', NULL, 'last one i think', NULL, '80', NULL, 1, 0), (8, NULL, '2019-03-07 04:45:29', '2019-03-07 04:45:29', '', NULL, 'sub text', '$', '150', NULL, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; CREATE TABLE IF NOT EXISTS `roles` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `display_name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `description` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, `parent` int(10) UNSIGNED NOT NULL DEFAULT '1', `dept` int(10) UNSIGNED NOT NULL DEFAULT '1', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roles_name_unique` (`name`), KEY `roles_parent_foreign` (`parent`), KEY `roles_dept_foreign` (`dept`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `parent`, `dept`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'SUPER_ADMIN', 'Super Admin', 'Full Access Role', 1, 1, NULL, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (2, 'ADMIN', 'admin', NULL, 1, 1, NULL, '2019-02-22 06:28:33', '2019-02-22 06:28:33'); -- -------------------------------------------------------- -- -- Table structure for table `role_module` -- DROP TABLE IF EXISTS `role_module`; CREATE TABLE IF NOT EXISTS `role_module` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `role_id` int(10) UNSIGNED NOT NULL, `module_id` int(10) UNSIGNED NOT NULL, `acc_view` tinyint(1) NOT NULL, `acc_create` tinyint(1) NOT NULL, `acc_edit` tinyint(1) NOT NULL, `acc_delete` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `role_module_role_id_foreign` (`role_id`), KEY `role_module_module_id_foreign` (`module_id`) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `role_module` -- INSERT INTO `role_module` (`id`, `role_id`, `module_id`, `acc_view`, `acc_create`, `acc_edit`, `acc_delete`, `created_at`, `updated_at`) VALUES (1, 1, 1, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (2, 1, 2, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (3, 1, 3, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (4, 1, 4, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (5, 1, 5, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (6, 1, 6, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (7, 1, 7, 1, 1, 1, 1, '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (8, 2, 1, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (9, 2, 2, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (10, 2, 3, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (11, 2, 4, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (12, 2, 5, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (13, 2, 6, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (14, 2, 7, 1, 0, 0, 0, '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (15, 1, 9, 1, 1, 1, 1, '2019-02-22 06:29:20', '2019-02-22 06:29:20'), (18, 1, 16, 1, 1, 1, 1, '2019-02-22 06:59:00', '2019-02-22 06:59:00'), (19, 1, 17, 1, 1, 1, 1, '2019-02-22 07:08:10', '2019-02-22 07:08:10'), (21, 1, 19, 1, 1, 1, 1, '2019-02-22 07:14:32', '2019-02-22 07:14:32'), (22, 1, 20, 1, 1, 1, 1, '2019-02-22 07:27:14', '2019-02-22 07:27:14'), (23, 1, 21, 1, 1, 1, 1, '2019-02-22 07:34:47', '2019-02-22 07:34:47'), (25, 1, 23, 1, 1, 1, 1, '2019-02-22 08:10:03', '2019-02-22 08:10:03'), (26, 1, 24, 1, 1, 1, 1, '2019-02-22 08:13:18', '2019-02-22 08:13:18'), (27, 1, 25, 1, 1, 1, 1, '2019-02-22 08:25:32', '2019-02-22 08:25:32'), (28, 1, 26, 1, 1, 1, 1, '2019-02-22 08:53:06', '2019-02-22 08:53:06'), (29, 1, 27, 1, 1, 1, 1, '2019-02-22 08:57:16', '2019-02-22 08:57:16'), (30, 1, 28, 1, 1, 1, 1, '2019-02-26 05:23:10', '2019-02-26 05:23:10'), (31, 1, 29, 1, 1, 1, 1, '2019-02-26 06:10:59', '2019-02-26 06:10:59'), (32, 1, 30, 1, 1, 1, 1, '2019-02-27 03:00:37', '2019-02-27 03:00:37'), (36, 1, 34, 1, 1, 1, 1, '2019-03-05 06:56:38', '2019-03-05 06:56:38'), (37, 1, 35, 1, 1, 1, 1, '2019-03-05 07:50:57', '2019-03-05 07:50:57'), (38, 1, 36, 1, 1, 1, 1, '2019-03-05 08:09:49', '2019-03-05 08:09:49'), (39, 1, 37, 1, 1, 1, 1, '2019-03-05 08:35:27', '2019-03-05 08:35:27'), (41, 1, 39, 1, 1, 1, 1, '2019-03-06 04:42:28', '2019-03-06 04:42:28'), (42, 1, 40, 1, 1, 1, 1, '2019-03-06 05:09:50', '2019-03-06 05:09:50'), (43, 1, 41, 1, 1, 1, 1, '2019-03-06 07:10:31', '2019-03-06 07:10:31'), (44, 1, 42, 1, 1, 1, 1, '2019-03-06 08:24:21', '2019-03-06 08:24:21'), (45, 1, 43, 1, 1, 1, 1, '2019-03-11 05:53:42', '2019-03-11 05:53:42'); -- -------------------------------------------------------- -- -- Table structure for table `role_module_fields` -- DROP TABLE IF EXISTS `role_module_fields`; CREATE TABLE IF NOT EXISTS `role_module_fields` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `role_id` int(10) UNSIGNED NOT NULL, `field_id` int(10) UNSIGNED NOT NULL, `access` enum('invisible','readonly','write') COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `role_module_fields_role_id_foreign` (`role_id`), KEY `role_module_fields_field_id_foreign` (`field_id`) ) ENGINE=InnoDB AUTO_INCREMENT=234 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `role_module_fields` -- INSERT INTO `role_module_fields` (`id`, `role_id`, `field_id`, `access`, `created_at`, `updated_at`) VALUES (1, 1, 1, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (2, 1, 2, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (3, 1, 3, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (4, 1, 4, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (5, 1, 5, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (6, 1, 6, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (7, 1, 7, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (8, 1, 8, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (9, 1, 9, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (10, 1, 10, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (11, 1, 11, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (12, 1, 12, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (13, 1, 13, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (14, 1, 14, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (15, 1, 15, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (16, 1, 16, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (17, 1, 17, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (18, 1, 18, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (19, 1, 19, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (20, 1, 20, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (21, 1, 21, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (22, 1, 22, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (23, 1, 23, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (24, 1, 24, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (25, 1, 25, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (26, 1, 26, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (27, 1, 27, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (28, 1, 28, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (29, 1, 29, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (30, 1, 30, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (31, 1, 31, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (32, 1, 32, 'write', '2019-02-22 06:24:06', '2019-02-22 06:24:06'), (35, 2, 1, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (36, 2, 2, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (37, 2, 3, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (38, 2, 4, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (39, 2, 5, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (40, 2, 6, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (41, 2, 7, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (42, 2, 8, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (43, 2, 9, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (44, 2, 10, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (45, 2, 11, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (46, 2, 12, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (47, 2, 13, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (48, 2, 14, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (49, 2, 15, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (50, 2, 16, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (51, 2, 17, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (52, 2, 18, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (53, 2, 19, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (54, 2, 20, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (55, 2, 21, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (56, 2, 22, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (57, 2, 23, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (58, 2, 24, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (59, 2, 25, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (60, 2, 26, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (61, 2, 27, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (62, 2, 28, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (63, 2, 29, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (64, 2, 30, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (65, 2, 31, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (66, 2, 32, 'readonly', '2019-02-22 06:28:33', '2019-02-22 06:28:33'), (67, 1, 35, 'write', '2019-02-22 06:29:05', '2019-02-22 06:29:05'), (68, 1, 36, 'write', '2019-02-22 06:30:24', '2019-02-22 06:30:24'), (81, 1, 49, 'write', '2019-02-22 06:46:11', '2019-02-22 06:46:11'), (82, 1, 50, 'write', '2019-02-22 06:57:19', '2019-02-22 06:57:19'), (83, 1, 51, 'write', '2019-02-22 06:57:36', '2019-02-22 06:57:36'), (84, 1, 52, 'write', '2019-02-22 06:57:51', '2019-02-22 06:57:51'), (85, 1, 53, 'write', '2019-02-22 06:58:12', '2019-02-22 06:58:12'), (86, 1, 54, 'write', '2019-02-22 06:59:49', '2019-02-22 06:59:49'), (87, 1, 55, 'write', '2019-02-22 07:05:30', '2019-02-22 07:05:30'), (88, 1, 56, 'write', '2019-02-22 07:06:09', '2019-02-22 07:06:09'), (89, 1, 57, 'write', '2019-02-22 07:06:27', '2019-02-22 07:06:27'), (90, 1, 58, 'write', '2019-02-22 07:07:52', '2019-02-22 07:07:52'), (95, 1, 63, 'write', '2019-02-22 07:13:25', '2019-02-22 07:13:25'), (96, 1, 64, 'write', '2019-02-22 07:13:38', '2019-02-22 07:13:38'), (97, 1, 65, 'write', '2019-02-22 07:13:55', '2019-02-22 07:13:55'), (98, 1, 66, 'write', '2019-02-22 07:14:09', '2019-02-22 07:14:09'), (99, 1, 67, 'write', '2019-02-22 07:14:22', '2019-02-22 07:14:22'), (100, 1, 68, 'write', '2019-02-22 07:15:59', '2019-02-22 07:15:59'), (101, 1, 69, 'write', '2019-02-22 07:24:54', '2019-02-22 07:24:54'), (102, 1, 70, 'write', '2019-02-22 07:26:05', '2019-02-22 07:26:05'), (103, 1, 71, 'write', '2019-02-22 07:26:25', '2019-02-22 07:26:25'), (104, 1, 72, 'write', '2019-02-22 07:26:43', '2019-02-22 07:26:43'), (105, 1, 73, 'write', '2019-02-22 07:27:04', '2019-02-22 07:27:04'), (106, 1, 74, 'write', '2019-02-22 07:33:07', '2019-02-22 07:33:07'), (107, 1, 75, 'write', '2019-02-22 07:33:28', '2019-02-22 07:33:28'), (108, 1, 76, 'write', '2019-02-22 07:33:49', '2019-02-22 07:33:49'), (109, 1, 77, 'write', '2019-02-22 07:34:08', '2019-02-22 07:34:08'), (110, 1, 78, 'write', '2019-02-22 07:34:30', '2019-02-22 07:34:30'), (116, 1, 84, 'write', '2019-02-22 07:50:59', '2019-02-22 07:50:59'), (117, 1, 85, 'write', '2019-02-22 07:53:15', '2019-02-22 07:53:15'), (118, 1, 86, 'write', '2019-02-22 07:53:27', '2019-02-22 07:53:27'), (119, 1, 87, 'write', '2019-02-22 08:08:41', '2019-02-22 08:08:41'), (120, 1, 88, 'write', '2019-02-22 08:09:00', '2019-02-22 08:09:00'), (121, 1, 89, 'write', '2019-02-22 08:09:16', '2019-02-22 08:09:16'), (122, 1, 90, 'write', '2019-02-22 08:09:37', '2019-02-22 08:09:37'), (123, 1, 91, 'write', '2019-02-22 08:09:54', '2019-02-22 08:09:54'), (124, 1, 92, 'write', '2019-02-22 08:11:18', '2019-02-22 08:11:18'), (125, 1, 93, 'write', '2019-02-22 08:11:28', '2019-02-22 08:11:28'), (126, 1, 94, 'write', '2019-02-22 08:11:44', '2019-02-22 08:11:44'), (127, 1, 95, 'write', '2019-02-22 08:12:12', '2019-02-22 08:12:12'), (128, 1, 96, 'write', '2019-02-22 08:12:28', '2019-02-22 08:12:28'), (129, 1, 97, 'write', '2019-02-22 08:12:51', '2019-02-22 08:12:51'), (130, 1, 98, 'write', '2019-02-22 08:13:10', '2019-02-22 08:13:10'), (131, 1, 99, 'write', '2019-02-22 08:19:24', '2019-02-22 08:19:24'), (132, 1, 100, 'write', '2019-02-22 08:19:45', '2019-02-22 08:19:45'), (133, 1, 101, 'write', '2019-02-22 08:19:54', '2019-02-22 08:19:54'), (134, 1, 102, 'write', '2019-02-22 08:24:29', '2019-02-22 08:24:29'), (135, 1, 103, 'write', '2019-02-22 08:25:05', '2019-02-22 08:25:05'), (136, 1, 104, 'write', '2019-02-22 08:25:24', '2019-02-22 08:25:24'), (137, 1, 105, 'write', '2019-02-22 08:28:49', '2019-02-22 08:28:49'), (138, 1, 106, 'write', '2019-02-22 08:50:33', '2019-02-22 08:50:33'), (139, 1, 107, 'write', '2019-02-22 08:50:48', '2019-02-22 08:50:48'), (140, 1, 108, 'write', '2019-02-22 08:51:00', '2019-02-22 08:51:00'), (143, 1, 111, 'write', '2019-02-22 08:54:33', '2019-02-22 08:54:33'), (144, 1, 112, 'write', '2019-02-22 08:55:15', '2019-02-22 08:55:15'), (145, 1, 113, 'write', '2019-02-22 08:55:28', '2019-02-22 08:55:28'), (146, 1, 114, 'write', '2019-02-22 08:56:10', '2019-02-22 08:56:10'), (148, 1, 116, 'write', '2019-02-22 08:57:04', '2019-02-22 08:57:04'), (149, 1, 117, 'write', '2019-02-22 08:59:43', '2019-02-22 08:59:43'), (152, 1, 120, 'write', '2019-02-25 05:18:31', '2019-02-25 05:18:31'), (154, 1, 122, 'write', '2019-02-25 08:52:13', '2019-02-25 08:52:13'), (155, 1, 123, 'write', '2019-02-26 05:22:56', '2019-02-26 05:22:56'), (156, 1, 124, 'write', '2019-02-26 05:26:04', '2019-02-26 05:26:04'), (157, 1, 125, 'write', '2019-02-26 06:08:19', '2019-02-26 06:08:19'), (158, 1, 126, 'write', '2019-02-26 06:08:33', '2019-02-26 06:08:33'), (159, 1, 127, 'write', '2019-02-26 06:08:51', '2019-02-26 06:08:51'), (160, 1, 128, 'write', '2019-02-26 06:09:10', '2019-02-26 06:09:10'), (161, 1, 129, 'write', '2019-02-26 06:09:23', '2019-02-26 06:09:23'), (162, 1, 130, 'write', '2019-02-26 06:09:39', '2019-02-26 06:09:39'), (163, 1, 131, 'write', '2019-02-26 06:09:50', '2019-02-26 06:09:50'), (164, 1, 132, 'write', '2019-02-26 06:10:25', '2019-02-26 06:10:25'), (165, 1, 133, 'write', '2019-02-26 06:10:48', '2019-02-26 06:10:48'), (174, 1, 142, 'write', '2019-02-27 03:06:07', '2019-02-27 03:06:07'), (175, 1, 143, 'write', '2019-02-27 05:18:41', '2019-02-27 05:18:41'), (179, 1, 147, 'write', '2019-03-05 06:55:45', '2019-03-05 06:55:45'), (180, 1, 148, 'write', '2019-03-05 06:55:58', '2019-03-05 06:55:58'), (181, 1, 149, 'write', '2019-03-05 06:56:30', '2019-03-05 06:56:30'), (182, 1, 150, 'write', '2019-03-05 07:49:56', '2019-03-05 07:49:56'), (183, 1, 151, 'write', '2019-03-05 07:50:08', '2019-03-05 07:50:08'), (184, 1, 152, 'write', '2019-03-05 07:50:41', '2019-03-05 07:50:41'), (185, 1, 153, 'write', '2019-03-05 07:52:02', '2019-03-05 07:52:02'), (186, 1, 154, 'write', '2019-03-05 07:52:56', '2019-03-05 07:52:56'), (187, 1, 155, 'write', '2019-03-05 07:53:17', '2019-03-05 07:53:17'), (188, 1, 156, 'write', '2019-03-05 07:53:50', '2019-03-05 07:53:50'), (189, 1, 157, 'write', '2019-03-05 07:54:08', '2019-03-05 07:54:08'), (190, 1, 158, 'write', '2019-03-05 07:54:27', '2019-03-05 07:54:27'), (191, 1, 159, 'write', '2019-03-05 08:08:58', '2019-03-05 08:08:58'), (192, 1, 160, 'write', '2019-03-05 08:09:09', '2019-03-05 08:09:09'), (193, 1, 161, 'write', '2019-03-05 08:09:21', '2019-03-05 08:09:21'), (194, 1, 162, 'write', '2019-03-05 08:09:39', '2019-03-05 08:09:39'), (195, 1, 163, 'write', '2019-03-05 08:34:05', '2019-03-05 08:34:05'), (196, 1, 164, 'write', '2019-03-05 08:34:19', '2019-03-05 08:34:19'), (197, 1, 165, 'write', '2019-03-05 08:34:39', '2019-03-05 08:34:39'), (198, 1, 166, 'write', '2019-03-05 08:35:03', '2019-03-05 08:35:03'), (199, 1, 167, 'write', '2019-03-05 08:35:20', '2019-03-05 08:35:20'), (200, 1, 168, 'write', '2019-03-05 08:37:14', '2019-03-05 08:37:14'), (201, 1, 169, 'write', '2019-03-06 04:21:47', '2019-03-06 04:21:47'), (202, 1, 170, 'write', '2019-03-06 04:23:54', '2019-03-06 04:23:54'), (203, 1, 171, 'write', '2019-03-06 04:32:20', '2019-03-06 04:32:20'), (208, 1, 176, 'write', '2019-03-06 04:41:02', '2019-03-06 04:41:02'), (209, 1, 177, 'write', '2019-03-06 04:41:16', '2019-03-06 04:41:16'), (210, 1, 178, 'write', '2019-03-06 04:41:46', '2019-03-06 04:41:46'), (211, 1, 179, 'write', '2019-03-06 04:42:18', '2019-03-06 04:42:18'), (212, 1, 180, 'write', '2019-03-06 05:08:00', '2019-03-06 05:08:00'), (213, 1, 181, 'write', '2019-03-06 05:08:15', '2019-03-06 05:08:15'), (214, 1, 182, 'write', '2019-03-06 05:08:34', '2019-03-06 05:08:34'), (216, 1, 184, 'write', '2019-03-06 05:09:36', '2019-03-06 05:09:36'), (217, 1, 185, 'write', '2019-03-06 07:07:13', '2019-03-06 07:07:13'), (218, 1, 186, 'write', '2019-03-06 07:07:27', '2019-03-06 07:07:27'), (219, 1, 187, 'write', '2019-03-06 07:08:21', '2019-03-06 07:08:21'), (220, 1, 188, 'write', '2019-03-06 07:08:44', '2019-03-06 07:08:44'), (221, 1, 189, 'write', '2019-03-06 07:09:32', '2019-03-06 07:09:32'), (222, 1, 190, 'write', '2019-03-06 07:09:46', '2019-03-06 07:09:46'), (223, 1, 191, 'write', '2019-03-06 07:13:13', '2019-03-06 07:13:13'), (224, 1, 192, 'write', '2019-03-06 07:13:54', '2019-03-06 07:13:54'), (225, 1, 193, 'write', '2019-03-06 08:20:56', '2019-03-06 08:20:56'), (226, 1, 194, 'write', '2019-03-06 08:22:07', '2019-03-06 08:22:07'), (227, 1, 195, 'write', '2019-03-06 08:23:40', '2019-03-06 08:23:40'), (228, 1, 196, 'write', '2019-03-06 08:24:05', '2019-03-06 08:24:05'), (229, 1, 197, 'write', '2019-03-11 05:52:21', '2019-03-11 05:52:21'), (230, 1, 198, 'write', '2019-03-11 05:52:48', '2019-03-11 05:52:48'), (231, 1, 199, 'write', '2019-03-11 05:53:07', '2019-03-11 05:53:07'), (232, 1, 200, 'write', '2019-03-11 05:53:33', '2019-03-11 05:53:33'), (233, 1, 201, 'write', '2019-03-12 03:02:55', '2019-03-12 03:02:55'); -- -------------------------------------------------------- -- -- Table structure for table `role_user` -- DROP TABLE IF EXISTS `role_user`; CREATE TABLE IF NOT EXISTS `role_user` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `role_id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `role_user_role_id_foreign` (`role_id`), KEY `role_user_user_id_foreign` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `role_user` -- INSERT INTO `role_user` (`id`, `role_id`, `user_id`, `created_at`, `updated_at`) VALUES (1, 1, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `seasons` -- DROP TABLE IF EXISTS `seasons`; CREATE TABLE IF NOT EXISTS `seasons` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` text COLLATE utf8_unicode_ci, `landing_id` int(10) UNSIGNED NOT NULL DEFAULT '1', `image` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `seasons_landing_id_foreign` (`landing_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `seasons` -- INSERT INTO `seasons` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `text_ka`, `landing_id`, `image`) VALUES (1, NULL, '2019-03-05 07:56:29', '2019-03-06 04:26:27', 'აქტიური 4 სეზონის მაძილზე', 'აქტიური 4 სეზონის მაძილზე აქტიური 4 სეზონის მაძილზე', 1, 1), (2, NULL, '2019-03-07 04:43:45', '2019-03-07 04:43:45', 'kokhta', 'asdasd asd asd ad', 2, 8); -- -------------------------------------------------------- -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; CREATE TABLE IF NOT EXISTS `tags` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title` varchar(256) COLLATE utf8_unicode_ci DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `tags` -- INSERT INTO `tags` (`id`, `deleted_at`, `created_at`, `updated_at`, `title`) VALUES (1, NULL, '2019-02-26 05:23:31', '2019-02-26 05:23:31', 'greenzone'), (2, NULL, '2019-02-26 05:24:48', '2019-02-26 05:24:48', 'views'), (3, NULL, '2019-02-26 05:24:58', '2019-02-26 05:24:58', 'mission'); -- -------------------------------------------------------- -- -- Table structure for table `teams` -- DROP TABLE IF EXISTS `teams`; CREATE TABLE IF NOT EXISTS `teams` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `fullname_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `full_name en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `Full name ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `image` int(11) DEFAULT NULL, `position_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `position_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `position_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `active` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `teams` -- INSERT INTO `teams` (`id`, `deleted_at`, `created_at`, `updated_at`, `fullname_ka`, `full_name en`, `Full name ru`, `image`, `position_ka`, `position_en`, `position_ru`, `active`) VALUES (1, NULL, '2019-02-25 08:04:20', '2019-02-25 08:04:20', 'Full name ka :', NULL, NULL, 1, 'Position ka :', 'Position ka :', 'Position ka :', 1), (2, NULL, NULL, NULL, '<NAME>', 'george', NULL, NULL, NULL, NULL, NULL, 0), (3, NULL, NULL, NULL, 'vaxo', 'vakho', NULL, NULL, NULL, NULL, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `tests` -- DROP TABLE IF EXISTS `tests`; CREATE TABLE IF NOT EXISTS `tests` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `new_field` text COLLATE utf8_unicode_ci, `menu` varchar(256) COLLATE utf8_unicode_ci DEFAULT '[]', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `tests` -- INSERT INTO `tests` (`id`, `deleted_at`, `created_at`, `updated_at`, `title`, `new_field`, `menu`) VALUES (1, '2019-02-22 06:44:05', '2019-02-22 06:32:13', '2019-02-22 06:44:05', 'safsdf', 'dsfsd', NULL), (2, NULL, '2019-02-22 06:50:09', '2019-02-22 06:50:09', 'ტურები', 'uuu', '[\"header\",\"burger\"]'); -- -------------------------------------------------------- -- -- Table structure for table `text_images` -- DROP TABLE IF EXISTS `text_images`; CREATE TABLE IF NOT EXISTS `text_images` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title_ka` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_en` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `title_ru` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL, `text_ka` text COLLATE utf8_unicode_ci, `text_en` text COLLATE utf8_unicode_ci, `text_ru` text COLLATE utf8_unicode_ci, `image` int(11) DEFAULT NULL, `active` tinyint(1) DEFAULT '1', `tag_id` int(10) UNSIGNED DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `text_images` -- INSERT INTO `text_images` (`id`, `deleted_at`, `created_at`, `updated_at`, `title_ka`, `title_en`, `title_ru`, `text_ka`, `text_en`, `text_ru`, `image`, `active`, `tag_id`) VALUES (1, NULL, '2019-02-26 06:12:02', '2019-02-26 06:14:13', 'სათაური', NULL, NULL, 'ტექსტი ქართულად', NULL, NULL, 5, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `uploads` -- DROP TABLE IF EXISTS `uploads`; CREATE TABLE IF NOT EXISTS `uploads` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `path` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `extension` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `user_id` int(10) UNSIGNED NOT NULL DEFAULT '1', `public` tinyint(1) DEFAULT '0', `type` int(10) UNSIGNED DEFAULT NULL, `size` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `url` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `uploads_user_id_foreign` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `uploads` -- INSERT INTO `uploads` (`id`, `name`, `path`, `extension`, `user_id`, `public`, `type`, `size`, `url`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, '12de8d4e66b0643ac998aa928c8abda4--campfire-tumblr-tumblr-camping.jpg', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-02-22\\1.jpg', 'jpg', 1, 0, 3, '62029', 'image/2019-02-22/1.jpg', NULL, '2019-02-22 06:38:04', '2019-02-22 06:38:04'), (2, 'DMDIKcyWsAEsKDj.jpg', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-02-22\\2.jpg', 'jpg', 1, 0, 3, '354449', 'image/2019-02-22/2.jpg', NULL, '2019-02-22 07:22:29', '2019-02-22 07:22:30'), (3, 'wallpaper2you_404548.jpg', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-02-22\\3.jpg', 'jpg', 1, 0, 3, '527134', 'image/2019-02-22/3.jpg', NULL, '2019-02-22 07:22:59', '2019-02-22 07:23:00'), (4, 'batumi3.jpg', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-02-22\\4.jpg', 'jpg', 1, 0, 3, '189194', 'image/2019-02-22/4.jpg', NULL, '2019-02-22 08:26:10', '2019-02-22 08:26:10'), (5, 'Random_Wallpaper_NexusandMe-102.jpg', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-02-26\\5.jpg', 'jpg', 1, 0, 3, '946098', 'image/2019-02-26/5.jpg', NULL, '2019-02-26 06:11:53', '2019-02-26 06:11:53'), (6, 'about_project.png', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-03-05\\6.png', 'png', 1, 0, 3, '791022', 'image/2019-03-05/6.png', NULL, '2019-03-05 08:12:57', '2019-03-05 08:12:58'), (7, 'bg1.png', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-03-05\\7.png', 'png', 1, 0, 3, '1183560', 'image/2019-03-05/7.png', NULL, '2019-03-05 08:13:02', '2019-03-05 08:13:03'), (8, 'flat.png', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-03-05\\8.png', 'png', 1, 0, 3, '683801', 'image/2019-03-05/8.png', NULL, '2019-03-05 08:13:03', '2019-03-05 08:13:04'), (9, 'summary.png', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-03-05\\9.png', 'png', 1, 0, 3, '982552', 'image/2019-03-05/9.png', NULL, '2019-03-05 08:13:04', '2019-03-05 08:13:04'), (10, '268A2809 copy copy copy.png', 'C:\\wamp64\\www\\code_online\\lisi.digitalmate.io\\public\\files\\image\\2019-03-06\\10.png', 'png', 1, 0, 3, '939499', 'image/2019-03-06/10.png', NULL, '2019-03-06 04:25:17', '2019-03-06 04:25:17'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `context_id` int(10) UNSIGNED DEFAULT '0', `email` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(250) COLLATE utf8_unicode_ci DEFAULT '', `type` varchar(191) COLLATE utf8_unicode_ci DEFAULT 'Employee', `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `context_id`, `email`, `password`, `type`, `remember_token`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'admin', 1, '<EMAIL>', <PASSWORD>', 'Employee', NULL, NULL, '2019-02-22 06:24:25', '2019-02-22 06:24:25'); -- -- Constraints for dumped tables -- -- -- Constraints for table `about_projects` -- ALTER TABLE `about_projects` ADD CONSTRAINT `about_projects_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `aparatmnets` -- ALTER TABLE `aparatmnets` ADD CONSTRAINT `aparatmnets_floor_foreign` FOREIGN KEY (`floor`) REFERENCES `floors` (`id`); -- -- Constraints for table `blocks` -- ALTER TABLE `blocks` ADD CONSTRAINT `blocks_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`); -- -- Constraints for table `employees` -- ALTER TABLE `employees` ADD CONSTRAINT `employees_dept_foreign` FOREIGN KEY (`dept`) REFERENCES `departments` (`id`); -- -- Constraints for table `green_zones` -- ALTER TABLE `green_zones` ADD CONSTRAINT `green_zones_tag_id_foreign` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`); -- -- Constraints for table `landing_apartments` -- ALTER TABLE `landing_apartments` ADD CONSTRAINT `landing_apartments_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `landing_footers` -- ALTER TABLE `landing_footers` ADD CONSTRAINT `landing_footers_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `landing_homes` -- ALTER TABLE `landing_homes` ADD CONSTRAINT `landing_homes_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `landing_socials` -- ALTER TABLE `landing_socials` ADD CONSTRAINT `landing_socials_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `module_fields` -- ALTER TABLE `module_fields` ADD CONSTRAINT `module_fields_field_type_foreign` FOREIGN KEY (`field_type`) REFERENCES `module_field_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `module_fields_module_foreign` FOREIGN KEY (`module`) REFERENCES `modules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `permission_role` -- ALTER TABLE `permission_role` ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `project_infos` -- ALTER TABLE `project_infos` ADD CONSTRAINT `project_infos_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `project_summaries` -- ALTER TABLE `project_summaries` ADD CONSTRAINT `project_summaries_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `roles` -- ALTER TABLE `roles` ADD CONSTRAINT `roles_dept_foreign` FOREIGN KEY (`dept`) REFERENCES `departments` (`id`), ADD CONSTRAINT `roles_parent_foreign` FOREIGN KEY (`parent`) REFERENCES `roles` (`id`); -- -- Constraints for table `role_module` -- ALTER TABLE `role_module` ADD CONSTRAINT `role_module_module_id_foreign` FOREIGN KEY (`module_id`) REFERENCES `modules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `role_module_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `role_module_fields` -- ALTER TABLE `role_module_fields` ADD CONSTRAINT `role_module_fields_field_id_foreign` FOREIGN KEY (`field_id`) REFERENCES `module_fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `role_module_fields_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `role_user` -- ALTER TABLE `role_user` ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `seasons` -- ALTER TABLE `seasons` ADD CONSTRAINT `seasons_landing_id_foreign` FOREIGN KEY (`landing_id`) REFERENCES `landings` (`id`); -- -- Constraints for table `uploads` -- ALTER TABLE `uploads` ADD CONSTRAINT `uploads_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>galenguyer/bartender CREATE TABLE machines ( "id" SERIAL PRIMARY KEY, "name" VARCHAR(255) NOT NULL, "display_name" VARCHAR(255) NOT NULL, "active" BOOLEAN NOT NULL DEFAULT true ); CREATE TABLE items ( "id" SERIAL PRIMARY KEY, "name" VARCHAR(255) NOT NULL, "price" INTEGER ); CREATE TABLE slots ( "machine" INTEGER NOT NULL, "number" INTEGER NOT NULL, "item" INTEGER, "active" BOOLEAN NOT NULL DEFAULT false, "count" INTEGER, PRIMARY KEY (machine, "number"), CONSTRAINT fk_machine FOREIGN KEY (machine) REFERENCES machines(id) ON DELETE CASCADE, CONSTRAINT fk_item FOREIGN KEY (item) REFERENCES items(id) ON DELETE CASCADE );
DROP USER 'localusr'@'localhost'; CREATE USER 'localusr'@'localhost' IDENTIFIED BY '<PASSWORD>'; GRANT DELETE, INSERT, SELECT, UPDATE ON inspectordb.* TO 'localusr'@'localhost'; DROP USER 'lnetusr'@'192.168.1.0/255.255.255.0'; CREATE USER 'lnetusr'@'192.168.1.0/255.255.255.0' IDENTIFIED BY '<PASSWORD>'; GRANT DELETE, INSERT, SELECT, UPDATE ON inspectordb.* TO 'lnetusr'@'192.168.1.0/255.255.255.0'; DROP USER 'rmtusr'@'%'; CREATE USER 'rmtusr'@'%' IDENTIFIED BY '<PASSWORD>'; GRANT DELETE, INSERT, SELECT, UPDATE ON inspectordb.* TO 'rmtusr'@'%';
/* Keep this due MS compatibility l:see LICENSE file g:utility r:091128\s.zaglio: added group and continued develop r:090921\s.zaglio: select source code of @obj withhtml t:sp__script_tohtml 'sp__script_tohtml' */ create proc [dbo].[sp__script_parse] @obj sysname=null, @dbg smallint=0 -- enable print of debug info as begin set nocount on if @dbg>=@@nestlevel exec sp__printf 'level of debugging:%d',@@nestlevel -- declarations declare @proc sysname, -- for sp__trace @msg nvarchar(4000),-- generic messages @sql nvarchar(4000),-- for inner sql @ret int, -- return ok if 0 error if <0 or a value if >0 @err int, -- user for pure sql statements @i int,@n int, -- generix index variables @timer datetime, -- used to trace times @token sysname, @tl sysname, @p int, @in_comment_line bit, @in_comment bit, @in_string bit, @line nvarchar(4000),@html nvarchar(4000), @step int, @end_declare bit -- close the declaration section so can add -- a new in the middle -- specific declarations; is better keep all on top declare @name sysname -- generic name/string declare @array table (id int identity,name sysname) -- generic list -- initialization select @proc='sp__script_tohtml', @ret=0 -- exec sp__elapsed @timer out,'** init of sp__style: ' -- parameters check if @obj is null goto help /* ================================ body ================================== */ -- sp__script create table #src (lno int identity(10,10),line nvarchar(4000)) exec sp__script @obj,@out='#src' select @in_comment=0,@in_comment_line=0,@in_string=0,@step=10 select @i=min(lno),@n=max(lno) from #src exec sp__printf '%s\n%s','<html>','<body>' while (@i<=@n) begin select @line=line from #src where lno=@i select @i=@i+@step -- follows tockens if @line is null exec sp__printf '<br>' else begin select @p=null,@tl=null,@html='' while (@p is null or (@p!=0 and @p<len(@line))) begin select @token=null exec sp__token @line,@token out,@p out,@tl=@tl out, @in_comment_line=@in_comment_line out, @in_comment=@in_comment out, @in_string=@in_string out -- sp__Script 'fn__token_sql' if dbo.fn__token_sql(@token)=1 -- and @in_comment=0 and @in_comment_line=0 -- and @in_string=0 select @html=@html+@tl+'<b>'+@token+'</b>' else select @html=@html+@tl+coalesce(@token ,'') -- exec sp__printf '[%s](%s)',@tl,@token if @token is null break end -- token scans exec sp__printf '%s<br>',@html end -- if not blank line end -- lines exec sp__printf '%s\n%s','</body>','</html>' drop table #src goto ret -- end of body /* =============================== errors ================================= */ err: -- init of error management /* ================================ help ================================== */ help: exec sp__usage @proc select @msg=null,@ret=-1 -- generic Help error ret: -- procedure end...is better than return if not @msg is null begin exec sp__printf @msg -- exec sp__trace @msg,@last_id=@ret out,@proc=@proc end return @ret end -- proc
-- Also known as an OUI -- https://standards.ieee.org/develop/regauth/oui/oui.csv CREATE TABLE IF NOT EXISTS IEEEAssignedLargeMediaAccessControlAddressBlocks ( assignedPrefix INTEGER UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL, privateRegistration BOOLEAN NULL ); -- https://standards.ieee.org/develop/regauth/oui28/mam.csv CREATE TABLE IF NOT EXISTS IEEEAssignedMediumMediaAccessControlAddressBlocks ( assignedPrefix INTEGER UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL, privateRegistration BOOLEAN NULL ); -- Also known as an OUI-36 -- https://standards.ieee.org/develop/regauth/oui36/oui36.csv CREATE TABLE IF NOT EXISTS IEEEAssignedSmallMediaAccessControlAddressBlocks ( assignedPrefix BIGINT UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL, privateRegistration BOOLEAN NULL ); -- https://standards.ieee.org/develop/regauth/cid/cid.csv CREATE TABLE IF NOT EXISTS IEEEAssignedCompanyIDs ( id INTEGER UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL, privateRegistration BOOLEAN NULL ); -- https://standards.ieee.org/develop/regauth/ethertype/eth.csv CREATE TABLE IF NOT EXISTS IEEEAssignedEthertypes ( assignedNumber SMALLINT UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL, privateRegistration BOOLEAN NULL, protocolName VARCHAR(128) NULL ); -- https://standards.ieee.org/develop/regauth/manid/manid.csv CREATE TABLE IF NOT EXISTS IEEEAssignedManufacturerIDs ( assignedNumber SMALLINT UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL ); -- https://standards.ieee.org/develop/regauth/bopid/opid.csv CREATE TABLE IF NOT EXISTS IEEEAssignedOperatorIDs ( assignedNumber INTEGER UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NULL, registrantAddress TINYTEXT NULL ); -- https://standards.ieee.org/develop/regauth/iab/iab.csv CREATE TABLE IF NOT EXISTS IEEEAssignedIndividualAddressBlocks ( assignedNumber BIGINT UNSIGNED NOT NULL PRIMARY KEY, registrant VARCHAR(64) NOT NULL, registrantAddress TINYTEXT NOT NULL ); -- TODO: Logical Link Control LSAP Address assignments http://standards.ieee.org/develop/regauth/llc/public.html -- TODO: Standards Group Assignments http://standards.ieee.org/develop/regauth/grpmac/public.html -- TODO: Silo Type Identifier Assignments http://standards.ieee.org/develop/regauth/stid/public.html -- TODO: Provider Service Identifier Assignments http://standards.ieee.org/develop/regauth/psid/public.html
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Apr 05, 2019 at 05:49 AM -- Server version: 10.1.13-MariaDB -- PHP Version: 5.6.21 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `parkir` -- -- -------------------------------------------------------- -- -- Table structure for table `jenis_kendaraan` -- CREATE TABLE `jenis_kendaraan` ( `id_jeniskendaraan` int(11) NOT NULL, `jenis_kendaraan` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `jenis_kendaraan` -- INSERT INTO `jenis_kendaraan` (`id_jeniskendaraan`, `jenis_kendaraan`) VALUES (1, 'Roda 4'), (2, 'Roda 2'); -- -------------------------------------------------------- -- -- Table structure for table `lokasi` -- CREATE TABLE `lokasi` ( `id_lokasi` varchar(11) NOT NULL, `id_target` int(11) NOT NULL, `id_peralatan` varchar(11) NOT NULL, `lokasi` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `lokasi` -- INSERT INTO `lokasi` (`id_lokasi`, `id_target`, `id_peralatan`, `lokasi`) VALUES ('LKS001', 1, 'PLR001', 'Wisata air panas semurup'), ('LKS002', 1, 'PLR001', 'Wisata air panas sungai medang'), ('LKS003', 1, 'PLR001', 'Wisata Aroma Peco Kayu Aro'), ('LKS004', 1, 'PLR001', 'Wisata Danau Kerinci '), ('LKS005', 1, 'PLR001', 'WIsata Air Terjun Kayo Aru'), ('LKS006', 1, 'PLR002', 'Pelataran Depati Parbo'), ('LKS007', 1, 'PLR003', 'Halaman UGD'), ('LKS008', 1, 'PLR003', 'Halaman Kantor RSU'), ('LKS009', 2, 'PLR004', 'Pasar Pekan Tamiai'), ('LKS010', 2, 'PLR004', 'Pasar Pekan Jujun'), ('LKS011', 2, 'PLR004', 'Pasar Pekan Senggarang Agung'), ('LKS012', 2, 'PLR004', 'Pasar Pekan Hiang'), ('LKS013', 2, 'PLR004', 'Pasar Pringsewu'), ('LKS014', 2, 'PLR004', 'Pasar Metro'), ('LKS015', 2, 'PLR004', 'Pasar Pekan Bedeng VIII'), ('LKS016', 2, 'PLR004', 'Pasar Pekan Tua'), ('LKS017', 2, 'PLR004', 'Pasar Pelompek'), ('LKS018', 2, 'PLR004', 'Jalan Raya Soekarno - Hatta'), ('LKS019', 2, 'PLR005', 'Wisata Air Terjun'), ('LKS020', 2, 'PLR004', 'Jalan Raya Dewisartika'), ('LKS021', 5, 'PLR008', 'Lab'); -- -------------------------------------------------------- -- -- Table structure for table `parkir` -- CREATE TABLE `parkir` ( `no_parkir` varchar(11) NOT NULL, `no_polisi` varchar(11) NOT NULL, `tanggal` datetime NOT NULL, `id_jeniskendaraan` int(11) NOT NULL, `id_target` int(11) NOT NULL, `id_peralatan` varchar(11) NOT NULL, `id_lokasi` varchar(11) NOT NULL, `retribusi` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `parkir` -- INSERT INTO `parkir` (`no_parkir`, `no_polisi`, `tanggal`, `id_jeniskendaraan`, `id_target`, `id_peralatan`, `id_lokasi`, `retribusi`) VALUES ('PRK000001', 'BE 3201 FE', '2019-03-25 07:15:22', 2, 1, 'PLR008', 'LKS021', 3000), ('PRK000002', 'BE 8588 AD', '2019-03-25 07:16:20', 1, 2, 'PLR002', 'LKS019', 3000), ('PRK000003', 'BE 8525 AD', '2019-03-25 07:35:41', 1, 1, 'PLR003', 'LKS007', 4000), ('PRK000004', 'BE 8525 AD', '2019-03-28 12:27:23', 1, 2, 'PLR001', 'LKS004', 3000), ('PRK000005', 'BE 9444 LL', '2019-03-28 12:34:52', 2, 2, 'PLR004', 'LKS018', 2000), ('PRK000006', 'BE 50 K', '2019-04-01 06:19:53', 1, 2, 'PLR004', 'LKS020', 3000), ('PRK000007', 'DK 3813 H', '2019-04-01 07:33:39', 2, 1, 'PLR008', 'LKS021', 3000), ('PRK000008', 'BE 3271 FE', '2019-04-01 08:08:27', 1, 1, 'PLR001', 'LKS005', 4000), ('PRK000009', 'BE 3201 FE', '2019-04-01 08:21:22', 2, 1, 'PLR002', 'LKS010', 3000); -- -------------------------------------------------------- -- -- Table structure for table `peralatan` -- CREATE TABLE `peralatan` ( `id_peralatan` varchar(11) NOT NULL, `id_target` int(11) NOT NULL, `peralatan` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `peralatan` -- INSERT INTO `peralatan` (`id_peralatan`, `id_target`, `peralatan`) VALUES ('PLR001', 1, 'Objek Wisata'), ('PLR002', 1, 'Pelataran Depati Parbo'), ('PLR003', 1, 'RSUD Mumamdiyah Metro'), ('PLR004', 2, 'Tepi Jalan'), ('PLR005', 1, 'Objek Wisata Air Terjun'), ('PLR006', 1, 'Monumen Kota Metro'), ('PLR007', 2, 'Wisata Way Kambas'), ('PLR008', 5, 'Kampus'), ('PLR009', 1, 'Palu'); -- -------------------------------------------------------- -- -- Table structure for table `target` -- CREATE TABLE `target` ( `id_target` int(11) NOT NULL, `target` varchar(15) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `target` -- INSERT INTO `target` (`id_target`, `target`) VALUES (1, 'Khusus'), (2, 'Umum'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `id_user` int(128) NOT NULL, `nama` varchar(30) NOT NULL, `email` varchar(128) NOT NULL, `password` varchar(128) NOT NULL, `level` varchar(30) NOT NULL, `is_active` int(11) NOT NULL, `date_create` int(11) NOT NULL, `reset_password` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`id_user`, `nama`, `email`, `password`, `level`, `is_active`, `date_create`, `reset_password`) VALUES (1, 'Pimpinan', '<EMAIL>', <PASSWORD>93laoFIvPK.jVId/1tXxGiWfwjv0rKMNz7S57Palu.', 'Pimpinan', 1, 1552847014, '0'), (2, '<NAME>', '<EMAIL>', <PASSWORD>', 'Admin', 1, 1552847135, '0'), (3, 'Administrator', '<EMAIL>', <PASSWORD>', 'Admin', 0, 1552854259, '0'), (4, '<NAME>', '<EMAIL>', <PASSWORD>', 'Petugas', 1, 1553245833, '0'), (5, '<NAME>', '<EMAIL>', <PASSWORD>', 'Admin', 1, 1553515896, '0'), (6, 'Hello Nanda', '<EMAIL>', <PASSWORD>', 'Admin', 1, 1554114413, '0'), (7, 'I Putu Yuda Danan Jaya', '<EMAIL>', <PASSWORD>YGTawqYS.ZtS36dE6ofWH3XTaEYEt3eV0wYxXmU2', 'Petugas', 1, 1554118298, '0'), (8, 'apa', '<EMAIL>', <PASSWORD>', 'Petugas', 1, 1554120428, '0'), (9, '<NAME>', '<EMAIL>', <PASSWORD>', 'Petugas', 0, 1554121129, ''), (10, '<NAME>', '<EMAIL>', <PASSWORD>', 'Petugas', 0, 1554121156, ''); -- -- Indexes for dumped tables -- -- -- Indexes for table `jenis_kendaraan` -- ALTER TABLE `jenis_kendaraan` ADD PRIMARY KEY (`id_jeniskendaraan`); -- -- Indexes for table `lokasi` -- ALTER TABLE `lokasi` ADD PRIMARY KEY (`id_lokasi`); -- -- Indexes for table `parkir` -- ALTER TABLE `parkir` ADD PRIMARY KEY (`no_parkir`); -- -- Indexes for table `peralatan` -- ALTER TABLE `peralatan` ADD PRIMARY KEY (`id_peralatan`); -- -- Indexes for table `target` -- ALTER TABLE `target` ADD PRIMARY KEY (`id_target`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id_user`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `jenis_kendaraan` -- ALTER TABLE `jenis_kendaraan` MODIFY `id_jeniskendaraan` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `target` -- ALTER TABLE `target` MODIFY `id_target` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `id_user` int(128) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>knaw-huc/elucidate-server<filename>elucidate-server/src/main/resources/database/sql/migrations/v003/03_add_search_by_range.sql<gh_stars>0 --DROP FUNCTION public.annotation_search_by_range(character varying, character varying, integer, integer); CREATE FUNCTION public.annotation_search_by_range( _targetid character varying, _selectortype character varying, _rangestart integer, _rangeend integer) RETURNS SETOF public.annotation_get AS $BODY$ BEGIN RETURN QUERY SELECT DISTINCT a.annotationid, a.cachekey, ac.collectionid, a.createddatetime, a.deleted, a.json, a.modifieddatetime, a.id, ao.user_id as ownerid, agm.group_ids FROM annotation AS a LEFT JOIN annotation_collection AS ac ON a.collectionid = ac.id LEFT JOIN annotation_target AS at ON at.annotationid = a.id LEFT JOIN annotation_owner ao ON ao.annotation_id = a.id LEFT JOIN annotation_group_memberships agm ON agm.annotation_id = a.id WHERE at.targetiri = _targetid OR at.sourceiri = _targetid AND JSONB_PATH_EXISTS( at.json, format( '$."http://www.w3.org/ns/oa#hasSelector"[*] ? (@."@type" == "%s" && @."http://www.w3.org/ns/oa#start"[0]."@value" >= %s && @."http://www.w3.org/ns/oa#end"[0]."@value" <= %s)', _selectortype, _rangestart, _rangeend )::jsonpath ) AND a.deleted = false AND at.deleted = false; END; $BODY$ LANGUAGE plpgsql VOLATILE COST 100 ROWS 1000; ALTER FUNCTION public.annotation_search_by_range(character varying, character varying, integer, integer) OWNER TO postgres; GRANT EXECUTE ON FUNCTION public.annotation_search_by_range(character varying, character varying, integer, integer) TO postgres; GRANT EXECUTE ON FUNCTION public.annotation_search_by_range(character varying, character varying, integer, integer) TO annotations_role; REVOKE ALL ON FUNCTION public.annotation_search_by_range(character varying, character varying, integer, integer) FROM public; -- usage example: -- select * from public.annotation_search_by_range('https://demorepo.tt.di.huc.knaw.nl/task/find/volume-1728/contents', 'urn:example:republic:TextAnchorSelector', 55900, 55990); --
<filename>db/migrations/001_init_database.up.sql create table if not exists users( id INTEGER NOT NULL PRIMARY KEY, name VARCHAR, hash VARCHAR, token VARCHAR, created DATETIME DEFAULT CURRENT_TIMESTAMP, updated DATETIME DEFAULT CURRENT_TIMESTAMP );
<gh_stars>0 SELECT nomeproduto, nomecategoria FROM produtos AS p INNER JOIN categorias AS c ON p.categoriaID = c.categoriaID
-- Revert yabon-prono:bet-with-gain from pg BEGIN; DROP VIEW bet_with_gain; COMMIT;
<gh_stars>1-10 -- Source: https://msdn.microsoft.com/en-us/library/ms175466(v=sql.110).aspx USE tempdb; GO DECLARE @myDoc XML; SET @myDoc = '<Root> <ProductDescription ProductID="1" ProductName="Road Bike"> <Features> </Features> </ProductDescription> </Root>'; SELECT @myDoc; -- insert first feature child (no need to specify as first or as last) SET @myDoc.modify('insert <Maintenance>3 year parts and labor extended maintenance is available</Maintenance> into (/Root/ProductDescription/Features)[1]'); SELECT @myDoc; -- insert second feature. We want this to be the first in sequence so use 'as first' SET @myDoc.modify('insert <Warranty>1 year parts and labor</Warranty> as first into (/Root/ProductDescription/Features)[1]'); SELECT @myDoc; -- insert third feature child. This one is the last child of <Features> so use 'as last' SELECT @myDoc; SET @myDoc.modify('insert <Material>Aluminium</Material> as last into (/Root/ProductDescription/Features)[1]'); SELECT @myDoc; -- Add fourth feature - this time as a sibling (and not a child) -- 'after' keyword is used (instead of as first or as last child) SELECT @myDoc; SET @myDoc.modify('insert <BikeFrame>Strong long lasting</BikeFrame> after (/Root/ProductDescription/Features/Material)[1]'); SELECT @myDoc; GO
-- phpMyAdmin SQL Dump -- version 4.0.4.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jul 23, 2013 at 03:37 PM -- Server version: 5.5.32 -- PHP Version: 5.3.15 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `ccbl` -- CREATE DATABASE IF NOT EXISTS `CMS_database` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `CMS_database`; -- -------------------------------------------------------- -- -- Table structure for table `pages` -- CREATE TABLE IF NOT EXISTS `pages` ( `name` varchar(60) NOT NULL, `pid` int(11) NOT NULL AUTO_INCREMENT, `description` text NOT NULL, PRIMARY KEY (`pid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `permission` -- CREATE TABLE IF NOT EXISTS `permission` ( `username` varchar(25) NOT NULL, `thingid` int(11) NOT NULL, KEY `pageid` (`thingid`), KEY `username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `things` -- CREATE TABLE IF NOT EXISTS `things` ( `type` varchar(100) NOT NULL COMMENT 'not enforced, should be known by admin', `content` text NOT NULL, `pageid` int(11) NOT NULL, `tid` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`tid`), KEY `pageid` (`pageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `username` varchar(25) NOT NULL, `password` varchar(25) NOT NULL, PRIMARY KEY (`username`), KEY `username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Constraints for dumped tables -- -- -- Constraints for table `permission` -- ALTER TABLE `permission` ADD CONSTRAINT `permission_ibfk_2` FOREIGN KEY (`username`) REFERENCES `users` (`username`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `permission_ibfk_1` FOREIGN KEY (`thingid`) REFERENCES `things` (`tid`); -- -- Constraints for table `things` -- ALTER TABLE `things` ADD CONSTRAINT `things_ibfk_1` FOREIGN KEY (`pageid`) REFERENCES `pages` (`pid`) ON DELETE CASCADE ON UPDATE CASCADE; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>truthly/pg-cbor<filename>FUNCTIONS/major_type_6.sql CREATE OR REPLACE FUNCTION cbor.major_type_6( cbor bytea, encode_binary_format text, additional_type integer, length_bytes integer, data_value numeric ) RETURNS cbor.next_state IMMUTABLE LANGUAGE plpgsql AS $$ BEGIN IF additional_type = 2 THEN RETURN ( SELECT ROW(tag_item.remainder, pg_catalog.to_jsonb(cbor.bytea_to_numeric(decode(tag_item.item#>>'{}','hex')))) FROM cbor.next_item(substring(cbor,2), encode_binary_format) AS tag_item ); ELSIF additional_type = 3 THEN RETURN ( SELECT ROW(tag_item.remainder, pg_catalog.to_jsonb(-1-cbor.bytea_to_numeric(decode(tag_item.item#>>'{}','hex')))) FROM cbor.next_item(substring(cbor,2), encode_binary_format) AS tag_item ); ELSIF additional_type = 21 THEN RETURN cbor.next_item(substring(cbor,2), 'base64url'); ELSIF additional_type = 22 THEN RETURN cbor.next_item(substring(cbor,2), 'base64'); ELSIF additional_type = 23 THEN RETURN cbor.next_item(substring(cbor,2), 'hex'); ELSIF additional_type = ANY(ARRAY[0,1,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,24,25,26,27]) THEN RETURN cbor.next_tag(substring(cbor,2+length_bytes), data_value, encode_binary_format); ELSIF additional_type >= 28 AND additional_type <= 30 THEN RAISE EXCEPTION 'a reserved value is used for additional information(%)', additional_type; ELSIF additional_type = 31 THEN RAISE EXCEPTION 'additional information 31 used with major type 6'; ELSE RAISE EXCEPTION 'not implemented, major_type %, additional_type %', 6, additional_type; END IF; END; $$;
<gh_stars>1-10 create database bancopw; use bancopw; create table tb_transacao( cd_transacao int primary key auto_increment, vl_transacao float, dt_transacao date, st_transacao varchar(50), ds_transacao varchar(255), id_forma int null, id_categoria int null, id_usuario int null); create table tb_forma( cd_forma int primary key auto_increment, ds_forma varchar(50)); create table tb_categoria( cd_categoria int primary key auto_increment, nm_categoria varchar(50)); create table tb_usuario( cd_usuario int primary key auto_increment, nm_usuario varchar(255), ds_login varchar(200), ds_senha varchar(200)); alter table tb_transacao add foreign key (id_forma) references tb_forma(cd_forma) ; alter table tb_transacao add foreign key (id_categoria) references tb_categoria(cd_categoria) ; alter table tb_transacao add foreign key (id_usuario) references tb_usuario(cd_usuario) ; insert into tb_forma(ds_forma) values ("Check"), ("Dédito"), ("Crédito"), ("Boleto"); insert into tb_categoria(nm_categoria) values ("Lazer"), ("Esporte"), ("Moradia"), ("Alimetação"); insert into tb_usuario(nm_usuario) values ("Jhonatan");
CREATE TABLE IF NOT EXISTS networkInfo ( id INTEGER PRIMARY KEY AUTOINCREMENT, version int, subversion VARCHAR(255), protocolversion int, localservices VARCHAR(255), timeoffset int, connections int, networks text, relayfee float, localaddresses text, warnings VARCHAR(255), createdAt int )
<filename>packages/types/verify/schemas/public/domains/url.sql<gh_stars>10-100 -- Verify schemas/public/domains/url on pg BEGIN; SELECT verify_type ('public.url'); ROLLBACK;
-- file:privileges.sql ln:252 expect:true SELECT * FROM atest2
<reponame>scheltwort-it-services/common_schema<gh_stars>100-1000 SET @s := 'The quick brown fox'; SELECT decode_xml(@s) = @s ;