Skip to content

Instantly share code, notes, and snippets.

@xfalcox
Created August 17, 2022 18:12
Show Gist options
  • Save xfalcox/d24639b6e884b9db70f2342a73d03b88 to your computer and use it in GitHub Desktop.
Save xfalcox/d24639b6e884b9db70f2342a73d03b88 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.3
-- Dumped by pg_dump version 14.3
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: discourse_functions; Type: SCHEMA; Schema: -; Owner: -
--
CREATE SCHEMA discourse_functions;
--
-- Name: hstore; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS hstore WITH SCHEMA public;
--
-- Name: EXTENSION hstore; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION hstore IS 'data type for storing sets of (key, value) pairs';
--
-- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public;
--
-- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams';
--
-- Name: unaccent; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS unaccent WITH SCHEMA public;
--
-- Name: EXTENSION unaccent; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION unaccent IS 'text search dictionary that removes accents';
--
-- Name: hotlinked_media_status; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE public.hotlinked_media_status AS ENUM (
'downloaded',
'too_large',
'download_failed',
'upload_create_failed'
);
--
-- Name: raise_invites_redeemed_at_readonly(); Type: FUNCTION; Schema: discourse_functions; Owner: -
--
CREATE FUNCTION discourse_functions.raise_invites_redeemed_at_readonly() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
RAISE EXCEPTION 'Discourse: redeemed_at in invites is readonly';
END
$$;
--
-- Name: raise_invites_user_id_readonly(); Type: FUNCTION; Schema: discourse_functions; Owner: -
--
CREATE FUNCTION discourse_functions.raise_invites_user_id_readonly() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
RAISE EXCEPTION 'Discourse: user_id in invites is readonly';
END
$$;
--
-- Name: raise_user_api_keys_scopes_readonly(); Type: FUNCTION; Schema: discourse_functions; Owner: -
--
CREATE FUNCTION discourse_functions.raise_user_api_keys_scopes_readonly() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
RAISE EXCEPTION 'Discourse: scopes in user_api_keys is readonly';
END
$$;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: allowed_pm_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.allowed_pm_users (
id bigint NOT NULL,
user_id integer NOT NULL,
allowed_pm_user_id integer NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: allowed_pm_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.allowed_pm_users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: allowed_pm_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.allowed_pm_users_id_seq OWNED BY public.allowed_pm_users.id;
--
-- Name: anonymous_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.anonymous_users (
id bigint NOT NULL,
user_id integer NOT NULL,
master_user_id integer NOT NULL,
active boolean NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: anonymous_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.anonymous_users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: anonymous_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.anonymous_users_id_seq OWNED BY public.anonymous_users.id;
--
-- Name: api_key_scopes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.api_key_scopes (
id bigint NOT NULL,
api_key_id integer NOT NULL,
resource character varying NOT NULL,
action character varying NOT NULL,
allowed_parameters json,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: api_key_scopes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.api_key_scopes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: api_key_scopes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.api_key_scopes_id_seq OWNED BY public.api_key_scopes.id;
--
-- Name: api_keys; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.api_keys (
id integer NOT NULL,
user_id integer,
created_by_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
allowed_ips inet[],
hidden boolean DEFAULT false NOT NULL,
last_used_at timestamp without time zone,
revoked_at timestamp without time zone,
description text,
key_hash character varying NOT NULL,
truncated_key character varying NOT NULL
);
--
-- Name: api_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.api_keys_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: api_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.api_keys_id_seq OWNED BY public.api_keys.id;
--
-- Name: application_requests; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.application_requests (
id integer NOT NULL,
date date NOT NULL,
req_type integer NOT NULL,
count integer DEFAULT 0 NOT NULL
);
--
-- Name: application_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.application_requests_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: application_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.application_requests_id_seq OWNED BY public.application_requests.id;
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: assignments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.assignments (
id bigint NOT NULL,
topic_id integer NOT NULL,
assigned_to_id integer NOT NULL,
assigned_by_user_id integer NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
assigned_to_type character varying NOT NULL,
target_id integer NOT NULL,
target_type character varying NOT NULL,
active boolean DEFAULT true,
note character varying,
status text
);
--
-- Name: assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.assignments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.assignments_id_seq OWNED BY public.assignments.id;
--
-- Name: associated_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.associated_groups (
id bigint NOT NULL,
name character varying NOT NULL,
provider_name character varying NOT NULL,
provider_id character varying NOT NULL,
last_used timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: associated_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.associated_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: associated_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.associated_groups_id_seq OWNED BY public.associated_groups.id;
--
-- Name: backup_draft_posts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.backup_draft_posts (
id bigint NOT NULL,
user_id integer NOT NULL,
post_id integer NOT NULL,
key character varying NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: backup_draft_posts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.backup_draft_posts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: backup_draft_posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.backup_draft_posts_id_seq OWNED BY public.backup_draft_posts.id;
--
-- Name: backup_draft_topics; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.backup_draft_topics (
id bigint NOT NULL,
user_id integer NOT NULL,
topic_id integer NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: backup_draft_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.backup_draft_topics_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: backup_draft_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.backup_draft_topics_id_seq OWNED BY public.backup_draft_topics.id;
--
-- Name: backup_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.backup_metadata (
id bigint NOT NULL,
name character varying NOT NULL,
value character varying
);
--
-- Name: backup_metadata_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.backup_metadata_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: backup_metadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.backup_metadata_id_seq OWNED BY public.backup_metadata.id;
--
-- Name: badge_groupings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.badge_groupings (
id integer NOT NULL,
name character varying NOT NULL,
description text,
"position" integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: badge_groupings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.badge_groupings_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: badge_groupings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.badge_groupings_id_seq OWNED BY public.badge_groupings.id;
--
-- Name: categories; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.categories (
id integer NOT NULL,
name character varying(50) NOT NULL,
color character varying(6) DEFAULT '0088CC'::character varying NOT NULL,
topic_id integer,
topic_count integer DEFAULT 0 NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
user_id integer NOT NULL,
topics_year integer DEFAULT 0,
topics_month integer DEFAULT 0,
topics_week integer DEFAULT 0,
slug character varying NOT NULL,
description text,
text_color character varying(6) DEFAULT 'FFFFFF'::character varying NOT NULL,
read_restricted boolean DEFAULT false NOT NULL,
auto_close_hours double precision,
post_count integer DEFAULT 0 NOT NULL,
latest_post_id integer,
latest_topic_id integer,
"position" integer,
parent_category_id integer,
posts_year integer DEFAULT 0,
posts_month integer DEFAULT 0,
posts_week integer DEFAULT 0,
email_in character varying,
email_in_allow_strangers boolean DEFAULT false,
topics_day integer DEFAULT 0,
posts_day integer DEFAULT 0,
allow_badges boolean DEFAULT true NOT NULL,
name_lower character varying(50) NOT NULL,
auto_close_based_on_last_post boolean DEFAULT false,
topic_template text,
contains_messages boolean,
sort_order character varying,
sort_ascending boolean,
uploaded_logo_id integer,
uploaded_background_id integer,
topic_featured_link_allowed boolean DEFAULT true,
all_topics_wiki boolean DEFAULT false NOT NULL,
show_subcategory_list boolean DEFAULT false,
num_featured_topics integer DEFAULT 3,
default_view character varying(50),
subcategory_list_style character varying(50) DEFAULT 'rows_with_featured_topics'::character varying,
default_top_period character varying(20) DEFAULT 'all'::character varying,
mailinglist_mirror boolean DEFAULT false NOT NULL,
minimum_required_tags integer DEFAULT 0 NOT NULL,
navigate_to_first_post_after_read boolean DEFAULT false NOT NULL,
search_priority integer DEFAULT 0,
allow_global_tags boolean DEFAULT false NOT NULL,
reviewable_by_group_id integer,
read_only_banner character varying,
default_list_filter character varying(20) DEFAULT 'all'::character varying,
allow_unlimited_owner_edits_on_first_post boolean DEFAULT false NOT NULL,
default_slow_mode_seconds integer
);
--
-- Name: posts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.posts (
id integer NOT NULL,
user_id integer,
topic_id integer NOT NULL,
post_number integer NOT NULL,
raw text NOT NULL,
cooked text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
reply_to_post_number integer,
reply_count integer DEFAULT 0 NOT NULL,
quote_count integer DEFAULT 0 NOT NULL,
deleted_at timestamp without time zone,
off_topic_count integer DEFAULT 0 NOT NULL,
like_count integer DEFAULT 0 NOT NULL,
incoming_link_count integer DEFAULT 0 NOT NULL,
bookmark_count integer DEFAULT 0 NOT NULL,
score double precision,
reads integer DEFAULT 0 NOT NULL,
post_type integer DEFAULT 1 NOT NULL,
sort_order integer,
last_editor_id integer,
hidden boolean DEFAULT false NOT NULL,
hidden_reason_id integer,
notify_moderators_count integer DEFAULT 0 NOT NULL,
spam_count integer DEFAULT 0 NOT NULL,
illegal_count integer DEFAULT 0 NOT NULL,
inappropriate_count integer DEFAULT 0 NOT NULL,
last_version_at timestamp without time zone NOT NULL,
user_deleted boolean DEFAULT false NOT NULL,
reply_to_user_id integer,
percent_rank double precision DEFAULT 1.0,
notify_user_count integer DEFAULT 0 NOT NULL,
like_score integer DEFAULT 0 NOT NULL,
deleted_by_id integer,
edit_reason character varying,
word_count integer,
version integer DEFAULT 1 NOT NULL,
cook_method integer DEFAULT 1 NOT NULL,
wiki boolean DEFAULT false NOT NULL,
baked_at timestamp without time zone,
baked_version integer,
hidden_at timestamp without time zone,
self_edits integer DEFAULT 0 NOT NULL,
reply_quoted boolean DEFAULT false NOT NULL,
via_email boolean DEFAULT false NOT NULL,
raw_email text,
public_version integer DEFAULT 1 NOT NULL,
action_code character varying,
locked_by_id integer,
image_upload_id bigint
);
--
-- Name: TABLE posts; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON TABLE public.posts IS 'If you want to query public posts only, use the badge_posts view.';
--
-- Name: COLUMN posts.post_number; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON COLUMN public.posts.post_number IS 'The position of this post in the topic. The pair (topic_id, post_number) forms a natural key on the posts table.';
--
-- Name: COLUMN posts.raw; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON COLUMN public.posts.raw IS 'The raw Markdown that the user entered into the composer.';
--
-- Name: COLUMN posts.cooked; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON COLUMN public.posts.cooked IS 'The processed HTML that is presented in a topic.';
--
-- Name: COLUMN posts.reply_to_post_number; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON COLUMN public.posts.reply_to_post_number IS 'If this post is a reply to another, this column is the post_number of the post it''s replying to. [FKEY posts.topic_id, posts.post_number]';
--
-- Name: COLUMN posts.reply_quoted; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON COLUMN public.posts.reply_quoted IS 'This column is true if the post contains a quote-reply, which causes the in-reply-to indicator to be absent.';
--
-- Name: topics; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topics (
id integer NOT NULL,
title character varying NOT NULL,
last_posted_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
views integer DEFAULT 0 NOT NULL,
posts_count integer DEFAULT 0 NOT NULL,
user_id integer,
last_post_user_id integer NOT NULL,
reply_count integer DEFAULT 0 NOT NULL,
featured_user1_id integer,
featured_user2_id integer,
featured_user3_id integer,
deleted_at timestamp without time zone,
highest_post_number integer DEFAULT 0 NOT NULL,
like_count integer DEFAULT 0 NOT NULL,
incoming_link_count integer DEFAULT 0 NOT NULL,
category_id integer,
visible boolean DEFAULT true NOT NULL,
moderator_posts_count integer DEFAULT 0 NOT NULL,
closed boolean DEFAULT false NOT NULL,
archived boolean DEFAULT false NOT NULL,
bumped_at timestamp without time zone NOT NULL,
has_summary boolean DEFAULT false NOT NULL,
archetype character varying DEFAULT 'regular'::character varying NOT NULL,
featured_user4_id integer,
notify_moderators_count integer DEFAULT 0 NOT NULL,
spam_count integer DEFAULT 0 NOT NULL,
pinned_at timestamp without time zone,
score double precision,
percent_rank double precision DEFAULT 1.0 NOT NULL,
subtype character varying,
slug character varying,
deleted_by_id integer,
participant_count integer DEFAULT 1,
word_count integer,
excerpt character varying,
pinned_globally boolean DEFAULT false NOT NULL,
pinned_until timestamp without time zone,
fancy_title character varying,
highest_staff_post_number integer DEFAULT 0 NOT NULL,
featured_link character varying,
reviewable_score double precision DEFAULT 0.0 NOT NULL,
image_upload_id bigint,
slow_mode_seconds integer DEFAULT 0 NOT NULL,
bannered_until timestamp without time zone,
external_id character varying,
CONSTRAINT has_category_id CHECK (((category_id IS NOT NULL) OR ((archetype)::text <> 'regular'::text))),
CONSTRAINT pm_has_no_category CHECK (((category_id IS NULL) OR ((archetype)::text <> 'private_message'::text)))
);
--
-- Name: TABLE topics; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON TABLE public.topics IS 'To query public topics only: SELECT ... FROM topics t LEFT INNER JOIN categories c ON (t.category_id = c.id AND c.read_restricted = false)';
--
-- Name: badge_posts; Type: VIEW; Schema: public; Owner: -
--
CREATE VIEW public.badge_posts AS
SELECT p.id,
p.user_id,
p.topic_id,
p.post_number,
p.raw,
p.cooked,
p.created_at,
p.updated_at,
p.reply_to_post_number,
p.reply_count,
p.quote_count,
p.deleted_at,
p.off_topic_count,
p.like_count,
p.incoming_link_count,
p.bookmark_count,
p.score,
p.reads,
p.post_type,
p.sort_order,
p.last_editor_id,
p.hidden,
p.hidden_reason_id,
p.notify_moderators_count,
p.spam_count,
p.illegal_count,
p.inappropriate_count,
p.last_version_at,
p.user_deleted,
p.reply_to_user_id,
p.percent_rank,
p.notify_user_count,
p.like_score,
p.deleted_by_id,
p.edit_reason,
p.word_count,
p.version,
p.cook_method,
p.wiki,
p.baked_at,
p.baked_version,
p.hidden_at,
p.self_edits,
p.reply_quoted,
p.via_email,
p.raw_email,
p.public_version,
p.action_code,
p.locked_by_id,
p.image_upload_id
FROM ((public.posts p
JOIN public.topics t ON ((t.id = p.topic_id)))
JOIN public.categories c ON ((c.id = t.category_id)))
WHERE (c.allow_badges AND (p.deleted_at IS NULL) AND (t.deleted_at IS NULL) AND (NOT c.read_restricted) AND t.visible AND (p.post_type = ANY (ARRAY[1, 2, 3])));
--
-- Name: badge_types; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.badge_types (
id integer NOT NULL,
name character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: badge_types_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.badge_types_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: badge_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.badge_types_id_seq OWNED BY public.badge_types.id;
--
-- Name: badges; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.badges (
id integer NOT NULL,
name character varying NOT NULL,
description text,
badge_type_id integer NOT NULL,
grant_count integer DEFAULT 0 NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
allow_title boolean DEFAULT false NOT NULL,
multiple_grant boolean DEFAULT false NOT NULL,
icon character varying DEFAULT 'fa-certificate'::character varying,
listable boolean DEFAULT true,
target_posts boolean DEFAULT false,
query text,
enabled boolean DEFAULT true NOT NULL,
auto_revoke boolean DEFAULT true NOT NULL,
badge_grouping_id integer DEFAULT 5 NOT NULL,
trigger integer,
show_posts boolean DEFAULT false NOT NULL,
system boolean DEFAULT false NOT NULL,
image character varying(255),
long_description text,
image_upload_id integer
);
--
-- Name: badges_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.badges_id_seq
AS integer
START WITH 100
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: badges_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.badges_id_seq OWNED BY public.badges.id;
--
-- Name: bookmarks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.bookmarks (
id bigint NOT NULL,
user_id bigint NOT NULL,
post_id bigint,
name character varying(100),
reminder_at timestamp without time zone,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
reminder_last_sent_at timestamp without time zone,
reminder_set_at timestamp without time zone,
auto_delete_preference integer DEFAULT 0 NOT NULL,
pinned boolean DEFAULT false,
for_topic boolean DEFAULT false NOT NULL,
bookmarkable_id integer,
bookmarkable_type character varying,
CONSTRAINT enforce_post_id_or_bookmarkable CHECK (((post_id IS NOT NULL) OR ((bookmarkable_id IS NOT NULL) AND (bookmarkable_type IS NOT NULL))))
);
--
-- Name: bookmarks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.bookmarks_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: bookmarks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.bookmarks_id_seq OWNED BY public.bookmarks.id;
--
-- Name: calendar_events; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.calendar_events (
id bigint NOT NULL,
topic_id integer NOT NULL,
post_id integer,
post_number integer,
user_id integer,
username character varying,
description character varying,
start_date timestamp without time zone NOT NULL,
end_date timestamp without time zone,
recurrence character varying,
region character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: calendar_events_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.calendar_events_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: calendar_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.calendar_events_id_seq OWNED BY public.calendar_events.id;
--
-- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.categories_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.categories_id_seq OWNED BY public.categories.id;
--
-- Name: categories_web_hooks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.categories_web_hooks (
web_hook_id integer NOT NULL,
category_id integer NOT NULL
);
--
-- Name: category_custom_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_custom_fields (
id integer NOT NULL,
category_id integer NOT NULL,
name character varying(256) NOT NULL,
value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: category_custom_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_custom_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_custom_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_custom_fields_id_seq OWNED BY public.category_custom_fields.id;
--
-- Name: category_featured_topics; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_featured_topics (
category_id integer NOT NULL,
topic_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
rank integer DEFAULT 0 NOT NULL,
id integer NOT NULL
);
--
-- Name: category_featured_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_featured_topics_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_featured_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_featured_topics_id_seq OWNED BY public.category_featured_topics.id;
--
-- Name: category_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_groups (
id integer NOT NULL,
category_id integer NOT NULL,
group_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
permission_type integer DEFAULT 1
);
--
-- Name: category_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_groups_id_seq OWNED BY public.category_groups.id;
--
-- Name: category_required_tag_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_required_tag_groups (
id bigint NOT NULL,
category_id bigint NOT NULL,
tag_group_id bigint NOT NULL,
min_count integer DEFAULT 1 NOT NULL,
"order" integer DEFAULT 1 NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: category_required_tag_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_required_tag_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_required_tag_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_required_tag_groups_id_seq OWNED BY public.category_required_tag_groups.id;
--
-- Name: category_search_data; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_search_data (
category_id integer NOT NULL,
search_data tsvector,
raw_data text,
locale text,
version integer DEFAULT 0
);
--
-- Name: category_tag_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_tag_groups (
id integer NOT NULL,
category_id integer NOT NULL,
tag_group_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: category_tag_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_tag_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_tag_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_tag_groups_id_seq OWNED BY public.category_tag_groups.id;
--
-- Name: category_tag_stats; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_tag_stats (
id bigint NOT NULL,
category_id bigint NOT NULL,
tag_id bigint NOT NULL,
topic_count integer DEFAULT 0 NOT NULL
);
--
-- Name: category_tag_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_tag_stats_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_tag_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_tag_stats_id_seq OWNED BY public.category_tag_stats.id;
--
-- Name: category_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_tags (
id integer NOT NULL,
category_id integer NOT NULL,
tag_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: category_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_tags_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_tags_id_seq OWNED BY public.category_tags.id;
--
-- Name: category_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.category_users (
id integer NOT NULL,
category_id integer NOT NULL,
user_id integer NOT NULL,
notification_level integer NOT NULL,
last_seen_at timestamp without time zone
);
--
-- Name: category_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.category_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: category_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.category_users_id_seq OWNED BY public.category_users.id;
--
-- Name: child_themes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.child_themes (
id integer NOT NULL,
parent_theme_id integer,
child_theme_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: child_themes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.child_themes_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: child_themes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.child_themes_id_seq OWNED BY public.child_themes.id;
--
-- Name: color_scheme_colors; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.color_scheme_colors (
id integer NOT NULL,
name character varying NOT NULL,
hex character varying NOT NULL,
color_scheme_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: color_scheme_colors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.color_scheme_colors_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: color_scheme_colors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.color_scheme_colors_id_seq OWNED BY public.color_scheme_colors.id;
--
-- Name: color_schemes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.color_schemes (
id integer NOT NULL,
name character varying NOT NULL,
version integer DEFAULT 1 NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
via_wizard boolean DEFAULT false NOT NULL,
base_scheme_id character varying,
theme_id integer,
user_selectable boolean DEFAULT false NOT NULL
);
--
-- Name: color_schemes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.color_schemes_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: color_schemes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.color_schemes_id_seq OWNED BY public.color_schemes.id;
--
-- Name: custom_emojis; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.custom_emojis (
id integer NOT NULL,
name character varying NOT NULL,
upload_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
"group" character varying(20)
);
--
-- Name: custom_emojis_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.custom_emojis_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: custom_emojis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.custom_emojis_id_seq OWNED BY public.custom_emojis.id;
--
-- Name: developers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.developers (
id integer NOT NULL,
user_id integer NOT NULL
);
--
-- Name: developers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.developers_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: developers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.developers_id_seq OWNED BY public.developers.id;
--
-- Name: directory_columns; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.directory_columns (
id bigint NOT NULL,
name character varying,
automatic_position integer,
icon character varying,
user_field_id integer,
enabled boolean NOT NULL,
"position" integer NOT NULL,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
automatic boolean DEFAULT true NOT NULL,
type integer DEFAULT 0 NOT NULL
);
--
-- Name: directory_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.directory_columns_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: directory_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.directory_columns_id_seq OWNED BY public.directory_columns.id;
--
-- Name: directory_items; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.directory_items (
id integer NOT NULL,
period_type integer NOT NULL,
user_id integer NOT NULL,
likes_received integer NOT NULL,
likes_given integer NOT NULL,
topics_entered integer NOT NULL,
topic_count integer NOT NULL,
post_count integer NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
days_visited integer DEFAULT 0 NOT NULL,
posts_read integer DEFAULT 0 NOT NULL,
solutions integer DEFAULT 0,
gamification_score integer DEFAULT 0
);
--
-- Name: directory_items_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.directory_items_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: directory_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.directory_items_id_seq OWNED BY public.directory_items.id;
--
-- Name: discourse_calendar_post_event_dates; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.discourse_calendar_post_event_dates (
id bigint NOT NULL,
event_id integer,
starts_at timestamp without time zone,
ends_at timestamp without time zone,
reminder_counter integer DEFAULT 0,
event_will_start_sent_at timestamp without time zone,
event_started_sent_at timestamp without time zone,
finished_at timestamp without time zone,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: discourse_calendar_post_event_dates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.discourse_calendar_post_event_dates_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: discourse_calendar_post_event_dates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.discourse_calendar_post_event_dates_id_seq OWNED BY public.discourse_calendar_post_event_dates.id;
--
-- Name: discourse_post_event_events; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.discourse_post_event_events (
id bigint NOT NULL,
status integer DEFAULT 0 NOT NULL,
original_starts_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
original_ends_at timestamp without time zone,
deleted_at timestamp without time zone,
raw_invitees character varying[],
name character varying,
url character varying(1000),
custom_fields jsonb DEFAULT '{}'::jsonb NOT NULL,
reminders character varying,
recurrence character varying
);
--
-- Name: discourse_post_event_events_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.discourse_post_event_events_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: discourse_post_event_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.discourse_post_event_events_id_seq OWNED BY public.discourse_post_event_events.id;
--
-- Name: discourse_post_event_invitees; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.discourse_post_event_invitees (
id bigint NOT NULL,
post_id integer NOT NULL,
user_id integer NOT NULL,
status integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
notified boolean DEFAULT false NOT NULL
);
--
-- Name: discourse_post_event_invitees_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.discourse_post_event_invitees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: discourse_post_event_invitees_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.discourse_post_event_invitees_id_seq OWNED BY public.discourse_post_event_invitees.id;
--
-- Name: dismissed_topic_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.dismissed_topic_users (
id bigint NOT NULL,
user_id integer,
topic_id integer,
created_at timestamp without time zone
);
--
-- Name: dismissed_topic_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.dismissed_topic_users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: dismissed_topic_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.dismissed_topic_users_id_seq OWNED BY public.dismissed_topic_users.id;
--
-- Name: do_not_disturb_timings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.do_not_disturb_timings (
id bigint NOT NULL,
user_id integer NOT NULL,
starts_at timestamp without time zone NOT NULL,
ends_at timestamp without time zone NOT NULL,
scheduled boolean DEFAULT false
);
--
-- Name: do_not_disturb_timings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.do_not_disturb_timings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: do_not_disturb_timings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.do_not_disturb_timings_id_seq OWNED BY public.do_not_disturb_timings.id;
--
-- Name: draft_sequences; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.draft_sequences (
id integer NOT NULL,
user_id integer NOT NULL,
draft_key character varying NOT NULL,
sequence bigint NOT NULL
);
--
-- Name: draft_sequences_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.draft_sequences_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: draft_sequences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.draft_sequences_id_seq OWNED BY public.draft_sequences.id;
--
-- Name: drafts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.drafts (
id integer NOT NULL,
user_id integer NOT NULL,
draft_key character varying NOT NULL,
data text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
sequence bigint DEFAULT 0 NOT NULL,
revisions integer DEFAULT 1 NOT NULL,
owner character varying
);
--
-- Name: drafts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.drafts_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: drafts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.drafts_id_seq OWNED BY public.drafts.id;
--
-- Name: email_change_requests; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.email_change_requests (
id integer NOT NULL,
user_id integer NOT NULL,
old_email character varying,
new_email character varying NOT NULL,
old_email_token_id integer,
new_email_token_id integer,
change_state integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
requested_by_user_id integer
);
--
-- Name: email_change_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.email_change_requests_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: email_change_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.email_change_requests_id_seq OWNED BY public.email_change_requests.id;
--
-- Name: email_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.email_logs (
id integer NOT NULL,
to_address character varying NOT NULL,
email_type character varying NOT NULL,
user_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
post_id integer,
bounce_key uuid,
bounced boolean DEFAULT false NOT NULL,
message_id character varying,
smtp_group_id integer,
cc_addresses text,
cc_user_ids integer[],
raw text,
topic_id integer,
bounce_error_code character varying,
smtp_transaction_response character varying(500)
);
--
-- Name: email_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.email_logs_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: email_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.email_logs_id_seq OWNED BY public.email_logs.id;
--
-- Name: email_tokens; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.email_tokens (
id integer NOT NULL,
user_id integer NOT NULL,
email character varying NOT NULL,
confirmed boolean DEFAULT false NOT NULL,
expired boolean DEFAULT false NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
token_hash character varying NOT NULL,
scope integer
);
--
-- Name: email_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.email_tokens_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: email_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.email_tokens_id_seq OWNED BY public.email_tokens.id;
--
-- Name: embeddable_hosts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.embeddable_hosts (
id integer NOT NULL,
host character varying NOT NULL,
category_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
class_name character varying,
allowed_paths character varying
);
--
-- Name: embeddable_hosts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.embeddable_hosts_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: embeddable_hosts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.embeddable_hosts_id_seq OWNED BY public.embeddable_hosts.id;
--
-- Name: external_upload_stubs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.external_upload_stubs (
id bigint NOT NULL,
key character varying NOT NULL,
original_filename character varying NOT NULL,
status integer DEFAULT 1 NOT NULL,
unique_identifier uuid NOT NULL,
created_by_id integer NOT NULL,
upload_type character varying NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
multipart boolean DEFAULT false NOT NULL,
external_upload_identifier character varying,
filesize bigint NOT NULL
);
--
-- Name: external_upload_stubs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.external_upload_stubs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: external_upload_stubs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.external_upload_stubs_id_seq OWNED BY public.external_upload_stubs.id;
--
-- Name: gamification_leaderboards; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.gamification_leaderboards (
id bigint NOT NULL,
name character varying NOT NULL,
from_date date,
to_date date,
for_category_id integer,
created_by_id integer NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
visible_to_groups_ids integer[] DEFAULT '{}'::integer[] NOT NULL,
included_groups_ids integer[] DEFAULT '{}'::integer[] NOT NULL,
excluded_groups_ids integer[] DEFAULT '{}'::integer[] NOT NULL
);
--
-- Name: gamification_leaderboards_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.gamification_leaderboards_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: gamification_leaderboards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.gamification_leaderboards_id_seq OWNED BY public.gamification_leaderboards.id;
--
-- Name: gamification_scores; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.gamification_scores (
id bigint NOT NULL,
user_id integer NOT NULL,
date date NOT NULL,
score integer NOT NULL
);
--
-- Name: gamification_scores_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.gamification_scores_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: gamification_scores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.gamification_scores_id_seq OWNED BY public.gamification_scores.id;
--
-- Name: given_daily_likes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.given_daily_likes (
user_id integer NOT NULL,
likes_given integer NOT NULL,
given_date date NOT NULL,
limit_reached boolean DEFAULT false NOT NULL
);
--
-- Name: group_archived_messages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_archived_messages (
id integer NOT NULL,
group_id integer NOT NULL,
topic_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: group_archived_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_archived_messages_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_archived_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_archived_messages_id_seq OWNED BY public.group_archived_messages.id;
--
-- Name: group_associated_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_associated_groups (
id bigint NOT NULL,
group_id bigint NOT NULL,
associated_group_id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: group_associated_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_associated_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_associated_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_associated_groups_id_seq OWNED BY public.group_associated_groups.id;
--
-- Name: group_category_notification_defaults; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_category_notification_defaults (
id bigint NOT NULL,
group_id integer NOT NULL,
category_id integer NOT NULL,
notification_level integer NOT NULL
);
--
-- Name: group_category_notification_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_category_notification_defaults_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_category_notification_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_category_notification_defaults_id_seq OWNED BY public.group_category_notification_defaults.id;
--
-- Name: group_custom_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_custom_fields (
id integer NOT NULL,
group_id integer NOT NULL,
name character varying(256) NOT NULL,
value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: group_custom_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_custom_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_custom_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_custom_fields_id_seq OWNED BY public.group_custom_fields.id;
--
-- Name: group_histories; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_histories (
id integer NOT NULL,
group_id integer NOT NULL,
acting_user_id integer NOT NULL,
target_user_id integer,
action integer NOT NULL,
subject character varying,
prev_value text,
new_value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: group_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_histories_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_histories_id_seq OWNED BY public.group_histories.id;
--
-- Name: group_mentions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_mentions (
id integer NOT NULL,
post_id integer,
group_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: group_mentions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_mentions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_mentions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_mentions_id_seq OWNED BY public.group_mentions.id;
--
-- Name: group_requests; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_requests (
id bigint NOT NULL,
group_id integer,
user_id integer,
reason text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: group_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_requests_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_requests_id_seq OWNED BY public.group_requests.id;
--
-- Name: group_tag_notification_defaults; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_tag_notification_defaults (
id bigint NOT NULL,
group_id integer NOT NULL,
tag_id integer NOT NULL,
notification_level integer NOT NULL
);
--
-- Name: group_tag_notification_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_tag_notification_defaults_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_tag_notification_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_tag_notification_defaults_id_seq OWNED BY public.group_tag_notification_defaults.id;
--
-- Name: group_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.group_users (
id integer NOT NULL,
group_id integer NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
owner boolean DEFAULT false NOT NULL,
notification_level integer DEFAULT 2 NOT NULL,
first_unread_pm_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL
);
--
-- Name: group_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.group_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: group_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.group_users_id_seq OWNED BY public.group_users.id;
--
-- Name: groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.groups (
id integer NOT NULL,
name character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
automatic boolean DEFAULT false NOT NULL,
user_count integer DEFAULT 0 NOT NULL,
automatic_membership_email_domains text,
primary_group boolean DEFAULT false NOT NULL,
title character varying,
grant_trust_level integer,
incoming_email character varying,
has_messages boolean DEFAULT false NOT NULL,
flair_bg_color character varying,
flair_color character varying,
bio_raw text,
bio_cooked text,
allow_membership_requests boolean DEFAULT false NOT NULL,
full_name character varying,
default_notification_level integer DEFAULT 3 NOT NULL,
visibility_level integer DEFAULT 0 NOT NULL,
public_exit boolean DEFAULT false NOT NULL,
public_admission boolean DEFAULT false NOT NULL,
membership_request_template text,
messageable_level integer DEFAULT 0,
mentionable_level integer DEFAULT 0,
smtp_server character varying,
smtp_port integer,
smtp_ssl boolean,
imap_server character varying,
imap_port integer,
imap_ssl boolean,
imap_mailbox_name character varying DEFAULT ''::character varying NOT NULL,
imap_uid_validity integer DEFAULT 0 NOT NULL,
imap_last_uid integer DEFAULT 0 NOT NULL,
email_username character varying,
email_password character varying,
publish_read_state boolean DEFAULT false NOT NULL,
members_visibility_level integer DEFAULT 0 NOT NULL,
imap_last_error text,
imap_old_emails integer,
imap_new_emails integer,
flair_icon character varying,
flair_upload_id integer,
allow_unknown_sender_topic_replies boolean DEFAULT false NOT NULL,
smtp_enabled boolean DEFAULT false,
smtp_updated_at timestamp without time zone,
smtp_updated_by_id integer,
imap_enabled boolean DEFAULT false,
imap_updated_at timestamp without time zone,
imap_updated_by_id integer,
assignable_level integer DEFAULT 0 NOT NULL,
email_from_alias character varying
);
--
-- Name: groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.groups_id_seq
AS integer
START WITH 100
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.groups_id_seq OWNED BY public.groups.id;
--
-- Name: groups_web_hooks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.groups_web_hooks (
web_hook_id integer NOT NULL,
group_id integer NOT NULL
);
--
-- Name: ignored_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ignored_users (
id bigint NOT NULL,
user_id integer NOT NULL,
ignored_user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
summarized_at timestamp without time zone,
expiring_at timestamp without time zone NOT NULL
);
--
-- Name: ignored_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.ignored_users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: ignored_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.ignored_users_id_seq OWNED BY public.ignored_users.id;
--
-- Name: imap_sync_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.imap_sync_logs (
id bigint NOT NULL,
level integer NOT NULL,
message character varying NOT NULL,
group_id bigint,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: imap_sync_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.imap_sync_logs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: imap_sync_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.imap_sync_logs_id_seq OWNED BY public.imap_sync_logs.id;
--
-- Name: incoming_domains; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.incoming_domains (
id integer NOT NULL,
name character varying(100) NOT NULL,
https boolean DEFAULT false NOT NULL,
port integer NOT NULL
);
--
-- Name: incoming_domains_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.incoming_domains_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: incoming_domains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.incoming_domains_id_seq OWNED BY public.incoming_domains.id;
--
-- Name: incoming_emails; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.incoming_emails (
id integer NOT NULL,
user_id integer,
topic_id integer,
post_id integer,
raw text,
error text,
message_id text,
from_address text,
to_addresses text,
cc_addresses text,
subject text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
rejection_message text,
is_auto_generated boolean DEFAULT false,
is_bounce boolean DEFAULT false NOT NULL,
imap_uid_validity integer,
imap_uid integer,
imap_sync boolean,
imap_group_id bigint,
imap_missing boolean DEFAULT false NOT NULL,
created_via integer DEFAULT 0 NOT NULL
);
--
-- Name: incoming_emails_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.incoming_emails_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: incoming_emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.incoming_emails_id_seq OWNED BY public.incoming_emails.id;
--
-- Name: incoming_links; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.incoming_links (
id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
user_id integer,
ip_address inet,
current_user_id integer,
post_id integer NOT NULL,
incoming_referer_id integer
);
--
-- Name: incoming_links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.incoming_links_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: incoming_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.incoming_links_id_seq OWNED BY public.incoming_links.id;
--
-- Name: incoming_referers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.incoming_referers (
id integer NOT NULL,
path character varying(1000) NOT NULL,
incoming_domain_id integer NOT NULL
);
--
-- Name: incoming_referers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.incoming_referers_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: incoming_referers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.incoming_referers_id_seq OWNED BY public.incoming_referers.id;
--
-- Name: invited_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.invited_groups (
id integer NOT NULL,
group_id integer,
invite_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: invited_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.invited_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: invited_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.invited_groups_id_seq OWNED BY public.invited_groups.id;
--
-- Name: invited_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.invited_users (
id bigint NOT NULL,
user_id integer,
invite_id integer NOT NULL,
redeemed_at timestamp without time zone,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: invited_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.invited_users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: invited_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.invited_users_id_seq OWNED BY public.invited_users.id;
--
-- Name: invites; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.invites (
id integer NOT NULL,
invite_key character varying(32) NOT NULL,
email character varying,
invited_by_id integer NOT NULL,
user_id integer,
redeemed_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
deleted_at timestamp without time zone,
deleted_by_id integer,
invalidated_at timestamp without time zone,
moderator boolean DEFAULT false NOT NULL,
custom_message text,
emailed_status integer,
max_redemptions_allowed integer DEFAULT 1 NOT NULL,
redemption_count integer DEFAULT 0 NOT NULL,
expires_at timestamp without time zone NOT NULL,
email_token character varying,
domain character varying
);
--
-- Name: invites_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.invites_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: invites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.invites_id_seq OWNED BY public.invites.id;
--
-- Name: javascript_caches; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.javascript_caches (
id bigint NOT NULL,
theme_field_id bigint,
digest character varying,
content text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
theme_id bigint,
CONSTRAINT enforce_theme_or_theme_field CHECK ((((theme_id IS NOT NULL) AND (theme_field_id IS NULL)) OR ((theme_id IS NULL) AND (theme_field_id IS NOT NULL))))
);
--
-- Name: javascript_caches_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.javascript_caches_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: javascript_caches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.javascript_caches_id_seq OWNED BY public.javascript_caches.id;
--
-- Name: linked_topics; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.linked_topics (
id bigint NOT NULL,
topic_id bigint NOT NULL,
original_topic_id bigint NOT NULL,
sequence integer NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: linked_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.linked_topics_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: linked_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.linked_topics_id_seq OWNED BY public.linked_topics.id;
--
-- Name: message_bus; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.message_bus (
id integer NOT NULL,
name character varying,
context character varying,
data text,
created_at timestamp without time zone NOT NULL
);
--
-- Name: message_bus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.message_bus_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: message_bus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.message_bus_id_seq OWNED BY public.message_bus.id;
--
-- Name: muted_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.muted_users (
id integer NOT NULL,
user_id integer NOT NULL,
muted_user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: muted_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.muted_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: muted_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.muted_users_id_seq OWNED BY public.muted_users.id;
--
-- Name: notifications; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.notifications (
id integer NOT NULL,
notification_type integer NOT NULL,
user_id integer NOT NULL,
data character varying(1000) NOT NULL,
read boolean DEFAULT false NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
topic_id integer,
post_number integer,
post_action_id integer,
high_priority boolean DEFAULT false NOT NULL
);
--
-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.notifications_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id;
--
-- Name: oauth2_user_infos; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.oauth2_user_infos (
id integer NOT NULL,
user_id integer NOT NULL,
uid character varying NOT NULL,
provider character varying NOT NULL,
email character varying,
name character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: oauth2_user_infos_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.oauth2_user_infos_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: oauth2_user_infos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.oauth2_user_infos_id_seq OWNED BY public.oauth2_user_infos.id;
--
-- Name: onceoff_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.onceoff_logs (
id integer NOT NULL,
job_name character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: onceoff_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.onceoff_logs_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: onceoff_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.onceoff_logs_id_seq OWNED BY public.onceoff_logs.id;
--
-- Name: optimized_images; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.optimized_images (
id integer NOT NULL,
sha1 character varying(40) NOT NULL,
extension character varying(10) NOT NULL,
width integer NOT NULL,
height integer NOT NULL,
upload_id integer NOT NULL,
url character varying NOT NULL,
filesize integer,
etag character varying,
version integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: optimized_images_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.optimized_images_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: optimized_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.optimized_images_id_seq OWNED BY public.optimized_images.id;
--
-- Name: permalinks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.permalinks (
id integer NOT NULL,
url character varying(1000) NOT NULL,
topic_id integer,
post_id integer,
category_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
external_url character varying(1000),
tag_id integer
);
--
-- Name: permalinks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.permalinks_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: permalinks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.permalinks_id_seq OWNED BY public.permalinks.id;
--
-- Name: plugin_store_rows; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.plugin_store_rows (
id integer NOT NULL,
plugin_name character varying NOT NULL,
key character varying NOT NULL,
type_name character varying NOT NULL,
value text
);
--
-- Name: plugin_store_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.plugin_store_rows_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: plugin_store_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.plugin_store_rows_id_seq OWNED BY public.plugin_store_rows.id;
--
-- Name: poll_options; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.poll_options (
id bigint NOT NULL,
poll_id bigint,
digest character varying NOT NULL,
html text NOT NULL,
anonymous_votes integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: poll_options_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.poll_options_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: poll_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.poll_options_id_seq OWNED BY public.poll_options.id;
--
-- Name: poll_votes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.poll_votes (
poll_id bigint,
poll_option_id bigint,
user_id bigint,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: polls; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.polls (
id bigint NOT NULL,
post_id bigint,
name character varying DEFAULT 'poll'::character varying NOT NULL,
close_at timestamp without time zone,
type integer DEFAULT 0 NOT NULL,
status integer DEFAULT 0 NOT NULL,
results integer DEFAULT 0 NOT NULL,
visibility integer DEFAULT 0 NOT NULL,
min integer,
max integer,
step integer,
anonymous_voters integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
chart_type integer DEFAULT 0 NOT NULL,
groups character varying,
title character varying
);
--
-- Name: polls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.polls_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: polls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.polls_id_seq OWNED BY public.polls.id;
--
-- Name: post_action_types; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_action_types (
name_key character varying(50) NOT NULL,
is_flag boolean DEFAULT false NOT NULL,
icon character varying(20),
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
id integer NOT NULL,
"position" integer DEFAULT 0 NOT NULL,
score_bonus double precision DEFAULT 0.0 NOT NULL,
reviewable_priority integer DEFAULT 0 NOT NULL
);
--
-- Name: post_action_types_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_action_types_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_action_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_action_types_id_seq OWNED BY public.post_action_types.id;
--
-- Name: post_actions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_actions (
id integer NOT NULL,
post_id integer NOT NULL,
user_id integer NOT NULL,
post_action_type_id integer NOT NULL,
deleted_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
deleted_by_id integer,
related_post_id integer,
staff_took_action boolean DEFAULT false NOT NULL,
deferred_by_id integer,
targets_topic boolean DEFAULT false NOT NULL,
agreed_at timestamp without time zone,
agreed_by_id integer,
deferred_at timestamp without time zone,
disagreed_at timestamp without time zone,
disagreed_by_id integer
);
--
-- Name: post_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_actions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_actions_id_seq OWNED BY public.post_actions.id;
--
-- Name: post_custom_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_custom_fields (
id integer NOT NULL,
post_id integer NOT NULL,
name character varying(256) NOT NULL,
value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: post_custom_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_custom_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_custom_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_custom_fields_id_seq OWNED BY public.post_custom_fields.id;
--
-- Name: post_details; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_details (
id integer NOT NULL,
post_id integer,
key character varying,
value character varying,
extra text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: post_details_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_details_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_details_id_seq OWNED BY public.post_details.id;
--
-- Name: post_hotlinked_media; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_hotlinked_media (
id bigint NOT NULL,
post_id bigint NOT NULL,
url character varying NOT NULL,
status public.hotlinked_media_status NOT NULL,
upload_id bigint,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: post_hotlinked_media_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_hotlinked_media_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_hotlinked_media_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_hotlinked_media_id_seq OWNED BY public.post_hotlinked_media.id;
--
-- Name: post_replies; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_replies (
post_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
reply_post_id integer
);
--
-- Name: post_reply_keys; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_reply_keys (
id bigint NOT NULL,
user_id integer NOT NULL,
post_id integer NOT NULL,
reply_key uuid NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: post_reply_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_reply_keys_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_reply_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_reply_keys_id_seq OWNED BY public.post_reply_keys.id;
--
-- Name: post_revisions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_revisions (
id integer NOT NULL,
user_id integer,
post_id integer,
modifications text,
number integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
hidden boolean DEFAULT false NOT NULL
);
--
-- Name: post_revisions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_revisions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_revisions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_revisions_id_seq OWNED BY public.post_revisions.id;
--
-- Name: post_search_data; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_search_data (
post_id integer NOT NULL,
search_data tsvector,
raw_data text,
locale character varying,
version integer DEFAULT 0,
private_message boolean NOT NULL
);
--
-- Name: post_stats; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_stats (
id integer NOT NULL,
post_id integer,
drafts_saved integer,
typing_duration_msecs integer,
composer_open_duration_msecs integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: post_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_stats_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_stats_id_seq OWNED BY public.post_stats.id;
--
-- Name: post_timings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_timings (
topic_id integer NOT NULL,
post_number integer NOT NULL,
user_id integer NOT NULL,
msecs integer NOT NULL
);
--
-- Name: post_uploads; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.post_uploads (
id integer NOT NULL,
post_id integer NOT NULL,
upload_id integer NOT NULL
);
--
-- Name: post_uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.post_uploads_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: post_uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.post_uploads_id_seq OWNED BY public.post_uploads.id;
--
-- Name: posts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.posts_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.posts_id_seq OWNED BY public.posts.id;
--
-- Name: published_pages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.published_pages (
id bigint NOT NULL,
topic_id bigint NOT NULL,
slug character varying NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
public boolean DEFAULT false NOT NULL
);
--
-- Name: published_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.published_pages_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: published_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.published_pages_id_seq OWNED BY public.published_pages.id;
--
-- Name: push_subscriptions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.push_subscriptions (
id bigint NOT NULL,
user_id integer NOT NULL,
data character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
error_count integer DEFAULT 0 NOT NULL,
first_error_at timestamp without time zone
);
--
-- Name: push_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.push_subscriptions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: push_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.push_subscriptions_id_seq OWNED BY public.push_subscriptions.id;
--
-- Name: quoted_posts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.quoted_posts (
id integer NOT NULL,
post_id integer NOT NULL,
quoted_post_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: quoted_posts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.quoted_posts_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: quoted_posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.quoted_posts_id_seq OWNED BY public.quoted_posts.id;
--
-- Name: remote_themes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.remote_themes (
id integer NOT NULL,
remote_url character varying NOT NULL,
remote_version character varying,
local_version character varying,
about_url character varying,
license_url character varying,
commits_behind integer,
remote_updated_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
private_key text,
branch character varying,
last_error_text text,
authors character varying,
theme_version character varying,
minimum_discourse_version character varying,
maximum_discourse_version character varying
);
--
-- Name: remote_themes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.remote_themes_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: remote_themes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.remote_themes_id_seq OWNED BY public.remote_themes.id;
--
-- Name: reviewable_claimed_topics; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.reviewable_claimed_topics (
id bigint NOT NULL,
user_id integer NOT NULL,
topic_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: reviewable_claimed_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.reviewable_claimed_topics_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: reviewable_claimed_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.reviewable_claimed_topics_id_seq OWNED BY public.reviewable_claimed_topics.id;
--
-- Name: reviewable_histories; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.reviewable_histories (
id bigint NOT NULL,
reviewable_id integer NOT NULL,
reviewable_history_type integer NOT NULL,
status integer NOT NULL,
created_by_id integer NOT NULL,
edited json,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: reviewable_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.reviewable_histories_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: reviewable_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.reviewable_histories_id_seq OWNED BY public.reviewable_histories.id;
--
-- Name: reviewable_scores; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.reviewable_scores (
id bigint NOT NULL,
reviewable_id integer NOT NULL,
user_id integer NOT NULL,
reviewable_score_type integer NOT NULL,
status integer NOT NULL,
score double precision DEFAULT 0.0 NOT NULL,
take_action_bonus double precision DEFAULT 0.0 NOT NULL,
reviewed_by_id integer,
reviewed_at timestamp without time zone,
meta_topic_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
reason character varying,
user_accuracy_bonus double precision DEFAULT 0.0 NOT NULL
);
--
-- Name: reviewable_scores_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.reviewable_scores_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: reviewable_scores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.reviewable_scores_id_seq OWNED BY public.reviewable_scores.id;
--
-- Name: reviewables; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.reviewables (
id bigint NOT NULL,
type character varying NOT NULL,
status integer DEFAULT 0 NOT NULL,
created_by_id integer NOT NULL,
reviewable_by_moderator boolean DEFAULT false NOT NULL,
reviewable_by_group_id integer,
category_id integer,
topic_id integer,
score double precision DEFAULT 0.0 NOT NULL,
potential_spam boolean DEFAULT false NOT NULL,
target_id integer,
target_type character varying,
target_created_by_id integer,
payload json,
version integer DEFAULT 0 NOT NULL,
latest_score timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
force_review boolean DEFAULT false NOT NULL,
reject_reason text
);
--
-- Name: reviewables_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.reviewables_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: reviewables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.reviewables_id_seq OWNED BY public.reviewables.id;
--
-- Name: scheduler_stats; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.scheduler_stats (
id integer NOT NULL,
name character varying NOT NULL,
hostname character varying NOT NULL,
pid integer NOT NULL,
duration_ms integer,
live_slots_start integer,
live_slots_finish integer,
started_at timestamp without time zone NOT NULL,
success boolean,
error text
);
--
-- Name: scheduler_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.scheduler_stats_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: scheduler_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.scheduler_stats_id_seq OWNED BY public.scheduler_stats.id;
--
-- Name: schema_migration_details; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.schema_migration_details (
id integer NOT NULL,
version character varying NOT NULL,
name character varying,
hostname character varying,
git_version character varying,
rails_version character varying,
duration integer,
direction character varying,
created_at timestamp without time zone NOT NULL
);
--
-- Name: schema_migration_details_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.schema_migration_details_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: schema_migration_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.schema_migration_details_id_seq OWNED BY public.schema_migration_details.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
--
-- Name: screened_emails; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.screened_emails (
id integer NOT NULL,
email character varying NOT NULL,
action_type integer NOT NULL,
match_count integer DEFAULT 0 NOT NULL,
last_match_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
ip_address inet
);
--
-- Name: screened_emails_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.screened_emails_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: screened_emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.screened_emails_id_seq OWNED BY public.screened_emails.id;
--
-- Name: screened_ip_addresses; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.screened_ip_addresses (
id integer NOT NULL,
ip_address inet NOT NULL,
action_type integer NOT NULL,
match_count integer DEFAULT 0 NOT NULL,
last_match_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: screened_ip_addresses_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.screened_ip_addresses_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: screened_ip_addresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.screened_ip_addresses_id_seq OWNED BY public.screened_ip_addresses.id;
--
-- Name: screened_urls; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.screened_urls (
id integer NOT NULL,
url character varying NOT NULL,
domain character varying NOT NULL,
action_type integer NOT NULL,
match_count integer DEFAULT 0 NOT NULL,
last_match_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
ip_address inet
);
--
-- Name: screened_urls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.screened_urls_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: screened_urls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.screened_urls_id_seq OWNED BY public.screened_urls.id;
--
-- Name: search_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.search_logs (
id integer NOT NULL,
term character varying NOT NULL,
user_id integer,
ip_address inet,
search_result_id integer,
search_type integer NOT NULL,
created_at timestamp without time zone NOT NULL,
search_result_type integer
);
--
-- Name: search_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.search_logs_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: search_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.search_logs_id_seq OWNED BY public.search_logs.id;
--
-- Name: shared_drafts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.shared_drafts (
topic_id integer NOT NULL,
category_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
id bigint NOT NULL
);
--
-- Name: shared_drafts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.shared_drafts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: shared_drafts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.shared_drafts_id_seq OWNED BY public.shared_drafts.id;
--
-- Name: shelved_notifications; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.shelved_notifications (
id bigint NOT NULL,
notification_id integer NOT NULL
);
--
-- Name: shelved_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.shelved_notifications_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: shelved_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.shelved_notifications_id_seq OWNED BY public.shelved_notifications.id;
--
-- Name: sidebar_section_links; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.sidebar_section_links (
id bigint NOT NULL,
user_id integer NOT NULL,
linkable_id integer NOT NULL,
linkable_type character varying NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: sidebar_section_links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.sidebar_section_links_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: sidebar_section_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.sidebar_section_links_id_seq OWNED BY public.sidebar_section_links.id;
--
-- Name: single_sign_on_records; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.single_sign_on_records (
id integer NOT NULL,
user_id integer NOT NULL,
external_id character varying NOT NULL,
last_payload text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
external_username character varying,
external_email character varying,
external_name character varying,
external_avatar_url character varying(1000),
external_profile_background_url character varying,
external_card_background_url character varying
);
--
-- Name: single_sign_on_records_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.single_sign_on_records_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: single_sign_on_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.single_sign_on_records_id_seq OWNED BY public.single_sign_on_records.id;
--
-- Name: site_settings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.site_settings (
id integer NOT NULL,
name character varying NOT NULL,
data_type integer NOT NULL,
value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: site_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.site_settings_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: site_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.site_settings_id_seq OWNED BY public.site_settings.id;
--
-- Name: sitemaps; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.sitemaps (
id bigint NOT NULL,
name character varying NOT NULL,
last_posted_at timestamp without time zone NOT NULL,
enabled boolean DEFAULT true NOT NULL
);
--
-- Name: sitemaps_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.sitemaps_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: sitemaps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.sitemaps_id_seq OWNED BY public.sitemaps.id;
--
-- Name: skipped_email_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.skipped_email_logs (
id bigint NOT NULL,
email_type character varying NOT NULL,
to_address character varying NOT NULL,
user_id integer,
post_id integer,
reason_type integer NOT NULL,
custom_reason text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: skipped_email_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.skipped_email_logs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: skipped_email_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.skipped_email_logs_id_seq OWNED BY public.skipped_email_logs.id;
--
-- Name: stylesheet_cache; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.stylesheet_cache (
id integer NOT NULL,
target character varying NOT NULL,
digest character varying NOT NULL,
content text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
theme_id integer DEFAULT '-1'::integer NOT NULL,
source_map text
);
--
-- Name: stylesheet_cache_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.stylesheet_cache_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: stylesheet_cache_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.stylesheet_cache_id_seq OWNED BY public.stylesheet_cache.id;
--
-- Name: tag_group_memberships; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tag_group_memberships (
id integer NOT NULL,
tag_id integer NOT NULL,
tag_group_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: tag_group_memberships_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.tag_group_memberships_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tag_group_memberships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.tag_group_memberships_id_seq OWNED BY public.tag_group_memberships.id;
--
-- Name: tag_group_permissions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tag_group_permissions (
id bigint NOT NULL,
tag_group_id bigint NOT NULL,
group_id bigint NOT NULL,
permission_type integer DEFAULT 1 NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: tag_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.tag_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tag_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.tag_group_permissions_id_seq OWNED BY public.tag_group_permissions.id;
--
-- Name: tag_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tag_groups (
id integer NOT NULL,
name character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
parent_tag_id integer,
one_per_topic boolean DEFAULT false
);
--
-- Name: tag_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.tag_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tag_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.tag_groups_id_seq OWNED BY public.tag_groups.id;
--
-- Name: tag_search_data; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tag_search_data (
tag_id integer NOT NULL,
search_data tsvector,
raw_data text,
locale text,
version integer DEFAULT 0
);
--
-- Name: tag_search_data_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.tag_search_data_tag_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tag_search_data_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.tag_search_data_tag_id_seq OWNED BY public.tag_search_data.tag_id;
--
-- Name: tag_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tag_users (
id integer NOT NULL,
tag_id integer NOT NULL,
user_id integer NOT NULL,
notification_level integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: tag_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.tag_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tag_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.tag_users_id_seq OWNED BY public.tag_users.id;
--
-- Name: tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tags (
id integer NOT NULL,
name character varying NOT NULL,
topic_count integer DEFAULT 0 NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
pm_topic_count integer DEFAULT 0 NOT NULL,
target_tag_id integer,
description character varying
);
--
-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.tags_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id;
--
-- Name: tags_web_hooks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tags_web_hooks (
web_hook_id bigint NOT NULL,
tag_id bigint NOT NULL
);
--
-- Name: theme_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.theme_fields (
id integer NOT NULL,
theme_id integer NOT NULL,
target_id integer NOT NULL,
name character varying(255) NOT NULL,
value text NOT NULL,
value_baked text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
compiler_version character varying(50) DEFAULT 0 NOT NULL,
error character varying,
upload_id integer,
type_id integer DEFAULT 0 NOT NULL
);
--
-- Name: theme_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.theme_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: theme_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.theme_fields_id_seq OWNED BY public.theme_fields.id;
--
-- Name: theme_modifier_sets; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.theme_modifier_sets (
id bigint NOT NULL,
theme_id bigint NOT NULL,
serialize_topic_excerpts boolean,
csp_extensions character varying[],
svg_icons character varying[],
topic_thumbnail_sizes character varying[]
);
--
-- Name: theme_modifier_sets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.theme_modifier_sets_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: theme_modifier_sets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.theme_modifier_sets_id_seq OWNED BY public.theme_modifier_sets.id;
--
-- Name: theme_settings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.theme_settings (
id bigint NOT NULL,
name character varying(255) NOT NULL,
data_type integer NOT NULL,
value text,
theme_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: theme_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.theme_settings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: theme_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.theme_settings_id_seq OWNED BY public.theme_settings.id;
--
-- Name: theme_translation_overrides; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.theme_translation_overrides (
id bigint NOT NULL,
theme_id integer NOT NULL,
locale character varying NOT NULL,
translation_key character varying NOT NULL,
value character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: theme_translation_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.theme_translation_overrides_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: theme_translation_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.theme_translation_overrides_id_seq OWNED BY public.theme_translation_overrides.id;
--
-- Name: themes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.themes (
id integer NOT NULL,
name character varying NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
compiler_version integer DEFAULT 0 NOT NULL,
user_selectable boolean DEFAULT false NOT NULL,
hidden boolean DEFAULT false NOT NULL,
color_scheme_id integer,
remote_theme_id integer,
component boolean DEFAULT false NOT NULL,
enabled boolean DEFAULT true NOT NULL,
auto_update boolean DEFAULT true NOT NULL
);
--
-- Name: themes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.themes_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: themes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.themes_id_seq OWNED BY public.themes.id;
--
-- Name: top_topics; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.top_topics (
id integer NOT NULL,
topic_id integer,
yearly_posts_count integer DEFAULT 0 NOT NULL,
yearly_views_count integer DEFAULT 0 NOT NULL,
yearly_likes_count integer DEFAULT 0 NOT NULL,
monthly_posts_count integer DEFAULT 0 NOT NULL,
monthly_views_count integer DEFAULT 0 NOT NULL,
monthly_likes_count integer DEFAULT 0 NOT NULL,
weekly_posts_count integer DEFAULT 0 NOT NULL,
weekly_views_count integer DEFAULT 0 NOT NULL,
weekly_likes_count integer DEFAULT 0 NOT NULL,
daily_posts_count integer DEFAULT 0 NOT NULL,
daily_views_count integer DEFAULT 0 NOT NULL,
daily_likes_count integer DEFAULT 0 NOT NULL,
daily_score double precision DEFAULT 0.0,
weekly_score double precision DEFAULT 0.0,
monthly_score double precision DEFAULT 0.0,
yearly_score double precision DEFAULT 0.0,
all_score double precision DEFAULT 0.0,
daily_op_likes_count integer DEFAULT 0 NOT NULL,
weekly_op_likes_count integer DEFAULT 0 NOT NULL,
monthly_op_likes_count integer DEFAULT 0 NOT NULL,
yearly_op_likes_count integer DEFAULT 0 NOT NULL,
quarterly_posts_count integer DEFAULT 0 NOT NULL,
quarterly_views_count integer DEFAULT 0 NOT NULL,
quarterly_likes_count integer DEFAULT 0 NOT NULL,
quarterly_score double precision DEFAULT 0.0,
quarterly_op_likes_count integer DEFAULT 0 NOT NULL
);
--
-- Name: top_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.top_topics_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: top_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.top_topics_id_seq OWNED BY public.top_topics.id;
--
-- Name: topic_allowed_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_allowed_groups (
id integer NOT NULL,
group_id integer NOT NULL,
topic_id integer NOT NULL
);
--
-- Name: topic_allowed_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_allowed_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_allowed_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_allowed_groups_id_seq OWNED BY public.topic_allowed_groups.id;
--
-- Name: topic_allowed_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_allowed_users (
id integer NOT NULL,
user_id integer NOT NULL,
topic_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: topic_allowed_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_allowed_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_allowed_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_allowed_users_id_seq OWNED BY public.topic_allowed_users.id;
--
-- Name: topic_custom_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_custom_fields (
id integer NOT NULL,
topic_id integer NOT NULL,
name character varying(256) NOT NULL,
value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: topic_custom_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_custom_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_custom_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_custom_fields_id_seq OWNED BY public.topic_custom_fields.id;
--
-- Name: topic_embeds; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_embeds (
id integer NOT NULL,
topic_id integer NOT NULL,
post_id integer NOT NULL,
embed_url character varying(1000) NOT NULL,
content_sha1 character varying(40),
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
deleted_at timestamp without time zone,
deleted_by_id integer
);
--
-- Name: topic_embeds_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_embeds_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_embeds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_embeds_id_seq OWNED BY public.topic_embeds.id;
--
-- Name: topic_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_groups (
id bigint NOT NULL,
group_id integer NOT NULL,
topic_id integer NOT NULL,
last_read_post_number integer DEFAULT 0 NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: topic_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_groups_id_seq OWNED BY public.topic_groups.id;
--
-- Name: topic_invites; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_invites (
id integer NOT NULL,
topic_id integer NOT NULL,
invite_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: topic_invites_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_invites_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_invites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_invites_id_seq OWNED BY public.topic_invites.id;
--
-- Name: topic_link_clicks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_link_clicks (
id integer NOT NULL,
topic_link_id integer NOT NULL,
user_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
ip_address inet
);
--
-- Name: topic_link_clicks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_link_clicks_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_link_clicks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_link_clicks_id_seq OWNED BY public.topic_link_clicks.id;
--
-- Name: topic_links; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_links (
id integer NOT NULL,
topic_id integer NOT NULL,
post_id integer,
user_id integer NOT NULL,
url character varying NOT NULL,
domain character varying(100) NOT NULL,
internal boolean DEFAULT false NOT NULL,
link_topic_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
reflection boolean DEFAULT false,
clicks integer DEFAULT 0 NOT NULL,
link_post_id integer,
title character varying,
crawled_at timestamp without time zone,
quote boolean DEFAULT false NOT NULL,
extension character varying(10)
);
--
-- Name: topic_links_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_links_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_links_id_seq OWNED BY public.topic_links.id;
--
-- Name: topic_search_data; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_search_data (
topic_id integer NOT NULL,
raw_data text,
locale character varying NOT NULL,
search_data tsvector,
version integer DEFAULT 0
);
--
-- Name: topic_search_data_topic_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_search_data_topic_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_search_data_topic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_search_data_topic_id_seq OWNED BY public.topic_search_data.topic_id;
--
-- Name: topic_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_tags (
id integer NOT NULL,
topic_id integer NOT NULL,
tag_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: topic_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_tags_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_tags_id_seq OWNED BY public.topic_tags.id;
--
-- Name: topic_thumbnails; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_thumbnails (
id bigint NOT NULL,
upload_id bigint NOT NULL,
optimized_image_id bigint,
max_width integer NOT NULL,
max_height integer NOT NULL
);
--
-- Name: topic_thumbnails_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_thumbnails_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_thumbnails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_thumbnails_id_seq OWNED BY public.topic_thumbnails.id;
--
-- Name: topic_timers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_timers (
id integer NOT NULL,
execute_at timestamp without time zone NOT NULL,
status_type integer NOT NULL,
user_id integer NOT NULL,
topic_id integer NOT NULL,
based_on_last_post boolean DEFAULT false NOT NULL,
deleted_at timestamp without time zone,
deleted_by_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
category_id integer,
public_type boolean DEFAULT true,
duration_minutes integer
);
--
-- Name: topic_timers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_timers_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_timers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_timers_id_seq OWNED BY public.topic_timers.id;
--
-- Name: topic_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_users (
user_id integer NOT NULL,
topic_id integer NOT NULL,
posted boolean DEFAULT false NOT NULL,
last_read_post_number integer,
last_visited_at timestamp without time zone,
first_visited_at timestamp without time zone,
notification_level integer DEFAULT 1 NOT NULL,
notifications_changed_at timestamp without time zone,
notifications_reason_id integer,
total_msecs_viewed integer DEFAULT 0 NOT NULL,
cleared_pinned_at timestamp without time zone,
id integer NOT NULL,
last_emailed_post_number integer,
liked boolean DEFAULT false,
bookmarked boolean DEFAULT false,
last_posted_at timestamp without time zone
);
--
-- Name: topic_users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topic_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topic_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topic_users_id_seq OWNED BY public.topic_users.id;
--
-- Name: topic_views; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.topic_views (
topic_id integer NOT NULL,
viewed_at date NOT NULL,
user_id integer,
ip_address inet
);
--
-- Name: topics_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.topics_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.topics_id_seq OWNED BY public.topics.id;
--
-- Name: translation_overrides; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.translation_overrides (
id integer NOT NULL,
locale character varying NOT NULL,
translation_key character varying NOT NULL,
value character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
compiled_js text
);
--
-- Name: translation_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.translation_overrides_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: translation_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.translation_overrides_id_seq OWNED BY public.translation_overrides.id;
--
-- Name: unsubscribe_keys; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.unsubscribe_keys (
key character varying(64) NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
unsubscribe_key_type character varying,
topic_id integer,
post_id integer
);
--
-- Name: upload_references; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.upload_references (
id bigint NOT NULL,
upload_id bigint NOT NULL,
target_type character varying NOT NULL,
target_id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: upload_references_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.upload_references_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: upload_references_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.upload_references_id_seq OWNED BY public.upload_references.id;
--
-- Name: uploads; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.uploads (
id integer NOT NULL,
user_id integer NOT NULL,
original_filename character varying NOT NULL,
filesize bigint NOT NULL,
width integer,
height integer,
url character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
sha1 character varying(40),
origin character varying(1000),
retain_hours integer,
extension character varying(10),
thumbnail_width integer,
thumbnail_height integer,
etag character varying,
secure boolean DEFAULT false NOT NULL,
access_control_post_id bigint,
original_sha1 character varying,
animated boolean,
verification_status integer DEFAULT 1 NOT NULL,
security_last_changed_at timestamp without time zone,
security_last_changed_reason character varying
);
--
-- Name: uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.uploads_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.uploads_id_seq OWNED BY public.uploads.id;
--
-- Name: user_actions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_actions (
id integer NOT NULL,
action_type integer NOT NULL,
user_id integer NOT NULL,
target_topic_id integer,
target_post_id integer,
target_user_id integer,
acting_user_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_actions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_actions_id_seq OWNED BY public.user_actions.id;
--
-- Name: user_api_key_scopes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_api_key_scopes (
id bigint NOT NULL,
user_api_key_id integer NOT NULL,
name character varying NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
allowed_parameters jsonb
);
--
-- Name: user_api_key_scopes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_api_key_scopes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_api_key_scopes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_api_key_scopes_id_seq OWNED BY public.user_api_key_scopes.id;
--
-- Name: user_api_keys; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_api_keys (
id integer NOT NULL,
user_id integer NOT NULL,
client_id character varying NOT NULL,
application_name character varying NOT NULL,
push_url character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
revoked_at timestamp without time zone,
scopes text[],
last_used_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
key_hash character varying NOT NULL
);
--
-- Name: user_api_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_api_keys_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_api_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_api_keys_id_seq OWNED BY public.user_api_keys.id;
--
-- Name: user_archived_messages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_archived_messages (
id integer NOT NULL,
user_id integer NOT NULL,
topic_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_archived_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_archived_messages_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_archived_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_archived_messages_id_seq OWNED BY public.user_archived_messages.id;
--
-- Name: user_associated_accounts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_associated_accounts (
id bigint NOT NULL,
provider_name character varying NOT NULL,
provider_uid character varying NOT NULL,
user_id integer,
last_used timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
info jsonb DEFAULT '{}'::jsonb NOT NULL,
credentials jsonb DEFAULT '{}'::jsonb NOT NULL,
extra jsonb DEFAULT '{}'::jsonb NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_associated_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_associated_accounts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_associated_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_associated_accounts_id_seq OWNED BY public.user_associated_accounts.id;
--
-- Name: user_associated_groups; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_associated_groups (
id bigint NOT NULL,
user_id bigint NOT NULL,
associated_group_id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: user_associated_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_associated_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_associated_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_associated_groups_id_seq OWNED BY public.user_associated_groups.id;
--
-- Name: user_auth_token_logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_auth_token_logs (
id integer NOT NULL,
action character varying NOT NULL,
user_auth_token_id integer,
user_id integer,
client_ip inet,
user_agent character varying,
auth_token character varying,
created_at timestamp without time zone,
path character varying
);
--
-- Name: user_auth_token_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_auth_token_logs_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_auth_token_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_auth_token_logs_id_seq OWNED BY public.user_auth_token_logs.id;
--
-- Name: user_auth_tokens; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_auth_tokens (
id integer NOT NULL,
user_id integer NOT NULL,
auth_token character varying NOT NULL,
prev_auth_token character varying NOT NULL,
user_agent character varying,
auth_token_seen boolean DEFAULT false NOT NULL,
client_ip inet,
rotated_at timestamp without time zone NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
seen_at timestamp without time zone
);
--
-- Name: user_auth_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_auth_tokens_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_auth_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_auth_tokens_id_seq OWNED BY public.user_auth_tokens.id;
--
-- Name: user_avatars; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_avatars (
id integer NOT NULL,
user_id integer NOT NULL,
custom_upload_id integer,
gravatar_upload_id integer,
last_gravatar_download_attempt timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_avatars_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_avatars_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_avatars_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_avatars_id_seq OWNED BY public.user_avatars.id;
--
-- Name: user_badges; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_badges (
id integer NOT NULL,
badge_id integer NOT NULL,
user_id integer NOT NULL,
granted_at timestamp without time zone NOT NULL,
granted_by_id integer NOT NULL,
post_id integer,
notification_id integer,
seq integer DEFAULT 0 NOT NULL,
featured_rank integer,
created_at timestamp without time zone NOT NULL,
is_favorite boolean
);
--
-- Name: user_badges_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_badges_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_badges_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_badges_id_seq OWNED BY public.user_badges.id;
--
-- Name: user_custom_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_custom_fields (
id integer NOT NULL,
user_id integer NOT NULL,
name character varying(256) NOT NULL,
value text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_custom_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_custom_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_custom_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_custom_fields_id_seq OWNED BY public.user_custom_fields.id;
--
-- Name: user_emails; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_emails (
id integer NOT NULL,
user_id integer NOT NULL,
email character varying(513) NOT NULL,
"primary" boolean DEFAULT false NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
normalized_email character varying
);
--
-- Name: user_emails_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_emails_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_emails_id_seq OWNED BY public.user_emails.id;
--
-- Name: user_exports; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_exports (
id integer NOT NULL,
file_name character varying NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
upload_id integer,
topic_id integer
);
--
-- Name: user_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_exports_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_exports_id_seq OWNED BY public.user_exports.id;
--
-- Name: user_field_options; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_field_options (
id integer NOT NULL,
user_field_id integer NOT NULL,
value character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_field_options_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_field_options_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_field_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_field_options_id_seq OWNED BY public.user_field_options.id;
--
-- Name: user_fields; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_fields (
id integer NOT NULL,
name character varying NOT NULL,
field_type character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
editable boolean DEFAULT false NOT NULL,
description character varying NOT NULL,
required boolean DEFAULT true NOT NULL,
show_on_profile boolean DEFAULT false NOT NULL,
"position" integer DEFAULT 0,
show_on_user_card boolean DEFAULT false NOT NULL,
external_name character varying,
external_type character varying,
searchable boolean DEFAULT false NOT NULL
);
--
-- Name: user_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_fields_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_fields_id_seq OWNED BY public.user_fields.id;
--
-- Name: user_histories; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_histories (
id integer NOT NULL,
action integer NOT NULL,
acting_user_id integer,
target_user_id integer,
details text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
context character varying,
ip_address character varying,
email character varying,
subject text,
previous_value text,
new_value text,
topic_id integer,
admin_only boolean DEFAULT false,
post_id integer,
custom_type character varying,
category_id integer
);
--
-- Name: user_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_histories_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_histories_id_seq OWNED BY public.user_histories.id;
--
-- Name: user_ip_address_histories; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_ip_address_histories (
id bigint NOT NULL,
user_id integer NOT NULL,
ip_address inet NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
--
-- Name: user_ip_address_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_ip_address_histories_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_ip_address_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_ip_address_histories_id_seq OWNED BY public.user_ip_address_histories.id;
--
-- Name: user_notification_schedules; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_notification_schedules (
id bigint NOT NULL,
user_id integer NOT NULL,
enabled boolean DEFAULT false NOT NULL,
day_0_start_time integer NOT NULL,
day_0_end_time integer NOT NULL,
day_1_start_time integer NOT NULL,
day_1_end_time integer NOT NULL,
day_2_start_time integer NOT NULL,
day_2_end_time integer NOT NULL,
day_3_start_time integer NOT NULL,
day_3_end_time integer NOT NULL,
day_4_start_time integer NOT NULL,
day_4_end_time integer NOT NULL,
day_5_start_time integer NOT NULL,
day_5_end_time integer NOT NULL,
day_6_start_time integer NOT NULL,
day_6_end_time integer NOT NULL
);
--
-- Name: user_notification_schedules_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_notification_schedules_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_notification_schedules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_notification_schedules_id_seq OWNED BY public.user_notification_schedules.id;
--
-- Name: user_open_ids; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_open_ids (
id integer NOT NULL,
user_id integer NOT NULL,
email character varying NOT NULL,
url character varying NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
active boolean NOT NULL
);
--
-- Name: user_open_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_open_ids_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_open_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_open_ids_id_seq OWNED BY public.user_open_ids.id;
--
-- Name: user_options; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_options (
user_id integer NOT NULL,
mailing_list_mode boolean DEFAULT false NOT NULL,
email_digests boolean,
external_links_in_new_tab boolean DEFAULT false NOT NULL,
enable_quoting boolean DEFAULT true NOT NULL,
dynamic_favicon boolean DEFAULT false NOT NULL,
automatically_unpin_topics boolean DEFAULT true NOT NULL,
digest_after_minutes integer,
auto_track_topics_after_msecs integer,
new_topic_duration_minutes integer,
last_redirected_to_top_at timestamp without time zone,
email_previous_replies integer DEFAULT 2 NOT NULL,
email_in_reply_to boolean DEFAULT true NOT NULL,
like_notification_frequency integer DEFAULT 1 NOT NULL,
mailing_list_mode_frequency integer DEFAULT 1 NOT NULL,
include_tl0_in_digests boolean DEFAULT false,
notification_level_when_replying integer,
theme_key_seq integer DEFAULT 0 NOT NULL,
allow_private_messages boolean DEFAULT true NOT NULL,
homepage_id integer,
theme_ids integer[] DEFAULT '{}'::integer[] NOT NULL,
hide_profile_and_presence boolean DEFAULT false NOT NULL,
text_size_key integer DEFAULT 0 NOT NULL,
text_size_seq integer DEFAULT 0 NOT NULL,
email_level integer DEFAULT 1 NOT NULL,
email_messages_level integer DEFAULT 0 NOT NULL,
title_count_mode_key integer DEFAULT 0 NOT NULL,
enable_defer boolean DEFAULT false NOT NULL,
timezone character varying,
enable_allowed_pm_users boolean DEFAULT false NOT NULL,
dark_scheme_id integer,
skip_new_user_tips boolean DEFAULT false NOT NULL,
color_scheme_id integer,
default_calendar integer DEFAULT 0 NOT NULL,
oldest_search_log_date timestamp without time zone,
bookmark_auto_delete_preference integer DEFAULT 3 NOT NULL,
enable_experimental_sidebar boolean DEFAULT false
);
--
-- Name: user_profile_views; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_profile_views (
id integer NOT NULL,
user_profile_id integer NOT NULL,
viewed_at timestamp without time zone NOT NULL,
ip_address inet,
user_id integer
);
--
-- Name: user_profile_views_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_profile_views_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_profile_views_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_profile_views_id_seq OWNED BY public.user_profile_views.id;
--
-- Name: user_profiles; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_profiles (
user_id integer NOT NULL,
location character varying,
website character varying,
bio_raw text,
bio_cooked text,
dismissed_banner_key integer,
bio_cooked_version integer,
badge_granted_title boolean DEFAULT false,
views integer DEFAULT 0 NOT NULL,
profile_background_upload_id integer,
card_background_upload_id integer,
granted_title_badge_id bigint,
featured_topic_id integer
);
--
-- Name: user_search_data; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_search_data (
user_id integer NOT NULL,
search_data tsvector,
raw_data text,
locale text,
version integer DEFAULT 0
);
--
-- Name: user_second_factors; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_second_factors (
id bigint NOT NULL,
user_id integer NOT NULL,
method integer NOT NULL,
data character varying NOT NULL,
enabled boolean DEFAULT false NOT NULL,
last_used timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
name character varying
);
--
-- Name: user_second_factors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_second_factors_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_second_factors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_second_factors_id_seq OWNED BY public.user_second_factors.id;
--
-- Name: user_security_keys; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_security_keys (
id bigint NOT NULL,
user_id bigint NOT NULL,
credential_id character varying NOT NULL,
public_key character varying NOT NULL,
factor_type integer DEFAULT 0 NOT NULL,
enabled boolean DEFAULT true NOT NULL,
name character varying NOT NULL,
last_used timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_security_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_security_keys_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_security_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_security_keys_id_seq OWNED BY public.user_security_keys.id;
--
-- Name: user_stats; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_stats (
user_id integer NOT NULL,
topics_entered integer DEFAULT 0 NOT NULL,
time_read integer DEFAULT 0 NOT NULL,
days_visited integer DEFAULT 0 NOT NULL,
posts_read_count integer DEFAULT 0 NOT NULL,
likes_given integer DEFAULT 0 NOT NULL,
likes_received integer DEFAULT 0 NOT NULL,
new_since timestamp without time zone NOT NULL,
read_faq timestamp without time zone,
first_post_created_at timestamp without time zone,
post_count integer DEFAULT 0 NOT NULL,
topic_count integer DEFAULT 0 NOT NULL,
bounce_score double precision DEFAULT 0 NOT NULL,
reset_bounce_score_after timestamp without time zone,
flags_agreed integer DEFAULT 0 NOT NULL,
flags_disagreed integer DEFAULT 0 NOT NULL,
flags_ignored integer DEFAULT 0 NOT NULL,
first_unread_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
distinct_badge_count integer DEFAULT 0 NOT NULL,
first_unread_pm_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
digest_attempted_at timestamp without time zone,
post_edits_count integer,
draft_count integer DEFAULT 0 NOT NULL,
pending_posts_count integer DEFAULT 0 NOT NULL
);
--
-- Name: user_statuses; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_statuses (
user_id integer NOT NULL,
emoji character varying NOT NULL,
description character varying NOT NULL,
set_at timestamp(6) without time zone NOT NULL,
ends_at timestamp(6) without time zone
);
--
-- Name: user_statuses_user_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_statuses_user_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_statuses_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_statuses_user_id_seq OWNED BY public.user_statuses.user_id;
--
-- Name: user_uploads; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_uploads (
id bigint NOT NULL,
upload_id integer NOT NULL,
user_id integer NOT NULL,
created_at timestamp without time zone NOT NULL
);
--
-- Name: user_uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_uploads_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_uploads_id_seq OWNED BY public.user_uploads.id;
--
-- Name: user_visits; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_visits (
id integer NOT NULL,
user_id integer NOT NULL,
visited_at date NOT NULL,
posts_read integer DEFAULT 0,
mobile boolean DEFAULT false,
time_read integer DEFAULT 0 NOT NULL
);
--
-- Name: user_visits_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_visits_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_visits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_visits_id_seq OWNED BY public.user_visits.id;
--
-- Name: user_warnings; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.user_warnings (
id integer NOT NULL,
topic_id integer NOT NULL,
user_id integer NOT NULL,
created_by_id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: user_warnings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.user_warnings_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: user_warnings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.user_warnings_id_seq OWNED BY public.user_warnings.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.users (
id integer NOT NULL,
username character varying(60) NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
name character varying,
seen_notification_id integer DEFAULT 0 NOT NULL,
last_posted_at timestamp without time zone,
password_hash character varying(64),
salt character varying(32),
active boolean DEFAULT false NOT NULL,
username_lower character varying(60) NOT NULL,
last_seen_at timestamp without time zone,
admin boolean DEFAULT false NOT NULL,
last_emailed_at timestamp without time zone,
trust_level integer NOT NULL,
approved boolean DEFAULT false NOT NULL,
approved_by_id integer,
approved_at timestamp without time zone,
previous_visit_at timestamp without time zone,
suspended_at timestamp without time zone,
suspended_till timestamp without time zone,
date_of_birth date,
views integer DEFAULT 0 NOT NULL,
flag_level integer DEFAULT 0 NOT NULL,
ip_address inet,
moderator boolean DEFAULT false,
title character varying,
uploaded_avatar_id integer,
locale character varying(10),
primary_group_id integer,
registration_ip_address inet,
staged boolean DEFAULT false NOT NULL,
first_seen_at timestamp without time zone,
silenced_till timestamp without time zone,
group_locked_trust_level integer,
manual_locked_trust_level integer,
secure_identifier character varying,
flair_group_id integer,
last_seen_reviewable_id integer
);
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: watched_words; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.watched_words (
id integer NOT NULL,
word character varying NOT NULL,
action integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
replacement character varying,
case_sensitive boolean DEFAULT false NOT NULL
);
--
-- Name: watched_words_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.watched_words_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: watched_words_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.watched_words_id_seq OWNED BY public.watched_words.id;
--
-- Name: web_crawler_requests; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.web_crawler_requests (
id bigint NOT NULL,
date date NOT NULL,
user_agent character varying NOT NULL,
count integer DEFAULT 0 NOT NULL
);
--
-- Name: web_crawler_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.web_crawler_requests_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: web_crawler_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.web_crawler_requests_id_seq OWNED BY public.web_crawler_requests.id;
--
-- Name: web_hook_event_types; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.web_hook_event_types (
id integer NOT NULL,
name character varying NOT NULL
);
--
-- Name: web_hook_event_types_hooks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.web_hook_event_types_hooks (
web_hook_id integer NOT NULL,
web_hook_event_type_id integer NOT NULL
);
--
-- Name: web_hook_event_types_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.web_hook_event_types_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: web_hook_event_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.web_hook_event_types_id_seq OWNED BY public.web_hook_event_types.id;
--
-- Name: web_hook_events; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.web_hook_events (
id integer NOT NULL,
web_hook_id integer NOT NULL,
headers character varying,
payload text,
status integer DEFAULT 0,
response_headers character varying,
response_body text,
duration integer DEFAULT 0,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: web_hook_events_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.web_hook_events_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: web_hook_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.web_hook_events_id_seq OWNED BY public.web_hook_events.id;
--
-- Name: web_hooks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.web_hooks (
id integer NOT NULL,
payload_url character varying NOT NULL,
content_type integer DEFAULT 1 NOT NULL,
last_delivery_status integer DEFAULT 1 NOT NULL,
status integer DEFAULT 1 NOT NULL,
secret character varying DEFAULT ''::character varying,
wildcard_web_hook boolean DEFAULT false NOT NULL,
verify_certificate boolean DEFAULT true NOT NULL,
active boolean DEFAULT false NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: web_hooks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.web_hooks_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: web_hooks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.web_hooks_id_seq OWNED BY public.web_hooks.id;
--
-- Name: allowed_pm_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.allowed_pm_users ALTER COLUMN id SET DEFAULT nextval('public.allowed_pm_users_id_seq'::regclass);
--
-- Name: anonymous_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.anonymous_users ALTER COLUMN id SET DEFAULT nextval('public.anonymous_users_id_seq'::regclass);
--
-- Name: api_key_scopes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.api_key_scopes ALTER COLUMN id SET DEFAULT nextval('public.api_key_scopes_id_seq'::regclass);
--
-- Name: api_keys id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.api_keys ALTER COLUMN id SET DEFAULT nextval('public.api_keys_id_seq'::regclass);
--
-- Name: application_requests id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.application_requests ALTER COLUMN id SET DEFAULT nextval('public.application_requests_id_seq'::regclass);
--
-- Name: assignments id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.assignments ALTER COLUMN id SET DEFAULT nextval('public.assignments_id_seq'::regclass);
--
-- Name: associated_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.associated_groups ALTER COLUMN id SET DEFAULT nextval('public.associated_groups_id_seq'::regclass);
--
-- Name: backup_draft_posts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.backup_draft_posts ALTER COLUMN id SET DEFAULT nextval('public.backup_draft_posts_id_seq'::regclass);
--
-- Name: backup_draft_topics id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.backup_draft_topics ALTER COLUMN id SET DEFAULT nextval('public.backup_draft_topics_id_seq'::regclass);
--
-- Name: backup_metadata id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.backup_metadata ALTER COLUMN id SET DEFAULT nextval('public.backup_metadata_id_seq'::regclass);
--
-- Name: badge_groupings id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.badge_groupings ALTER COLUMN id SET DEFAULT nextval('public.badge_groupings_id_seq'::regclass);
--
-- Name: badge_types id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.badge_types ALTER COLUMN id SET DEFAULT nextval('public.badge_types_id_seq'::regclass);
--
-- Name: badges id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.badges ALTER COLUMN id SET DEFAULT nextval('public.badges_id_seq'::regclass);
--
-- Name: bookmarks id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.bookmarks ALTER COLUMN id SET DEFAULT nextval('public.bookmarks_id_seq'::regclass);
--
-- Name: calendar_events id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.calendar_events ALTER COLUMN id SET DEFAULT nextval('public.calendar_events_id_seq'::regclass);
--
-- Name: categories id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.categories ALTER COLUMN id SET DEFAULT nextval('public.categories_id_seq'::regclass);
--
-- Name: category_custom_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_custom_fields ALTER COLUMN id SET DEFAULT nextval('public.category_custom_fields_id_seq'::regclass);
--
-- Name: category_featured_topics id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_featured_topics ALTER COLUMN id SET DEFAULT nextval('public.category_featured_topics_id_seq'::regclass);
--
-- Name: category_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_groups ALTER COLUMN id SET DEFAULT nextval('public.category_groups_id_seq'::regclass);
--
-- Name: category_required_tag_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_required_tag_groups ALTER COLUMN id SET DEFAULT nextval('public.category_required_tag_groups_id_seq'::regclass);
--
-- Name: category_tag_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_tag_groups ALTER COLUMN id SET DEFAULT nextval('public.category_tag_groups_id_seq'::regclass);
--
-- Name: category_tag_stats id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_tag_stats ALTER COLUMN id SET DEFAULT nextval('public.category_tag_stats_id_seq'::regclass);
--
-- Name: category_tags id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_tags ALTER COLUMN id SET DEFAULT nextval('public.category_tags_id_seq'::regclass);
--
-- Name: category_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.category_users ALTER COLUMN id SET DEFAULT nextval('public.category_users_id_seq'::regclass);
--
-- Name: child_themes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.child_themes ALTER COLUMN id SET DEFAULT nextval('public.child_themes_id_seq'::regclass);
--
-- Name: color_scheme_colors id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.color_scheme_colors ALTER COLUMN id SET DEFAULT nextval('public.color_scheme_colors_id_seq'::regclass);
--
-- Name: color_schemes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.color_schemes ALTER COLUMN id SET DEFAULT nextval('public.color_schemes_id_seq'::regclass);
--
-- Name: custom_emojis id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.custom_emojis ALTER COLUMN id SET DEFAULT nextval('public.custom_emojis_id_seq'::regclass);
--
-- Name: developers id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.developers ALTER COLUMN id SET DEFAULT nextval('public.developers_id_seq'::regclass);
--
-- Name: directory_columns id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.directory_columns ALTER COLUMN id SET DEFAULT nextval('public.directory_columns_id_seq'::regclass);
--
-- Name: directory_items id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.directory_items ALTER COLUMN id SET DEFAULT nextval('public.directory_items_id_seq'::regclass);
--
-- Name: discourse_calendar_post_event_dates id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.discourse_calendar_post_event_dates ALTER COLUMN id SET DEFAULT nextval('public.discourse_calendar_post_event_dates_id_seq'::regclass);
--
-- Name: discourse_post_event_events id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.discourse_post_event_events ALTER COLUMN id SET DEFAULT nextval('public.discourse_post_event_events_id_seq'::regclass);
--
-- Name: discourse_post_event_invitees id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.discourse_post_event_invitees ALTER COLUMN id SET DEFAULT nextval('public.discourse_post_event_invitees_id_seq'::regclass);
--
-- Name: dismissed_topic_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.dismissed_topic_users ALTER COLUMN id SET DEFAULT nextval('public.dismissed_topic_users_id_seq'::regclass);
--
-- Name: do_not_disturb_timings id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.do_not_disturb_timings ALTER COLUMN id SET DEFAULT nextval('public.do_not_disturb_timings_id_seq'::regclass);
--
-- Name: draft_sequences id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.draft_sequences ALTER COLUMN id SET DEFAULT nextval('public.draft_sequences_id_seq'::regclass);
--
-- Name: drafts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.drafts ALTER COLUMN id SET DEFAULT nextval('public.drafts_id_seq'::regclass);
--
-- Name: email_change_requests id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.email_change_requests ALTER COLUMN id SET DEFAULT nextval('public.email_change_requests_id_seq'::regclass);
--
-- Name: email_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.email_logs ALTER COLUMN id SET DEFAULT nextval('public.email_logs_id_seq'::regclass);
--
-- Name: email_tokens id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.email_tokens ALTER COLUMN id SET DEFAULT nextval('public.email_tokens_id_seq'::regclass);
--
-- Name: embeddable_hosts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.embeddable_hosts ALTER COLUMN id SET DEFAULT nextval('public.embeddable_hosts_id_seq'::regclass);
--
-- Name: external_upload_stubs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.external_upload_stubs ALTER COLUMN id SET DEFAULT nextval('public.external_upload_stubs_id_seq'::regclass);
--
-- Name: gamification_leaderboards id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.gamification_leaderboards ALTER COLUMN id SET DEFAULT nextval('public.gamification_leaderboards_id_seq'::regclass);
--
-- Name: gamification_scores id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.gamification_scores ALTER COLUMN id SET DEFAULT nextval('public.gamification_scores_id_seq'::regclass);
--
-- Name: group_archived_messages id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_archived_messages ALTER COLUMN id SET DEFAULT nextval('public.group_archived_messages_id_seq'::regclass);
--
-- Name: group_associated_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_associated_groups ALTER COLUMN id SET DEFAULT nextval('public.group_associated_groups_id_seq'::regclass);
--
-- Name: group_category_notification_defaults id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_category_notification_defaults ALTER COLUMN id SET DEFAULT nextval('public.group_category_notification_defaults_id_seq'::regclass);
--
-- Name: group_custom_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_custom_fields ALTER COLUMN id SET DEFAULT nextval('public.group_custom_fields_id_seq'::regclass);
--
-- Name: group_histories id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_histories ALTER COLUMN id SET DEFAULT nextval('public.group_histories_id_seq'::regclass);
--
-- Name: group_mentions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_mentions ALTER COLUMN id SET DEFAULT nextval('public.group_mentions_id_seq'::regclass);
--
-- Name: group_requests id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_requests ALTER COLUMN id SET DEFAULT nextval('public.group_requests_id_seq'::regclass);
--
-- Name: group_tag_notification_defaults id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_tag_notification_defaults ALTER COLUMN id SET DEFAULT nextval('public.group_tag_notification_defaults_id_seq'::regclass);
--
-- Name: group_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.group_users ALTER COLUMN id SET DEFAULT nextval('public.group_users_id_seq'::regclass);
--
-- Name: groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.groups ALTER COLUMN id SET DEFAULT nextval('public.groups_id_seq'::regclass);
--
-- Name: ignored_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.ignored_users ALTER COLUMN id SET DEFAULT nextval('public.ignored_users_id_seq'::regclass);
--
-- Name: imap_sync_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.imap_sync_logs ALTER COLUMN id SET DEFAULT nextval('public.imap_sync_logs_id_seq'::regclass);
--
-- Name: incoming_domains id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.incoming_domains ALTER COLUMN id SET DEFAULT nextval('public.incoming_domains_id_seq'::regclass);
--
-- Name: incoming_emails id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.incoming_emails ALTER COLUMN id SET DEFAULT nextval('public.incoming_emails_id_seq'::regclass);
--
-- Name: incoming_links id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.incoming_links ALTER COLUMN id SET DEFAULT nextval('public.incoming_links_id_seq'::regclass);
--
-- Name: incoming_referers id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.incoming_referers ALTER COLUMN id SET DEFAULT nextval('public.incoming_referers_id_seq'::regclass);
--
-- Name: invited_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.invited_groups ALTER COLUMN id SET DEFAULT nextval('public.invited_groups_id_seq'::regclass);
--
-- Name: invited_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.invited_users ALTER COLUMN id SET DEFAULT nextval('public.invited_users_id_seq'::regclass);
--
-- Name: invites id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.invites ALTER COLUMN id SET DEFAULT nextval('public.invites_id_seq'::regclass);
--
-- Name: javascript_caches id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.javascript_caches ALTER COLUMN id SET DEFAULT nextval('public.javascript_caches_id_seq'::regclass);
--
-- Name: linked_topics id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.linked_topics ALTER COLUMN id SET DEFAULT nextval('public.linked_topics_id_seq'::regclass);
--
-- Name: message_bus id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.message_bus ALTER COLUMN id SET DEFAULT nextval('public.message_bus_id_seq'::regclass);
--
-- Name: muted_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.muted_users ALTER COLUMN id SET DEFAULT nextval('public.muted_users_id_seq'::regclass);
--
-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.notifications ALTER COLUMN id SET DEFAULT nextval('public.notifications_id_seq'::regclass);
--
-- Name: oauth2_user_infos id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.oauth2_user_infos ALTER COLUMN id SET DEFAULT nextval('public.oauth2_user_infos_id_seq'::regclass);
--
-- Name: onceoff_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.onceoff_logs ALTER COLUMN id SET DEFAULT nextval('public.onceoff_logs_id_seq'::regclass);
--
-- Name: optimized_images id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.optimized_images ALTER COLUMN id SET DEFAULT nextval('public.optimized_images_id_seq'::regclass);
--
-- Name: permalinks id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.permalinks ALTER COLUMN id SET DEFAULT nextval('public.permalinks_id_seq'::regclass);
--
-- Name: plugin_store_rows id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.plugin_store_rows ALTER COLUMN id SET DEFAULT nextval('public.plugin_store_rows_id_seq'::regclass);
--
-- Name: poll_options id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.poll_options ALTER COLUMN id SET DEFAULT nextval('public.poll_options_id_seq'::regclass);
--
-- Name: polls id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.polls ALTER COLUMN id SET DEFAULT nextval('public.polls_id_seq'::regclass);
--
-- Name: post_action_types id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_action_types ALTER COLUMN id SET DEFAULT nextval('public.post_action_types_id_seq'::regclass);
--
-- Name: post_actions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_actions ALTER COLUMN id SET DEFAULT nextval('public.post_actions_id_seq'::regclass);
--
-- Name: post_custom_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_custom_fields ALTER COLUMN id SET DEFAULT nextval('public.post_custom_fields_id_seq'::regclass);
--
-- Name: post_details id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_details ALTER COLUMN id SET DEFAULT nextval('public.post_details_id_seq'::regclass);
--
-- Name: post_hotlinked_media id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_hotlinked_media ALTER COLUMN id SET DEFAULT nextval('public.post_hotlinked_media_id_seq'::regclass);
--
-- Name: post_reply_keys id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_reply_keys ALTER COLUMN id SET DEFAULT nextval('public.post_reply_keys_id_seq'::regclass);
--
-- Name: post_revisions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_revisions ALTER COLUMN id SET DEFAULT nextval('public.post_revisions_id_seq'::regclass);
--
-- Name: post_stats id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_stats ALTER COLUMN id SET DEFAULT nextval('public.post_stats_id_seq'::regclass);
--
-- Name: post_uploads id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.post_uploads ALTER COLUMN id SET DEFAULT nextval('public.post_uploads_id_seq'::regclass);
--
-- Name: posts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.posts ALTER COLUMN id SET DEFAULT nextval('public.posts_id_seq'::regclass);
--
-- Name: published_pages id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.published_pages ALTER COLUMN id SET DEFAULT nextval('public.published_pages_id_seq'::regclass);
--
-- Name: push_subscriptions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.push_subscriptions ALTER COLUMN id SET DEFAULT nextval('public.push_subscriptions_id_seq'::regclass);
--
-- Name: quoted_posts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.quoted_posts ALTER COLUMN id SET DEFAULT nextval('public.quoted_posts_id_seq'::regclass);
--
-- Name: remote_themes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.remote_themes ALTER COLUMN id SET DEFAULT nextval('public.remote_themes_id_seq'::regclass);
--
-- Name: reviewable_claimed_topics id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.reviewable_claimed_topics ALTER COLUMN id SET DEFAULT nextval('public.reviewable_claimed_topics_id_seq'::regclass);
--
-- Name: reviewable_histories id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.reviewable_histories ALTER COLUMN id SET DEFAULT nextval('public.reviewable_histories_id_seq'::regclass);
--
-- Name: reviewable_scores id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.reviewable_scores ALTER COLUMN id SET DEFAULT nextval('public.reviewable_scores_id_seq'::regclass);
--
-- Name: reviewables id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.reviewables ALTER COLUMN id SET DEFAULT nextval('public.reviewables_id_seq'::regclass);
--
-- Name: scheduler_stats id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.scheduler_stats ALTER COLUMN id SET DEFAULT nextval('public.scheduler_stats_id_seq'::regclass);
--
-- Name: schema_migration_details id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.schema_migration_details ALTER COLUMN id SET DEFAULT nextval('public.schema_migration_details_id_seq'::regclass);
--
-- Name: screened_emails id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.screened_emails ALTER COLUMN id SET DEFAULT nextval('public.screened_emails_id_seq'::regclass);
--
-- Name: screened_ip_addresses id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.screened_ip_addresses ALTER COLUMN id SET DEFAULT nextval('public.screened_ip_addresses_id_seq'::regclass);
--
-- Name: screened_urls id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.screened_urls ALTER COLUMN id SET DEFAULT nextval('public.screened_urls_id_seq'::regclass);
--
-- Name: search_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.search_logs ALTER COLUMN id SET DEFAULT nextval('public.search_logs_id_seq'::regclass);
--
-- Name: shared_drafts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.shared_drafts ALTER COLUMN id SET DEFAULT nextval('public.shared_drafts_id_seq'::regclass);
--
-- Name: shelved_notifications id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.shelved_notifications ALTER COLUMN id SET DEFAULT nextval('public.shelved_notifications_id_seq'::regclass);
--
-- Name: sidebar_section_links id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.sidebar_section_links ALTER COLUMN id SET DEFAULT nextval('public.sidebar_section_links_id_seq'::regclass);
--
-- Name: single_sign_on_records id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.single_sign_on_records ALTER COLUMN id SET DEFAULT nextval('public.single_sign_on_records_id_seq'::regclass);
--
-- Name: site_settings id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.site_settings ALTER COLUMN id SET DEFAULT nextval('public.site_settings_id_seq'::regclass);
--
-- Name: sitemaps id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.sitemaps ALTER COLUMN id SET DEFAULT nextval('public.sitemaps_id_seq'::regclass);
--
-- Name: skipped_email_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.skipped_email_logs ALTER COLUMN id SET DEFAULT nextval('public.skipped_email_logs_id_seq'::regclass);
--
-- Name: stylesheet_cache id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.stylesheet_cache ALTER COLUMN id SET DEFAULT nextval('public.stylesheet_cache_id_seq'::regclass);
--
-- Name: tag_group_memberships id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tag_group_memberships ALTER COLUMN id SET DEFAULT nextval('public.tag_group_memberships_id_seq'::regclass);
--
-- Name: tag_group_permissions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tag_group_permissions ALTER COLUMN id SET DEFAULT nextval('public.tag_group_permissions_id_seq'::regclass);
--
-- Name: tag_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tag_groups ALTER COLUMN id SET DEFAULT nextval('public.tag_groups_id_seq'::regclass);
--
-- Name: tag_search_data tag_id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tag_search_data ALTER COLUMN tag_id SET DEFAULT nextval('public.tag_search_data_tag_id_seq'::regclass);
--
-- Name: tag_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tag_users ALTER COLUMN id SET DEFAULT nextval('public.tag_users_id_seq'::regclass);
--
-- Name: tags id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tags ALTER COLUMN id SET DEFAULT nextval('public.tags_id_seq'::regclass);
--
-- Name: theme_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.theme_fields ALTER COLUMN id SET DEFAULT nextval('public.theme_fields_id_seq'::regclass);
--
-- Name: theme_modifier_sets id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.theme_modifier_sets ALTER COLUMN id SET DEFAULT nextval('public.theme_modifier_sets_id_seq'::regclass);
--
-- Name: theme_settings id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.theme_settings ALTER COLUMN id SET DEFAULT nextval('public.theme_settings_id_seq'::regclass);
--
-- Name: theme_translation_overrides id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.theme_translation_overrides ALTER COLUMN id SET DEFAULT nextval('public.theme_translation_overrides_id_seq'::regclass);
--
-- Name: themes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.themes ALTER COLUMN id SET DEFAULT nextval('public.themes_id_seq'::regclass);
--
-- Name: top_topics id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.top_topics ALTER COLUMN id SET DEFAULT nextval('public.top_topics_id_seq'::regclass);
--
-- Name: topic_allowed_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_allowed_groups ALTER COLUMN id SET DEFAULT nextval('public.topic_allowed_groups_id_seq'::regclass);
--
-- Name: topic_allowed_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_allowed_users ALTER COLUMN id SET DEFAULT nextval('public.topic_allowed_users_id_seq'::regclass);
--
-- Name: topic_custom_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_custom_fields ALTER COLUMN id SET DEFAULT nextval('public.topic_custom_fields_id_seq'::regclass);
--
-- Name: topic_embeds id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_embeds ALTER COLUMN id SET DEFAULT nextval('public.topic_embeds_id_seq'::regclass);
--
-- Name: topic_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_groups ALTER COLUMN id SET DEFAULT nextval('public.topic_groups_id_seq'::regclass);
--
-- Name: topic_invites id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_invites ALTER COLUMN id SET DEFAULT nextval('public.topic_invites_id_seq'::regclass);
--
-- Name: topic_link_clicks id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_link_clicks ALTER COLUMN id SET DEFAULT nextval('public.topic_link_clicks_id_seq'::regclass);
--
-- Name: topic_links id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_links ALTER COLUMN id SET DEFAULT nextval('public.topic_links_id_seq'::regclass);
--
-- Name: topic_tags id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_tags ALTER COLUMN id SET DEFAULT nextval('public.topic_tags_id_seq'::regclass);
--
-- Name: topic_thumbnails id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_thumbnails ALTER COLUMN id SET DEFAULT nextval('public.topic_thumbnails_id_seq'::regclass);
--
-- Name: topic_timers id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_timers ALTER COLUMN id SET DEFAULT nextval('public.topic_timers_id_seq'::regclass);
--
-- Name: topic_users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topic_users ALTER COLUMN id SET DEFAULT nextval('public.topic_users_id_seq'::regclass);
--
-- Name: topics id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.topics ALTER COLUMN id SET DEFAULT nextval('public.topics_id_seq'::regclass);
--
-- Name: translation_overrides id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.translation_overrides ALTER COLUMN id SET DEFAULT nextval('public.translation_overrides_id_seq'::regclass);
--
-- Name: upload_references id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.upload_references ALTER COLUMN id SET DEFAULT nextval('public.upload_references_id_seq'::regclass);
--
-- Name: uploads id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.uploads ALTER COLUMN id SET DEFAULT nextval('public.uploads_id_seq'::regclass);
--
-- Name: user_actions id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_actions ALTER COLUMN id SET DEFAULT nextval('public.user_actions_id_seq'::regclass);
--
-- Name: user_api_key_scopes id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_api_key_scopes ALTER COLUMN id SET DEFAULT nextval('public.user_api_key_scopes_id_seq'::regclass);
--
-- Name: user_api_keys id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_api_keys ALTER COLUMN id SET DEFAULT nextval('public.user_api_keys_id_seq'::regclass);
--
-- Name: user_archived_messages id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_archived_messages ALTER COLUMN id SET DEFAULT nextval('public.user_archived_messages_id_seq'::regclass);
--
-- Name: user_associated_accounts id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_associated_accounts ALTER COLUMN id SET DEFAULT nextval('public.user_associated_accounts_id_seq'::regclass);
--
-- Name: user_associated_groups id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_associated_groups ALTER COLUMN id SET DEFAULT nextval('public.user_associated_groups_id_seq'::regclass);
--
-- Name: user_auth_token_logs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_auth_token_logs ALTER COLUMN id SET DEFAULT nextval('public.user_auth_token_logs_id_seq'::regclass);
--
-- Name: user_auth_tokens id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_auth_tokens ALTER COLUMN id SET DEFAULT nextval('public.user_auth_tokens_id_seq'::regclass);
--
-- Name: user_avatars id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_avatars ALTER COLUMN id SET DEFAULT nextval('public.user_avatars_id_seq'::regclass);
--
-- Name: user_badges id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_badges ALTER COLUMN id SET DEFAULT nextval('public.user_badges_id_seq'::regclass);
--
-- Name: user_custom_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_custom_fields ALTER COLUMN id SET DEFAULT nextval('public.user_custom_fields_id_seq'::regclass);
--
-- Name: user_emails id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_emails ALTER COLUMN id SET DEFAULT nextval('public.user_emails_id_seq'::regclass);
--
-- Name: user_exports id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_exports ALTER COLUMN id SET DEFAULT nextval('public.user_exports_id_seq'::regclass);
--
-- Name: user_field_options id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_field_options ALTER COLUMN id SET DEFAULT nextval('public.user_field_options_id_seq'::regclass);
--
-- Name: user_fields id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_fields ALTER COLUMN id SET DEFAULT nextval('public.user_fields_id_seq'::regclass);
--
-- Name: user_histories id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_histories ALTER COLUMN id SET DEFAULT nextval('public.user_histories_id_seq'::regclass);
--
-- Name: user_ip_address_histories id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_ip_address_histories ALTER COLUMN id SET DEFAULT nextval('public.user_ip_address_histories_id_seq'::regclass);
--
-- Name: user_notification_schedules id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_notification_schedules ALTER COLUMN id SET DEFAULT nextval('public.user_notification_schedules_id_seq'::regclass);
--
-- Name: user_open_ids id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_open_ids ALTER COLUMN id SET DEFAULT nextval('public.user_open_ids_id_seq'::regclass);
--
-- Name: user_profile_views id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_profile_views ALTER COLUMN id SET DEFAULT nextval('public.user_profile_views_id_seq'::regclass);
--
-- Name: user_second_factors id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_second_factors ALTER COLUMN id SET DEFAULT nextval('public.user_second_factors_id_seq'::regclass);
--
-- Name: user_security_keys id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_security_keys ALTER COLUMN id SET DEFAULT nextval('public.user_security_keys_id_seq'::regclass);
--
-- Name: user_statuses user_id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_statuses ALTER COLUMN user_id SET DEFAULT nextval('public.user_statuses_user_id_seq'::regclass);
--
-- Name: user_uploads id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_uploads ALTER COLUMN id SET DEFAULT nextval('public.user_uploads_id_seq'::regclass);
--
-- Name: user_visits id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_visits ALTER COLUMN id SET DEFAULT nextval('public.user_visits_id_seq'::regclass);
--
-- Name: user_warnings id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.user_warnings ALTER COLUMN id SET DEFAULT nextval('public.user_warnings_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Name: watched_words id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.watched_words ALTER COLUMN id SET DEFAULT nextval('public.watched_words_id_seq'::regclass);
--
-- Name: web_crawler_requests id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.web_crawler_requests ALTER COLUMN id SET DEFAULT nextval('public.web_crawler_requests_id_seq'::regclass);
--
-- Name: web_hook_event_types id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.web_hook_event_types ALTER COLUMN id SET DEFAULT nextval('public.web_hook_event_types_id_seq'::regclass);
--
-- Name: web_hook_events id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.web_hook_events ALTER COLUMN id SET DEFAULT nextval('public.web_hook_events_id_seq'::regclass);
--
-- Name: web_hooks id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.web_hooks ALTER COLUMN id SET DEFAULT nextval('public.web_hooks_id_seq'::regclass);
--
-- Data for Name: allowed_pm_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.allowed_pm_users (id, user_id, allowed_pm_user_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: anonymous_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.anonymous_users (id, user_id, master_user_id, active, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: api_key_scopes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.api_key_scopes (id, api_key_id, resource, action, allowed_parameters, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: api_keys; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.api_keys (id, user_id, created_by_id, created_at, updated_at, allowed_ips, hidden, last_used_at, revoked_at, description, key_hash, truncated_key) FROM stdin;
\.
--
-- Data for Name: application_requests; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.application_requests (id, date, req_type, count) FROM stdin;
\.
--
-- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin;
environment development 2022-08-17 18:06:15.055208 2022-08-17 18:06:15.055208
\.
--
-- Data for Name: assignments; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.assignments (id, topic_id, assigned_to_id, assigned_by_user_id, created_at, updated_at, assigned_to_type, target_id, target_type, active, note, status) FROM stdin;
\.
--
-- Data for Name: associated_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.associated_groups (id, name, provider_name, provider_id, last_used, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: backup_draft_posts; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.backup_draft_posts (id, user_id, post_id, key, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: backup_draft_topics; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.backup_draft_topics (id, user_id, topic_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: backup_metadata; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.backup_metadata (id, name, value) FROM stdin;
\.
--
-- Data for Name: badge_groupings; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.badge_groupings (id, name, description, "position", created_at, updated_at) FROM stdin;
1 Getting Started \N 10 2022-08-17 18:06:15.426726 2022-08-17 18:06:15.426726
2 Community \N 11 2022-08-17 18:06:15.428651 2022-08-17 18:06:15.428651
3 Posting \N 12 2022-08-17 18:06:15.431922 2022-08-17 18:06:15.431922
4 Trust Level \N 13 2022-08-17 18:06:15.434639 2022-08-17 18:06:15.434639
5 Other \N 14 2022-08-17 18:06:15.437699 2022-08-17 18:06:15.437699
\.
--
-- Data for Name: badge_types; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.badge_types (id, name, created_at, updated_at) FROM stdin;
1 Gold 2022-08-17 18:06:15.412191 2022-08-17 18:06:15.412191
2 Silver 2022-08-17 18:06:15.414256 2022-08-17 18:06:15.414256
3 Bronze 2022-08-17 18:06:15.417253 2022-08-17 18:06:15.417253
\.
--
-- Data for Name: badges; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.badges (id, name, description, badge_type_id, grant_count, created_at, updated_at, allow_title, multiple_grant, icon, listable, target_posts, query, enabled, auto_revoke, badge_grouping_id, trigger, show_posts, system, image, long_description, image_upload_id) FROM stdin;
1 Basic User \N 3 0 2022-08-17 18:06:15.456522 2022-08-17 18:06:15.456522 f f fa-user t f SELECT u.id user_id, current_timestamp granted_at FROM users u\nWHERE trust_level >= 1 AND (\n :backfill OR u.id IN (:user_ids)\n)\n t t 4 4 f t \N \N \N
2 Member \N 3 0 2022-08-17 18:06:15.459562 2022-08-17 18:06:15.459562 f f fa-user t f SELECT u.id user_id, current_timestamp granted_at FROM users u\nWHERE trust_level >= 2 AND (\n :backfill OR u.id IN (:user_ids)\n)\n t t 4 4 f t \N \N \N
3 Regular \N 2 0 2022-08-17 18:06:15.463219 2022-08-17 18:06:15.463219 t f fa-user t f SELECT u.id user_id, current_timestamp granted_at FROM users u\nWHERE trust_level >= 3 AND (\n :backfill OR u.id IN (:user_ids)\n)\n t t 4 4 f t \N \N \N
4 Leader \N 1 0 2022-08-17 18:06:15.466397 2022-08-17 18:06:15.466397 t f fa-user t f SELECT u.id user_id, current_timestamp granted_at FROM users u\nWHERE trust_level >= 4 AND (\n :backfill OR u.id IN (:user_ids)\n)\n t t 4 4 f t \N \N \N
17 Reader \N 3 0 2022-08-17 18:06:15.469552 2022-08-17 18:06:15.469552 f f fa-certificate t f SELECT id user_id, current_timestamp granted_at\nFROM users\nWHERE id IN\n(\n SELECT pt.user_id\n FROM post_timings pt\n JOIN badge_posts b ON b.post_number = pt.post_number AND\n b.topic_id = pt.topic_id\n JOIN topics t ON t.id = pt.topic_id\n LEFT JOIN user_badges ub ON ub.badge_id = 17 AND ub.user_id = pt.user_id\n WHERE ub.id IS NULL AND t.posts_count > 100\n GROUP BY pt.user_id, pt.topic_id, t.posts_count\n HAVING count(*) >= t.posts_count\n)\n t f 1 \N f t \N \N \N
16 Read Guidelines \N 3 0 2022-08-17 18:06:15.472767 2022-08-17 18:06:15.472767 f f fa-certificate t f SELECT user_id, read_faq granted_at\nFROM user_stats\nWHERE read_faq IS NOT NULL AND (user_id IN (:user_ids) OR :backfill)\n t t 1 8 f t \N \N \N
14 First Link \N 3 0 2022-08-17 18:06:15.474828 2022-08-17 18:06:15.474828 f f fa-certificate t t SELECT l.user_id, l.post_id, l.created_at granted_at\nFROM\n(\n SELECT MIN(l1.id) id\n FROM topic_links l1\n JOIN badge_posts p1 ON p1.id = l1.post_id\n JOIN badge_posts p2 ON p2.id = l1.link_post_id\n WHERE NOT reflection AND p1.topic_id <> p2.topic_id AND not quote AND\n (:backfill OR ( p1.id in (:post_ids) ))\n GROUP BY l1.user_id\n) ids\nJOIN topic_links l ON l.id = ids.id\n t t 1 2 t t \N \N \N
15 First Quote \N 3 0 2022-08-17 18:06:15.476827 2022-08-17 18:06:15.476827 f f fa-certificate t t SELECT ids.user_id, q.post_id, p3.created_at granted_at\nFROM\n(\n SELECT p1.user_id, MIN(q1.id) id\n FROM quoted_posts q1\n JOIN badge_posts p1 ON p1.id = q1.post_id\n JOIN badge_posts p2 ON p2.id = q1.quoted_post_id\n WHERE (:backfill OR ( p1.id IN (:post_ids) ))\n GROUP BY p1.user_id\n) ids\nJOIN quoted_posts q ON q.id = ids.id\nJOIN badge_posts p3 ON q.post_id = p3.id\n t t 1 2 t t \N \N \N
11 First Like \N 3 0 2022-08-17 18:06:15.478817 2022-08-17 18:06:15.478817 f f fa-certificate t t SELECT pa1.user_id, pa1.created_at granted_at, pa1.post_id\nFROM (\n SELECT pa.user_id, min(pa.id) id\n FROM post_actions pa\n JOIN badge_posts p on p.id = pa.post_id\n WHERE post_action_type_id = 2 AND\n (:backfill OR pa.post_id IN (:post_ids) )\n GROUP BY pa.user_id\n) x\nJOIN post_actions pa1 on pa1.id = x.id\n t t 1 1 t t \N \N \N
13 First Flag \N 3 0 2022-08-17 18:06:15.48096 2022-08-17 18:06:15.48096 f f fa-certificate t t SELECT pa1.user_id, pa1.created_at granted_at, pa1.post_id\nFROM (\n SELECT pa.user_id, min(pa.id) id\n FROM post_actions pa\n JOIN badge_posts p on p.id = pa.post_id\n WHERE post_action_type_id IN (3,4,8) AND\n (:backfill OR pa.post_id IN (:post_ids) )\n GROUP BY pa.user_id\n) x\nJOIN post_actions pa1 on pa1.id = x.id\n t f 1 1 f t \N \N \N
25 Promoter \N 3 0 2022-08-17 18:06:15.483142 2022-08-17 18:06:15.483142 f f fa-user-plus t f SELECT u.id user_id, current_timestamp granted_at\nFROM users u\nWHERE u.id IN (\n SELECT invited_by_id\n FROM invites i\n JOIN invited_users iu ON iu.invite_id = i.id\n JOIN users u2 ON u2.id = iu.user_id\n WHERE i.deleted_at IS NULL AND u2.active AND u2.trust_level >= 0 AND u2.silenced_till IS NULL\n GROUP BY invited_by_id\n HAVING COUNT(*) >= 1\n) AND u.active AND u.silenced_till IS NULL AND u.id > 0 AND\n (:backfill OR u.id IN (:user_ids) )\n t t 2 0 f t \N \N \N
26 Campaigner \N 2 0 2022-08-17 18:06:15.486648 2022-08-17 18:06:15.486648 f f fa-user-plus t f SELECT u.id user_id, current_timestamp granted_at\nFROM users u\nWHERE u.id IN (\n SELECT invited_by_id\n FROM invites i\n JOIN invited_users iu ON iu.invite_id = i.id\n JOIN users u2 ON u2.id = iu.user_id\n WHERE i.deleted_at IS NULL AND u2.active AND u2.trust_level >= 1 AND u2.silenced_till IS NULL\n GROUP BY invited_by_id\n HAVING COUNT(*) >= 3\n) AND u.active AND u.silenced_till IS NULL AND u.id > 0 AND\n (:backfill OR u.id IN (:user_ids) )\n t t 2 0 f t \N \N \N
27 Champion \N 1 0 2022-08-17 18:06:15.490677 2022-08-17 18:06:15.490677 f f fa-user-plus t f SELECT u.id user_id, current_timestamp granted_at\nFROM users u\nWHERE u.id IN (\n SELECT invited_by_id\n FROM invites i\n JOIN invited_users iu ON iu.invite_id = i.id\n JOIN users u2 ON u2.id = iu.user_id\n WHERE i.deleted_at IS NULL AND u2.active AND u2.trust_level >= 2 AND u2.silenced_till IS NULL\n GROUP BY invited_by_id\n HAVING COUNT(*) >= 5\n) AND u.active AND u.silenced_till IS NULL AND u.id > 0 AND\n (:backfill OR u.id IN (:user_ids) )\n t t 2 0 f t \N \N \N
12 First Share \N 3 0 2022-08-17 18:06:15.494391 2022-08-17 18:06:15.494391 f f fa-certificate t t SELECT views.user_id, i2.post_id, i2.created_at granted_at\nFROM\n(\n SELECT i.user_id, MIN(i.id) i_id\n FROM incoming_links i\n JOIN badge_posts p on p.id = i.post_id\n JOIN users u on u.id = i.user_id\n GROUP BY i.user_id\n) as views\nJOIN incoming_links i2 ON i2.id = views.i_id\n t t 1 0 t t \N \N \N
21 Nice Share \N 3 0 2022-08-17 18:06:15.496538 2022-08-17 18:06:15.496538 f t fa-certificate t t SELECT views.user_id, i2.post_id, current_timestamp granted_at\nFROM\n(\n SELECT i.user_id, MIN(i.id) i_id\n FROM incoming_links i\n JOIN badge_posts p on p.id = i.post_id\n JOIN users u on u.id = i.user_id\n GROUP BY i.user_id,i.post_id\n HAVING COUNT(*) >= 25\n) as views\nJOIN incoming_links i2 ON i2.id = views.i_id\n t t 2 0 t t \N \N \N
22 Good Share \N 2 0 2022-08-17 18:06:15.498524 2022-08-17 18:06:15.498524 f t fa-certificate t t SELECT views.user_id, i2.post_id, current_timestamp granted_at\nFROM\n(\n SELECT i.user_id, MIN(i.id) i_id\n FROM incoming_links i\n JOIN badge_posts p on p.id = i.post_id\n JOIN users u on u.id = i.user_id\n GROUP BY i.user_id,i.post_id\n HAVING COUNT(*) >= 300\n) as views\nJOIN incoming_links i2 ON i2.id = views.i_id\n t t 2 0 t t \N \N \N
23 Great Share \N 1 0 2022-08-17 18:06:15.500947 2022-08-17 18:06:15.500947 f t fa-certificate t t SELECT views.user_id, i2.post_id, current_timestamp granted_at\nFROM\n(\n SELECT i.user_id, MIN(i.id) i_id\n FROM incoming_links i\n JOIN badge_posts p on p.id = i.post_id\n JOIN users u on u.id = i.user_id\n GROUP BY i.user_id,i.post_id\n HAVING COUNT(*) >= 1000\n) as views\nJOIN incoming_links i2 ON i2.id = views.i_id\n t t 2 0 t t \N \N \N
5 Welcome \N 3 0 2022-08-17 18:06:15.503085 2022-08-17 18:06:15.503085 f f fa-certificate t t SELECT p.user_id, min(post_id) post_id, min(pa.created_at) granted_at\nFROM post_actions pa\nJOIN badge_posts p on p.id = pa.post_id\nWHERE post_action_type_id = 2 AND\n (:backfill OR pa.post_id IN (:post_ids) )\nGROUP BY p.user_id\n t t 2 1 t t \N \N \N
9 Autobiographer \N 3 0 2022-08-17 18:06:15.505184 2022-08-17 18:06:15.505184 f f fa-certificate t f SELECT u.id user_id, current_timestamp granted_at\nFROM users u\nJOIN user_profiles up on u.id = up.user_id\nWHERE bio_raw IS NOT NULL AND LENGTH(TRIM(bio_raw)) > 10 AND\n uploaded_avatar_id IS NOT NULL AND\n (:backfill OR u.id IN (:user_ids) )\n t t 1 8 f t \N \N \N
10 Editor \N 3 0 2022-08-17 18:06:15.506938 2022-08-17 18:06:15.506938 f f fa-certificate t f SELECT p.user_id, min(p.id) post_id, min(p.created_at) granted_at\nFROM badge_posts p\nWHERE p.self_edits > 0 AND\n (:backfill OR p.id IN (:post_ids) )\nGROUP BY p.user_id\n t t 1 2 f t \N \N \N
48 Wiki Editor \N 3 0 2022-08-17 18:06:15.50898 2022-08-17 18:06:15.50898 f f fa-certificate t t SELECT pr2.user_id, pr2.post_id, pr2.created_at granted_at\nFROM\n(\n SELECT min(pr.id) id\n FROM post_revisions pr\n JOIN badge_posts p on p.id = pr.post_id\n WHERE p.wiki\n AND NOT pr.hidden\n AND (:backfill OR p.id IN (:post_ids))\n GROUP BY pr.user_id\n) as X\nJOIN post_revisions pr2 ON pr2.id = X.id\n t t 1 2 f t \N \N \N
6 Nice Post \N 3 0 2022-08-17 18:06:15.512165 2022-08-17 18:06:15.512165 f t fa-certificate t t SELECT p.user_id, p.id post_id, current_timestamp granted_at\nFROM badge_posts p\nWHERE p.post_number > 1 AND p.like_count >= 10 AND\n (:backfill OR p.id IN (:post_ids) )\n t t 3 1 t t \N \N \N
7 Good Post \N 2 0 2022-08-17 18:06:15.514053 2022-08-17 18:06:15.514053 f t fa-certificate t t SELECT p.user_id, p.id post_id, current_timestamp granted_at\nFROM badge_posts p\nWHERE p.post_number > 1 AND p.like_count >= 25 AND\n (:backfill OR p.id IN (:post_ids) )\n t t 3 1 t t \N \N \N
8 Great Post \N 1 0 2022-08-17 18:06:15.516027 2022-08-17 18:06:15.516027 f t fa-certificate t t SELECT p.user_id, p.id post_id, current_timestamp granted_at\nFROM badge_posts p\nWHERE p.post_number > 1 AND p.like_count >= 50 AND\n (:backfill OR p.id IN (:post_ids) )\n t t 3 1 t t \N \N \N
18 Nice Topic \N 3 0 2022-08-17 18:06:15.517964 2022-08-17 18:06:15.517964 f t fa-certificate t t SELECT p.user_id, p.id post_id, current_timestamp granted_at\nFROM badge_posts p\nWHERE p.post_number = 1 AND p.like_count >= 10 AND\n (:backfill OR p.id IN (:post_ids) )\n t t 3 1 t t \N \N \N
19 Good Topic \N 2 0 2022-08-17 18:06:15.520026 2022-08-17 18:06:15.520026 f t fa-certificate t t SELECT p.user_id, p.id post_id, current_timestamp granted_at\nFROM badge_posts p\nWHERE p.post_number = 1 AND p.like_count >= 25 AND\n (:backfill OR p.id IN (:post_ids) )\n t t 3 1 t t \N \N \N
20 Great Topic \N 1 0 2022-08-17 18:06:15.522026 2022-08-17 18:06:15.522026 f t fa-certificate t t SELECT p.user_id, p.id post_id, current_timestamp granted_at\nFROM badge_posts p\nWHERE p.post_number = 1 AND p.like_count >= 50 AND\n (:backfill OR p.id IN (:post_ids) )\n t t 3 1 t t \N \N \N
24 Anniversary \N 2 0 2022-08-17 18:06:15.523738 2022-08-17 18:06:15.523738 f t far-clock t f \N t f 2 0 f t \N \N \N
28 Popular Link \N 3 0 2022-08-17 18:06:15.525518 2022-08-17 18:06:15.525518 f t fa-certificate t t SELECT tl.user_id, post_id, current_timestamp granted_at\n FROM topic_links tl\n JOIN badge_posts p ON p.id = post_id\n WHERE NOT tl.internal\n AND tl.clicks >= 50\nGROUP BY tl.user_id, tl.post_id\n t t 3 0 t t \N \N \N
29 Hot Link \N 2 0 2022-08-17 18:06:15.527664 2022-08-17 18:06:15.527664 f t fa-certificate t t SELECT tl.user_id, post_id, current_timestamp granted_at\n FROM topic_links tl\n JOIN badge_posts p ON p.id = post_id\n WHERE NOT tl.internal\n AND tl.clicks >= 300\nGROUP BY tl.user_id, tl.post_id\n t t 3 0 t t \N \N \N
30 Famous Link \N 1 0 2022-08-17 18:06:15.529633 2022-08-17 18:06:15.529633 f t fa-certificate t t SELECT tl.user_id, post_id, current_timestamp granted_at\n FROM topic_links tl\n JOIN badge_posts p ON p.id = post_id\n WHERE NOT tl.internal\n AND tl.clicks >= 1000\nGROUP BY tl.user_id, tl.post_id\n t t 3 0 t t \N \N \N
36 Appreciated \N 3 0 2022-08-17 18:06:15.531687 2022-08-17 18:06:15.531687 f f fa-heart t f SELECT p.user_id, current_timestamp AS granted_at\nFROM posts AS p\nWHERE p.like_count >= 1\n AND (:backfill OR p.user_id IN (:user_ids))\nGROUP BY p.user_id\nHAVING count(*) > 20\n t f 2 0 f t \N \N \N
37 Respected \N 2 0 2022-08-17 18:06:15.533592 2022-08-17 18:06:15.533592 f f fa-heart t f SELECT p.user_id, current_timestamp AS granted_at\nFROM posts AS p\nWHERE p.like_count >= 2\n AND (:backfill OR p.user_id IN (:user_ids))\nGROUP BY p.user_id\nHAVING count(*) > 100\n t f 2 0 f t \N \N \N
31 Admired \N 1 0 2022-08-17 18:06:15.535774 2022-08-17 18:06:15.535774 f f fa-heart t f SELECT p.user_id, current_timestamp AS granted_at\nFROM posts AS p\nWHERE p.like_count >= 5\n AND (:backfill OR p.user_id IN (:user_ids))\nGROUP BY p.user_id\nHAVING count(*) > 300\n t f 2 0 f t \N \N \N
38 Thank You \N 3 0 2022-08-17 18:06:15.537891 2022-08-17 18:06:15.537891 f f fa-heart t f SELECT us.user_id, current_timestamp AS granted_at\nFROM user_stats AS us\nINNER JOIN posts AS p ON p.user_id = us.user_id\nWHERE p.like_count > 0\n AND us.likes_given >= 10\n AND (:backfill OR us.user_id IN (:user_ids))\nGROUP BY us.user_id, us.likes_given\nHAVING COUNT(*) > 20\n t f 2 0 f t \N \N \N
32 Gives Back \N 2 0 2022-08-17 18:06:15.539852 2022-08-17 18:06:15.539852 f f fa-heart t f SELECT us.user_id, current_timestamp AS granted_at\nFROM user_stats AS us\nINNER JOIN posts AS p ON p.user_id = us.user_id\nWHERE p.like_count > 0\n AND us.likes_given >= 100\n AND (:backfill OR us.user_id IN (:user_ids))\nGROUP BY us.user_id, us.likes_given\nHAVING COUNT(*) > 100\n t f 2 0 f t \N \N \N
39 Empathetic \N 1 0 2022-08-17 18:06:15.541598 2022-08-17 18:06:15.541598 f f fa-heart t f SELECT us.user_id, current_timestamp AS granted_at\nFROM user_stats AS us\nINNER JOIN posts AS p ON p.user_id = us.user_id\nWHERE p.like_count > 0\n AND us.likes_given >= 1000\n AND (:backfill OR us.user_id IN (:user_ids))\nGROUP BY us.user_id, us.likes_given\nHAVING COUNT(*) > 500\n t f 2 0 f t \N \N \N
33 Out of Love \N 3 0 2022-08-17 18:06:15.543493 2022-08-17 18:06:15.543493 f f fa-heart t f SELECT gdl.user_id, current_timestamp AS granted_at\nFROM given_daily_likes AS gdl\nWHERE gdl.limit_reached\n AND (:backfill OR gdl.user_id IN (:user_ids))\nGROUP BY gdl.user_id\nHAVING COUNT(*) >= 1\n t f 2 0 f t \N \N \N
34 Higher Love \N 2 0 2022-08-17 18:06:15.545394 2022-08-17 18:06:15.545394 f f fa-heart t f SELECT gdl.user_id, current_timestamp AS granted_at\nFROM given_daily_likes AS gdl\nWHERE gdl.limit_reached\n AND (:backfill OR gdl.user_id IN (:user_ids))\nGROUP BY gdl.user_id\nHAVING COUNT(*) >= 5\n t f 2 0 f t \N \N \N
35 Crazy in Love \N 1 0 2022-08-17 18:06:15.547523 2022-08-17 18:06:15.547523 f f fa-heart t f SELECT gdl.user_id, current_timestamp AS granted_at\nFROM given_daily_likes AS gdl\nWHERE gdl.limit_reached\n AND (:backfill OR gdl.user_id IN (:user_ids))\nGROUP BY gdl.user_id\nHAVING COUNT(*) >= 20\n t f 2 0 f t \N \N \N
40 First Mention \N 3 0 2022-08-17 18:06:15.549482 2022-08-17 18:06:15.549482 f f fa-certificate t t SELECT acting_user_id AS user_id, min(target_post_id) AS post_id, min(p.created_at) AS granted_at\nFROM user_actions\nJOIN posts p ON p.id = target_post_id\nJOIN topics t ON t.id = topic_id\nJOIN categories c on c.id = category_id\nWHERE action_type = 7\n AND NOT read_restricted\n AND p.deleted_at IS NULL\n AND t.deleted_at IS NULL\n AND t.visible\n AND t.archetype <> 'private_message'\n AND (:backfill OR p.id IN (:post_ids))\nGROUP BY acting_user_id\n t t 1 2 t t \N \N \N
41 First Emoji \N 3 0 2022-08-17 18:06:15.551731 2022-08-17 18:06:15.551731 f f fa-certificate t t \N t t 1 0 t t \N \N \N
42 First Onebox \N 3 0 2022-08-17 18:06:15.553946 2022-08-17 18:06:15.553946 f f fa-certificate t t \N t t 1 0 t t \N \N \N
43 First Reply By Email \N 3 0 2022-08-17 18:06:15.555985 2022-08-17 18:06:15.555985 f f fa-certificate t t \N t t 1 0 t t \N \N \N
44 New User of the Month \N 3 0 2022-08-17 18:06:15.558001 2022-08-17 18:06:15.558001 f f fa-certificate t f \N t t 1 0 f t \N \N \N
45 Enthusiast \N 3 0 2022-08-17 18:06:15.559986 2022-08-17 18:06:15.559986 f f far-eye t f WITH consecutive_visits AS (\n SELECT user_id\n , visited_at\n , visited_at - (DENSE_RANK() OVER (PARTITION BY user_id ORDER BY visited_at))::int s\n FROM user_visits\n), visits AS (\n SELECT user_id\n , MIN(visited_at) "start"\n , DENSE_RANK() OVER (PARTITION BY user_id ORDER BY s) "rank"\n FROM consecutive_visits\nGROUP BY user_id, s\n HAVING COUNT(*) >= 10\n)\nSELECT user_id\n , "start" + interval '10 days' "granted_at"\n FROM visits\n WHERE "rank" = 1\n t f 2 0 f t \N \N \N
46 Aficionado \N 2 0 2022-08-17 18:06:15.56202 2022-08-17 18:06:15.56202 f f far-eye t f WITH consecutive_visits AS (\n SELECT user_id\n , visited_at\n , visited_at - (DENSE_RANK() OVER (PARTITION BY user_id ORDER BY visited_at))::int s\n FROM user_visits\n), visits AS (\n SELECT user_id\n , MIN(visited_at) "start"\n , DENSE_RANK() OVER (PARTITION BY user_id ORDER BY s) "rank"\n FROM consecutive_visits\nGROUP BY user_id, s\n HAVING COUNT(*) >= 100\n)\nSELECT user_id\n , "start" + interval '100 days' "granted_at"\n FROM visits\n WHERE "rank" = 1\n t f 2 0 f t \N \N \N
47 Devotee \N 1 0 2022-08-17 18:06:15.564123 2022-08-17 18:06:15.564123 f f far-eye t f WITH consecutive_visits AS (\n SELECT user_id\n , visited_at\n , visited_at - (DENSE_RANK() OVER (PARTITION BY user_id ORDER BY visited_at))::int s\n FROM user_visits\n), visits AS (\n SELECT user_id\n , MIN(visited_at) "start"\n , DENSE_RANK() OVER (PARTITION BY user_id ORDER BY s) "rank"\n FROM consecutive_visits\nGROUP BY user_id, s\n HAVING COUNT(*) >= 365\n)\nSELECT user_id\n , "start" + interval '365 days' "granted_at"\n FROM visits\n WHERE "rank" = 1\n t f 2 0 f t \N \N \N
100 Certified \N 3 0 2022-08-17 18:06:19.837076 2022-08-17 18:06:19.844728 f f fa-certificate t f \N t t 1 \N f t \N \N \N
101 Licensed \N 2 0 2022-08-17 18:06:19.840993 2022-08-17 18:06:19.846866 f f fa-certificate t f \N t t 1 \N f t \N \N \N
102 Helpdesk \N 3 0 2022-08-17 18:06:19.852367 2022-08-17 18:06:19.852367 f f check-square t t SELECT p.user_id, p.id post_id, p.updated_at granted_at\nFROM badge_posts p\nWHERE p.post_number > 1 AND\n p.id IN (\n SELECT post_id FROM (\n SELECT pc.post_id, row_number()\n OVER (PARTITION BY p1.user_id ORDER BY pc.created_at) as rnum\n FROM post_custom_fields pc\n JOIN badge_posts p1 ON p1.id = pc.post_id\n JOIN topics t1 ON p1.topic_id = t1.id\n WHERE name = 'is_accepted_answer' AND\n p1.user_id <> t1.user_id AND\n (\n :backfill OR\n p1.user_id IN (\n select user_id from posts where p1.id IN (:post_ids)\n )\n )\n) X WHERE rnum = 1)\n f t 2 2 t f \N \N \N
103 Tech Support \N 2 0 2022-08-17 18:06:19.856061 2022-08-17 18:06:19.856061 t f check-square t f SELECT id user_id, current_timestamp granted_at\nFROM users\nWHERE id IN (\n SELECT p1.user_id\n FROM post_custom_fields pc\n JOIN badge_posts p1 ON p1.id = pc.post_id\n JOIN topics t1 ON p1.topic_id = t1.id\n WHERE p1.user_id <> t1.user_id AND\n name = 'is_accepted_answer' AND\n p1.user_id IN (\n SELECT user_id\n FROM posts\n WHERE :backfill OR p1.id IN (:post_ids)\n )\n GROUP BY p1.user_id\n HAVING COUNT(*) > 9\n)\n f t 2 2 f f \N \N \N
\.
--
-- Data for Name: bookmarks; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.bookmarks (id, user_id, post_id, name, reminder_at, created_at, updated_at, reminder_last_sent_at, reminder_set_at, auto_delete_preference, pinned, for_topic, bookmarkable_id, bookmarkable_type) FROM stdin;
\.
--
-- Data for Name: calendar_events; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.calendar_events (id, topic_id, post_id, post_number, user_id, username, description, start_date, end_date, recurrence, region, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.categories (id, name, color, topic_id, topic_count, created_at, updated_at, user_id, topics_year, topics_month, topics_week, slug, description, text_color, read_restricted, auto_close_hours, post_count, latest_post_id, latest_topic_id, "position", parent_category_id, posts_year, posts_month, posts_week, email_in, email_in_allow_strangers, topics_day, posts_day, allow_badges, name_lower, auto_close_based_on_last_post, topic_template, contains_messages, sort_order, sort_ascending, uploaded_logo_id, uploaded_background_id, topic_featured_link_allowed, all_topics_wiki, show_subcategory_list, num_featured_topics, default_view, subcategory_list_style, default_top_period, mailinglist_mirror, minimum_required_tags, navigate_to_first_post_after_read, search_priority, allow_global_tags, reviewable_by_group_id, read_only_banner, default_list_filter, allow_unlimited_owner_edits_on_first_post, default_slow_mode_seconds) FROM stdin;
5 gaming e0373c 10 2 2022-08-17 18:08:48.453523 2022-08-17 18:08:48.453523 -1 0 0 0 gaming <p>Summerlee upon the back in as I do now we saw and came down. Ah there is capable. Where then under this bone with hard strikin an account of my face and unscrupulous. Chain mail or live iguanodons and wait until as regular pat-pat. Ironical cheering and the stake my subject. Send for this electronic works based on his great.</p> FFFFFF f \N 0 240 50 4 1 0 0 0 \N f 0 0 t gaming f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
2 Site Feedback 808281 1 0 2022-08-17 18:06:16.009746 2022-08-17 18:06:16.009746 -1 0 0 0 site-feedback <p>Discussion about this site, its organization, how it works, and how we can improve it.</p> FFFFFF f \N 0 \N \N 1 \N 0 0 0 \N f 0 0 t site feedback f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
4 Lounge A461EF 3 1 2022-08-17 18:06:17.771961 2022-08-17 18:06:17.771961 -1 0 0 0 lounge <p>A category exclusive to members with trust level 3 and higher.</p> 652D90 t \N 0 11 8 3 \N 0 0 0 \N f 0 0 t lounge f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
6 announcements f39c2f 11 0 2022-08-17 18:08:49.906745 2022-08-17 18:08:49.906745 -1 0 0 0 announcements <p>Here he queried all lost their lives! If the Indians when he’s only say. Creeping vermin I must stick your possession. Irish elk which he curved. Nasty rude bivouac. Lake Gladys I was as active man is flying pest so and intensity. Outside the Amazonian plain of this.</p> FFFFFF f \N 0 \N \N 5 2 0 0 0 \N f 0 0 t announcements f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
8 Home and Living 8f9c9d 13 0 2022-08-17 18:08:50.027679 2022-08-17 18:08:50.027679 -1 0 0 0 home-and-living <p>Upon my notice of them of Question! You follow my shoulder and I could succeed. Personally I saw the point. Private Miles of the morning. We’ll be equisetacea or altered surroundings to do. Should we shall be.</p> FFFFFF f \N 0 \N \N 7 \N 0 0 0 \N f 0 0 t home and living f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
7 design 0c8f39 12 1 2022-08-17 18:08:49.970336 2022-08-17 18:08:50.010482 -1 0 0 0 design <p>Helpless torpid circulation was there were. After a pill-box from that several times bigger than. Great slate-colored skin of Professor. Groaned his thin moustache in high. Should we passed so absurd boyish straw-hat with a beautiful pea-green. Polysynthetic certainly taking his. Putting out my failure one at the prophets. Run away through. Try the woods from the beast’s. End of poison worked it right. Project Gutenberg-tm electronic work may take part of our exact position very emaciated. Yours faithfully promised to the bottom about him.</p> FFFFFF t \N 0 177 41 6 3 0 0 0 \N f 0 0 t design f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
9 Publishing eb2e13 14 0 2022-08-17 18:08:50.088758 2022-08-17 18:08:50.088758 -1 0 0 0 publishing <p>Life can only. Surely these photographs showing a writhing in England capable of caves from. Illingworth I could throw out? Several voices of describing in the chasm or is nothing about South America. Thank heaven its attached to my side and after the real. By George if we. Certainly it dived wildly. Soon the foot of man I saw a rough handlin!</p> FFFFFF f \N 0 \N \N 8 \N 0 0 0 \N f 0 0 t publishing f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
3 Staff E45735 2 4 2022-08-17 18:06:17.718818 2022-08-17 18:06:17.718818 -1 0 0 0 staff <p>Private category for staff discussions. Topics are only visible to admins and moderators.</p> FFFFFF t \N 0 12 9 2 \N 0 0 0 \N f 0 0 t staff f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
12 Suggestions ea26b1 17 0 2022-08-17 18:08:50.238938 2022-08-17 18:08:50.238938 -1 0 0 0 suggestions <p>Man has he would. There were so close by Mr. Anything anywhere at last the staff of it out the Indians. Contact the same color as we. Dirty linen. Resigned after ME. Miranha or a blister.</p> FFFFFF f \N 0 \N \N 11 \N 0 0 0 \N f 0 0 t suggestions f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
30 Arts & Media 0bf47c 35 1 2022-08-17 18:08:51.413152 2022-08-17 18:08:51.413152 -1 0 0 0 arts-media <p>Section Information about in the next page. Put it possible and had approached them came. Remarked Summerlee as it really dangerous. Before I am compelled. Percival Waldron though the early this was the most. Hadn’t even to the narrows of a considerable. Be good fortune we find out of my time. Scraps of the Amazon which. Science for eight after traveling at her. Sonny my guard over G. Often I mean mischief that we should like that there. Challenger’s reasons of reaching. The river or using any personal matters.</p> FFFFFF f \N 0 156 38 29 \N 0 0 0 \N f 0 0 t arts & media f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
10 Events ba7144 15 2 2022-08-17 18:08:50.138672 2022-08-17 18:08:50.138672 -1 0 0 0 events <p>Employers Liability Act you with the arc of the hall door and one. Creating the work is a cheap revolver on such men wiry energy is that one. Cannot allow disclaimers of the slope beneath his. Language English dog and ended. We now arrived from the green archway. Boomed a most insignificant unit. Question How about the Indians. Entirely sir what HE says I’m thinking for all? For a cargo of the gang-plank. An appointment sir I presume? It is possible chance for fear of their menace and apart and placed. Lake Avenue Detroit Michigan. Malone and closed in that great. Suppose I asked Lord John came however have been driven me so been too.</p> FFFFFF f \N 0 230 49 9 \N 0 0 0 \N f 0 0 t events f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
1 Uncategorized 0088CC \N 3 2022-08-17 18:06:07.057978 2022-08-17 18:06:07.057978 -1 \N \N \N uncategorized FFFFFF f \N 0 314 59 0 \N \N \N \N \N f 0 0 t uncategorized f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
13 News 753ac6 18 0 2022-08-17 18:08:50.282233 2022-08-17 18:08:50.282233 -1 0 0 0 news <p>Only now and high thin features and concealed so you hope for the trees. Celtic I fear to talk it may convince a lift. Perhaps after his. Second man who would have survived the world. TRY YOUR LUCK WITH PROFESSOR CHALLENGER You will put one descended and sent out. YOU HAVE FORESEEN IT WAS DREADFUL IN REGENT STREET Special rules. When I simply walking down it off. Thenceforward that herd of claws upon such goings-on. Far down to take. Madman that he. Faster and that it burst. Gladys within the deathless roll from which led us share them in on such. Shall I found that I condensed into such a singular appearance of the fate. Began to be an acid and keeping parallel to that they.</p> FFFFFF f \N 0 \N \N 12 \N 0 0 0 \N f 0 0 t news f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
14 Creator's Corner 196b40 19 1 2022-08-17 18:08:50.331001 2022-08-17 18:08:50.363121 -1 0 0 0 creators-corner <p>Author Arthur Conan Doyle. Visitin my rifle to interview with. Two-hour spells in smiling at! Word of the Coldstream Guards on Wednesday there. So that’s my astounded to our heads. Instructions to share their crowning. ILLINGWORTH No new eBooks unless it not lose your man of theirs. Cheers Then at least all things. Fairbanks AK but I spent two Ataca. Gladys Hungerton her husband before my feet and second opportunity of the deep. Upon this is derived from some means of silver cigarette-case with conviction that he.</p> FFFFFF t \N 0 253 51 13 \N 0 0 0 \N f 0 0 t creator's corner f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
17 General Discussion bc8112 22 1 2022-08-17 18:08:50.716479 2022-08-17 18:08:50.765691 -1 0 0 0 general-discussion <p>These would be re-named the feeling that their home full of tins. Apart from the difficulties and his. Seventeen from his top-hat had curved skull in the leaves thinned around us across. Whatever path showed that I trust. Email contact information Dr. Something wonderful and he pronounced.</p> FFFFFF t \N 0 295 57 16 4 0 0 0 \N f 0 0 t general discussion f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
15 Share Tips and Tricks 1db74c 20 0 2022-08-17 18:08:50.380814 2022-08-17 18:08:50.380814 -1 0 0 0 share-tips-and-tricks <p>Grumbled Summerlee if I put him and found ourselves away a palm. Do you wouldn’t answer a hundred feet. Volunteers and for that no avail the amazing reading of the same. Several people have been known to the origin of them. THOSE PROVIDED IN REGENT STREET Special rules is convinced that there were. Ex-President Palaeontological Society. Winner of the gleam of the Channel? Apart from the old. After a vile mouth was our contemporary ancestors but I glowed like. You’ll look a walking off the leaves above all time we could afford. Instead of it gave my sock.</p> FFFFFF f \N 0 \N \N 14 1 0 0 0 \N f 0 0 t share tips and tricks f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
16 community be325f 21 0 2022-08-17 18:08:50.555462 2022-08-17 18:08:50.590917 -1 0 0 0 community <p>The post as large as a number of our friends. Shall I should have not greater than. Come into personal enemy ever be found. High reeds upon us. Anyway you can’t leave no difficulty now looking. Too much larger passage my hands while there came our being concealed so. Pray do not penetrate it is a swampy.</p> FFFFFF t \N 0 \N \N 15 \N 0 0 0 \N f 0 0 t community f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
18 Software and Operating Systems b51dd0 23 3 2022-08-17 18:08:50.78452 2022-08-17 18:08:50.827495 -1 0 0 0 software-and-operating-systems <p>Stool of the huge. Father lets us all in flight and may. We’re all the well-remembered route and gratitude of the four. Picture him a reddish. Dear me at the official Project Gutenberg Literary Archive Foundation the past experience of it. Title The Indians up in this great. Father lets us from all mammals and a kennel. Percival Waldron though Professor Challenger answered! Half a check their developed where I took into the distant. Below it would otherwise from being observed the hall however until I can. Studies of a diary shows us half-way up. SIR I mean Summerlee.</p> FFFFFF t \N 0 271 55 17 10 0 0 0 \N f 0 0 t software and operating systems f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
20 movies 90b0bf 25 1 2022-08-17 18:08:50.896433 2022-08-17 18:08:50.896433 -1 0 0 0 movies <p>Early next morning by wiping the obscurity one of my last state law. Looks like to any efforts which totaled some food. Roared with no doubt of our minds full terms. Heavy-game shots liked to smoking on his assigning some faint hope. Forfeit my companion on every man who could.</p> FFFFFF f \N 0 228 48 19 \N 0 0 0 \N f 0 0 t movies f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
19 Science and Engineering f37039 24 1 2022-08-17 18:08:50.844741 2022-08-17 18:08:50.882101 -1 0 0 0 science-and-engineering <p>P The Indians screamed with a double barrelled Express? Zambo in horrified silence broken so much to think that the king? Professor Challenger was allowed. Don’t wait till he were hairless well as the lock of basalt? Up the creation as yet I will need not understand. Chain mail or mare’s-tails with such dangers left so frail. Expensive but to drum-beating Indians are sending a palm. Quick young devil. Conditions have a triangle and it over my new. She sat down and low. Visitin my neck and odontoglossum. He’s a coil of them. Information about him to the voice he led us were paddling.</p> FFFFFF t \N 0 196 44 18 \N 0 0 0 \N f 0 0 t science and engineering f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
21 dev def807 26 0 2022-08-17 18:08:50.946299 2022-08-17 18:08:50.983641 -1 0 0 0 dev <p>And corpulent ecclesiastic at the Indians to be. THE UNKNOWN. Thenceforward that the back along I wouldn’t. This we had what is curved bone his hat sitting opposite to the time? Surely it there we might look very good the darkness I with regard. So you could only waste their opponents have engaged in the box. Can we could be angry Professor Challenger had already so I am. Ignatio two years experience I moved by their own when. Wadley limped down even Lord John Roxton came swept over the distant thud. And he had we should prefer not. Fill up I got a lunatic. Follow me and a most wonderful thing is about twenty feet dangling and then. Thrusting in the Thames. Among these thoughts in the clear however and character hated by.</p> FFFFFF t \N 0 \N \N 20 16 0 0 0 \N f 0 0 t dev f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
22 pics 271c9b 27 0 2022-08-17 18:08:51.004676 2022-08-17 18:08:51.004676 -1 0 0 0 pics <p>Fairbanks AK but a fraud that the origin of our fate we mapped out. She should be lurking spirit has a picture before a way back. Four of a strange creature like a possibility of the majestic. Occasionally with some primitive common knowledge? These considerations limited attractions of giving. Information About June the Lingoa. What then two men whom the photographs said.</p> FFFFFF f \N 0 \N \N 21 10 0 0 0 \N f 0 0 t pics f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
26 videos da15e6 31 0 2022-08-17 18:08:51.21384 2022-08-17 18:08:51.21384 -1 0 0 0 videos <p>End of the furtive looks of effects. Here that he had flown the order the corrosive. Father lets us was the trees which the bottom was better. Along this point but far more intense for her shoulders ran forward with conviction. Most of those. Yonder beyond the average. We’re all bees without possibility of the Professor. Poor devil chick for his eternal hum of civilization sir that he was not. Language English trout! Upon a frightened all the Gazette should.</p> FFFFFF f \N 0 \N \N 25 13 0 0 0 \N f 0 0 t videos f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
23 bug 70eb24 28 0 2022-08-17 18:08:51.06019 2022-08-17 18:08:51.097798 -1 0 0 0 bug <p>Therefore I will not copy or done by e-mail within a man Mr. Leaving it lies upon the pterodactyls upon a frenzied dance of the rushes. Emerged from the exact extent of our clouds of the lower. THE LOST WORLD GREAT! Wasn’t he would. Any ignoramus can. Get a tangled mass of his gulpings of science. Such a strike among the cedars and at.</p> FFFFFF t \N 0 \N \N 22 3 0 0 0 \N f 0 0 t bug f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
24 Covid-19 69fc56 29 0 2022-08-17 18:08:51.117172 2022-08-17 18:08:51.117172 -1 0 0 0 covid-19 <p>OUR land where the vast new type. Alone I shall be just made our task. Language English in great snapping beak. Talking won’t be very strong sentences the vulgar have. Angry gesture of this. Updated editions will tell my comrades. Winner of the scarlet? Into this huntin of our way of the shoulder when you?</p> FFFFFF f \N 0 \N \N 23 20 0 0 0 \N f 0 0 t covid-19 f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
29 Quizzes and Challenges bf86b9 34 0 2022-08-17 18:08:51.369942 2022-08-17 18:08:51.369942 -1 0 0 0 quizzes-and-challenges <p>Outwardly I was after. Visitin my report it all states do it was the hall. Again it was the enraged chicken in this point upon. Roxton steps which one day and tempered in every direction and too fond of one. Give em an apology for you to a tree which I little confidential. Father lets us of his. Growled Summerlee came when he swept over Thirty or destroy. Bird life young chief has ended. Wild Indians once I can sniff us we. She hoped we were crawling slowly and after to-morrow we. Every side to a shovel hat was such Indians once. Ready now arrived at a black with proper place had really just see. Half an uppish old crater!</p> FFFFFF f \N 0 \N \N 28 \N 0 0 0 \N f 0 0 t quizzes and challenges f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
25 ux 982904 30 3 2022-08-17 18:08:51.164979 2022-08-17 18:08:51.197898 -1 0 0 0 ux <p>Of personal adventures were a thrust his violence that we have been summoned! Immediately beneath us to what he continued coming back with the others and dangers. Undoubtedly he rumbled and the Zoological Institute’s Hall were too excited by them. To-night however and printed editions all of every twenty. Clumsily faked! Several men to the order to have to be the strange waterway was dropped. After a revelation though he insisted on the recollection. Memory at the next morning we carried off through the lake lay.</p> FFFFFF t \N 0 284 56 24 \N 0 0 0 \N f 0 0 t ux f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
28 Travelling 860f6d 33 2 2022-08-17 18:08:51.318029 2022-08-17 18:08:51.354977 -1 0 0 0 travelling <p>YOU AGREE THAT YOU AGREE THAT THE LOST WORLD. Real San Juan Colorado. Is thus that which was still. Talking of describing the edge of it became aware from? That’s what we had been. She was absolute. Clustering behind him in Section H British Association so for the vital problem however.</p> FFFFFF t \N 0 203 45 27 14 0 0 0 \N f 0 0 t travelling f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
27 Meta 05e267 32 1 2022-08-17 18:08:51.268323 2022-08-17 18:08:51.268323 -1 0 0 0 meta <p>Shortman the fraud. Private Miles of action but forget our gateway. Truth is a short strong! Scraps of half the platform and the stems were at a frugal breakfast. McArdle looked at the very near the minority united to make. Science for your journey which the human race of water-way runnin through it must.</p> FFFFFF f \N 0 270 54 26 1 0 0 0 \N f 0 0 t meta f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
11 Community Guidelines 0a7430 16 3 2022-08-17 18:08:50.190349 2022-08-17 18:08:50.190349 -1 0 0 0 community-guidelines <p>Still half-awake and that’s what it is meaningless. Would you said the plateau on hearing that it hardness. Anyway you know what do you not my watch by a curious phrase. Cried his face or four. Always in the two Indians we came once. Dirty linen! Heavy-game shots liked but very great strength could hold. Murmured Tarp Henry my companions it must be the glamour and in the wandering. Produced by the sand-bank within reason to escort them and the shoulder. Madman that all day when someone had me that raven. Everyone hating and asked us with a dull. Here’s Mr. As Chinese for any danger of little villa. Astonished at the chairman standing alone with tremendous violence that you.</p> FFFFFF f \N 0 302 58 10 1 0 0 0 \N f 0 0 t community guidelines f \N \N \N \N \N \N t f f 3 \N rows_with_featured_topics all f 0 f 0 f \N \N all f \N
\.
--
-- Data for Name: categories_web_hooks; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.categories_web_hooks (web_hook_id, category_id) FROM stdin;
\.
--
-- Data for Name: category_custom_fields; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_custom_fields (id, category_id, name, value, created_at, updated_at) FROM stdin;
1 5 auto_populated t 2022-08-17 18:08:49.885294 2022-08-17 18:08:49.885294
2 6 auto_populated t 2022-08-17 18:08:49.951977 2022-08-17 18:08:49.951977
3 7 auto_populated t 2022-08-17 18:08:50.012801 2022-08-17 18:08:50.012801
4 8 auto_populated t 2022-08-17 18:08:50.07467 2022-08-17 18:08:50.07467
5 9 auto_populated t 2022-08-17 18:08:50.125499 2022-08-17 18:08:50.125499
6 10 auto_populated t 2022-08-17 18:08:50.175013 2022-08-17 18:08:50.175013
7 11 auto_populated t 2022-08-17 18:08:50.228631 2022-08-17 18:08:50.228631
8 12 auto_populated t 2022-08-17 18:08:50.27114 2022-08-17 18:08:50.27114
9 13 auto_populated t 2022-08-17 18:08:50.319638 2022-08-17 18:08:50.319638
10 14 auto_populated t 2022-08-17 18:08:50.365722 2022-08-17 18:08:50.365722
11 15 auto_populated t 2022-08-17 18:08:50.543018 2022-08-17 18:08:50.543018
12 16 auto_populated t 2022-08-17 18:08:50.593901 2022-08-17 18:08:50.593901
13 17 auto_populated t 2022-08-17 18:08:50.768448 2022-08-17 18:08:50.768448
14 18 auto_populated t 2022-08-17 18:08:50.83025 2022-08-17 18:08:50.83025
15 19 auto_populated t 2022-08-17 18:08:50.884499 2022-08-17 18:08:50.884499
16 20 auto_populated t 2022-08-17 18:08:50.931153 2022-08-17 18:08:50.931153
17 21 auto_populated t 2022-08-17 18:08:50.986128 2022-08-17 18:08:50.986128
18 22 auto_populated t 2022-08-17 18:08:51.042882 2022-08-17 18:08:51.042882
19 23 auto_populated t 2022-08-17 18:08:51.100489 2022-08-17 18:08:51.100489
20 24 auto_populated t 2022-08-17 18:08:51.151999 2022-08-17 18:08:51.151999
21 25 auto_populated t 2022-08-17 18:08:51.200183 2022-08-17 18:08:51.200183
22 26 auto_populated t 2022-08-17 18:08:51.254209 2022-08-17 18:08:51.254209
23 27 auto_populated t 2022-08-17 18:08:51.303878 2022-08-17 18:08:51.303878
24 28 auto_populated t 2022-08-17 18:08:51.357136 2022-08-17 18:08:51.357136
25 29 auto_populated t 2022-08-17 18:08:51.402134 2022-08-17 18:08:51.402134
26 30 auto_populated t 2022-08-17 18:08:51.450765 2022-08-17 18:08:51.450765
27 12 enable_accepted_answers true 2022-08-17 18:08:51.463618 2022-08-17 18:08:51.463618
\.
--
-- Data for Name: category_featured_topics; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_featured_topics (category_id, topic_id, created_at, updated_at, rank, id) FROM stdin;
1 7 2022-08-17 18:06:19.011759 2022-08-17 18:06:19.011759 0 7
4 8 2022-08-17 18:06:19.123362 2022-08-17 18:06:19.123362 0 8
3 9 2022-08-17 18:06:19.230411 2022-08-17 18:06:19.230411 0 9
3 6 2022-08-17 18:06:19.231452 2022-08-17 18:06:19.231452 1 10
3 5 2022-08-17 18:06:19.232374 2022-08-17 18:06:19.232374 2 11
\.
--
-- Data for Name: category_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_groups (id, category_id, group_id, created_at, updated_at, permission_type) FROM stdin;
1 3 3 2022-08-17 18:06:17.720073 2022-08-17 18:06:17.720073 1
2 4 13 2022-08-17 18:06:17.77301 2022-08-17 18:06:17.77301 1
3 7 3 2022-08-17 18:08:50.011351 2022-08-17 18:08:50.011351 1
4 14 1 2022-08-17 18:08:50.364164 2022-08-17 18:08:50.364164 2
5 16 11 2022-08-17 18:08:50.592037 2022-08-17 18:08:50.592037 3
6 17 13 2022-08-17 18:08:50.766756 2022-08-17 18:08:50.766756 1
7 18 1 2022-08-17 18:08:50.828529 2022-08-17 18:08:50.828529 2
8 19 14 2022-08-17 18:08:50.882981 2022-08-17 18:08:50.882981 2
9 21 11 2022-08-17 18:08:50.984563 2022-08-17 18:08:50.984563 3
10 23 3 2022-08-17 18:08:51.09903 2022-08-17 18:08:51.09903 1
11 25 46 2022-08-17 18:08:51.198874 2022-08-17 18:08:51.198874 2
12 26 0 2022-08-17 18:08:51.252492 2022-08-17 18:08:51.252492 2
13 28 1 2022-08-17 18:08:51.355744 2022-08-17 18:08:51.355744 2
\.
--
-- Data for Name: category_required_tag_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_required_tag_groups (id, category_id, tag_group_id, min_count, "order", created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: category_search_data; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_search_data (category_id, search_data, raw_data, locale, version) FROM stdin;
\.
--
-- Data for Name: category_tag_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_tag_groups (id, category_id, tag_group_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: category_tag_stats; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_tag_stats (id, category_id, tag_id, topic_count) FROM stdin;
2 18 12 1
4 18 25 1
5 30 8 1
6 30 23 1
7 30 27 1
1 11 3 2
8 11 30 1
9 7 2 1
10 5 10 1
11 5 25 1
12 19 19 1
13 28 13 1
14 25 28 1
15 10 4 1
16 10 14 1
17 20 10 1
18 20 12 1
19 20 29 1
20 10 6 1
21 10 12 1
22 10 15 1
23 14 16 1
24 14 18 1
25 14 6 1
3 18 21 2
26 27 7 1
27 18 29 1
28 18 7 1
29 17 30 1
30 17 4 1
31 17 6 1
32 11 9 1
33 11 26 1
34 11 19 1
\.
--
-- Data for Name: category_tags; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_tags (id, category_id, tag_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: category_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.category_users (id, category_id, user_id, notification_level, last_seen_at) FROM stdin;
\.
--
-- Data for Name: child_themes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.child_themes (id, parent_theme_id, child_theme_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: color_scheme_colors; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.color_scheme_colors (id, name, hex, color_scheme_id, created_at, updated_at) FROM stdin;
1 primary dddddd 1 2022-08-17 18:06:17.85029 2022-08-17 18:06:17.85029
2 secondary 222222 1 2022-08-17 18:06:17.852819 2022-08-17 18:06:17.852819
3 tertiary 0f82af 1 2022-08-17 18:06:17.853756 2022-08-17 18:06:17.853756
4 quaternary c14924 1 2022-08-17 18:06:17.854946 2022-08-17 18:06:17.854946
5 header_background 111111 1 2022-08-17 18:06:17.856282 2022-08-17 18:06:17.856282
6 header_primary dddddd 1 2022-08-17 18:06:17.857169 2022-08-17 18:06:17.857169
7 highlight a87137 1 2022-08-17 18:06:17.857855 2022-08-17 18:06:17.857855
8 danger e45735 1 2022-08-17 18:06:17.858636 2022-08-17 18:06:17.858636
9 success 1ca551 1 2022-08-17 18:06:17.859891 2022-08-17 18:06:17.859891
10 love fa6c8d 1 2022-08-17 18:06:17.861008 2022-08-17 18:06:17.861008
11 primary 000000 2 2022-08-17 18:06:17.866584 2022-08-17 18:06:17.866584
12 primary-medium 696969 2 2022-08-17 18:06:17.868744 2022-08-17 18:06:17.868744
13 primary-low-mid 909090 2 2022-08-17 18:06:17.869711 2022-08-17 18:06:17.869711
14 secondary ffffff 2 2022-08-17 18:06:17.871603 2022-08-17 18:06:17.871603
15 tertiary 3369FF 2 2022-08-17 18:06:17.873142 2022-08-17 18:06:17.873142
16 quaternary 3369FF 2 2022-08-17 18:06:17.874476 2022-08-17 18:06:17.874476
17 header_background ffffff 2 2022-08-17 18:06:17.875404 2022-08-17 18:06:17.875404
18 header_primary 000000 2 2022-08-17 18:06:17.876805 2022-08-17 18:06:17.876805
19 highlight 3369FF 2 2022-08-17 18:06:17.878398 2022-08-17 18:06:17.878398
20 highlight-high 0036E6 2 2022-08-17 18:06:17.881564 2022-08-17 18:06:17.881564
21 highlight-medium e0e9ff 2 2022-08-17 18:06:17.882924 2022-08-17 18:06:17.882924
22 highlight-low e0e9ff 2 2022-08-17 18:06:17.884042 2022-08-17 18:06:17.884042
23 danger BB1122 2 2022-08-17 18:06:17.884965 2022-08-17 18:06:17.884965
24 success 3d854d 2 2022-08-17 18:06:17.886352 2022-08-17 18:06:17.886352
25 love 9D256B 2 2022-08-17 18:06:17.887198 2022-08-17 18:06:17.887198
26 primary ffffff 3 2022-08-17 18:06:17.893137 2022-08-17 18:06:17.893137
27 primary-medium 999999 3 2022-08-17 18:06:17.894482 2022-08-17 18:06:17.894482
28 primary-low-mid 888888 3 2022-08-17 18:06:17.89594 2022-08-17 18:06:17.89594
29 secondary 0c0c0c 3 2022-08-17 18:06:17.896792 2022-08-17 18:06:17.896792
30 tertiary 759AFF 3 2022-08-17 18:06:17.897686 2022-08-17 18:06:17.897686
31 quaternary 759AFF 3 2022-08-17 18:06:17.898545 2022-08-17 18:06:17.898545
32 header_background 000000 3 2022-08-17 18:06:17.899309 2022-08-17 18:06:17.899309
33 header_primary ffffff 3 2022-08-17 18:06:17.899974 2022-08-17 18:06:17.899974
34 highlight 3369FF 3 2022-08-17 18:06:17.900874 2022-08-17 18:06:17.900874
35 danger BB1122 3 2022-08-17 18:06:17.901851 2022-08-17 18:06:17.901851
36 success 3d854d 3 2022-08-17 18:06:17.903043 2022-08-17 18:06:17.903043
37 love 9D256B 3 2022-08-17 18:06:17.903583 2022-08-17 18:06:17.903583
38 primary_very_low 373A47 4 2022-08-17 18:06:17.90784 2022-08-17 18:06:17.90784
39 primary_low 414350 4 2022-08-17 18:06:17.908675 2022-08-17 18:06:17.908675
40 primary_low_mid 8C8D94 4 2022-08-17 18:06:17.909534 2022-08-17 18:06:17.909534
41 primary_medium A3A4AA 4 2022-08-17 18:06:17.910325 2022-08-17 18:06:17.910325
42 primary_high CCCCCF 4 2022-08-17 18:06:17.9112 2022-08-17 18:06:17.9112
43 primary f2f2f2 4 2022-08-17 18:06:17.912279 2022-08-17 18:06:17.912279
44 secondary_low CCCCCF 4 2022-08-17 18:06:17.913189 2022-08-17 18:06:17.913189
45 secondary_medium 91939A 4 2022-08-17 18:06:17.914151 2022-08-17 18:06:17.914151
46 secondary_high 6A6C76 4 2022-08-17 18:06:17.915073 2022-08-17 18:06:17.915073
47 secondary_very_high 3D404C 4 2022-08-17 18:06:17.915943 2022-08-17 18:06:17.915943
48 secondary 2d303e 4 2022-08-17 18:06:17.917167 2022-08-17 18:06:17.917167
49 tertiary_low 4A4463 4 2022-08-17 18:06:17.917867 2022-08-17 18:06:17.917867
50 tertiary_medium 6E5D92 4 2022-08-17 18:06:17.918661 2022-08-17 18:06:17.918661
51 tertiary bd93f9 4 2022-08-17 18:06:17.919498 2022-08-17 18:06:17.919498
52 tertiary_high 9275C1 4 2022-08-17 18:06:17.920501 2022-08-17 18:06:17.920501
53 quaternary_low 6AA8BA 4 2022-08-17 18:06:17.921249 2022-08-17 18:06:17.921249
54 quaternary 8be9fd 4 2022-08-17 18:06:17.922545 2022-08-17 18:06:17.922545
55 header_background 373A47 4 2022-08-17 18:06:17.923504 2022-08-17 18:06:17.923504
56 header_primary f2f2f2 4 2022-08-17 18:06:17.924169 2022-08-17 18:06:17.924169
57 highlight_low 686D55 4 2022-08-17 18:06:17.925072 2022-08-17 18:06:17.925072
58 danger_medium B6484D 4 2022-08-17 18:06:17.925756 2022-08-17 18:06:17.925756
59 highlight f1fa8c 4 2022-08-17 18:06:17.926466 2022-08-17 18:06:17.926466
60 highlight_high C0C879 4 2022-08-17 18:06:17.927294 2022-08-17 18:06:17.927294
61 danger_low 957279 4 2022-08-17 18:06:17.927928 2022-08-17 18:06:17.927928
62 danger ff5555 4 2022-08-17 18:06:17.929397 2022-08-17 18:06:17.929397
63 success_low 386D50 4 2022-08-17 18:06:17.930219 2022-08-17 18:06:17.930219
64 success_medium 44B366 4 2022-08-17 18:06:17.931221 2022-08-17 18:06:17.931221
65 success 50fa7b 4 2022-08-17 18:06:17.933202 2022-08-17 18:06:17.933202
66 love_low 6C4667 4 2022-08-17 18:06:17.934164 2022-08-17 18:06:17.934164
67 love ff79c6 4 2022-08-17 18:06:17.934853 2022-08-17 18:06:17.934853
68 primary_very_low F0ECD7 5 2022-08-17 18:06:17.939494 2022-08-17 18:06:17.939494
69 primary_low D6D8C7 5 2022-08-17 18:06:17.9403 2022-08-17 18:06:17.9403
70 primary_low_mid A4AFA5 5 2022-08-17 18:06:17.942834 2022-08-17 18:06:17.942834
71 primary_medium 7E918C 5 2022-08-17 18:06:17.944302 2022-08-17 18:06:17.944302
72 primary_high 4C6869 5 2022-08-17 18:06:17.947669 2022-08-17 18:06:17.947669
73 primary 002B36 5 2022-08-17 18:06:17.94888 2022-08-17 18:06:17.94888
74 secondary_low 325458 5 2022-08-17 18:06:17.949945 2022-08-17 18:06:17.949945
75 secondary_medium 6C8280 5 2022-08-17 18:06:17.951456 2022-08-17 18:06:17.951456
76 secondary_high 97A59D 5 2022-08-17 18:06:17.952366 2022-08-17 18:06:17.952366
77 secondary_very_high E8E6D3 5 2022-08-17 18:06:17.95333 2022-08-17 18:06:17.95333
78 secondary FCF6E1 5 2022-08-17 18:06:17.954256 2022-08-17 18:06:17.954256
79 tertiary_low D6E6DE 5 2022-08-17 18:06:17.956262 2022-08-17 18:06:17.956262
80 tertiary_medium 7EBFD7 5 2022-08-17 18:06:17.95769 2022-08-17 18:06:17.95769
81 tertiary 0088cc 5 2022-08-17 18:06:17.958937 2022-08-17 18:06:17.958937
82 tertiary_high 329ED0 5 2022-08-17 18:06:17.960603 2022-08-17 18:06:17.960603
83 quaternary e45735 5 2022-08-17 18:06:17.961214 2022-08-17 18:06:17.961214
84 header_background FCF6E1 5 2022-08-17 18:06:17.962774 2022-08-17 18:06:17.962774
85 header_primary 002B36 5 2022-08-17 18:06:17.964108 2022-08-17 18:06:17.964108
86 highlight_low FDF9AD 5 2022-08-17 18:06:17.964979 2022-08-17 18:06:17.964979
87 highlight_medium E3D0A3 5 2022-08-17 18:06:17.965823 2022-08-17 18:06:17.965823
88 highlight ffff4d 5 2022-08-17 18:06:17.966942 2022-08-17 18:06:17.966942
89 highlight_high BCAA7F 5 2022-08-17 18:06:17.968134 2022-08-17 18:06:17.968134
90 danger_low F8D9C2 5 2022-08-17 18:06:17.969192 2022-08-17 18:06:17.969192
91 danger e45735 5 2022-08-17 18:06:17.970621 2022-08-17 18:06:17.970621
92 success_low CFE5B9 5 2022-08-17 18:06:17.971487 2022-08-17 18:06:17.971487
93 success_medium 4CB544 5 2022-08-17 18:06:17.97228 2022-08-17 18:06:17.97228
94 success 009900 5 2022-08-17 18:06:17.973287 2022-08-17 18:06:17.973287
95 love_low FCDDD2 5 2022-08-17 18:06:17.974026 2022-08-17 18:06:17.974026
96 love fa6c8d 5 2022-08-17 18:06:17.974935 2022-08-17 18:06:17.974935
97 primary_very_low 0D353F 6 2022-08-17 18:06:17.979092 2022-08-17 18:06:17.979092
98 primary_low 193F47 6 2022-08-17 18:06:17.980109 2022-08-17 18:06:17.980109
99 primary_low_mid 798C88 6 2022-08-17 18:06:17.980911 2022-08-17 18:06:17.980911
100 primary_medium 97A59D 6 2022-08-17 18:06:17.981716 2022-08-17 18:06:17.981716
101 primary_high B5BDB1 6 2022-08-17 18:06:17.982615 2022-08-17 18:06:17.982615
102 primary FCF6E1 6 2022-08-17 18:06:17.983449 2022-08-17 18:06:17.983449
103 secondary_low B5BDB1 6 2022-08-17 18:06:17.984268 2022-08-17 18:06:17.984268
104 secondary_medium 81938D 6 2022-08-17 18:06:17.984957 2022-08-17 18:06:17.984957
105 secondary_high 4E6A6B 6 2022-08-17 18:06:17.985651 2022-08-17 18:06:17.985651
106 secondary_very_high 143B44 6 2022-08-17 18:06:17.986496 2022-08-17 18:06:17.986496
107 secondary 002B36 6 2022-08-17 18:06:17.987334 2022-08-17 18:06:17.987334
108 tertiary_low 003E54 6 2022-08-17 18:06:17.988083 2022-08-17 18:06:17.988083
109 tertiary_medium 00557A 6 2022-08-17 18:06:17.988777 2022-08-17 18:06:17.988777
110 tertiary 0088cc 6 2022-08-17 18:06:17.989546 2022-08-17 18:06:17.989546
111 tertiary_high 006C9F 6 2022-08-17 18:06:17.990469 2022-08-17 18:06:17.990469
112 quaternary_low 944835 6 2022-08-17 18:06:17.991377 2022-08-17 18:06:17.991377
113 quaternary e45735 6 2022-08-17 18:06:17.992141 2022-08-17 18:06:17.992141
114 header_background 002B36 6 2022-08-17 18:06:17.992838 2022-08-17 18:06:17.992838
115 header_primary FCF6E1 6 2022-08-17 18:06:17.993598 2022-08-17 18:06:17.993598
116 highlight_low 4D6B3D 6 2022-08-17 18:06:17.994598 2022-08-17 18:06:17.994598
117 highlight_medium 464C33 6 2022-08-17 18:06:17.995412 2022-08-17 18:06:17.995412
118 highlight ffff4d 6 2022-08-17 18:06:17.996163 2022-08-17 18:06:17.996163
119 highlight_high BFCA47 6 2022-08-17 18:06:17.996926 2022-08-17 18:06:17.996926
120 danger_low 443836 6 2022-08-17 18:06:17.997783 2022-08-17 18:06:17.997783
121 danger_medium 944835 6 2022-08-17 18:06:17.99862 2022-08-17 18:06:17.99862
122 danger e45735 6 2022-08-17 18:06:17.999169 2022-08-17 18:06:17.999169
123 success_low 004C26 6 2022-08-17 18:06:17.999855 2022-08-17 18:06:17.999855
124 success_medium 007313 6 2022-08-17 18:06:18.000461 2022-08-17 18:06:18.000461
125 success 009900 6 2022-08-17 18:06:18.001094 2022-08-17 18:06:18.001094
126 love_low 4B3F50 6 2022-08-17 18:06:18.001997 2022-08-17 18:06:18.001997
127 love fa6c8d 6 2022-08-17 18:06:18.00249 2022-08-17 18:06:18.00249
\.
--
-- Data for Name: color_schemes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.color_schemes (id, name, version, created_at, updated_at, via_wizard, base_scheme_id, theme_id, user_selectable) FROM stdin;
1 Dark 1 2022-08-17 18:06:17.849125 2022-08-17 18:06:17.849125 t Dark \N t
2 WCAG Light 1 2022-08-17 18:06:17.865802 2022-08-17 18:06:17.865802 t WCAG \N t
3 WCAG Dark 1 2022-08-17 18:06:17.891355 2022-08-17 18:06:17.891355 t WCAG Dark \N t
4 Dracula 1 2022-08-17 18:06:17.906948 2022-08-17 18:06:17.906948 t Dracula \N t
5 Solarized Light 1 2022-08-17 18:06:17.938234 2022-08-17 18:06:17.938234 t Solarized Light \N t
6 Solarized Dark 1 2022-08-17 18:06:17.977993 2022-08-17 18:06:17.977993 t Solarized Dark \N t
\.
--
-- Data for Name: custom_emojis; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.custom_emojis (id, name, upload_id, created_at, updated_at, "group") FROM stdin;
\.
--
-- Data for Name: developers; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.developers (id, user_id) FROM stdin;
\.
--
-- Data for Name: directory_columns; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.directory_columns (id, name, automatic_position, icon, user_field_id, enabled, "position", created_at, automatic, type) FROM stdin;
1 likes_received 1 heart \N t 1 2022-08-17 18:06:14.078508 t 0
2 likes_given 2 heart \N t 2 2022-08-17 18:06:14.078508 t 0
3 topic_count 3 \N \N t 3 2022-08-17 18:06:14.078508 t 0
4 post_count 4 \N \N t 4 2022-08-17 18:06:14.078508 t 0
5 topics_entered 5 \N \N t 5 2022-08-17 18:06:14.078508 t 0
6 posts_read 6 \N \N t 6 2022-08-17 18:06:14.078508 t 0
7 days_visited 7 \N \N t 7 2022-08-17 18:06:14.078508 t 0
\.
--
-- Data for Name: directory_items; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.directory_items (id, period_type, user_id, likes_received, likes_given, topics_entered, topic_count, post_count, created_at, updated_at, days_visited, posts_read, solutions, gamification_score) FROM stdin;
\.
--
-- Data for Name: discourse_calendar_post_event_dates; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.discourse_calendar_post_event_dates (id, event_id, starts_at, ends_at, reminder_counter, event_will_start_sent_at, event_started_sent_at, finished_at, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: discourse_post_event_events; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.discourse_post_event_events (id, status, original_starts_at, original_ends_at, deleted_at, raw_invitees, name, url, custom_fields, reminders, recurrence) FROM stdin;
\.
--
-- Data for Name: discourse_post_event_invitees; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.discourse_post_event_invitees (id, post_id, user_id, status, created_at, updated_at, notified) FROM stdin;
\.
--
-- Data for Name: dismissed_topic_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.dismissed_topic_users (id, user_id, topic_id, created_at) FROM stdin;
\.
--
-- Data for Name: do_not_disturb_timings; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.do_not_disturb_timings (id, user_id, starts_at, ends_at, scheduled) FROM stdin;
\.
--
-- Data for Name: draft_sequences; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.draft_sequences (id, user_id, draft_key, sequence) FROM stdin;
\.
--
-- Data for Name: drafts; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.drafts (id, user_id, draft_key, data, created_at, updated_at, sequence, revisions, owner) FROM stdin;
\.
--
-- Data for Name: email_change_requests; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.email_change_requests (id, user_id, old_email, new_email, old_email_token_id, new_email_token_id, change_state, created_at, updated_at, requested_by_user_id) FROM stdin;
\.
--
-- Data for Name: email_logs; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.email_logs (id, to_address, email_type, user_id, created_at, updated_at, post_id, bounce_key, bounced, message_id, smtp_group_id, cc_addresses, cc_user_ids, raw, topic_id, bounce_error_code, smtp_transaction_response) FROM stdin;
\.
--
-- Data for Name: email_tokens; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.email_tokens (id, user_id, email, confirmed, expired, created_at, updated_at, token_hash, scope) FROM stdin;
1 -1 no_email f f 2022-08-17 18:06:15.800752 2022-08-17 18:06:15.800752 36940e3df8d985e9885669b539c1982c61f2f3df1b24afb0b0852e58f60dc1c5 1
2 -2 discobot_email f f 2022-08-17 18:06:19.673695 2022-08-17 18:06:19.673695 8ad6ad69779ef1b6fd877a89429f50f616a50fef7a67ac4efa4f75e15d6dbf40 1
3 1 danette_bayer@faker.invalid f t 2022-08-17 18:08:44.418806 2022-08-17 18:08:44.418806 ac69a83899b1741c8e7a914fe829cb08dc371e7c9a5d4adbfe2008ae6339d102 1
4 1 danette_bayer@faker.invalid t f 2022-08-17 18:08:44.584848 2022-08-17 18:08:44.591782 cc90c81f1ce2e494acd334fe3b148e894ac25b981492baaca8be658e022bd41d 1
5 2 yolando.cruickshank@faker.invalid f t 2022-08-17 18:08:44.646611 2022-08-17 18:08:44.646611 9c839cfad30df0ecbd0483c76203e6c2735f4b17449e1e1f81c7e6d453ffc80c 1
6 2 yolando.cruickshank@faker.invalid t f 2022-08-17 18:08:44.698802 2022-08-17 18:08:44.734852 4a004eb6ca90beb82854c13855eaa8b5218dc39c48ce4bb220b4cfd3a0513f6e 1
7 3 kelley_mayert_rev@faker.invalid f t 2022-08-17 18:08:44.827119 2022-08-17 18:08:44.827119 35fa9a3f26daf671261c1fa1b5d61cf68a6632af8f2022c03669456f4054b848 1
8 3 kelley_mayert_rev@faker.invalid t f 2022-08-17 18:08:44.865601 2022-08-17 18:08:44.870192 c08d328e1a2042ab773f51caff87c575183314a296f072c6b975531f5610a0cb 1
9 4 heaney.dds.glen@faker.invalid f t 2022-08-17 18:08:44.892523 2022-08-17 18:08:44.892523 386271cb9a238ef135e7a88fbe6645bbf36e54086ef1aebe90fa839282d4e536 1
10 4 heaney.dds.glen@faker.invalid t f 2022-08-17 18:08:44.926328 2022-08-17 18:08:44.930785 5ccb8e8a205ba6ba4b9ddf6d638a231781e9f1438e252bca5d4804b443178a07 1
11 5 ankunding.korey@faker.invalid f t 2022-08-17 18:08:45.048217 2022-08-17 18:08:45.048217 27daeda6f3c82bc6f11ee9ee637e598b6afdcf4ba9432badea133071cdcdea9c 1
12 5 ankunding.korey@faker.invalid t f 2022-08-17 18:08:45.079542 2022-08-17 18:08:45.08433 d798b1ddb5e132eaa7b097bdcf9db1c14e46e0252abbbd2c13407ec882e8a086 1
13 6 mary.bauch.rev@faker.invalid f t 2022-08-17 18:08:45.118382 2022-08-17 18:08:45.118382 d2cb8f24620f3e0adeea128d886b79ec805fdf27fd23944d55601ed263dcb60b 1
14 6 mary.bauch.rev@faker.invalid t f 2022-08-17 18:08:45.152552 2022-08-17 18:08:45.156945 3b830be9deeb654d0501811cb80f76e5fad1898dbb595057f8d820e2a1294518 1
15 7 jacobson.dc.mira@faker.invalid f t 2022-08-17 18:08:45.253858 2022-08-17 18:08:45.253858 564dbf1d9352126b604ba05daea6d644c58054f1d84a94baee126a39c3cc613b 1
16 7 jacobson.dc.mira@faker.invalid t f 2022-08-17 18:08:45.320213 2022-08-17 18:08:45.325806 ed3cc5b6de42567ef8067c59e3950aae32b19bcef9eee1d9f53e7e65808fb2e9 1
17 8 whitley_spencer@faker.invalid f t 2022-08-17 18:08:45.423477 2022-08-17 18:08:45.423477 edf631c30c15b4b47ea1d2b51e889f2fe18648adfab3d146f482b2754456ae1f 1
18 8 whitley_spencer@faker.invalid t f 2022-08-17 18:08:45.47513 2022-08-17 18:08:45.479335 5947403feea077601121bc3b095bafb271ddd8dd523110f65cc3b380c69b08b5 1
19 9 nolan_dusty@faker.invalid f t 2022-08-17 18:08:45.593751 2022-08-17 18:08:45.593751 449f9861c15c3a273d25be683e51e314a71a6b0b171e433f5f07f919c45a4850 1
20 9 nolan_dusty@faker.invalid t f 2022-08-17 18:08:45.625251 2022-08-17 18:08:45.629758 faf470d9d139c405d49189c147fe6d8d6753226fa1831f2d7276a798e401beb3 1
21 10 walker.kristan@faker.invalid f t 2022-08-17 18:08:45.649124 2022-08-17 18:08:45.649124 2479498d7e699247865ee6b2114135a71688ffe6131439988d99a601938c8c07 1
22 10 walker.kristan@faker.invalid t f 2022-08-17 18:08:45.710988 2022-08-17 18:08:45.716672 5ce778cbdef2409984b9bd7456dd3c0b4063d003c69ee09ef7d86faf7072410c 1
23 11 schuster_wilbur@faker.invalid f t 2022-08-17 18:08:45.755903 2022-08-17 18:08:45.755903 982f1c534e6cce44889d06439ca37958c87f112c28a7b8a5ba1337f3ca13bfbe 1
24 11 schuster_wilbur@faker.invalid t f 2022-08-17 18:08:45.817442 2022-08-17 18:08:45.822433 9ce3045b7885e404daf850c88424d11b7de4e26293c20b03c43e6c25e9032d2c 1
25 12 mrs.yost.shawnta@faker.invalid f t 2022-08-17 18:08:45.93422 2022-08-17 18:08:45.93422 54438fb7ad954bd6f6f62cf9019c1247627c39f5760118a9ffb3913e4991a161 1
26 12 mrs.yost.shawnta@faker.invalid t f 2022-08-17 18:08:45.989636 2022-08-17 18:08:45.995507 94092c7206d559dd3558030746723cdccf6c57d6321d970757845afbe3d80385 1
27 13 charlie_prohaska@faker.invalid f t 2022-08-17 18:08:46.109934 2022-08-17 18:08:46.109934 e26f6890ebb5a72fdda4b46bb8b45112a2c2608bd18e2cd1d4cd31aa29850f39 1
28 13 charlie_prohaska@faker.invalid t f 2022-08-17 18:08:46.198456 2022-08-17 18:08:46.203415 934a42baeee1b769b354e140d413853bc007470829cf2916246da13a547b66d1 1
29 14 santos.ret.nienow@faker.invalid f t 2022-08-17 18:08:46.308907 2022-08-17 18:08:46.308907 c79b136f1903711660d220505538831eb6bfec4583e168adc3c5e006e1b20a22 1
30 14 santos.ret.nienow@faker.invalid t f 2022-08-17 18:08:46.362323 2022-08-17 18:08:46.367588 bceb4892e1becbd8ad21794b72c1ed2b4b4bbeddde1dede3ac119f71c1fe26af 1
31 15 margart_stark@faker.invalid f t 2022-08-17 18:08:46.398244 2022-08-17 18:08:46.398244 21838a79f9a408c541c9109616c348b935e150936e375130ccd1a944c093533a 1
32 15 margart_stark@faker.invalid t f 2022-08-17 18:08:46.43946 2022-08-17 18:08:46.444718 779a35add22cf19ebe169fd507a2ed8046d9039c4e89a0e5711b4c6c922f8bfa 1
33 16 detra.kerluke@faker.invalid f t 2022-08-17 18:08:46.603143 2022-08-17 18:08:46.603143 d0626e6470d0e2b91e345c17e2fa691ea1044399904fd9c97c89bd3fa022e981 1
34 16 detra.kerluke@faker.invalid t f 2022-08-17 18:08:46.736549 2022-08-17 18:08:46.742625 d3cde4c78f46e26204e0140ee113872cffce2297e92d06e567dfbfce2ebf4be8 1
35 17 filomena_breitenberg@faker.invalid f t 2022-08-17 18:08:46.77963 2022-08-17 18:08:46.77963 2843e475d4502d880e123879f26e8efbb4bf5511c1e8a74372d52a0508a294eb 1
36 17 filomena_breitenberg@faker.invalid t f 2022-08-17 18:08:46.834705 2022-08-17 18:08:46.839883 54441e3f752848bce75668e1d28283d84a4926fa8618df55ce9b58f6960614fb 1
37 18 flatley.carlton@faker.invalid f t 2022-08-17 18:08:46.862631 2022-08-17 18:08:46.862631 a25ed5c914aa1e10ecaf180121fb79f6c784bd9fcac16e6ed1785bb90b8e0f2e 1
38 18 flatley.carlton@faker.invalid t f 2022-08-17 18:08:46.917656 2022-08-17 18:08:46.922283 d224398d1b1f19ff622c3464815509110db5e04e4015a34df07f76f856f492ed 1
39 19 andria_hirthe@faker.invalid f t 2022-08-17 18:08:46.953776 2022-08-17 18:08:46.953776 381a747f9e89ff5479cfb95e729090e9e1a04372331002767aebb6ca4828fbfa 1
40 19 andria_hirthe@faker.invalid t f 2022-08-17 18:08:46.993415 2022-08-17 18:08:46.998348 4d786ddf59a2d6e488b99a6a496371c700ae5c937581c7163f0d399411acb506 1
41 20 schiller_margery@faker.invalid f t 2022-08-17 18:08:47.03268 2022-08-17 18:08:47.03268 fe28ac65e65b3fe17a01420c106359a04d4e0dd8f5878a7e35c363a13da3a355 1
42 20 schiller_margery@faker.invalid t f 2022-08-17 18:08:47.082418 2022-08-17 18:08:47.087348 2eca1b0abd0861f3063cbf2b3c7e231160b81f2a251d49f2a405e41d73b92674 1
43 21 clemente.konopelski@faker.invalid f t 2022-08-17 18:08:47.223832 2022-08-17 18:08:47.223832 6f4fe32e845218b3822accd6348259768f3716a49a8453f86ac12c3524040114 1
44 21 clemente.konopelski@faker.invalid t f 2022-08-17 18:08:47.282191 2022-08-17 18:08:47.28763 a9b08bc9790e949fe52577e388b03450f8748f221f995bb03487c3e5188f81fa 1
45 22 macgyver.teri@faker.invalid f t 2022-08-17 18:08:47.39896 2022-08-17 18:08:47.39896 560268ae85ab2a97a08cf3057603b839f2235fb1e128cd5a10b2c011ac72d29f 1
46 22 macgyver.teri@faker.invalid t f 2022-08-17 18:08:47.451006 2022-08-17 18:08:47.456858 464e168ef5de5cf7180a43984c66a4a61c57e39737c3f011ecb6321407b6c61d 1
47 23 jast.herschel@faker.invalid f t 2022-08-17 18:08:47.504073 2022-08-17 18:08:47.504073 d415b1425105c5a755ace925e2ef6ff83ba83e7f757b4944455ccbd66f4962cf 1
48 23 jast.herschel@faker.invalid t f 2022-08-17 18:08:47.550037 2022-08-17 18:08:47.555563 51c3c7a999cdce46c2106cdb47ef9ecc2108c0b9506bb40dce1002c3fac00951 1
49 24 willms.luba@faker.invalid f t 2022-08-17 18:08:47.59972 2022-08-17 18:08:47.59972 56befa9cfe26c107396e6d8d08b37a8d1b82124751291d6aa84915fb3a262d5e 1
50 24 willms.luba@faker.invalid t f 2022-08-17 18:08:47.637389 2022-08-17 18:08:47.644206 65d402cf781eb3bb332a19ef04747752fb78aa0962e256861092cd2316ae1bc1 1
51 25 desirae.rolfson@faker.invalid f t 2022-08-17 18:08:47.745275 2022-08-17 18:08:47.745275 e3e7703115c9f04faa1bb66a07a95e475106d4f5b6bc6ffbae06794516a3b6b6 1
52 25 desirae.rolfson@faker.invalid t f 2022-08-17 18:08:47.807556 2022-08-17 18:08:47.812948 ee1c009e31f83ef9ba108ef1c91f8a9cea81f8a6f8e783f3309fdcf2b4bfc8a6 1
53 26 shonda.wolf@faker.invalid f t 2022-08-17 18:08:47.895978 2022-08-17 18:08:47.895978 b28bbd2e027d28b5e3419e08bbbab30fc4f2c90dffa5e25da76b6fea71911a35 1
54 26 shonda.wolf@faker.invalid t f 2022-08-17 18:08:47.93258 2022-08-17 18:08:47.939272 9fb974925be68cc4c71f3ab236370da52fbdee134a8baa90f80eb0c4b34411c0 1
55 27 willie.vonrueden@faker.invalid f t 2022-08-17 18:08:48.030086 2022-08-17 18:08:48.030086 3ac24d1b2221946f4fa37a97b63f2f775b22151e66ecfb5255c153fc681d7d61 1
56 27 willie.vonrueden@faker.invalid t f 2022-08-17 18:08:48.085384 2022-08-17 18:08:48.090629 70d9f8740bf159a55eeef95e0cbf316825a4943d09d5a2041627243180278d23 1
57 28 lilli.cormier@faker.invalid f t 2022-08-17 18:08:48.127005 2022-08-17 18:08:48.127005 23348438929f452965bbb364a5adce35edb3c66524fd0d72a9a4579295b072b9 1
58 28 lilli.cormier@faker.invalid t f 2022-08-17 18:08:48.184945 2022-08-17 18:08:48.190623 1f556c45b13da26aaad8ed5117b532947bc977d4837c90c6ec774a1af22d7512 1
\.
--
-- Data for Name: embeddable_hosts; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.embeddable_hosts (id, host, category_id, created_at, updated_at, class_name, allowed_paths) FROM stdin;
\.
--
-- Data for Name: external_upload_stubs; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.external_upload_stubs (id, key, original_filename, status, unique_identifier, created_by_id, upload_type, created_at, updated_at, multipart, external_upload_identifier, filesize) FROM stdin;
\.
--
-- Data for Name: gamification_leaderboards; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.gamification_leaderboards (id, name, from_date, to_date, for_category_id, created_by_id, created_at, updated_at, visible_to_groups_ids, included_groups_ids, excluded_groups_ids) FROM stdin;
1 Global Leaderboard \N \N \N -1 2022-08-17 18:06:19.539351 2022-08-17 18:06:19.539351 {} {} {}
\.
--
-- Data for Name: gamification_scores; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.gamification_scores (id, user_id, date, score) FROM stdin;
\.
--
-- Data for Name: given_daily_likes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.given_daily_likes (user_id, likes_given, given_date, limit_reached) FROM stdin;
17 25 2022-08-17 f
8 23 2022-08-17 f
7 48 2022-08-17 f
27 19 2022-08-17 f
19 32 2022-08-17 f
5 26 2022-08-17 f
24 22 2022-08-17 f
-1 31 2022-08-17 f
-2 30 2022-08-17 f
21 35 2022-08-17 f
25 29 2022-08-17 f
13 22 2022-08-17 f
1 24 2022-08-17 f
3 26 2022-08-17 f
9 33 2022-08-17 f
10 24 2022-08-17 f
15 37 2022-08-17 f
28 31 2022-08-17 f
23 40 2022-08-17 f
11 31 2022-08-17 f
16 40 2022-08-17 f
20 30 2022-08-17 f
14 47 2022-08-17 f
2 36 2022-08-17 f
4 27 2022-08-17 f
6 30 2022-08-17 f
18 34 2022-08-17 f
12 32 2022-08-17 f
26 24 2022-08-17 f
22 20 2022-08-17 f
\.
--
-- Data for Name: group_archived_messages; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_archived_messages (id, group_id, topic_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: group_associated_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_associated_groups (id, group_id, associated_group_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: group_category_notification_defaults; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_category_notification_defaults (id, group_id, category_id, notification_level) FROM stdin;
\.
--
-- Data for Name: group_custom_fields; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_custom_fields (id, group_id, name, value, created_at, updated_at) FROM stdin;
1 41 auto_populated t 2022-08-17 18:08:44.330446 2022-08-17 18:08:44.330446
2 43 auto_populated t 2022-08-17 18:08:44.372618 2022-08-17 18:08:44.372618
3 45 auto_populated t 2022-08-17 18:08:44.395716 2022-08-17 18:08:44.395716
\.
--
-- Data for Name: group_histories; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_histories (id, group_id, acting_user_id, target_user_id, action, subject, prev_value, new_value, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: group_mentions; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_mentions (id, post_id, group_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: group_requests; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_requests (id, group_id, user_id, reason, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: group_tag_notification_defaults; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_tag_notification_defaults (id, group_id, tag_id, notification_level) FROM stdin;
\.
--
-- Data for Name: group_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.group_users (id, group_id, user_id, created_at, updated_at, owner, notification_level, first_unread_pm_at) FROM stdin;
1 10 -1 2022-08-17 18:06:15.850818 2022-08-17 18:06:15.850818 f 3 2022-08-17 18:06:15.642974
2 11 -1 2022-08-17 18:06:15.860916 2022-08-17 18:06:15.860916 f 3 2022-08-17 18:06:15.642974
3 12 -1 2022-08-17 18:06:15.868192 2022-08-17 18:06:15.868192 f 3 2022-08-17 18:06:15.642974
4 13 -1 2022-08-17 18:06:15.875218 2022-08-17 18:06:15.875218 f 3 2022-08-17 18:06:15.642974
5 14 -1 2022-08-17 18:06:15.881982 2022-08-17 18:06:15.881982 f 3 2022-08-17 18:06:15.642974
6 10 -2 2022-08-17 18:06:19.69089 2022-08-17 18:06:19.69089 f 3 2022-08-17 18:06:19.545617
7 11 -2 2022-08-17 18:06:19.704065 2022-08-17 18:06:19.704065 f 3 2022-08-17 18:06:19.545617
8 12 -2 2022-08-17 18:06:19.71744 2022-08-17 18:06:19.71744 f 3 2022-08-17 18:06:19.545617
9 13 -2 2022-08-17 18:06:19.746742 2022-08-17 18:06:19.746742 f 3 2022-08-17 18:06:19.545617
10 14 -2 2022-08-17 18:06:19.759399 2022-08-17 18:06:19.759399 f 3 2022-08-17 18:06:19.545617
11 41 -1 2022-08-17 18:08:44.320798 2022-08-17 18:08:44.320798 t 3 2022-08-17 18:08:44.320042
12 43 -1 2022-08-17 18:08:44.346967 2022-08-17 18:08:44.346967 t 3 2022-08-17 18:08:44.346394
13 45 -1 2022-08-17 18:08:44.388642 2022-08-17 18:08:44.388642 t 3 2022-08-17 18:08:44.388106
14 10 1 2022-08-17 18:08:44.547379 2022-08-17 18:08:44.547379 f 3 2022-08-17 18:08:44.410159
15 11 1 2022-08-17 18:08:44.556664 2022-08-17 18:08:44.556664 f 3 2022-08-17 18:08:44.410159
16 12 1 2022-08-17 18:08:44.56507 2022-08-17 18:08:44.56507 f 3 2022-08-17 18:08:44.410159
17 0 1 2022-08-17 18:08:44.616739 2022-08-17 18:08:44.616739 f 3 2022-08-17 18:08:44.615758
18 1 1 2022-08-17 18:08:44.630869 2022-08-17 18:08:44.630869 f 3 2022-08-17 18:08:44.629818
19 10 2 2022-08-17 18:08:44.657749 2022-08-17 18:08:44.657749 f 3 2022-08-17 18:08:44.641346
20 11 2 2022-08-17 18:08:44.665724 2022-08-17 18:08:44.665724 f 3 2022-08-17 18:08:44.641346
21 12 2 2022-08-17 18:08:44.67334 2022-08-17 18:08:44.67334 f 3 2022-08-17 18:08:44.641346
22 13 2 2022-08-17 18:08:44.680971 2022-08-17 18:08:44.680971 f 3 2022-08-17 18:08:44.641346
23 10 3 2022-08-17 18:08:44.839076 2022-08-17 18:08:44.839076 f 3 2022-08-17 18:08:44.821763
24 11 3 2022-08-17 18:08:44.848543 2022-08-17 18:08:44.848543 f 3 2022-08-17 18:08:44.821763
25 10 4 2022-08-17 18:08:44.90236 2022-08-17 18:08:44.90236 f 3 2022-08-17 18:08:44.888193
26 11 4 2022-08-17 18:08:44.909876 2022-08-17 18:08:44.909876 f 3 2022-08-17 18:08:44.888193
27 10 5 2022-08-17 18:08:45.057378 2022-08-17 18:08:45.057378 f 3 2022-08-17 18:08:45.04412
28 11 5 2022-08-17 18:08:45.064299 2022-08-17 18:08:45.064299 f 3 2022-08-17 18:08:45.04412
29 12 5 2022-08-17 18:08:45.104694 2022-08-17 18:08:45.104694 f 3 2022-08-17 18:08:45.103712
30 10 6 2022-08-17 18:08:45.12801 2022-08-17 18:08:45.12801 f 3 2022-08-17 18:08:45.114187
31 11 6 2022-08-17 18:08:45.135343 2022-08-17 18:08:45.135343 f 3 2022-08-17 18:08:45.114187
32 10 7 2022-08-17 18:08:45.266959 2022-08-17 18:08:45.266959 f 3 2022-08-17 18:08:45.24818
33 11 7 2022-08-17 18:08:45.277525 2022-08-17 18:08:45.277525 f 3 2022-08-17 18:08:45.24818
34 12 7 2022-08-17 18:08:45.28779 2022-08-17 18:08:45.28779 f 3 2022-08-17 18:08:45.24818
35 13 7 2022-08-17 18:08:45.297958 2022-08-17 18:08:45.297958 f 3 2022-08-17 18:08:45.24818
36 42 7 2022-08-17 18:08:45.402155 2022-08-17 18:08:45.402155 f 3 2022-08-17 18:08:45.401223
37 46 7 2022-08-17 18:08:45.411483 2022-08-17 18:08:45.411483 f 3 2022-08-17 18:08:45.410775
38 10 8 2022-08-17 18:08:45.43219 2022-08-17 18:08:45.43219 f 3 2022-08-17 18:08:45.41955
39 11 8 2022-08-17 18:08:45.438956 2022-08-17 18:08:45.438956 f 3 2022-08-17 18:08:45.41955
40 12 8 2022-08-17 18:08:45.445853 2022-08-17 18:08:45.445853 f 3 2022-08-17 18:08:45.41955
41 13 8 2022-08-17 18:08:45.452609 2022-08-17 18:08:45.452609 f 3 2022-08-17 18:08:45.41955
42 14 8 2022-08-17 18:08:45.459504 2022-08-17 18:08:45.459504 f 3 2022-08-17 18:08:45.41955
43 3 8 2022-08-17 18:08:45.547876 2022-08-17 18:08:45.547876 f 3 2022-08-17 18:08:45.547255
44 10 9 2022-08-17 18:08:45.602797 2022-08-17 18:08:45.602797 f 3 2022-08-17 18:08:45.589616
45 11 9 2022-08-17 18:08:45.609707 2022-08-17 18:08:45.609707 f 3 2022-08-17 18:08:45.589616
46 10 10 2022-08-17 18:08:45.668225 2022-08-17 18:08:45.668225 f 3 2022-08-17 18:08:45.644999
47 11 10 2022-08-17 18:08:45.680142 2022-08-17 18:08:45.680142 f 3 2022-08-17 18:08:45.644999
48 12 10 2022-08-17 18:08:45.689715 2022-08-17 18:08:45.689715 f 3 2022-08-17 18:08:45.644999
49 2 10 2022-08-17 18:08:45.737363 2022-08-17 18:08:45.737363 f 2 2022-08-17 18:08:45.736548
50 10 11 2022-08-17 18:08:45.768252 2022-08-17 18:08:45.768252 f 3 2022-08-17 18:08:45.749797
51 11 11 2022-08-17 18:08:45.776958 2022-08-17 18:08:45.776958 f 3 2022-08-17 18:08:45.749797
52 12 11 2022-08-17 18:08:45.786469 2022-08-17 18:08:45.786469 f 3 2022-08-17 18:08:45.749797
53 13 11 2022-08-17 18:08:45.79496 2022-08-17 18:08:45.79496 f 3 2022-08-17 18:08:45.749797
54 41 11 2022-08-17 18:08:45.905662 2022-08-17 18:08:45.905662 f 3 2022-08-17 18:08:45.904601
55 14 11 2022-08-17 18:08:45.916559 2022-08-17 18:08:45.916559 f 3 2022-08-17 18:08:45.915654
56 10 12 2022-08-17 18:08:45.945388 2022-08-17 18:08:45.945388 f 3 2022-08-17 18:08:45.928666
57 11 12 2022-08-17 18:08:45.953801 2022-08-17 18:08:45.953801 f 3 2022-08-17 18:08:45.928666
58 12 12 2022-08-17 18:08:45.96179 2022-08-17 18:08:45.96179 f 3 2022-08-17 18:08:45.928666
59 13 12 2022-08-17 18:08:45.968402 2022-08-17 18:08:45.968402 f 3 2022-08-17 18:08:45.928666
60 43 12 2022-08-17 18:08:46.038908 2022-08-17 18:08:46.038908 f 3 2022-08-17 18:08:46.036142
61 10 13 2022-08-17 18:08:46.151431 2022-08-17 18:08:46.151431 f 3 2022-08-17 18:08:46.099505
62 11 13 2022-08-17 18:08:46.170565 2022-08-17 18:08:46.170565 f 3 2022-08-17 18:08:46.099505
63 14 13 2022-08-17 18:08:46.286581 2022-08-17 18:08:46.286581 f 3 2022-08-17 18:08:46.286044
64 42 13 2022-08-17 18:08:46.29577 2022-08-17 18:08:46.29577 f 3 2022-08-17 18:08:46.295257
65 10 14 2022-08-17 18:08:46.319383 2022-08-17 18:08:46.319383 f 3 2022-08-17 18:08:46.304565
66 11 14 2022-08-17 18:08:46.327465 2022-08-17 18:08:46.327465 f 3 2022-08-17 18:08:46.304565
67 12 14 2022-08-17 18:08:46.335347 2022-08-17 18:08:46.335347 f 3 2022-08-17 18:08:46.304565
68 13 14 2022-08-17 18:08:46.34281 2022-08-17 18:08:46.34281 f 3 2022-08-17 18:08:46.304565
69 46 14 2022-08-17 18:08:46.385073 2022-08-17 18:08:46.385073 f 3 2022-08-17 18:08:46.384202
70 10 15 2022-08-17 18:08:46.407453 2022-08-17 18:08:46.407453 f 3 2022-08-17 18:08:46.393751
71 11 15 2022-08-17 18:08:46.414945 2022-08-17 18:08:46.414945 f 3 2022-08-17 18:08:46.393751
72 12 15 2022-08-17 18:08:46.422074 2022-08-17 18:08:46.422074 f 3 2022-08-17 18:08:46.393751
73 1 15 2022-08-17 18:08:46.565341 2022-08-17 18:08:46.565341 f 3 2022-08-17 18:08:46.561893
74 10 16 2022-08-17 18:08:46.637529 2022-08-17 18:08:46.637529 f 3 2022-08-17 18:08:46.589648
75 11 16 2022-08-17 18:08:46.677701 2022-08-17 18:08:46.677701 f 3 2022-08-17 18:08:46.589648
76 12 16 2022-08-17 18:08:46.694875 2022-08-17 18:08:46.694875 f 3 2022-08-17 18:08:46.589648
77 13 16 2022-08-17 18:08:46.70383 2022-08-17 18:08:46.70383 f 3 2022-08-17 18:08:46.589648
78 14 16 2022-08-17 18:08:46.711644 2022-08-17 18:08:46.711644 f 3 2022-08-17 18:08:46.589648
79 0 16 2022-08-17 18:08:46.763308 2022-08-17 18:08:46.763308 f 3 2022-08-17 18:08:46.762444
80 10 17 2022-08-17 18:08:46.792632 2022-08-17 18:08:46.792632 f 3 2022-08-17 18:08:46.773526
81 11 17 2022-08-17 18:08:46.802157 2022-08-17 18:08:46.802157 f 3 2022-08-17 18:08:46.773526
82 12 17 2022-08-17 18:08:46.813012 2022-08-17 18:08:46.813012 f 3 2022-08-17 18:08:46.773526
83 10 18 2022-08-17 18:08:46.872319 2022-08-17 18:08:46.872319 f 3 2022-08-17 18:08:46.857491
84 11 18 2022-08-17 18:08:46.878861 2022-08-17 18:08:46.878861 f 3 2022-08-17 18:08:46.857491
85 12 18 2022-08-17 18:08:46.886305 2022-08-17 18:08:46.886305 f 3 2022-08-17 18:08:46.857491
86 13 18 2022-08-17 18:08:46.893809 2022-08-17 18:08:46.893809 f 3 2022-08-17 18:08:46.857491
87 14 18 2022-08-17 18:08:46.901524 2022-08-17 18:08:46.901524 f 3 2022-08-17 18:08:46.857491
88 41 18 2022-08-17 18:08:46.939682 2022-08-17 18:08:46.939682 f 3 2022-08-17 18:08:46.93885
89 10 19 2022-08-17 18:08:46.96271 2022-08-17 18:08:46.96271 f 3 2022-08-17 18:08:46.949239
90 11 19 2022-08-17 18:08:46.969736 2022-08-17 18:08:46.969736 f 3 2022-08-17 18:08:46.949239
91 12 19 2022-08-17 18:08:46.976267 2022-08-17 18:08:46.976267 f 3 2022-08-17 18:08:46.949239
92 46 19 2022-08-17 18:08:47.017648 2022-08-17 18:08:47.017648 f 3 2022-08-17 18:08:47.016781
93 10 20 2022-08-17 18:08:47.042637 2022-08-17 18:08:47.042637 f 3 2022-08-17 18:08:47.028039
94 11 20 2022-08-17 18:08:47.049934 2022-08-17 18:08:47.049934 f 3 2022-08-17 18:08:47.028039
95 12 20 2022-08-17 18:08:47.057233 2022-08-17 18:08:47.057233 f 3 2022-08-17 18:08:47.028039
96 13 20 2022-08-17 18:08:47.065137 2022-08-17 18:08:47.065137 f 3 2022-08-17 18:08:47.028039
97 45 20 2022-08-17 18:08:47.209725 2022-08-17 18:08:47.209725 f 3 2022-08-17 18:08:47.208879
98 10 21 2022-08-17 18:08:47.233612 2022-08-17 18:08:47.233612 f 3 2022-08-17 18:08:47.219258
99 11 21 2022-08-17 18:08:47.240944 2022-08-17 18:08:47.240944 f 3 2022-08-17 18:08:47.219258
100 12 21 2022-08-17 18:08:47.248516 2022-08-17 18:08:47.248516 f 3 2022-08-17 18:08:47.219258
101 13 21 2022-08-17 18:08:47.255632 2022-08-17 18:08:47.255632 f 3 2022-08-17 18:08:47.219258
102 14 21 2022-08-17 18:08:47.262982 2022-08-17 18:08:47.262982 f 3 2022-08-17 18:08:47.219258
103 3 21 2022-08-17 18:08:47.375095 2022-08-17 18:08:47.375095 f 3 2022-08-17 18:08:47.374194
104 10 22 2022-08-17 18:08:47.410275 2022-08-17 18:08:47.410275 f 3 2022-08-17 18:08:47.393347
105 11 22 2022-08-17 18:08:47.41927 2022-08-17 18:08:47.41927 f 3 2022-08-17 18:08:47.393347
106 12 22 2022-08-17 18:08:47.429526 2022-08-17 18:08:47.429526 f 3 2022-08-17 18:08:47.393347
107 44 22 2022-08-17 18:08:47.478641 2022-08-17 18:08:47.478641 f 3 2022-08-17 18:08:47.477861
108 10 23 2022-08-17 18:08:47.516474 2022-08-17 18:08:47.516474 f 3 2022-08-17 18:08:47.49811
109 11 23 2022-08-17 18:08:47.524626 2022-08-17 18:08:47.524626 f 3 2022-08-17 18:08:47.49811
110 12 23 2022-08-17 18:08:47.532217 2022-08-17 18:08:47.532217 f 3 2022-08-17 18:08:47.49811
111 1 23 2022-08-17 18:08:47.575803 2022-08-17 18:08:47.575803 f 3 2022-08-17 18:08:47.574959
112 46 23 2022-08-17 18:08:47.58647 2022-08-17 18:08:47.58647 f 3 2022-08-17 18:08:47.58561
113 10 24 2022-08-17 18:08:47.609988 2022-08-17 18:08:47.609988 f 3 2022-08-17 18:08:47.594696
114 11 24 2022-08-17 18:08:47.617299 2022-08-17 18:08:47.617299 f 3 2022-08-17 18:08:47.594696
115 10 25 2022-08-17 18:08:47.755043 2022-08-17 18:08:47.755043 f 3 2022-08-17 18:08:47.740416
116 11 25 2022-08-17 18:08:47.763261 2022-08-17 18:08:47.763261 f 3 2022-08-17 18:08:47.740416
117 12 25 2022-08-17 18:08:47.771401 2022-08-17 18:08:47.771401 f 3 2022-08-17 18:08:47.740416
118 13 25 2022-08-17 18:08:47.778388 2022-08-17 18:08:47.778388 f 3 2022-08-17 18:08:47.740416
119 14 25 2022-08-17 18:08:47.787701 2022-08-17 18:08:47.787701 f 3 2022-08-17 18:08:47.740416
120 10 26 2022-08-17 18:08:47.906315 2022-08-17 18:08:47.906315 f 3 2022-08-17 18:08:47.891641
121 11 26 2022-08-17 18:08:47.913252 2022-08-17 18:08:47.913252 f 3 2022-08-17 18:08:47.891641
122 10 27 2022-08-17 18:08:48.043467 2022-08-17 18:08:48.043467 f 3 2022-08-17 18:08:48.024418
123 11 27 2022-08-17 18:08:48.052674 2022-08-17 18:08:48.052674 f 3 2022-08-17 18:08:48.024418
124 12 27 2022-08-17 18:08:48.061692 2022-08-17 18:08:48.061692 f 3 2022-08-17 18:08:48.024418
125 2 27 2022-08-17 18:08:48.111018 2022-08-17 18:08:48.111018 f 2 2022-08-17 18:08:48.110108
126 10 28 2022-08-17 18:08:48.137138 2022-08-17 18:08:48.137138 f 3 2022-08-17 18:08:48.12178
127 11 28 2022-08-17 18:08:48.146233 2022-08-17 18:08:48.146233 f 3 2022-08-17 18:08:48.12178
128 12 28 2022-08-17 18:08:48.154257 2022-08-17 18:08:48.154257 f 3 2022-08-17 18:08:48.12178
129 13 28 2022-08-17 18:08:48.163102 2022-08-17 18:08:48.163102 f 3 2022-08-17 18:08:48.12178
\.
--
-- Data for Name: groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.groups (id, name, created_at, updated_at, automatic, user_count, automatic_membership_email_domains, primary_group, title, grant_trust_level, incoming_email, has_messages, flair_bg_color, flair_color, bio_raw, bio_cooked, allow_membership_requests, full_name, default_notification_level, visibility_level, public_exit, public_admission, membership_request_template, messageable_level, mentionable_level, smtp_server, smtp_port, smtp_ssl, imap_server, imap_port, imap_ssl, imap_mailbox_name, imap_uid_validity, imap_last_uid, email_username, email_password, publish_read_state, members_visibility_level, imap_last_error, imap_old_emails, imap_new_emails, flair_icon, flair_upload_id, allow_unknown_sender_topic_replies, smtp_enabled, smtp_updated_at, smtp_updated_by_id, imap_enabled, imap_updated_at, imap_updated_by_id, assignable_level, email_from_alias) FROM stdin;
45 publishers 2021-02-01 11:30:42.978463 2022-08-17 18:08:44.393854 f 2 \N f \N \N \N f \N \N \N \N t \N 3 0 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
43 advertisers 2022-05-18 11:46:03.3683 2022-08-17 18:08:44.370846 f 2 \N t \N \N \N f \N \N \N \N t \N 3 0 t t \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
42 developers 2020-02-18 13:46:38.173834 2022-08-17 18:08:44.335493 f 2 \N f \N \N \N f \N \N \N \N f \N 3 0 t f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
3 staff 2022-08-17 18:06:15.282505 2022-08-17 18:06:15.285176 t 2 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
44 leaders 2022-05-28 17:55:04.488723 2022-08-17 18:08:44.377566 f 1 \N t \N \N \N f \N \N \N \N f \N 3 0 f t \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
1 admins 2022-08-17 18:06:15.259018 2022-08-17 18:06:15.261331 t 3 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
46 early-birds 2021-04-20 06:50:45.526903 2022-08-17 18:08:44.400495 f 4 \N f \N \N \N f \N \N \N \N f \N 3 0 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
0 everyone 2022-08-17 18:06:15.251127 2022-08-17 18:06:15.255274 t 2 \N f \N \N \N f \N \N \N \N f \N 3 3 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
14 trust_level_4 2022-08-17 18:06:15.335732 2022-08-17 18:06:15.338105 t 9 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
41 team 2022-05-13 05:40:13.299704 2022-08-17 18:08:44.328412 f 3 \N f \N \N \N f \N \N \N \N t \N 3 0 t t \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
2 moderators 2022-08-17 18:06:15.271318 2022-08-17 18:06:15.275733 t 2 \N f \N \N \N f \N \N \N \N f \N 2 1 f f \N 99 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
10 trust_level_0 2022-08-17 18:06:15.294751 2022-08-17 18:06:15.297833 t 30 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
11 trust_level_1 2022-08-17 18:06:15.304847 2022-08-17 18:06:15.307236 t 30 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
12 trust_level_2 2022-08-17 18:06:15.315514 2022-08-17 18:06:15.317835 t 23 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
13 trust_level_3 2022-08-17 18:06:15.325679 2022-08-17 18:06:15.327914 t 14 \N f \N \N \N f \N \N \N \N f \N 3 1 f f \N 0 0 \N \N \N \N \N \N 0 0 \N \N f 0 \N \N \N \N \N f f \N \N f \N \N 0 \N
\.
--
-- Data for Name: groups_web_hooks; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.groups_web_hooks (web_hook_id, group_id) FROM stdin;
\.
--
-- Data for Name: ignored_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.ignored_users (id, user_id, ignored_user_id, created_at, updated_at, summarized_at, expiring_at) FROM stdin;
\.
--
-- Data for Name: imap_sync_logs; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.imap_sync_logs (id, level, message, group_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: incoming_domains; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.incoming_domains (id, name, https, port) FROM stdin;
\.
--
-- Data for Name: incoming_emails; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.incoming_emails (id, user_id, topic_id, post_id, raw, error, message_id, from_address, to_addresses, cc_addresses, subject, created_at, updated_at, rejection_message, is_auto_generated, is_bounce, imap_uid_validity, imap_uid, imap_sync, imap_group_id, imap_missing, created_via) FROM stdin;
\.
--
-- Data for Name: incoming_links; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.incoming_links (id, created_at, user_id, ip_address, current_user_id, post_id, incoming_referer_id) FROM stdin;
\.
--
-- Data for Name: incoming_referers; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.incoming_referers (id, path, incoming_domain_id) FROM stdin;
\.
--
-- Data for Name: invited_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.invited_groups (id, group_id, invite_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: invited_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.invited_users (id, user_id, invite_id, redeemed_at, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: invites; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.invites (id, invite_key, email, invited_by_id, user_id, redeemed_at, created_at, updated_at, deleted_at, deleted_by_id, invalidated_at, moderator, custom_message, emailed_status, max_redemptions_allowed, redemption_count, expires_at, email_token, domain) FROM stdin;
\.
--
-- Data for Name: javascript_caches; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.javascript_caches (id, theme_field_id, digest, content, created_at, updated_at, theme_id) FROM stdin;
\.
--
-- Data for Name: linked_topics; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.linked_topics (id, topic_id, original_topic_id, sequence, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: message_bus; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.message_bus (id, name, context, data, created_at) FROM stdin;
\.
--
-- Data for Name: muted_users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.muted_users (id, user_id, muted_user_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.notifications (id, notification_type, user_id, data, read, created_at, updated_at, topic_id, post_number, post_action_id, high_priority) FROM stdin;
1 5 25 {"topic_title":"Coolest thing you have seen today","original_post_id":39,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:08:52.169077 2022-08-17 18:08:52.169077 36 1 1 f
2 5 9 {"topic_title":"Coolest thing you have seen today","original_post_id":40,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:08:52.779967 2022-08-17 18:08:52.779967 36 2 11 f
3 5 26 {"topic_title":"Coolest thing you have seen today","original_post_id":41,"original_post_type":1,"original_username":"pattie.wisoky","revision_number":null,"display_username":"pattie.wisoky"} f 2022-08-17 18:08:53.446927 2022-08-17 18:08:53.446927 36 3 17 f
4 5 20 {"topic_title":"Coolest thing you have seen today","original_post_id":42,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:08:53.598762 2022-08-17 18:08:53.598762 36 4 18 f
5 5 13 {"topic_title":"Coolest thing you have seen today","original_post_id":43,"original_post_type":1,"original_username":"discobot","revision_number":null,"display_username":"discobot"} f 2022-08-17 18:08:54.187202 2022-08-17 18:08:54.187202 36 5 28 f
6 5 26 {"topic_title":"Coolest thing you have seen today","original_post_id":44,"original_post_type":1,"original_username":"oralia","revision_number":null,"display_username":"oralia"} f 2022-08-17 18:08:54.635122 2022-08-17 18:08:54.635122 36 6 33 f
7 5 13 {"topic_title":"Coolest thing you have seen today","original_post_id":45,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:08:54.917141 2022-08-17 18:08:54.917141 36 7 37 f
8 5 4 {"topic_title":"Coolest thing you have seen today","original_post_id":46,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:08:55.362027 2022-08-17 18:08:55.362027 36 8 42 f
9 5 14 {"topic_title":"Coolest thing you have seen today","original_post_id":47,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:08:55.77975 2022-08-17 18:08:55.77975 36 9 49 f
10 5 22 {"topic_title":"Coolest thing you have seen today","original_post_id":48,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:08:56.292998 2022-08-17 18:08:56.292998 36 10 57 f
11 5 4 {"topic_title":"Coolest thing you have seen today","original_post_id":49,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:08:56.578511 2022-08-17 18:08:56.578511 36 11 61 f
12 5 27 {"topic_title":"Coolest thing you have seen today","original_post_id":50,"original_post_type":1,"original_username":"joette.upton","revision_number":null,"display_username":"joette.upton"} f 2022-08-17 18:08:57.060993 2022-08-17 18:08:57.060993 36 12 69 f
13 5 18 {"topic_title":"Coolest thing you have seen today","original_post_id":51,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:08:57.411317 2022-08-17 18:08:57.411317 36 13 74 f
14 5 15 {"topic_title":"Coolest thing you have seen today","original_post_id":52,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:08:57.611681 2022-08-17 18:08:57.611681 36 14 76 f
15 5 19 {"topic_title":"Coolest thing you have seen today","original_post_id":53,"original_post_type":1,"original_username":"jarod","revision_number":null,"display_username":"jarod"} f 2022-08-17 18:08:57.908933 2022-08-17 18:08:57.908933 36 15 80 f
16 5 18 {"topic_title":"Coolest thing you have seen today","original_post_id":54,"original_post_type":1,"original_username":"genny.gorczany","revision_number":null,"display_username":"genny.gorczany"} f 2022-08-17 18:08:58.102729 2022-08-17 18:08:58.102729 36 16 82 f
17 5 13 {"topic_title":"Coolest thing you have seen today","original_post_id":55,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:08:58.281112 2022-08-17 18:08:58.281112 36 17 84 f
18 5 6 {"topic_title":"Coolest thing you have seen today","original_post_id":56,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:08:58.427493 2022-08-17 18:08:58.427493 36 18 85 f
19 5 3 {"topic_title":"Coolest thing you have seen today","original_post_id":57,"original_post_type":1,"original_username":"genny.gorczany","revision_number":null,"display_username":"genny.gorczany"} f 2022-08-17 18:08:58.591285 2022-08-17 18:08:58.591285 36 19 86 f
20 5 7 {"topic_title":"Coolest thing you have seen today","original_post_id":58,"original_post_type":1,"original_username":"jarod","revision_number":null,"display_username":"jarod"} f 2022-08-17 18:08:59.087394 2022-08-17 18:08:59.087394 36 20 94 f
21 5 8 {"topic_title":"Coolest thing you have seen today","original_post_id":59,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:08:59.544941 2022-08-17 18:08:59.544941 36 21 101 f
22 5 25 {"topic_title":"Coolest thing you have seen today","original_post_id":60,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:08:59.857947 2022-08-17 18:08:59.857947 36 22 105 f
23 5 22 {"topic_title":"Coolest thing you have seen today","original_post_id":61,"original_post_type":1,"original_username":"jarod","revision_number":null,"display_username":"jarod"} f 2022-08-17 18:09:00.355804 2022-08-17 18:09:00.355804 36 23 113 f
24 5 6 {"topic_title":"Coolest thing you have seen today","original_post_id":62,"original_post_type":1,"original_username":"rickie","revision_number":null,"display_username":"rickie"} f 2022-08-17 18:09:00.793063 2022-08-17 18:09:00.793063 36 24 120 f
25 5 27 {"topic_title":"Coolest thing you have seen today","original_post_id":63,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:00.98043 2022-08-17 18:09:00.98043 36 25 122 f
26 5 10 {"topic_title":"Coolest thing you have seen today","original_post_id":64,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:01.180787 2022-08-17 18:09:01.180787 36 26 124 f
27 5 11 {"topic_title":"Coolest thing you have seen today","original_post_id":65,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:01.3261 2022-08-17 18:09:01.3261 36 27 125 f
28 5 1 {"topic_title":"Coolest thing you have seen today","original_post_id":66,"original_post_type":1,"original_username":"naomi_feil","revision_number":null,"display_username":"naomi_feil"} f 2022-08-17 18:09:01.521379 2022-08-17 18:09:01.521379 36 28 127 f
29 5 15 {"topic_title":"Coolest thing you have seen today","original_post_id":67,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:01.872036 2022-08-17 18:09:01.872036 36 29 132 f
31 5 28 {"topic_title":"Coolest thing you have seen today","original_post_id":69,"original_post_type":1,"original_username":"graham","revision_number":null,"display_username":"graham"} f 2022-08-17 18:09:02.620811 2022-08-17 18:09:02.620811 36 31 142 f
32 5 8 {"topic_title":"Coolest thing you have seen today","original_post_id":70,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:03.175329 2022-08-17 18:09:03.175329 36 32 150 f
33 5 14 {"topic_title":"Coolest thing you have seen today","original_post_id":71,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:03.605667 2022-08-17 18:09:03.605667 36 33 156 f
34 5 14 {"topic_title":"Coolest thing you have seen today","original_post_id":72,"original_post_type":1,"original_username":"jack","revision_number":null,"display_username":"jack"} f 2022-08-17 18:09:03.749598 2022-08-17 18:09:03.749598 36 34 157 f
35 5 21 {"topic_title":"Coolest thing you have seen today","original_post_id":73,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:04.27041 2022-08-17 18:09:04.27041 36 35 165 f
36 5 26 {"topic_title":"Coolest thing you have seen today","original_post_id":74,"original_post_type":1,"original_username":"oralia","revision_number":null,"display_username":"oralia"} f 2022-08-17 18:09:04.726981 2022-08-17 18:09:04.726981 36 36 172 f
37 5 20 {"topic_title":"Coolest thing you have seen today","original_post_id":75,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:09:05.110703 2022-08-17 18:09:05.110703 36 37 178 f
38 5 15 {"topic_title":"Coolest thing you have seen today","original_post_id":76,"original_post_type":1,"original_username":"jack","revision_number":null,"display_username":"jack"} f 2022-08-17 18:09:05.506157 2022-08-17 18:09:05.506157 36 38 184 f
39 5 8 {"topic_title":"Coolest thing you have seen today","original_post_id":77,"original_post_type":1,"original_username":"danny.schiller","revision_number":null,"display_username":"danny.schiller"} f 2022-08-17 18:09:05.858931 2022-08-17 18:09:05.858931 36 39 189 f
40 5 3 {"topic_title":"Coolest thing you have seen today","original_post_id":79,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:06.336405 2022-08-17 18:09:06.336405 36 41 195 f
41 5 15 {"topic_title":"Coolest thing you have seen today","original_post_id":81,"original_post_type":1,"original_username":"pattie.wisoky","revision_number":null,"display_username":"pattie.wisoky"} f 2022-08-17 18:09:06.605197 2022-08-17 18:09:06.605197 36 43 197 f
42 5 2 {"topic_title":"Coolest thing you have seen today","original_post_id":83,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:09:07.335971 2022-08-17 18:09:07.335971 36 45 205 f
43 5 28 {"topic_title":"Coolest thing you have seen today","original_post_id":84,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:07.605199 2022-08-17 18:09:07.605199 36 46 208 f
44 5 11 {"topic_title":"Coolest thing you have seen today","original_post_id":85,"original_post_type":1,"original_username":"discobot","revision_number":null,"display_username":"discobot"} f 2022-08-17 18:09:07.854413 2022-08-17 18:09:07.854413 36 47 211 f
45 5 4 {"topic_title":"Coolest thing you have seen today","original_post_id":86,"original_post_type":1,"original_username":"oralia","revision_number":null,"display_username":"oralia"} f 2022-08-17 18:09:08.205459 2022-08-17 18:09:08.205459 36 48 216 f
46 5 19 {"topic_title":"Coolest thing you have seen today","original_post_id":87,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:08.748675 2022-08-17 18:09:08.748675 36 49 224 f
47 5 20 {"topic_title":"Coolest thing you have seen today","original_post_id":88,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:08.90215 2022-08-17 18:09:08.90215 36 50 225 f
48 5 18 {"topic_title":"Coolest thing you have seen today","original_post_id":89,"original_post_type":1,"original_username":"system","revision_number":null,"display_username":"system"} f 2022-08-17 18:09:09.153819 2022-08-17 18:09:09.153819 36 51 228 f
49 5 1 {"topic_title":"Coolest thing you have seen today","original_post_id":90,"original_post_type":1,"original_username":"pattie.wisoky","revision_number":null,"display_username":"pattie.wisoky"} f 2022-08-17 18:09:09.664819 2022-08-17 18:09:09.664819 36 52 235 f
50 5 5 {"topic_title":"Coolest thing you have seen today","original_post_id":91,"original_post_type":1,"original_username":"naomi_feil","revision_number":null,"display_username":"naomi_feil"} f 2022-08-17 18:09:09.815271 2022-08-17 18:09:09.815271 36 53 236 f
51 5 21 {"topic_title":"Coolest thing you have seen today","original_post_id":93,"original_post_type":1,"original_username":"jarod","revision_number":null,"display_username":"jarod"} f 2022-08-17 18:09:10.219499 2022-08-17 18:09:10.219499 36 55 239 f
52 5 20 {"topic_title":"Coolest thing you have seen today","original_post_id":95,"original_post_type":1,"original_username":"joette.upton","revision_number":null,"display_username":"joette.upton"} f 2022-08-17 18:09:10.983332 2022-08-17 18:09:10.983332 36 57 251 f
53 5 12 {"topic_title":"Coolest thing you have seen today","original_post_id":96,"original_post_type":1,"original_username":"graham","revision_number":null,"display_username":"graham"} f 2022-08-17 18:09:11.515815 2022-08-17 18:09:11.515815 36 58 259 f
54 5 20 {"topic_title":"Coolest thing you have seen today","original_post_id":97,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:11.982952 2022-08-17 18:09:11.982952 36 59 266 f
55 5 21 {"topic_title":"Coolest thing you have seen today","original_post_id":98,"original_post_type":1,"original_username":"nicolette","revision_number":null,"display_username":"nicolette"} f 2022-08-17 18:09:12.250633 2022-08-17 18:09:12.250633 36 60 269 f
56 5 1 {"topic_title":"Coolest thing you have seen today","original_post_id":99,"original_post_type":1,"original_username":"ileen","revision_number":null,"display_username":"ileen"} f 2022-08-17 18:09:12.458061 2022-08-17 18:09:12.458061 36 61 271 f
57 5 10 {"topic_title":"Coolest thing you have seen today","original_post_id":100,"original_post_type":1,"original_username":"oralia","revision_number":null,"display_username":"oralia"} f 2022-08-17 18:09:13.000461 2022-08-17 18:09:13.000461 36 62 279 f
58 5 12 {"topic_title":"Coolest thing you have seen today","original_post_id":101,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:09:13.450307 2022-08-17 18:09:13.450307 36 63 285 f
59 5 12 {"topic_title":"Coolest thing you have seen today","original_post_id":102,"original_post_type":1,"original_username":"discobot","revision_number":null,"display_username":"discobot"} f 2022-08-17 18:09:13.990724 2022-08-17 18:09:13.990724 36 64 293 f
61 5 4 {"topic_title":"Coolest thing you have seen today","original_post_id":104,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:09:15.132826 2022-08-17 18:09:15.132826 36 66 309 f
62 5 23 {"topic_title":"Coolest thing you have seen today","original_post_id":105,"original_post_type":1,"original_username":"naomi_feil","revision_number":null,"display_username":"naomi_feil"} f 2022-08-17 18:09:15.337892 2022-08-17 18:09:15.337892 36 67 311 f
63 5 6 {"topic_title":"Coolest thing you have seen today","original_post_id":106,"original_post_type":1,"original_username":"graham","revision_number":null,"display_username":"graham"} f 2022-08-17 18:09:15.482387 2022-08-17 18:09:15.482387 36 68 312 f
65 5 11 {"topic_title":"Coolest thing you have seen today","original_post_id":108,"original_post_type":1,"original_username":"jarod","revision_number":null,"display_username":"jarod"} f 2022-08-17 18:09:15.831404 2022-08-17 18:09:15.831404 36 70 315 f
66 5 19 {"topic_title":"Coolest thing you have seen today","original_post_id":109,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:16.284363 2022-08-17 18:09:16.284363 36 71 321 f
68 5 24 {"topic_title":"Coolest thing you have seen today","original_post_id":112,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:17.078246 2022-08-17 18:09:17.078246 36 74 330 f
69 5 11 {"topic_title":"Coolest thing you have seen today","original_post_id":113,"original_post_type":1,"original_username":"discobot","revision_number":null,"display_username":"discobot"} f 2022-08-17 18:09:17.418842 2022-08-17 18:09:17.418842 36 75 334 f
70 5 14 {"topic_title":"Coolest thing you have seen today","original_post_id":114,"original_post_type":1,"original_username":"naomi_feil","revision_number":null,"display_username":"naomi_feil"} f 2022-08-17 18:09:17.750659 2022-08-17 18:09:17.750659 36 76 338 f
71 5 8 {"topic_title":"Coolest thing you have seen today","original_post_id":116,"original_post_type":1,"original_username":"pattie.wisoky","revision_number":null,"display_username":"pattie.wisoky"} f 2022-08-17 18:09:18.661613 2022-08-17 18:09:18.661613 36 78 352 f
72 5 12 {"topic_title":"Coolest thing you have seen today","original_post_id":117,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:19.41095 2022-08-17 18:09:19.41095 36 79 362 f
73 5 16 {"topic_title":"Coolest thing you have seen today","original_post_id":118,"original_post_type":1,"original_username":"fletcher_ratke","revision_number":null,"display_username":"fletcher_ratke"} f 2022-08-17 18:09:19.640465 2022-08-17 18:09:19.640465 36 80 364 f
74 5 18 {"topic_title":"Coolest thing you have seen today","original_post_id":119,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:19.933006 2022-08-17 18:09:19.933006 36 81 367 f
75 5 25 {"topic_title":"Coolest thing you have seen today","original_post_id":120,"original_post_type":1,"original_username":"graham","revision_number":null,"display_username":"graham"} f 2022-08-17 18:09:20.163322 2022-08-17 18:09:20.163322 36 82 369 f
76 5 19 {"topic_title":"Coolest thing you have seen today","original_post_id":122,"original_post_type":1,"original_username":"system","revision_number":null,"display_username":"system"} f 2022-08-17 18:09:20.806752 2022-08-17 18:09:20.806752 36 84 374 f
78 5 7 {"topic_title":"Coolest thing you have seen today","original_post_id":125,"original_post_type":1,"original_username":"danny.schiller","revision_number":null,"display_username":"danny.schiller"} f 2022-08-17 18:09:21.91171 2022-08-17 18:09:21.91171 36 87 388 f
79 5 13 {"topic_title":"Coolest thing you have seen today","original_post_id":127,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:09:22.369023 2022-08-17 18:09:22.369023 36 89 393 f
80 5 13 {"topic_title":"Coolest thing you have seen today","original_post_id":128,"original_post_type":1,"original_username":"ileen","revision_number":null,"display_username":"ileen"} f 2022-08-17 18:09:22.979329 2022-08-17 18:09:22.979329 36 90 402 f
81 5 2 {"topic_title":"Coolest thing you have seen today","original_post_id":129,"original_post_type":1,"original_username":"linsey","revision_number":null,"display_username":"linsey"} f 2022-08-17 18:09:23.214508 2022-08-17 18:09:23.214508 36 91 405 f
82 5 24 {"topic_title":"Coolest thing you have seen today","original_post_id":130,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:23.770714 2022-08-17 18:09:23.770714 36 92 414 f
83 5 26 {"topic_title":"Coolest thing you have seen today","original_post_id":131,"original_post_type":1,"original_username":"nicolette","revision_number":null,"display_username":"nicolette"} f 2022-08-17 18:09:23.919239 2022-08-17 18:09:23.919239 36 93 415 f
84 5 24 {"topic_title":"Coolest thing you have seen today","original_post_id":133,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:24.577699 2022-08-17 18:09:24.577699 36 95 425 f
85 5 5 {"topic_title":"Coolest thing you have seen today","original_post_id":134,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:25.024789 2022-08-17 18:09:25.024789 36 96 432 f
86 5 19 {"topic_title":"Coolest thing you have seen today","original_post_id":135,"original_post_type":1,"original_username":"ileen","revision_number":null,"display_username":"ileen"} f 2022-08-17 18:09:25.540661 2022-08-17 18:09:25.540661 36 97 440 f
87 5 9 {"topic_title":"Coolest thing you have seen today","original_post_id":136,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:09:25.946696 2022-08-17 18:09:25.946696 36 98 446 f
88 5 5 {"topic_title":"Coolest thing you have seen today","original_post_id":137,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:26.43828 2022-08-17 18:09:26.43828 36 99 453 f
89 5 22 {"topic_title":"Coolest thing you have seen today","original_post_id":138,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:09:26.649312 2022-08-17 18:09:26.649312 36 100 455 f
93 5 23 {"topic_title":"Mark of the Ninja","original_post_id":143,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:27.771656 2022-08-17 18:09:27.771656 37 5 465 f
94 5 15 {"topic_title":"Mark of the Ninja","original_post_id":145,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:28.019173 2022-08-17 18:09:28.019173 37 7 466 f
97 5 11 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":149,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:09:28.708846 2022-08-17 18:09:28.708846 38 1 470 f
98 5 19 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":150,"original_post_type":1,"original_username":"naomi_feil","revision_number":null,"display_username":"naomi_feil"} f 2022-08-17 18:09:29.131226 2022-08-17 18:09:29.131226 38 2 476 f
99 5 17 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":151,"original_post_type":1,"original_username":"joette.upton","revision_number":null,"display_username":"joette.upton"} f 2022-08-17 18:09:29.378465 2022-08-17 18:09:29.378465 38 3 479 f
100 5 8 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":152,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:29.794794 2022-08-17 18:09:29.794794 38 4 485 f
101 5 5 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":153,"original_post_type":1,"original_username":"system","revision_number":null,"display_username":"system"} f 2022-08-17 18:09:30.202741 2022-08-17 18:09:30.202741 38 5 491 f
102 5 12 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":155,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:09:31.227863 2022-08-17 18:09:31.227863 38 7 505 f
103 5 23 {"topic_title":"Do you use a mobile device for ALL your work? Tell me how!","original_post_id":156,"original_post_type":1,"original_username":"ileen","revision_number":null,"display_username":"ileen"} f 2022-08-17 18:09:31.831266 2022-08-17 18:09:31.831266 38 8 514 f
104 5 11 {"topic_title":"What methods/books did you use to learn Ruby?","original_post_id":157,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:09:32.224174 2022-08-17 18:09:32.224174 39 1 518 f
105 5 5 {"topic_title":"What methods/books did you use to learn Ruby?","original_post_id":158,"original_post_type":1,"original_username":"jack","revision_number":null,"display_username":"jack"} f 2022-08-17 18:09:32.706922 2022-08-17 18:09:32.706922 39 2 525 f
106 5 18 {"topic_title":"What methods/books did you use to learn Ruby?","original_post_id":160,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:33.365992 2022-08-17 18:09:33.365992 39 4 534 f
107 5 26 {"topic_title":"What methods/books did you use to learn Ruby?","original_post_id":162,"original_post_type":1,"original_username":"pattie.wisoky","revision_number":null,"display_username":"pattie.wisoky"} f 2022-08-17 18:09:33.980184 2022-08-17 18:09:33.980184 39 6 542 f
108 5 14 {"topic_title":"Charlie The Unicorn 4","original_post_id":164,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:34.411964 2022-08-17 18:09:34.411964 40 1 546 f
109 5 7 {"topic_title":"Charlie The Unicorn 4","original_post_id":165,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:34.585118 2022-08-17 18:09:34.585118 40 2 547 f
110 5 14 {"topic_title":"Charlie The Unicorn 4","original_post_id":166,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:34.804016 2022-08-17 18:09:34.804016 40 3 549 f
111 5 19 {"topic_title":"Charlie The Unicorn 4","original_post_id":167,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:35.04513 2022-08-17 18:09:35.04513 40 4 551 f
114 5 19 {"topic_title":"Charlie The Unicorn 4","original_post_id":170,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:35.652811 2022-08-17 18:09:35.652811 40 7 556 f
116 5 7 {"topic_title":"Charlie The Unicorn 4","original_post_id":172,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:35.991371 2022-08-17 18:09:35.991371 40 9 558 f
120 5 23 {"topic_title":"Charlie The Unicorn 4","original_post_id":176,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:36.66681 2022-08-17 18:09:36.66681 40 13 562 f
119 19 23 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":277,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow","username":"meta.deckow","count":5} f 2022-08-17 18:09:36.169957 2022-08-17 18:09:59.621135 \N \N \N f
121 5 15 {"topic_title":"MLP:FIM Season 3 (spoilers ahoy!)","original_post_id":183,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:37.554616 2022-08-17 18:09:37.554616 42 6 564 f
123 5 21 {"topic_title":"Online learning","original_post_id":190,"original_post_type":1,"original_username":"genny.gorczany","revision_number":null,"display_username":"genny.gorczany"} f 2022-08-17 18:09:38.359348 2022-08-17 18:09:38.359348 43 1 566 f
124 5 25 {"topic_title":"Online learning","original_post_id":191,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:38.68392 2022-08-17 18:09:38.68392 43 2 570 f
125 5 16 {"topic_title":"Online learning","original_post_id":192,"original_post_type":1,"original_username":"ileen","revision_number":null,"display_username":"ileen"} f 2022-08-17 18:09:39.099189 2022-08-17 18:09:39.099189 43 3 576 f
126 5 24 {"topic_title":"Online learning","original_post_id":193,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:39.353894 2022-08-17 18:09:39.353894 43 4 579 f
127 5 27 {"topic_title":"Online learning","original_post_id":194,"original_post_type":1,"original_username":"oralia","revision_number":null,"display_username":"oralia"} f 2022-08-17 18:09:39.898937 2022-08-17 18:09:39.898937 43 5 587 f
128 5 23 {"topic_title":"Robots are taking our jobs!","original_post_id":197,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:40.788214 2022-08-17 18:09:40.788214 45 1 598 f
131 5 19 {"topic_title":"What’s your all-time favorite movie scene?","original_post_id":205,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:41.830509 2022-08-17 18:09:41.830509 46 2 602 f
132 5 19 {"topic_title":"What’s your all-time favorite movie scene?","original_post_id":208,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:42.216648 2022-08-17 18:09:42.216648 46 5 604 f
133 5 19 {"topic_title":"What’s your all-time favorite movie scene?","original_post_id":209,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:09:42.430957 2022-08-17 18:09:42.430957 46 6 606 f
134 5 14 {"topic_title":"What’s your all-time favorite movie scene?","original_post_id":210,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:42.650617 2022-08-17 18:09:42.650617 46 7 608 f
135 5 14 {"topic_title":"What’s your all-time favorite movie scene?","original_post_id":211,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:42.862057 2022-08-17 18:09:42.862057 46 8 610 f
136 5 14 {"topic_title":"What’s your all-time favorite movie scene?","original_post_id":212,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:43.018668 2022-08-17 18:09:43.018668 46 9 611 f
138 5 10 {"topic_title":"Death by poisonous and electric watermelon","original_post_id":216,"original_post_type":1,"original_username":"joette.upton","revision_number":null,"display_username":"joette.upton"} f 2022-08-17 18:09:43.585882 2022-08-17 18:09:43.585882 47 1 613 f
139 5 26 {"topic_title":"Totally amped about the 80s","original_post_id":217,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:44.152174 2022-08-17 18:09:44.152174 48 1 621 f
140 5 9 {"topic_title":"Totally amped about the 80s","original_post_id":218,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:44.787083 2022-08-17 18:09:44.787083 48 2 627 f
141 5 10 {"topic_title":"Totally amped about the 80s","original_post_id":220,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:45.065768 2022-08-17 18:09:45.065768 48 4 628 f
142 5 10 {"topic_title":"Totally amped about the 80s","original_post_id":221,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:45.228511 2022-08-17 18:09:45.228511 48 5 629 f
143 5 13 {"topic_title":"Totally amped about the 80s","original_post_id":222,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:45.661439 2022-08-17 18:09:45.661439 48 6 635 f
144 5 18 {"topic_title":"Totally amped about the 80s","original_post_id":223,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:09:45.822261 2022-08-17 18:09:45.822261 48 7 636 f
145 5 21 {"topic_title":"Totally amped about the 80s","original_post_id":224,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:46.494704 2022-08-17 18:09:46.494704 48 8 646 f
146 5 21 {"topic_title":"Totally amped about the 80s","original_post_id":225,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:09:46.690216 2022-08-17 18:09:46.690216 48 9 648 f
147 5 28 {"topic_title":"Totally amped about the 80s","original_post_id":227,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:09:47.38281 2022-08-17 18:09:47.38281 48 11 659 f
148 5 19 {"topic_title":"Totally amped about the 80s","original_post_id":228,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:09:48.015537 2022-08-17 18:09:48.015537 48 12 668 f
149 5 22 {"topic_title":"Enjoyable children’s shows for adults","original_post_id":229,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:09:48.406269 2022-08-17 18:09:48.406269 49 1 672 f
150 5 25 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":231,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:48.936558 2022-08-17 18:09:48.936558 50 1 679 f
151 5 28 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":232,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:49.150901 2022-08-17 18:09:49.150901 50 2 681 f
152 5 20 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":233,"original_post_type":1,"original_username":"fletcher_ratke","revision_number":null,"display_username":"fletcher_ratke"} f 2022-08-17 18:09:49.565305 2022-08-17 18:09:49.565305 50 3 687 f
153 5 1 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":234,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:09:49.72921 2022-08-17 18:09:49.72921 50 4 688 f
154 5 19 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":235,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:09:50.100075 2022-08-17 18:09:50.100075 50 5 693 f
96 19 1 {"topic_title":"Whoa. Check out this crazy paper artwork","original_post_id":259,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford","username":"cori.botsford","count":7} f 2022-08-17 18:09:27.602604 2022-08-17 18:09:54.265475 \N \N \N f
155 5 12 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":238,"original_post_type":1,"original_username":"system","revision_number":null,"display_username":"system"} f 2022-08-17 18:09:50.944682 2022-08-17 18:09:50.944682 50 8 702 f
156 5 24 {"topic_title":"Funniest thing you’ve seen today?","original_post_id":240,"original_post_type":1,"original_username":"joette.upton","revision_number":null,"display_username":"joette.upton"} f 2022-08-17 18:09:51.368926 2022-08-17 18:09:51.368926 50 10 707 f
157 19 1 {"topic_title":"Recommended reading for Community and FOSS enthusiasts","original_post_id":247,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice","username":"maurice","count":4} f 2022-08-17 18:09:41.546838 2022-08-17 18:09:41.546838 \N \N \N f
159 5 23 {"topic_title":"Recommended reading for Community and FOSS enthusiasts","original_post_id":249,"original_post_type":1,"original_username":"linsey","revision_number":null,"display_username":"linsey"} f 2022-08-17 18:09:52.845621 2022-08-17 18:09:52.845621 51 9 717 f
158 19 15 {"topic_title":"Recommended reading for Community and FOSS enthusiasts","original_post_id":252,"original_post_type":1,"original_username":"linsey","revision_number":null,"display_username":"linsey","username":"linsey","count":5} f 2022-08-17 18:09:37.896479 2022-08-17 18:09:53.283875 \N \N \N f
160 5 23 {"topic_title":"Recommended reading for Community and FOSS enthusiasts","original_post_id":253,"original_post_type":1,"original_username":"linsey","revision_number":null,"display_username":"linsey"} f 2022-08-17 18:09:53.487007 2022-08-17 18:09:53.487007 51 13 719 f
161 5 23 {"topic_title":"Whoa. Check out this crazy paper artwork","original_post_id":254,"original_post_type":1,"original_username":"cori.botsford","revision_number":null,"display_username":"cori.botsford"} f 2022-08-17 18:09:53.692715 2022-08-17 18:09:53.692715 52 1 720 f
162 5 7 {"topic_title":"Recommend a great YouTube video","original_post_id":262,"original_post_type":1,"original_username":"eboni_ziemann","revision_number":null,"display_username":"eboni_ziemann"} f 2022-08-17 18:09:54.65504 2022-08-17 18:09:54.65504 53 2 723 f
163 5 14 {"topic_title":"Recommend a great YouTube video","original_post_id":263,"original_post_type":1,"original_username":"billy","revision_number":null,"display_username":"billy"} f 2022-08-17 18:09:55.155717 2022-08-17 18:09:55.155717 53 3 731 f
164 5 12 {"topic_title":"Recommend a great YouTube video","original_post_id":264,"original_post_type":1,"original_username":"joette.upton","revision_number":null,"display_username":"joette.upton"} f 2022-08-17 18:09:55.594886 2022-08-17 18:09:55.594886 53 4 738 f
165 5 1 {"topic_title":"Recommend a great YouTube video","original_post_id":265,"original_post_type":1,"original_username":"discobot","revision_number":null,"display_username":"discobot"} f 2022-08-17 18:09:56.108541 2022-08-17 18:09:56.108541 53 5 745 f
166 19 24 {"topic_title":"Recommend a great YouTube video","original_post_id":266,"original_post_type":1,"original_username":"pattie.wisoky","revision_number":null,"display_username":"pattie.wisoky","username":"pattie.wisoky","count":4} f 2022-08-17 18:09:21.557191 2022-08-17 18:09:21.557191 \N \N \N f
167 5 24 {"topic_title":"Recommend a great YouTube video","original_post_id":266,"original_post_type":1,"original_username":"discobot","revision_number":null,"display_username":"discobot"} f 2022-08-17 18:09:56.435184 2022-08-17 18:09:56.435184 53 6 748 f
168 5 27 {"topic_title":"Favorite TV show scene?","original_post_id":267,"original_post_type":1,"original_username":"rickie","revision_number":null,"display_username":"rickie"} f 2022-08-17 18:09:56.84888 2022-08-17 18:09:56.84888 54 1 752 f
169 5 24 {"topic_title":"Favorite TV show scene?","original_post_id":268,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:57.072836 2022-08-17 18:09:57.072836 54 2 754 f
170 5 7 {"topic_title":"Favorite TV show scene?","original_post_id":269,"original_post_type":1,"original_username":"kaylee","revision_number":null,"display_username":"kaylee"} f 2022-08-17 18:09:57.518014 2022-08-17 18:09:57.518014 54 3 760 f
171 5 18 {"topic_title":"Favorite TV show scene?","original_post_id":270,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:09:57.896021 2022-08-17 18:09:57.896021 54 4 765 f
172 5 15 {"topic_title":"What is your favorite TED Video","original_post_id":271,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:58.507381 2022-08-17 18:09:58.507381 55 1 772 f
173 5 14 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":272,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:09:58.692369 2022-08-17 18:09:58.692369 56 1 773 f
174 5 19 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":273,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:58.871532 2022-08-17 18:09:58.871532 56 2 774 f
175 5 7 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":274,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:09:59.036323 2022-08-17 18:09:59.036323 56 3 775 f
177 5 23 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":277,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:09:59.685177 2022-08-17 18:09:59.685177 56 6 778 f
178 5 23 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":279,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:09:59.942568 2022-08-17 18:09:59.942568 56 8 779 f
179 5 14 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":281,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:10:00.235873 2022-08-17 18:10:00.235873 56 10 781 f
180 5 7 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":283,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:10:00.502005 2022-08-17 18:10:00.502005 56 12 782 f
176 19 7 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":284,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn","username":"percy_sawayn","count":5} f 2022-08-17 18:09:43.186221 2022-08-17 18:10:00.727093 \N \N \N f
181 5 7 {"topic_title":"Modernizing the antiquated boxing scoring system","original_post_id":284,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:10:00.794952 2022-08-17 18:10:00.794952 56 13 785 f
182 5 28 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":285,"original_post_type":1,"original_username":"genny.gorczany","revision_number":null,"display_username":"genny.gorczany"} f 2022-08-17 18:10:01.029186 2022-08-17 18:10:01.029186 57 1 786 f
183 5 16 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":287,"original_post_type":1,"original_username":"system","revision_number":null,"display_username":"system"} f 2022-08-17 18:10:01.660127 2022-08-17 18:10:01.660127 57 3 795 f
184 5 11 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":288,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:10:02.263382 2022-08-17 18:10:02.263382 57 4 804 f
185 5 7 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":289,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:10:02.679761 2022-08-17 18:10:02.679761 57 5 810 f
186 5 8 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":290,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:10:03.302018 2022-08-17 18:10:03.302018 57 6 819 f
187 5 25 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":291,"original_post_type":1,"original_username":"genny.gorczany","revision_number":null,"display_username":"genny.gorczany"} f 2022-08-17 18:10:03.984657 2022-08-17 18:10:03.984657 57 7 829 f
188 5 25 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":292,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:10:04.496378 2022-08-17 18:10:04.496378 57 8 836 f
189 5 14 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":293,"original_post_type":1,"original_username":"meta.deckow","revision_number":null,"display_username":"meta.deckow"} f 2022-08-17 18:10:05.182609 2022-08-17 18:10:05.182609 57 9 846 f
190 5 8 {"topic_title":"Is the Second Amendment still relevant today?","original_post_id":295,"original_post_type":1,"original_username":"chang","revision_number":null,"display_username":"chang"} f 2022-08-17 18:10:05.534709 2022-08-17 18:10:05.534709 57 11 849 f
191 5 18 {"topic_title":"Share your Hallowe’en pictures","original_post_id":296,"original_post_type":1,"original_username":"danny.schiller","revision_number":null,"display_username":"danny.schiller"} f 2022-08-17 18:10:06.145944 2022-08-17 18:10:06.145944 58 1 857 f
192 5 24 {"topic_title":"Share your Hallowe’en pictures","original_post_id":297,"original_post_type":1,"original_username":"reuben","revision_number":null,"display_username":"reuben"} f 2022-08-17 18:10:06.55731 2022-08-17 18:10:06.55731 58 2 863 f
193 5 6 {"topic_title":"Share your Hallowe’en pictures","original_post_id":299,"original_post_type":1,"original_username":"rickie","revision_number":null,"display_username":"rickie"} f 2022-08-17 18:10:07.136779 2022-08-17 18:10:07.136779 58 4 868 f
194 5 4 {"topic_title":"Share your Hallowe’en pictures","original_post_id":300,"original_post_type":1,"original_username":"maurice","revision_number":null,"display_username":"maurice"} f 2022-08-17 18:10:07.320942 2022-08-17 18:10:07.320942 58 5 869 f
195 5 4 {"topic_title":"Share your Hallowe’en pictures","original_post_id":301,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:10:07.471911 2022-08-17 18:10:07.471911 58 6 870 f
196 5 14 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":303,"original_post_type":1,"original_username":"rae.wilkinson","revision_number":null,"display_username":"rae.wilkinson"} f 2022-08-17 18:10:08.128457 2022-08-17 18:10:08.128457 59 1 878 f
197 5 24 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":304,"original_post_type":1,"original_username":"nicolette","revision_number":null,"display_username":"nicolette"} f 2022-08-17 18:10:08.471351 2022-08-17 18:10:08.471351 59 2 882 f
198 5 11 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":305,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:10:08.739075 2022-08-17 18:10:08.739075 59 3 885 f
199 5 26 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":306,"original_post_type":1,"original_username":"lucina_kilback","revision_number":null,"display_username":"lucina_kilback"} f 2022-08-17 18:10:09.197087 2022-08-17 18:10:09.197087 59 4 891 f
200 5 17 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":307,"original_post_type":1,"original_username":"danny.schiller","revision_number":null,"display_username":"danny.schiller"} f 2022-08-17 18:10:09.35191 2022-08-17 18:10:09.35191 59 5 892 f
201 5 9 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":308,"original_post_type":1,"original_username":"lincoln.satterfield","revision_number":null,"display_username":"lincoln.satterfield"} f 2022-08-17 18:10:09.55633 2022-08-17 18:10:09.55633 59 6 894 f
202 5 1 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":309,"original_post_type":1,"original_username":"yee.terry","revision_number":null,"display_username":"yee.terry"} f 2022-08-17 18:10:09.763127 2022-08-17 18:10:09.763127 59 7 896 f
203 5 8 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":310,"original_post_type":1,"original_username":"percy_sawayn","revision_number":null,"display_username":"percy_sawayn"} f 2022-08-17 18:10:10.112824 2022-08-17 18:10:10.112824 59 8 901 f
204 5 16 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":313,"original_post_type":1,"original_username":"lucina_kilback","revision_number":null,"display_username":"lucina_kilback"} f 2022-08-17 18:10:10.569857 2022-08-17 18:10:10.569857 59 11 904 f
205 5 8 {"topic_title":"Most inspirational movie you have ever seen?","original_post_id":314,"original_post_type":1,"original_username":"twana.gleason","revision_number":null,"display_username":"twana.gleason"} f 2022-08-17 18:10:10.881455 2022-08-17 18:10:10.881455 59 12 908 f
206 14 4 {"message":"solved.accepted_notification","display_username":"percy_sawayn","topic_title":"Most inspirational movie you have ever seen?"} f 2022-08-17 18:10:10.915716 2022-08-17 18:10:10.915716 59 10 \N f
\.
--
-- Data for Name: oauth2_user_infos; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.oauth2_user_infos (id, user_id, uid, provider, email, name, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: onceoff_logs; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.onceoff_logs (id, job_name, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: optimized_images; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.optimized_images (id, sha1, extension, width, height, upload_id, url, filesize, etag, version, created_at, updated_at) FROM stdin;
1 82000282c5c3224d5ecd275ae04991f2940629d0 .png 512 512 -6 /uploads/default/optimized/1X/_129430568242d1b7f853bb13ebea28b3f6af4e7_2_512x512.png 34588 \N 2 2022-08-17 18:06:20.908025 2022-08-17 18:06:20.91383
2 f0097216424a77c21bee3620c546b06a153aeb46 .png 32 32 -6 /uploads/default/optimized/1X/_129430568242d1b7f853bb13ebea28b3f6af4e7_2_32x32.png 1878 \N 2 2022-08-17 18:06:20.94846 2022-08-17 18:06:20.953554
3 63af36107d76eb00a3c101edb35950c84467a4f0 .png 180 180 -6 /uploads/default/optimized/1X/_129430568242d1b7f853bb13ebea28b3f6af4e7_2_180x180.png 14216 \N 2 2022-08-17 18:06:21.071669 2022-08-17 18:06:21.082123
\.
--
-- Data for Name: permalinks; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.permalinks (id, url, topic_id, post_id, category_id, created_at, updated_at, external_url, tag_id) FROM stdin;
\.
--
-- Data for Name: plugin_store_rows; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.plugin_store_rows (id, plugin_name, key, type_name, value) FROM stdin;
\.
--
-- Data for Name: poll_options; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.poll_options (id, poll_id, digest, html, anonymous_votes, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: poll_votes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.poll_votes (poll_id, poll_option_id, user_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: polls; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.polls (id, post_id, name, close_at, type, status, results, visibility, min, max, step, anonymous_voters, created_at, updated_at, chart_type, groups, title) FROM stdin;
\.
--
-- Data for Name: post_action_types; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_action_types (name_key, is_flag, icon, created_at, updated_at, id, "position", score_bonus, reviewable_priority) FROM stdin;
like f heart 2022-08-17 18:06:15.367274 2022-08-17 18:06:15.367274 2 2 0 0
off_topic t \N 2022-08-17 18:06:15.371865 2022-08-17 18:06:15.371865 3 3 0 0
inappropriate t \N 2022-08-17 18:06:15.375084 2022-08-17 18:06:15.375084 4 4 0 0
spam t \N 2022-08-17 18:06:15.378373 2022-08-17 18:06:15.378373 8 6 0 0
notify_user t \N 2022-08-17 18:06:15.382184 2022-08-17 18:06:15.382184 6 7 0 0
notify_moderators t \N 2022-08-17 18:06:15.384064 2022-08-17 18:06:15.384064 7 8 0 0
\.
--
-- Data for Name: post_actions; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_actions (id, post_id, user_id, post_action_type_id, deleted_at, created_at, updated_at, deleted_by_id, related_post_id, staff_took_action, deferred_by_id, targets_topic, agreed_at, agreed_by_id, deferred_at, disagreed_at, disagreed_by_id) FROM stdin;
1 39 21 2 \N 2020-08-16 07:20:03.623593 2022-08-17 18:08:52.099848 \N \N f \N f \N \N \N \N \N
2 39 6 2 \N 2022-04-05 08:59:35.055194 2022-08-17 18:08:52.185933 \N \N f \N f \N \N \N \N \N
3 39 22 2 \N 2022-08-12 07:59:24.010963 2022-08-17 18:08:52.236665 \N \N f \N f \N \N \N \N \N
4 39 5 2 \N 2021-11-22 13:53:56.7675 2022-08-17 18:08:52.292167 \N \N f \N f \N \N \N \N \N
5 39 3 2 \N 2021-08-21 17:48:54.171213 2022-08-17 18:08:52.339767 \N \N f \N f \N \N \N \N \N
6 39 27 2 \N 2021-12-16 21:00:00.119654 2022-08-17 18:08:52.386061 \N \N f \N f \N \N \N \N \N
7 39 18 2 \N 2022-01-10 10:39:54.730593 2022-08-17 18:08:52.430212 \N \N f \N f \N \N \N \N \N
8 39 7 2 \N 2021-11-08 22:26:18.084136 2022-08-17 18:08:52.476028 \N \N f \N f \N \N \N \N \N
9 39 -2 2 \N 2021-08-25 09:48:14.054166 2022-08-17 18:08:52.525716 \N \N f \N f \N \N \N \N \N
10 39 10 2 \N 2021-08-25 13:23:15.219121 2022-08-17 18:08:52.573987 \N \N f \N f \N \N \N \N \N
11 40 18 2 \N 2021-09-24 04:31:26.148558 2022-08-17 18:08:52.731711 \N \N f \N f \N \N \N \N \N
12 40 4 2 \N 2021-08-07 07:01:50.664698 2022-08-17 18:08:52.791816 \N \N f \N f \N \N \N \N \N
13 40 22 2 \N 2021-09-24 01:00:00.035747 2022-08-17 18:08:52.850617 \N \N f \N f \N \N \N \N \N
14 40 19 2 \N 2021-08-06 13:38:12.104447 2022-08-17 18:08:52.926279 \N \N f \N f \N \N \N \N \N
15 40 20 2 \N 2021-03-26 02:46:09.828984 2022-08-17 18:08:53.090125 \N \N f \N f \N \N \N \N \N
16 40 2 2 \N 2021-10-27 00:39:07.649992 2022-08-17 18:08:53.251516 \N \N f \N f \N \N \N \N \N
17 41 9 2 \N 2022-05-13 16:14:08.559007 2022-08-17 18:08:53.401955 \N \N f \N f \N \N \N \N \N
18 42 7 2 \N 2022-08-12 00:49:44.819827 2022-08-17 18:08:53.552689 \N \N f \N f \N \N \N \N \N
19 42 21 2 \N 2022-08-10 10:53:45.912371 2022-08-17 18:08:53.615606 \N \N f \N f \N \N \N \N \N
20 42 15 2 \N 2022-08-12 02:16:11.200876 2022-08-17 18:08:53.660907 \N \N f \N f \N \N \N \N \N
21 42 2 2 \N 2022-08-08 08:37:05.266501 2022-08-17 18:08:53.712509 \N \N f \N f \N \N \N \N \N
22 42 3 2 \N 2022-08-15 21:41:05.695005 2022-08-17 18:08:53.76777 \N \N f \N f \N \N \N \N \N
23 42 17 2 \N 2022-08-15 09:06:10.111161 2022-08-17 18:08:53.821149 \N \N f \N f \N \N \N \N \N
24 42 18 2 \N 2022-08-14 19:46:15.393528 2022-08-17 18:08:53.870774 \N \N f \N f \N \N \N \N \N
25 42 9 2 \N 2022-08-14 11:06:13.692149 2022-08-17 18:08:53.916292 \N \N f \N f \N \N \N \N \N
26 42 26 2 \N 2022-08-08 05:12:52.889038 2022-08-17 18:08:53.961638 \N \N f \N f \N \N \N \N \N
27 42 -1 2 \N 2022-08-16 17:34:17.751709 2022-08-17 18:08:54.007289 \N \N f \N f \N \N \N \N \N
28 43 -2 2 \N 2022-08-16 11:33:00.34595 2022-08-17 18:08:54.140869 \N \N f \N f \N \N \N \N \N
29 43 5 2 \N 2022-08-17 12:39:59.343647 2022-08-17 18:08:54.201148 \N \N f \N f \N \N \N \N \N
30 43 25 2 \N 2022-08-15 19:25:43.169398 2022-08-17 18:08:54.25199 \N \N f \N f \N \N \N \N \N
31 43 2 2 \N 2022-08-17 03:36:31.818507 2022-08-17 18:08:54.301926 \N \N f \N f \N \N \N \N \N
32 43 14 2 \N 2022-08-15 10:21:44.763868 2022-08-17 18:08:54.348654 \N \N f \N f \N \N \N \N \N
33 44 2 2 \N 2022-08-16 00:42:58.802886 2022-08-17 18:08:54.580065 \N \N f \N f \N \N \N \N \N
34 44 13 2 \N 2022-08-16 19:12:12.627456 2022-08-17 18:08:54.649075 \N \N f \N f \N \N \N \N \N
35 44 7 2 \N 2022-08-17 14:21:58.068076 2022-08-17 18:08:54.698872 \N \N f \N f \N \N \N \N \N
36 44 9 2 \N 2022-08-15 19:30:19.12446 2022-08-17 18:08:54.744763 \N \N f \N f \N \N \N \N \N
37 45 15 2 \N 2022-08-17 10:59:54.550956 2022-08-17 18:08:54.869199 \N \N f \N f \N \N \N \N \N
38 45 24 2 \N 2022-08-15 21:53:43.334709 2022-08-17 18:08:54.929915 \N \N f \N f \N \N \N \N \N
39 45 7 2 \N 2022-08-17 13:05:31.544033 2022-08-17 18:08:55.029813 \N \N f \N f \N \N \N \N \N
40 45 21 2 \N 2022-08-16 22:07:21.003347 2022-08-17 18:08:55.135122 \N \N f \N f \N \N \N \N \N
41 45 6 2 \N 2022-08-15 21:53:16.916968 2022-08-17 18:08:55.184023 \N \N f \N f \N \N \N \N \N
42 46 16 2 \N 2022-08-17 09:31:47.735251 2022-08-17 18:08:55.315774 \N \N f \N f \N \N \N \N \N
43 46 19 2 \N 2022-08-17 11:04:33.912211 2022-08-17 18:08:55.373424 \N \N f \N f \N \N \N \N \N
44 46 6 2 \N 2022-08-17 01:28:43.645841 2022-08-17 18:08:55.41816 \N \N f \N f \N \N \N \N \N
45 46 18 2 \N 2022-08-17 00:38:56.778869 2022-08-17 18:08:55.463671 \N \N f \N f \N \N \N \N \N
46 46 17 2 \N 2022-08-17 12:06:25.385162 2022-08-17 18:08:55.508381 \N \N f \N f \N \N \N \N \N
47 46 8 2 \N 2022-08-16 20:41:21.736196 2022-08-17 18:08:55.557731 \N \N f \N f \N \N \N \N \N
48 46 9 2 \N 2022-08-17 07:15:14.498581 2022-08-17 18:08:55.604536 \N \N f \N f \N \N \N \N \N
49 47 21 2 \N 2022-08-17 17:15:58.565712 2022-08-17 18:08:55.736988 \N \N f \N f \N \N \N \N \N
50 47 17 2 \N 2022-08-17 17:18:23.799008 2022-08-17 18:08:55.79193 \N \N f \N f \N \N \N \N \N
51 47 3 2 \N 2022-08-17 12:16:35.767284 2022-08-17 18:08:55.839833 \N \N f \N f \N \N \N \N \N
52 47 22 2 \N 2022-08-17 05:22:00.348156 2022-08-17 18:08:55.887376 \N \N f \N f \N \N \N \N \N
53 47 19 2 \N 2022-08-17 12:43:51.661232 2022-08-17 18:08:55.940436 \N \N f \N f \N \N \N \N \N
54 47 7 2 \N 2022-08-17 15:44:04.455048 2022-08-17 18:08:55.995587 \N \N f \N f \N \N \N \N \N
55 47 6 2 \N 2022-08-17 08:59:40.115106 2022-08-17 18:08:56.051194 \N \N f \N f \N \N \N \N \N
56 47 24 2 \N 2022-08-17 16:41:47.165509 2022-08-17 18:08:56.109779 \N \N f \N f \N \N \N \N \N
57 48 7 2 \N 2022-08-17 09:55:48.829779 2022-08-17 18:08:56.248693 \N \N f \N f \N \N \N \N \N
58 48 3 2 \N 2022-08-17 09:55:07.53303 2022-08-17 18:08:56.305214 \N \N f \N f \N \N \N \N \N
59 48 23 2 \N 2022-08-17 12:53:38.046918 2022-08-17 18:08:56.353982 \N \N f \N f \N \N \N \N \N
60 48 19 2 \N 2022-08-17 12:05:17.081642 2022-08-17 18:08:56.408793 \N \N f \N f \N \N \N \N \N
61 49 15 2 \N 2022-08-17 14:06:15.308001 2022-08-17 18:08:56.534044 \N \N f \N f \N \N \N \N \N
62 49 16 2 \N 2022-08-17 11:26:06.82345 2022-08-17 18:08:56.590753 \N \N f \N f \N \N \N \N \N
63 49 -2 2 \N 2022-08-17 17:08:22.919536 2022-08-17 18:08:56.638446 \N \N f \N f \N \N \N \N \N
64 49 6 2 \N 2022-08-17 17:16:23.261888 2022-08-17 18:08:56.684446 \N \N f \N f \N \N \N \N \N
65 49 7 2 \N 2022-08-17 12:20:28.665587 2022-08-17 18:08:56.732154 \N \N f \N f \N \N \N \N \N
66 49 13 2 \N 2022-08-17 18:04:59.230834 2022-08-17 18:08:56.78548 \N \N f \N f \N \N \N \N \N
67 49 -1 2 \N 2022-08-17 08:46:41.462236 2022-08-17 18:08:56.835779 \N \N f \N f \N \N \N \N \N
68 49 10 2 \N 2022-08-17 08:17:22.485457 2022-08-17 18:08:56.884285 \N \N f \N f \N \N \N \N \N
69 50 25 2 \N 2022-08-17 11:19:38.057735 2022-08-17 18:08:57.016029 \N \N f \N f \N \N \N \N \N
70 50 7 2 \N 2022-08-17 13:59:04.754947 2022-08-17 18:08:57.07689 \N \N f \N f \N \N \N \N \N
71 50 1 2 \N 2022-08-17 12:31:59.579615 2022-08-17 18:08:57.124142 \N \N f \N f \N \N \N \N \N
72 50 20 2 \N 2022-08-17 13:23:18.080167 2022-08-17 18:08:57.176885 \N \N f \N f \N \N \N \N \N
73 50 14 2 \N 2022-08-17 16:23:09.519231 2022-08-17 18:08:57.227913 \N \N f \N f \N \N \N \N \N
74 51 23 2 \N 2022-08-17 17:39:09.094538 2022-08-17 18:08:57.366493 \N \N f \N f \N \N \N \N \N
75 51 5 2 \N 2022-08-17 15:38:17.726889 2022-08-17 18:08:57.426814 \N \N f \N f \N \N \N \N \N
76 52 12 2 \N 2022-08-17 16:51:01.458706 2022-08-17 18:08:57.560061 \N \N f \N f \N \N \N \N \N
77 52 -2 2 \N 2022-08-17 17:50:33.888255 2022-08-17 18:08:57.623535 \N \N f \N f \N \N \N \N \N
78 52 17 2 \N 2022-08-17 17:38:50.715025 2022-08-17 18:08:57.671875 \N \N f \N f \N \N \N \N \N
79 52 -1 2 \N 2022-08-17 16:47:10.824556 2022-08-17 18:08:57.719999 \N \N f \N f \N \N \N \N \N
80 53 17 2 \N 2022-08-17 17:41:20.465297 2022-08-17 18:08:57.85358 \N \N f \N f \N \N \N \N \N
81 53 15 2 \N 2022-08-17 17:18:01.799501 2022-08-17 18:08:57.927312 \N \N f \N f \N \N \N \N \N
82 54 8 2 \N 2022-08-17 18:03:27.179374 2022-08-17 18:08:58.056499 \N \N f \N f \N \N \N \N \N
83 54 16 2 \N 2022-08-17 18:04:13.967707 2022-08-17 18:08:58.117354 \N \N f \N f \N \N \N \N \N
84 55 7 2 \N 2022-08-17 18:08:11.134766 2022-08-17 18:08:58.236686 \N \N f \N f \N \N \N \N \N
85 56 21 2 \N 2022-08-17 18:08:05.272789 2022-08-17 18:08:58.375759 \N \N f \N f \N \N \N \N \N
86 57 8 2 \N 2022-08-17 18:06:39.742537 2022-08-17 18:08:58.544736 \N \N f \N f \N \N \N \N \N
87 57 27 2 \N 2022-08-17 18:08:04.193113 2022-08-17 18:08:58.607128 \N \N f \N f \N \N \N \N \N
88 57 24 2 \N 2022-08-17 18:07:21.275768 2022-08-17 18:08:58.65501 \N \N f \N f \N \N \N \N \N
89 57 4 2 \N 2022-08-17 18:06:56.398713 2022-08-17 18:08:58.702864 \N \N f \N f \N \N \N \N \N
90 57 13 2 \N 2022-08-17 18:08:11.02795 2022-08-17 18:08:58.751171 \N \N f \N f \N \N \N \N \N
91 57 15 2 \N 2022-08-17 18:06:58.661247 2022-08-17 18:08:58.802908 \N \N f \N f \N \N \N \N \N
92 57 7 2 \N 2022-08-17 18:07:56.679025 2022-08-17 18:08:58.851977 \N \N f \N f \N \N \N \N \N
93 57 19 2 \N 2022-08-17 18:07:41.578536 2022-08-17 18:08:58.90055 \N \N f \N f \N \N \N \N \N
94 58 17 2 \N 2022-08-17 18:07:28.07697 2022-08-17 18:08:59.039148 \N \N f \N f \N \N \N \N \N
95 58 4 2 \N 2022-08-17 18:07:11.313726 2022-08-17 18:08:59.102161 \N \N f \N f \N \N \N \N \N
96 58 20 2 \N 2022-08-17 18:08:22.637782 2022-08-17 18:08:59.149267 \N \N f \N f \N \N \N \N \N
97 58 -1 2 \N 2022-08-17 18:08:10.127783 2022-08-17 18:08:59.205744 \N \N f \N f \N \N \N \N \N
98 58 18 2 \N 2022-08-17 18:08:31.356314 2022-08-17 18:08:59.256204 \N \N f \N f \N \N \N \N \N
99 58 9 2 \N 2022-08-17 18:08:13.026889 2022-08-17 18:08:59.311443 \N \N f \N f \N \N \N \N \N
100 58 6 2 \N 2022-08-17 18:08:24.094182 2022-08-17 18:08:59.36057 \N \N f \N f \N \N \N \N \N
101 59 11 2 \N 2022-08-17 18:08:41.143081 2022-08-17 18:08:59.497838 \N \N f \N f \N \N \N \N \N
102 59 14 2 \N 2022-08-17 18:08:38.992913 2022-08-17 18:08:59.56471 \N \N f \N f \N \N \N \N \N
103 59 6 2 \N 2022-08-17 18:08:49.253743 2022-08-17 18:08:59.619029 \N \N f \N f \N \N \N \N \N
104 59 1 2 \N 2022-08-17 18:08:44.861878 2022-08-17 18:08:59.671714 \N \N f \N f \N \N \N \N \N
105 60 18 2 \N 2022-08-17 18:08:48.226479 2022-08-17 18:08:59.81137 \N \N f \N f \N \N \N \N \N
106 60 9 2 \N 2022-08-17 18:08:41.049248 2022-08-17 18:08:59.870123 \N \N f \N f \N \N \N \N \N
107 60 12 2 \N 2022-08-17 18:08:51.302283 2022-08-17 18:08:59.9213 \N \N f \N f \N \N \N \N \N
108 60 7 2 \N 2022-08-17 18:08:58.994946 2022-08-17 18:08:59.976364 \N \N f \N f \N \N \N \N \N
109 60 4 2 \N 2022-08-17 18:08:44.90671 2022-08-17 18:09:00.028305 \N \N f \N f \N \N \N \N \N
110 60 23 2 \N 2022-08-17 18:08:56.815997 2022-08-17 18:09:00.081604 \N \N f \N f \N \N \N \N \N
111 60 11 2 \N 2022-08-17 18:08:56.747087 2022-08-17 18:09:00.128651 \N \N f \N f \N \N \N \N \N
112 60 26 2 \N 2022-08-17 18:08:54.05717 2022-08-17 18:09:00.176918 \N \N f \N f \N \N \N \N \N
113 61 17 2 \N 2022-08-17 18:08:58.866986 2022-08-17 18:09:00.305721 \N \N f \N f \N \N \N \N \N
114 61 14 2 \N 2022-08-17 18:08:59.813183 2022-08-17 18:09:00.367657 \N \N f \N f \N \N \N \N \N
115 61 20 2 \N 2022-08-17 18:08:57.705383 2022-08-17 18:09:00.417942 \N \N f \N f \N \N \N \N \N
116 61 10 2 \N 2022-08-17 18:08:59.040675 2022-08-17 18:09:00.46864 \N \N f \N f \N \N \N \N \N
117 61 5 2 \N 2022-08-17 18:08:58.026105 2022-08-17 18:09:00.516942 \N \N f \N f \N \N \N \N \N
118 61 18 2 \N 2022-08-17 18:08:57.191712 2022-08-17 18:09:00.565569 \N \N f \N f \N \N \N \N \N
119 61 13 2 \N 2022-08-17 18:08:59.6113 2022-08-17 18:09:00.613039 \N \N f \N f \N \N \N \N \N
120 62 3 2 \N 2022-08-17 18:08:51.511222 2022-08-17 18:09:00.746213 \N \N f \N f \N \N \N \N \N
121 62 14 2 \N 2022-08-17 18:08:55.333896 2022-08-17 18:09:00.805555 \N \N f \N f \N \N \N \N \N
122 63 15 2 \N 2022-08-17 18:08:58.539109 2022-08-17 18:09:00.933382 \N \N f \N f \N \N \N \N \N
123 63 12 2 \N 2022-08-17 18:08:58.847688 2022-08-17 18:09:00.99518 \N \N f \N f \N \N \N \N \N
124 64 28 2 \N 2022-08-17 18:09:00.838793 2022-08-17 18:09:01.130864 \N \N f \N f \N \N \N \N \N
125 65 19 2 \N 2022-08-17 18:09:00.92115 2022-08-17 18:09:01.279968 \N \N f \N f \N \N \N \N \N
126 65 23 2 \N 2022-08-17 18:09:01.29147 2022-08-17 18:09:01.338122 \N \N f \N f \N \N \N \N \N
127 66 24 2 \N 2022-08-17 18:09:01.296266 2022-08-17 18:09:01.47525 \N \N f \N f \N \N \N \N \N
128 66 10 2 \N 2022-08-17 18:09:01.343525 2022-08-17 18:09:01.533825 \N \N f \N f \N \N \N \N \N
129 66 26 2 \N 2022-08-17 18:09:01.42041 2022-08-17 18:09:01.584166 \N \N f \N f \N \N \N \N \N
130 66 7 2 \N 2022-08-17 18:09:01.398938 2022-08-17 18:09:01.634433 \N \N f \N f \N \N \N \N \N
131 66 28 2 \N 2022-08-17 18:09:01.534381 2022-08-17 18:09:01.685791 \N \N f \N f \N \N \N \N \N
132 67 12 2 \N 2022-08-17 18:09:01.744856 2022-08-17 18:09:01.820351 \N \N f \N f \N \N \N \N \N
133 67 21 2 \N 2022-08-17 18:09:01.87204 2022-08-17 18:09:01.886931 \N \N f \N f \N \N \N \N \N
134 67 20 2 \N 2022-08-17 18:09:01.757652 2022-08-17 18:09:01.945345 \N \N f \N f \N \N \N \N \N
135 67 -1 2 \N 2022-08-17 18:09:01.91286 2022-08-17 18:09:02.009181 \N \N f \N f \N \N \N \N \N
136 67 6 2 \N 2022-08-17 18:09:02.044466 2022-08-17 18:09:02.067703 \N \N f \N f \N \N \N \N \N
137 68 23 2 \N 2022-08-17 18:09:02.120895 2022-08-17 18:09:02.21439 \N \N f \N f \N \N \N \N \N
138 68 4 2 \N 2022-08-17 18:09:01.959257 2022-08-17 18:09:02.275653 \N \N f \N f \N \N \N \N \N
139 68 21 2 \N 2022-08-17 18:09:01.956817 2022-08-17 18:09:02.327429 \N \N f \N f \N \N \N \N \N
140 68 6 2 \N 2022-08-17 18:09:02.115106 2022-08-17 18:09:02.379655 \N \N f \N f \N \N \N \N \N
141 68 25 2 \N 2022-08-17 18:09:02.168723 2022-08-17 18:09:02.430979 \N \N f \N f \N \N \N \N \N
142 69 27 2 \N 2022-08-17 18:09:02.481968 2022-08-17 18:09:02.570168 \N \N f \N f \N \N \N \N \N
143 69 14 2 \N 2022-08-17 18:09:02.541138 2022-08-17 18:09:02.633357 \N \N f \N f \N \N \N \N \N
144 69 1 2 \N 2022-08-17 18:09:02.49438 2022-08-17 18:09:02.684157 \N \N f \N f \N \N \N \N \N
145 69 15 2 \N 2022-08-17 18:09:02.553331 2022-08-17 18:09:02.74098 \N \N f \N f \N \N \N \N \N
146 69 20 2 \N 2022-08-17 18:09:02.510339 2022-08-17 18:09:02.806879 \N \N f \N f \N \N \N \N \N
147 69 26 2 \N 2022-08-17 18:09:02.779383 2022-08-17 18:09:02.87172 \N \N f \N f \N \N \N \N \N
148 69 7 2 \N 2022-08-17 18:09:02.589154 2022-08-17 18:09:02.930439 \N \N f \N f \N \N \N \N \N
149 69 -2 2 \N 2022-08-17 18:09:02.491983 2022-08-17 18:09:02.98748 \N \N f \N f \N \N \N \N \N
150 70 28 2 \N 2022-08-17 18:09:03.108199 2022-08-17 18:09:03.12645 \N \N f \N f \N \N \N \N \N
151 70 -2 2 \N 2022-08-17 18:09:03.029134 2022-08-17 18:09:03.192369 \N \N f \N f \N \N \N \N \N
152 70 23 2 \N 2022-08-17 18:09:03.05988 2022-08-17 18:09:03.241549 \N \N f \N f \N \N \N \N \N
153 70 13 2 \N 2022-08-17 18:09:03.243949 2022-08-17 18:09:03.294055 \N \N f \N f \N \N \N \N \N
154 70 4 2 \N 2022-08-17 18:09:03.092991 2022-08-17 18:09:03.35297 \N \N f \N f \N \N \N \N \N
155 70 16 2 \N 2022-08-17 18:09:03.329075 2022-08-17 18:09:03.407839 \N \N f \N f \N \N \N \N \N
156 71 28 2 \N 2022-08-17 18:09:03.498726 2022-08-17 18:09:03.554754 \N \N f \N f \N \N \N \N \N
157 72 26 2 \N 2022-08-17 18:09:03.635835 2022-08-17 18:09:03.69967 \N \N f \N f \N \N \N \N \N
158 72 15 2 \N 2022-08-17 18:09:03.748035 2022-08-17 18:09:03.761682 \N \N f \N f \N \N \N \N \N
159 72 -1 2 \N 2022-08-17 18:09:03.648827 2022-08-17 18:09:03.815641 \N \N f \N f \N \N \N \N \N
160 72 18 2 \N 2022-08-17 18:09:03.571852 2022-08-17 18:09:03.863817 \N \N f \N f \N \N \N \N \N
161 72 4 2 \N 2022-08-17 18:09:03.626241 2022-08-17 18:09:03.920941 \N \N f \N f \N \N \N \N \N
162 72 2 2 \N 2022-08-17 18:09:03.66643 2022-08-17 18:09:03.973994 \N \N f \N f \N \N \N \N \N
163 72 12 2 \N 2022-08-17 18:09:03.865357 2022-08-17 18:09:04.028866 \N \N f \N f \N \N \N \N \N
164 72 3 2 \N 2022-08-17 18:09:03.920838 2022-08-17 18:09:04.080996 \N \N f \N f \N \N \N \N \N
165 73 12 2 \N 2022-08-17 18:09:03.656779 2022-08-17 18:09:04.220421 \N \N f \N f \N \N \N \N \N
166 73 20 2 \N 2022-08-17 18:09:03.6082 2022-08-17 18:09:04.282549 \N \N f \N f \N \N \N \N \N
167 73 27 2 \N 2022-08-17 18:09:04.022641 2022-08-17 18:09:04.334657 \N \N f \N f \N \N \N \N \N
168 73 17 2 \N 2022-08-17 18:09:04.146615 2022-08-17 18:09:04.391123 \N \N f \N f \N \N \N \N \N
169 73 10 2 \N 2022-08-17 18:09:03.819776 2022-08-17 18:09:04.440095 \N \N f \N f \N \N \N \N \N
170 73 14 2 \N 2022-08-17 18:09:04.027669 2022-08-17 18:09:04.493979 \N \N f \N f \N \N \N \N \N
171 73 16 2 \N 2022-08-17 18:09:03.806154 2022-08-17 18:09:04.550024 \N \N f \N f \N \N \N \N \N
172 74 2 2 \N 2022-08-17 18:09:04.033472 2022-08-17 18:09:04.676999 \N \N f \N f \N \N \N \N \N
173 74 27 2 \N 2022-08-17 18:09:04.079259 2022-08-17 18:09:04.739582 \N \N f \N f \N \N \N \N \N
174 74 6 2 \N 2022-08-17 18:09:03.754686 2022-08-17 18:09:04.789291 \N \N f \N f \N \N \N \N \N
175 74 15 2 \N 2022-08-17 18:09:04.684597 2022-08-17 18:09:04.83786 \N \N f \N f \N \N \N \N \N
176 74 24 2 \N 2022-08-17 18:09:04.383375 2022-08-17 18:09:04.88777 \N \N f \N f \N \N \N \N \N
177 74 9 2 \N 2022-08-17 18:09:04.637352 2022-08-17 18:09:04.933995 \N \N f \N f \N \N \N \N \N
178 75 7 2 \N 2022-08-17 18:09:03.899891 2022-08-17 18:09:05.058039 \N \N f \N f \N \N \N \N \N
179 75 17 2 \N 2022-08-17 18:09:03.862641 2022-08-17 18:09:05.127173 \N \N f \N f \N \N \N \N \N
180 75 19 2 \N 2022-08-17 18:09:05.074453 2022-08-17 18:09:05.175025 \N \N f \N f \N \N \N \N \N
181 75 23 2 \N 2022-08-17 18:09:04.744558 2022-08-17 18:09:05.2268 \N \N f \N f \N \N \N \N \N
182 75 11 2 \N 2022-08-17 18:09:04.851093 2022-08-17 18:09:05.277974 \N \N f \N f \N \N \N \N \N
183 75 25 2 \N 2022-08-17 18:09:03.792523 2022-08-17 18:09:05.32694 \N \N f \N f \N \N \N \N \N
184 76 26 2 \N 2022-08-17 18:09:04.441206 2022-08-17 18:09:05.459364 \N \N f \N f \N \N \N \N \N
185 76 8 2 \N 2022-08-17 18:09:05.359023 2022-08-17 18:09:05.519365 \N \N f \N f \N \N \N \N \N
186 76 5 2 \N 2022-08-17 18:09:05.537926 2022-08-17 18:09:05.56995 \N \N f \N f \N \N \N \N \N
187 76 13 2 \N 2022-08-17 18:09:05.280299 2022-08-17 18:09:05.619148 \N \N f \N f \N \N \N \N \N
188 76 11 2 \N 2022-08-17 18:09:04.374543 2022-08-17 18:09:05.672694 \N \N f \N f \N \N \N \N \N
189 77 10 2 \N 2022-08-17 18:09:04.28523 2022-08-17 18:09:05.809407 \N \N f \N f \N \N \N \N \N
190 77 12 2 \N 2022-08-17 18:09:05.032673 2022-08-17 18:09:05.874403 \N \N f \N f \N \N \N \N \N
191 77 25 2 \N 2022-08-17 18:09:05.881631 2022-08-17 18:09:05.921982 \N \N f \N f \N \N \N \N \N
192 77 3 2 \N 2022-08-17 18:09:05.2782 2022-08-17 18:09:05.974334 \N \N f \N f \N \N \N \N \N
193 77 15 2 \N 2022-08-17 18:09:05.423422 2022-08-17 18:09:06.028759 \N \N f \N f \N \N \N \N \N
194 77 22 2 \N 2022-08-17 18:09:04.013894 2022-08-17 18:09:06.084239 \N \N f \N f \N \N \N \N \N
195 79 19 2 \N 2022-08-17 18:09:05.990878 2022-08-17 18:09:06.28845 \N \N f \N f \N \N \N \N \N
196 79 1 2 \N 2022-08-17 18:09:06.087503 2022-08-17 18:09:06.351567 \N \N f \N f \N \N \N \N \N
197 81 9 2 \N 2022-08-17 18:09:06.484517 2022-08-17 18:09:06.558455 \N \N f \N f \N \N \N \N \N
198 81 10 2 \N 2022-08-17 18:09:06.590116 2022-08-17 18:09:06.618415 \N \N f \N f \N \N \N \N \N
199 81 17 2 \N 2022-08-17 18:09:06.415211 2022-08-17 18:09:06.668342 \N \N f \N f \N \N \N \N \N
200 81 1 2 \N 2022-08-17 18:09:06.45437 2022-08-17 18:09:06.717659 \N \N f \N f \N \N \N \N \N
201 81 28 2 \N 2022-08-17 18:09:06.473591 2022-08-17 18:09:06.775819 \N \N f \N f \N \N \N \N \N
202 81 8 2 \N 2022-08-17 18:09:06.502749 2022-08-17 18:09:06.832346 \N \N f \N f \N \N \N \N \N
203 81 23 2 \N 2022-08-17 18:09:06.783823 2022-08-17 18:09:06.888919 \N \N f \N f \N \N \N \N \N
204 81 2 2 \N 2022-08-17 18:09:06.53805 2022-08-17 18:09:06.94297 \N \N f \N f \N \N \N \N \N
205 83 21 2 \N 2022-08-17 18:09:07.12464 2022-08-17 18:09:07.287383 \N \N f \N f \N \N \N \N \N
206 83 -1 2 \N 2022-08-17 18:09:07.326277 2022-08-17 18:09:07.34964 \N \N f \N f \N \N \N \N \N
207 83 8 2 \N 2022-08-17 18:09:07.367814 2022-08-17 18:09:07.411385 \N \N f \N f \N \N \N \N \N
208 84 15 2 \N 2022-08-17 18:09:07.341632 2022-08-17 18:09:07.545864 \N \N f \N f \N \N \N \N \N
209 84 9 2 \N 2022-08-17 18:09:07.545389 2022-08-17 18:09:07.619752 \N \N f \N f \N \N \N \N \N
210 84 26 2 \N 2022-08-17 18:09:07.515695 2022-08-17 18:09:07.676051 \N \N f \N f \N \N \N \N \N
211 85 -2 2 \N 2022-08-17 18:09:07.609253 2022-08-17 18:09:07.807943 \N \N f \N f \N \N \N \N \N
212 85 19 2 \N 2022-08-17 18:09:07.543865 2022-08-17 18:09:07.866784 \N \N f \N f \N \N \N \N \N
213 85 1 2 \N 2022-08-17 18:09:07.709464 2022-08-17 18:09:07.917184 \N \N f \N f \N \N \N \N \N
214 85 5 2 \N 2022-08-17 18:09:07.579893 2022-08-17 18:09:07.96958 \N \N f \N f \N \N \N \N \N
215 85 28 2 \N 2022-08-17 18:09:07.843226 2022-08-17 18:09:08.021955 \N \N f \N f \N \N \N \N \N
216 86 2 2 \N 2022-08-17 18:09:08.027163 2022-08-17 18:09:08.155708 \N \N f \N f \N \N \N \N \N
217 86 6 2 \N 2022-08-17 18:09:07.892846 2022-08-17 18:09:08.218138 \N \N f \N f \N \N \N \N \N
218 86 9 2 \N 2022-08-17 18:09:08.034596 2022-08-17 18:09:08.271014 \N \N f \N f \N \N \N \N \N
219 86 19 2 \N 2022-08-17 18:09:07.764929 2022-08-17 18:09:08.32326 \N \N f \N f \N \N \N \N \N
220 86 22 2 \N 2022-08-17 18:09:07.81823 2022-08-17 18:09:08.386261 \N \N f \N f \N \N \N \N \N
221 86 20 2 \N 2022-08-17 18:09:07.989311 2022-08-17 18:09:08.447064 \N \N f \N f \N \N \N \N \N
222 86 28 2 \N 2022-08-17 18:09:08.064002 2022-08-17 18:09:08.504493 \N \N f \N f \N \N \N \N \N
223 86 7 2 \N 2022-08-17 18:09:07.888916 2022-08-17 18:09:08.561912 \N \N f \N f \N \N \N \N \N
224 87 12 2 \N 2022-08-17 18:09:08.604382 2022-08-17 18:09:08.701331 \N \N f \N f \N \N \N \N \N
225 88 28 2 \N 2022-08-17 18:09:08.490616 2022-08-17 18:09:08.851116 \N \N f \N f \N \N \N \N \N
226 88 5 2 \N 2022-08-17 18:09:08.78864 2022-08-17 18:09:08.916522 \N \N f \N f \N \N \N \N \N
227 88 14 2 \N 2022-08-17 18:09:08.689349 2022-08-17 18:09:08.963622 \N \N f \N f \N \N \N \N \N
228 89 -1 2 \N 2022-08-17 18:09:08.796559 2022-08-17 18:09:09.093858 \N \N f \N f \N \N \N \N \N
229 89 14 2 \N 2022-08-17 18:09:08.874725 2022-08-17 18:09:09.174947 \N \N f \N f \N \N \N \N \N
230 89 13 2 \N 2022-08-17 18:09:08.734375 2022-08-17 18:09:09.235378 \N \N f \N f \N \N \N \N \N
231 89 21 2 \N 2022-08-17 18:09:09.023926 2022-08-17 18:09:09.298574 \N \N f \N f \N \N \N \N \N
232 89 15 2 \N 2022-08-17 18:09:08.777567 2022-08-17 18:09:09.356713 \N \N f \N f \N \N \N \N \N
233 89 8 2 \N 2022-08-17 18:09:08.915567 2022-08-17 18:09:09.410595 \N \N f \N f \N \N \N \N \N
234 89 4 2 \N 2022-08-17 18:09:08.747516 2022-08-17 18:09:09.467304 \N \N f \N f \N \N \N \N \N
235 90 9 2 \N 2022-08-17 18:09:09.287241 2022-08-17 18:09:09.608069 \N \N f \N f \N \N \N \N \N
236 91 24 2 \N 2022-08-17 18:09:09.409023 2022-08-17 18:09:09.761688 \N \N f \N f \N \N \N \N \N
237 91 19 2 \N 2022-08-17 18:09:09.797327 2022-08-17 18:09:09.831894 \N \N f \N f \N \N \N \N \N
238 91 23 2 \N 2022-08-17 18:09:09.872598 2022-08-17 18:09:09.90353 \N \N f \N f \N \N \N \N \N
239 93 17 2 \N 2022-08-17 18:09:09.745887 2022-08-17 18:09:10.174486 \N \N f \N f \N \N \N \N \N
240 93 7 2 \N 2022-08-17 18:09:10.167028 2022-08-17 18:09:10.231467 \N \N f \N f \N \N \N \N \N
241 93 20 2 \N 2022-08-17 18:09:09.839444 2022-08-17 18:09:10.280832 \N \N f \N f \N \N \N \N \N
242 93 18 2 \N 2022-08-17 18:09:10.091952 2022-08-17 18:09:10.329991 \N \N f \N f \N \N \N \N \N
243 93 24 2 \N 2022-08-17 18:09:10.212055 2022-08-17 18:09:10.383359 \N \N f \N f \N \N \N \N \N
244 93 15 2 \N 2022-08-17 18:09:10.113013 2022-08-17 18:09:10.43719 \N \N f \N f \N \N \N \N \N
245 93 22 2 \N 2022-08-17 18:09:10.475141 2022-08-17 18:09:10.490758 \N \N f \N f \N \N \N \N \N
246 93 16 2 \N 2022-08-17 18:09:09.992813 2022-08-17 18:09:10.540409 \N \N f \N f \N \N \N \N \N
247 93 28 2 \N 2022-08-17 18:09:10.212618 2022-08-17 18:09:10.589132 \N \N f \N f \N \N \N \N \N
248 94 11 2 \N 2022-08-17 18:09:10.19143 2022-08-17 18:09:10.72303 \N \N f \N f \N \N \N \N \N
249 94 4 2 \N 2022-08-17 18:09:10.750229 2022-08-17 18:09:10.770674 \N \N f \N f \N \N \N \N \N
250 94 -2 2 \N 2022-08-17 18:09:10.093235 2022-08-17 18:09:10.814785 \N \N f \N f \N \N \N \N \N
251 95 25 2 \N 2022-08-17 18:09:10.459475 2022-08-17 18:09:10.934322 \N \N f \N f \N \N \N \N \N
252 95 7 2 \N 2022-08-17 18:09:10.439005 2022-08-17 18:09:10.998064 \N \N f \N f \N \N \N \N \N
253 95 4 2 \N 2022-08-17 18:09:10.237826 2022-08-17 18:09:11.052778 \N \N f \N f \N \N \N \N \N
254 95 28 2 \N 2022-08-17 18:09:10.405405 2022-08-17 18:09:11.106794 \N \N f \N f \N \N \N \N \N
255 95 -2 2 \N 2022-08-17 18:09:10.837395 2022-08-17 18:09:11.157893 \N \N f \N f \N \N \N \N \N
256 95 9 2 \N 2022-08-17 18:09:11.054254 2022-08-17 18:09:11.205391 \N \N f \N f \N \N \N \N \N
257 95 18 2 \N 2022-08-17 18:09:10.4687 2022-08-17 18:09:11.256351 \N \N f \N f \N \N \N \N \N
258 95 21 2 \N 2022-08-17 18:09:10.085026 2022-08-17 18:09:11.313424 \N \N f \N f \N \N \N \N \N
259 96 27 2 \N 2022-08-17 18:09:11.435434 2022-08-17 18:09:11.460525 \N \N f \N f \N \N \N \N \N
260 96 1 2 \N 2022-08-17 18:09:11.488564 2022-08-17 18:09:11.529849 \N \N f \N f \N \N \N \N \N
261 96 17 2 \N 2022-08-17 18:09:11.419551 2022-08-17 18:09:11.585467 \N \N f \N f \N \N \N \N \N
262 96 20 2 \N 2022-08-17 18:09:11.105669 2022-08-17 18:09:11.6352 \N \N f \N f \N \N \N \N \N
263 96 4 2 \N 2022-08-17 18:09:11.44394 2022-08-17 18:09:11.689027 \N \N f \N f \N \N \N \N \N
264 96 28 2 \N 2022-08-17 18:09:11.02459 2022-08-17 18:09:11.741316 \N \N f \N f \N \N \N \N \N
265 96 5 2 \N 2022-08-17 18:09:11.728553 2022-08-17 18:09:11.796456 \N \N f \N f \N \N \N \N \N
266 97 18 2 \N 2022-08-17 18:09:11.221117 2022-08-17 18:09:11.933259 \N \N f \N f \N \N \N \N \N
267 97 3 2 \N 2022-08-17 18:09:11.122876 2022-08-17 18:09:11.999053 \N \N f \N f \N \N \N \N \N
268 97 9 2 \N 2022-08-17 18:09:11.687919 2022-08-17 18:09:12.057277 \N \N f \N f \N \N \N \N \N
269 98 20 2 \N 2022-08-17 18:09:11.661785 2022-08-17 18:09:12.197112 \N \N f \N f \N \N \N \N \N
270 98 3 2 \N 2022-08-17 18:09:12.207093 2022-08-17 18:09:12.263269 \N \N f \N f \N \N \N \N \N
271 99 4 2 \N 2022-08-17 18:09:11.916518 2022-08-17 18:09:12.402973 \N \N f \N f \N \N \N \N \N
272 99 24 2 \N 2022-08-17 18:09:11.952313 2022-08-17 18:09:12.469212 \N \N f \N f \N \N \N \N \N
273 99 14 2 \N 2022-08-17 18:09:11.866744 2022-08-17 18:09:12.524864 \N \N f \N f \N \N \N \N \N
274 99 -2 2 \N 2022-08-17 18:09:12.53537 2022-08-17 18:09:12.582665 \N \N f \N f \N \N \N \N \N
275 99 3 2 \N 2022-08-17 18:09:11.6894 2022-08-17 18:09:12.633442 \N \N f \N f \N \N \N \N \N
276 99 22 2 \N 2022-08-17 18:09:12.437509 2022-08-17 18:09:12.686483 \N \N f \N f \N \N \N \N \N
277 99 8 2 \N 2022-08-17 18:09:11.526062 2022-08-17 18:09:12.743908 \N \N f \N f \N \N \N \N \N
278 99 17 2 \N 2022-08-17 18:09:12.725081 2022-08-17 18:09:12.799386 \N \N f \N f \N \N \N \N \N
279 100 2 2 \N 2022-08-17 18:09:12.870338 2022-08-17 18:09:12.947371 \N \N f \N f \N \N \N \N \N
280 100 18 2 \N 2022-08-17 18:09:12.977657 2022-08-17 18:09:13.013399 \N \N f \N f \N \N \N \N \N
281 100 14 2 \N 2022-08-17 18:09:12.961838 2022-08-17 18:09:13.069782 \N \N f \N f \N \N \N \N \N
282 100 25 2 \N 2022-08-17 18:09:12.752888 2022-08-17 18:09:13.129937 \N \N f \N f \N \N \N \N \N
283 100 9 2 \N 2022-08-17 18:09:13.051528 2022-08-17 18:09:13.188435 \N \N f \N f \N \N \N \N \N
284 100 3 2 \N 2022-08-17 18:09:13.169353 2022-08-17 18:09:13.251327 \N \N f \N f \N \N \N \N \N
285 101 21 2 \N 2022-08-17 18:09:13.315889 2022-08-17 18:09:13.39796 \N \N f \N f \N \N \N \N \N
286 101 27 2 \N 2022-08-17 18:09:12.994112 2022-08-17 18:09:13.463761 \N \N f \N f \N \N \N \N \N
287 101 11 2 \N 2022-08-17 18:09:13.381531 2022-08-17 18:09:13.52011 \N \N f \N f \N \N \N \N \N
288 101 10 2 \N 2022-08-17 18:09:13.560807 2022-08-17 18:09:13.580313 \N \N f \N f \N \N \N \N \N
289 101 -2 2 \N 2022-08-17 18:09:13.071434 2022-08-17 18:09:13.637187 \N \N f \N f \N \N \N \N \N
290 101 22 2 \N 2022-08-17 18:09:13.092385 2022-08-17 18:09:13.688348 \N \N f \N f \N \N \N \N \N
291 101 25 2 \N 2022-08-17 18:09:13.191405 2022-08-17 18:09:13.742517 \N \N f \N f \N \N \N \N \N
292 101 2 2 \N 2022-08-17 18:09:13.772312 2022-08-17 18:09:13.79537 \N \N f \N f \N \N \N \N \N
293 102 -2 2 \N 2022-08-17 18:09:13.678633 2022-08-17 18:09:13.943669 \N \N f \N f \N \N \N \N \N
294 102 9 2 \N 2022-08-17 18:09:13.800765 2022-08-17 18:09:14.003814 \N \N f \N f \N \N \N \N \N
295 102 28 2 \N 2022-08-17 18:09:13.309334 2022-08-17 18:09:14.060536 \N \N f \N f \N \N \N \N \N
296 102 2 2 \N 2022-08-17 18:09:13.389165 2022-08-17 18:09:14.118438 \N \N f \N f \N \N \N \N \N
297 102 20 2 \N 2022-08-17 18:09:13.653316 2022-08-17 18:09:14.179479 \N \N f \N f \N \N \N \N \N
298 102 7 2 \N 2022-08-17 18:09:13.309587 2022-08-17 18:09:14.240416 \N \N f \N f \N \N \N \N \N
299 102 19 2 \N 2022-08-17 18:09:13.501114 2022-08-17 18:09:14.303487 \N \N f \N f \N \N \N \N \N
300 102 14 2 \N 2022-08-17 18:09:13.045813 2022-08-17 18:09:14.362684 \N \N f \N f \N \N \N \N \N
301 102 5 2 \N 2022-08-17 18:09:13.47594 2022-08-17 18:09:14.422384 \N \N f \N f \N \N \N \N \N
302 103 9 2 \N 2022-08-17 18:09:14.542866 2022-08-17 18:09:14.573042 \N \N f \N f \N \N \N \N \N
303 103 28 2 \N 2022-08-17 18:09:14.588591 2022-08-17 18:09:14.651565 \N \N f \N f \N \N \N \N \N
304 103 -2 2 \N 2022-08-17 18:09:14.450903 2022-08-17 18:09:14.714577 \N \N f \N f \N \N \N \N \N
305 103 1 2 \N 2022-08-17 18:09:14.58564 2022-08-17 18:09:14.763963 \N \N f \N f \N \N \N \N \N
306 103 -1 2 \N 2022-08-17 18:09:14.517582 2022-08-17 18:09:14.81455 \N \N f \N f \N \N \N \N \N
307 103 10 2 \N 2022-08-17 18:09:14.549644 2022-08-17 18:09:14.869785 \N \N f \N f \N \N \N \N \N
308 103 18 2 \N 2022-08-17 18:09:14.407339 2022-08-17 18:09:14.93245 \N \N f \N f \N \N \N \N \N
309 104 16 2 \N 2022-08-17 18:09:14.902601 2022-08-17 18:09:15.084551 \N \N f \N f \N \N \N \N \N
310 104 13 2 \N 2022-08-17 18:09:14.998852 2022-08-17 18:09:15.144668 \N \N f \N f \N \N \N \N \N
311 105 24 2 \N 2022-08-17 18:09:15.148257 2022-08-17 18:09:15.282806 \N \N f \N f \N \N \N \N \N
312 106 27 2 \N 2022-08-17 18:09:15.276785 2022-08-17 18:09:15.431789 \N \N f \N f \N \N \N \N \N
313 106 24 2 \N 2022-08-17 18:09:15.393907 2022-08-17 18:09:15.496858 \N \N f \N f \N \N \N \N \N
314 107 15 2 \N 2022-08-17 18:09:15.621061 2022-08-17 18:09:15.633444 \N \N f \N f \N \N \N \N \N
315 108 17 2 \N 2022-08-17 18:09:15.631136 2022-08-17 18:09:15.783592 \N \N f \N f \N \N \N \N \N
316 108 22 2 \N 2022-08-17 18:09:15.828038 2022-08-17 18:09:15.845349 \N \N f \N f \N \N \N \N \N
317 108 21 2 \N 2022-08-17 18:09:15.697008 2022-08-17 18:09:15.901055 \N \N f \N f \N \N \N \N \N
318 108 12 2 \N 2022-08-17 18:09:15.621735 2022-08-17 18:09:15.961246 \N \N f \N f \N \N \N \N \N
319 108 6 2 \N 2022-08-17 18:09:15.982621 2022-08-17 18:09:16.021055 \N \N f \N f \N \N \N \N \N
320 108 3 2 \N 2022-08-17 18:09:16.042371 2022-08-17 18:09:16.085949 \N \N f \N f \N \N \N \N \N
321 109 14 2 \N 2022-08-17 18:09:15.877301 2022-08-17 18:09:16.227894 \N \N f \N f \N \N \N \N \N
322 109 16 2 \N 2022-08-17 18:09:15.965432 2022-08-17 18:09:16.301308 \N \N f \N f \N \N \N \N \N
323 109 26 2 \N 2022-08-17 18:09:16.236824 2022-08-17 18:09:16.350349 \N \N f \N f \N \N \N \N \N
324 109 18 2 \N 2022-08-17 18:09:16.003743 2022-08-17 18:09:16.405184 \N \N f \N f \N \N \N \N \N
325 111 9 2 \N 2022-08-17 18:09:16.439112 2022-08-17 18:09:16.61963 \N \N f \N f \N \N \N \N \N
326 111 5 2 \N 2022-08-17 18:09:16.661 2022-08-17 18:09:16.698183 \N \N f \N f \N \N \N \N \N
327 111 16 2 \N 2022-08-17 18:09:16.438167 2022-08-17 18:09:16.763437 \N \N f \N f \N \N \N \N \N
328 111 2 2 \N 2022-08-17 18:09:16.545659 2022-08-17 18:09:16.819696 \N \N f \N f \N \N \N \N \N
329 111 -2 2 \N 2022-08-17 18:09:16.566714 2022-08-17 18:09:16.881058 \N \N f \N f \N \N \N \N \N
330 112 28 2 \N 2022-08-17 18:09:16.700506 2022-08-17 18:09:17.019253 \N \N f \N f \N \N \N \N \N
331 112 7 2 \N 2022-08-17 18:09:16.96924 2022-08-17 18:09:17.091452 \N \N f \N f \N \N \N \N \N
332 112 11 2 \N 2022-08-17 18:09:16.619717 2022-08-17 18:09:17.152903 \N \N f \N f \N \N \N \N \N
333 112 23 2 \N 2022-08-17 18:09:16.549232 2022-08-17 18:09:17.214706 \N \N f \N f \N \N \N \N \N
334 113 -2 2 \N 2022-08-17 18:09:17.316923 2022-08-17 18:09:17.360263 \N \N f \N f \N \N \N \N \N
335 113 21 2 \N 2022-08-17 18:09:16.783106 2022-08-17 18:09:17.432614 \N \N f \N f \N \N \N \N \N
336 113 12 2 \N 2022-08-17 18:09:16.937715 2022-08-17 18:09:17.495633 \N \N f \N f \N \N \N \N \N
337 113 16 2 \N 2022-08-17 18:09:17.432857 2022-08-17 18:09:17.557283 \N \N f \N f \N \N \N \N \N
338 114 24 2 \N 2022-08-17 18:09:17.664364 2022-08-17 18:09:17.697778 \N \N f \N f \N \N \N \N \N
339 114 -1 2 \N 2022-08-17 18:09:17.732104 2022-08-17 18:09:17.762653 \N \N f \N f \N \N \N \N \N
340 114 17 2 \N 2022-08-17 18:09:17.712509 2022-08-17 18:09:17.815782 \N \N f \N f \N \N \N \N \N
341 114 -2 2 \N 2022-08-17 18:09:17.783636 2022-08-17 18:09:17.864772 \N \N f \N f \N \N \N \N \N
342 114 9 2 \N 2022-08-17 18:09:17.803903 2022-08-17 18:09:17.91707 \N \N f \N f \N \N \N \N \N
343 114 16 2 \N 2022-08-17 18:09:17.839027 2022-08-17 18:09:17.97024 \N \N f \N f \N \N \N \N \N
344 115 16 2 \N 2022-08-17 18:09:18.012028 2022-08-17 18:09:18.095673 \N \N f \N f \N \N \N \N \N
345 115 24 2 \N 2022-08-17 18:09:18.080607 2022-08-17 18:09:18.139391 \N \N f \N f \N \N \N \N \N
346 115 10 2 \N 2022-08-17 18:09:17.925614 2022-08-17 18:09:18.191154 \N \N f \N f \N \N \N \N \N
347 115 7 2 \N 2022-08-17 18:09:18.12904 2022-08-17 18:09:18.245584 \N \N f \N f \N \N \N \N \N
348 115 28 2 \N 2022-08-17 18:09:18.281201 2022-08-17 18:09:18.298176 \N \N f \N f \N \N \N \N \N
349 115 18 2 \N 2022-08-17 18:09:17.958281 2022-08-17 18:09:18.351145 \N \N f \N f \N \N \N \N \N
350 115 17 2 \N 2022-08-17 18:09:18.280995 2022-08-17 18:09:18.409777 \N \N f \N f \N \N \N \N \N
351 115 21 2 \N 2022-08-17 18:09:18.276073 2022-08-17 18:09:18.461481 \N \N f \N f \N \N \N \N \N
352 116 9 2 \N 2022-08-17 18:09:18.006192 2022-08-17 18:09:18.602039 \N \N f \N f \N \N \N \N \N
353 116 7 2 \N 2022-08-17 18:09:18.241724 2022-08-17 18:09:18.6785 \N \N f \N f \N \N \N \N \N
354 116 3 2 \N 2022-08-17 18:09:18.172822 2022-08-17 18:09:18.74007 \N \N f \N f \N \N \N \N \N
355 116 2 2 \N 2022-08-17 18:09:18.728965 2022-08-17 18:09:18.800036 \N \N f \N f \N \N \N \N \N
356 116 13 2 \N 2022-08-17 18:09:18.849471 2022-08-17 18:09:18.86175 \N \N f \N f \N \N \N \N \N
357 116 6 2 \N 2022-08-17 18:09:18.82455 2022-08-17 18:09:18.923911 \N \N f \N f \N \N \N \N \N
358 116 5 2 \N 2022-08-17 18:09:18.5865 2022-08-17 18:09:18.997016 \N \N f \N f \N \N \N \N \N
359 116 24 2 \N 2022-08-17 18:09:18.845863 2022-08-17 18:09:19.06488 \N \N f \N f \N \N \N \N \N
360 116 10 2 \N 2022-08-17 18:09:18.588171 2022-08-17 18:09:19.136465 \N \N f \N f \N \N \N \N \N
361 116 26 2 \N 2022-08-17 18:09:18.496524 2022-08-17 18:09:19.202191 \N \N f \N f \N \N \N \N \N
362 117 14 2 \N 2022-08-17 18:09:18.898257 2022-08-17 18:09:19.352035 \N \N f \N f \N \N \N \N \N
363 117 13 2 \N 2022-08-17 18:09:18.668615 2022-08-17 18:09:19.431949 \N \N f \N f \N \N \N \N \N
364 118 13 2 \N 2022-08-17 18:09:19.474893 2022-08-17 18:09:19.582262 \N \N f \N f \N \N \N \N \N
365 118 15 2 \N 2022-08-17 18:09:19.37787 2022-08-17 18:09:19.658784 \N \N f \N f \N \N \N \N \N
366 118 2 2 \N 2022-08-17 18:09:19.237954 2022-08-17 18:09:19.720783 \N \N f \N f \N \N \N \N \N
367 119 19 2 \N 2022-08-17 18:09:19.79007 2022-08-17 18:09:19.874244 \N \N f \N f \N \N \N \N \N
368 119 2 2 \N 2022-08-17 18:09:19.807843 2022-08-17 18:09:19.951427 \N \N f \N f \N \N \N \N \N
369 120 27 2 \N 2022-08-17 18:09:20.004327 2022-08-17 18:09:20.105447 \N \N f \N f \N \N \N \N \N
370 120 16 2 \N 2022-08-17 18:09:20.090973 2022-08-17 18:09:20.176349 \N \N f \N f \N \N \N \N \N
371 121 16 2 \N 2022-08-17 18:09:20.210523 2022-08-17 18:09:20.332631 \N \N f \N f \N \N \N \N \N
372 121 4 2 \N 2022-08-17 18:09:20.318471 2022-08-17 18:09:20.386665 \N \N f \N f \N \N \N \N \N
373 121 21 2 \N 2022-08-17 18:09:20.330591 2022-08-17 18:09:20.439295 \N \N f \N f \N \N \N \N \N
374 122 -1 2 \N 2022-08-17 18:09:20.291275 2022-08-17 18:09:20.679803 \N \N f \N f \N \N \N \N \N
375 122 5 2 \N 2022-08-17 18:09:20.677733 2022-08-17 18:09:20.83267 \N \N f \N f \N \N \N \N \N
376 122 10 2 \N 2022-08-17 18:09:20.297058 2022-08-17 18:09:20.904167 \N \N f \N f \N \N \N \N \N
377 122 17 2 \N 2022-08-17 18:09:20.494193 2022-08-17 18:09:20.980665 \N \N f \N f \N \N \N \N \N
378 122 1 2 \N 2022-08-17 18:09:20.561736 2022-08-17 18:09:21.036137 \N \N f \N f \N \N \N \N \N
379 122 18 2 \N 2022-08-17 18:09:20.993291 2022-08-17 18:09:21.098738 \N \N f \N f \N \N \N \N \N
380 122 2 2 \N 2022-08-17 18:09:21.047606 2022-08-17 18:09:21.163759 \N \N f \N f \N \N \N \N \N
381 122 24 2 \N 2022-08-17 18:09:20.355072 2022-08-17 18:09:21.226706 \N \N f \N f \N \N \N \N \N
382 122 22 2 \N 2022-08-17 18:09:20.420948 2022-08-17 18:09:21.286822 \N \N f \N f \N \N \N \N \N
383 124 9 2 \N 2022-08-17 18:09:21.190564 2022-08-17 18:09:21.501274 \N \N f \N f \N \N \N \N \N
384 124 27 2 \N 2022-08-17 18:09:21.213739 2022-08-17 18:09:21.569965 \N \N f \N f \N \N \N \N \N
385 124 12 2 \N 2022-08-17 18:09:21.097621 2022-08-17 18:09:21.622051 \N \N f \N f \N \N \N \N \N
386 124 -1 2 \N 2022-08-17 18:09:21.63588 2022-08-17 18:09:21.673066 \N \N f \N f \N \N \N \N \N
387 124 22 2 \N 2022-08-17 18:09:21.165456 2022-08-17 18:09:21.722956 \N \N f \N f \N \N \N \N \N
388 125 10 2 \N 2022-08-17 18:09:21.78974 2022-08-17 18:09:21.857569 \N \N f \N f \N \N \N \N \N
389 125 9 2 \N 2022-08-17 18:09:21.742746 2022-08-17 18:09:21.927744 \N \N f \N f \N \N \N \N \N
390 125 23 2 \N 2022-08-17 18:09:21.68864 2022-08-17 18:09:21.981556 \N \N f \N f \N \N \N \N \N
391 125 6 2 \N 2022-08-17 18:09:21.999775 2022-08-17 18:09:22.034233 \N \N f \N f \N \N \N \N \N
392 125 18 2 \N 2022-08-17 18:09:21.856996 2022-08-17 18:09:22.084538 \N \N f \N f \N \N \N \N \N
393 127 16 2 \N 2022-08-17 18:09:22.266633 2022-08-17 18:09:22.320153 \N \N f \N f \N \N \N \N \N
394 127 6 2 \N 2022-08-17 18:09:22.268141 2022-08-17 18:09:22.381973 \N \N f \N f \N \N \N \N \N
395 127 9 2 \N 2022-08-17 18:09:22.282582 2022-08-17 18:09:22.432676 \N \N f \N f \N \N \N \N \N
396 127 25 2 \N 2022-08-17 18:09:22.446218 2022-08-17 18:09:22.482867 \N \N f \N f \N \N \N \N \N
397 127 4 2 \N 2022-08-17 18:09:22.366115 2022-08-17 18:09:22.538292 \N \N f \N f \N \N \N \N \N
398 127 28 2 \N 2022-08-17 18:09:22.279573 2022-08-17 18:09:22.598896 \N \N f \N f \N \N \N \N \N
399 127 8 2 \N 2022-08-17 18:09:22.572934 2022-08-17 18:09:22.658402 \N \N f \N f \N \N \N \N \N
400 127 10 2 \N 2022-08-17 18:09:22.25044 2022-08-17 18:09:22.720064 \N \N f \N f \N \N \N \N \N
401 127 15 2 \N 2022-08-17 18:09:22.464904 2022-08-17 18:09:22.775181 \N \N f \N f \N \N \N \N \N
402 128 4 2 \N 2022-08-17 18:09:22.890893 2022-08-17 18:09:22.929212 \N \N f \N f \N \N \N \N \N
403 128 23 2 \N 2022-08-17 18:09:22.648226 2022-08-17 18:09:22.992396 \N \N f \N f \N \N \N \N \N
404 128 10 2 \N 2022-08-17 18:09:22.713657 2022-08-17 18:09:23.041106 \N \N f \N f \N \N \N \N \N
405 129 1 2 \N 2022-08-17 18:09:22.997805 2022-08-17 18:09:23.1679 \N \N f \N f \N \N \N \N \N
406 129 5 2 \N 2022-08-17 18:09:23.170757 2022-08-17 18:09:23.227646 \N \N f \N f \N \N \N \N \N
407 129 21 2 \N 2022-08-17 18:09:22.84414 2022-08-17 18:09:23.281262 \N \N f \N f \N \N \N \N \N
408 129 6 2 \N 2022-08-17 18:09:23.074171 2022-08-17 18:09:23.331125 \N \N f \N f \N \N \N \N \N
409 129 11 2 \N 2022-08-17 18:09:23.261973 2022-08-17 18:09:23.381812 \N \N f \N f \N \N \N \N \N
410 129 15 2 \N 2022-08-17 18:09:23.196132 2022-08-17 18:09:23.440969 \N \N f \N f \N \N \N \N \N
411 129 16 2 \N 2022-08-17 18:09:22.92822 2022-08-17 18:09:23.492393 \N \N f \N f \N \N \N \N \N
412 129 8 2 \N 2022-08-17 18:09:22.811054 2022-08-17 18:09:23.544216 \N \N f \N f \N \N \N \N \N
413 129 24 2 \N 2022-08-17 18:09:23.004408 2022-08-17 18:09:23.596227 \N \N f \N f \N \N \N \N \N
414 130 23 2 \N 2022-08-17 18:09:23.684099 2022-08-17 18:09:23.725126 \N \N f \N f \N \N \N \N \N
415 131 20 2 \N 2022-08-17 18:09:23.770694 2022-08-17 18:09:23.868404 \N \N f \N f \N \N \N \N \N
416 131 9 2 \N 2022-08-17 18:09:23.909059 2022-08-17 18:09:23.931119 \N \N f \N f \N \N \N \N \N
417 131 -1 2 \N 2022-08-17 18:09:23.664374 2022-08-17 18:09:23.978177 \N \N f \N f \N \N \N \N \N
418 131 18 2 \N 2022-08-17 18:09:23.682725 2022-08-17 18:09:24.02686 \N \N f \N f \N \N \N \N \N
419 131 21 2 \N 2022-08-17 18:09:23.683736 2022-08-17 18:09:24.076508 \N \N f \N f \N \N \N \N \N
420 131 -2 2 \N 2022-08-17 18:09:23.937751 2022-08-17 18:09:24.125206 \N \N f \N f \N \N \N \N \N
421 131 10 2 \N 2022-08-17 18:09:23.661848 2022-08-17 18:09:24.175965 \N \N f \N f \N \N \N \N \N
422 131 5 2 \N 2022-08-17 18:09:23.956807 2022-08-17 18:09:24.22847 \N \N f \N f \N \N \N \N \N
423 131 6 2 \N 2022-08-17 18:09:23.654984 2022-08-17 18:09:24.277352 \N \N f \N f \N \N \N \N \N
424 131 11 2 \N 2022-08-17 18:09:24.020325 2022-08-17 18:09:24.3262 \N \N f \N f \N \N \N \N \N
425 133 19 2 \N 2022-08-17 18:09:24.467368 2022-08-17 18:09:24.532758 \N \N f \N f \N \N \N \N \N
426 133 3 2 \N 2022-08-17 18:09:24.481698 2022-08-17 18:09:24.5895 \N \N f \N f \N \N \N \N \N
427 133 15 2 \N 2022-08-17 18:09:24.463364 2022-08-17 18:09:24.636915 \N \N f \N f \N \N \N \N \N
428 133 -1 2 \N 2022-08-17 18:09:24.475902 2022-08-17 18:09:24.684218 \N \N f \N f \N \N \N \N \N
429 133 26 2 \N 2022-08-17 18:09:24.59631 2022-08-17 18:09:24.733544 \N \N f \N f \N \N \N \N \N
430 133 5 2 \N 2022-08-17 18:09:24.621424 2022-08-17 18:09:24.784471 \N \N f \N f \N \N \N \N \N
431 133 12 2 \N 2022-08-17 18:09:24.439268 2022-08-17 18:09:24.837949 \N \N f \N f \N \N \N \N \N
432 134 18 2 \N 2022-08-17 18:09:24.701406 2022-08-17 18:09:24.969454 \N \N f \N f \N \N \N \N \N
433 134 3 2 \N 2022-08-17 18:09:24.994968 2022-08-17 18:09:25.037883 \N \N f \N f \N \N \N \N \N
434 134 21 2 \N 2022-08-17 18:09:25.082084 2022-08-17 18:09:25.092838 \N \N f \N f \N \N \N \N \N
435 134 27 2 \N 2022-08-17 18:09:24.663651 2022-08-17 18:09:25.156964 \N \N f \N f \N \N \N \N \N
436 134 2 2 \N 2022-08-17 18:09:24.772102 2022-08-17 18:09:25.206376 \N \N f \N f \N \N \N \N \N
437 134 25 2 \N 2022-08-17 18:09:25.110391 2022-08-17 18:09:25.255782 \N \N f \N f \N \N \N \N \N
438 134 -2 2 \N 2022-08-17 18:09:24.812312 2022-08-17 18:09:25.305054 \N \N f \N f \N \N \N \N \N
439 134 11 2 \N 2022-08-17 18:09:24.798858 2022-08-17 18:09:25.355951 \N \N f \N f \N \N \N \N \N
440 135 4 2 \N 2022-08-17 18:09:25.476838 2022-08-17 18:09:25.490107 \N \N f \N f \N \N \N \N \N
441 135 10 2 \N 2022-08-17 18:09:25.39177 2022-08-17 18:09:25.55673 \N \N f \N f \N \N \N \N \N
442 135 28 2 \N 2022-08-17 18:09:25.318695 2022-08-17 18:09:25.60501 \N \N f \N f \N \N \N \N \N
443 135 26 2 \N 2022-08-17 18:09:25.60105 2022-08-17 18:09:25.652824 \N \N f \N f \N \N \N \N \N
444 135 12 2 \N 2022-08-17 18:09:25.222693 2022-08-17 18:09:25.701695 \N \N f \N f \N \N \N \N \N
445 135 22 2 \N 2022-08-17 18:09:25.10108 2022-08-17 18:09:25.749602 \N \N f \N f \N \N \N \N \N
446 136 21 2 \N 2022-08-17 18:09:25.410843 2022-08-17 18:09:25.900846 \N \N f \N f \N \N \N \N \N
447 136 18 2 \N 2022-08-17 18:09:25.394168 2022-08-17 18:09:25.960901 \N \N f \N f \N \N \N \N \N
448 136 11 2 \N 2022-08-17 18:09:25.562283 2022-08-17 18:09:26.018525 \N \N f \N f \N \N \N \N \N
449 136 12 2 \N 2022-08-17 18:09:26.038043 2022-08-17 18:09:26.071126 \N \N f \N f \N \N \N \N \N
450 136 26 2 \N 2022-08-17 18:09:26.008824 2022-08-17 18:09:26.135812 \N \N f \N f \N \N \N \N \N
451 136 5 2 \N 2022-08-17 18:09:25.627976 2022-08-17 18:09:26.197206 \N \N f \N f \N \N \N \N \N
452 136 19 2 \N 2022-08-17 18:09:26.218019 2022-08-17 18:09:26.250046 \N \N f \N f \N \N \N \N \N
453 137 15 2 \N 2022-08-17 18:09:26.371825 2022-08-17 18:09:26.384355 \N \N f \N f \N \N \N \N \N
454 137 16 2 \N 2022-08-17 18:09:26.348473 2022-08-17 18:09:26.451401 \N \N f \N f \N \N \N \N \N
455 138 16 2 \N 2022-08-17 18:09:26.427226 2022-08-17 18:09:26.593592 \N \N f \N f \N \N \N \N \N
456 138 18 2 \N 2022-08-17 18:09:26.465809 2022-08-17 18:09:26.661864 \N \N f \N f \N \N \N \N \N
457 138 26 2 \N 2022-08-17 18:09:26.563725 2022-08-17 18:09:26.713517 \N \N f \N f \N \N \N \N \N
458 138 11 2 \N 2022-08-17 18:09:26.56875 2022-08-17 18:09:26.768113 \N \N f \N f \N \N \N \N \N
459 138 15 2 \N 2022-08-17 18:09:26.465464 2022-08-17 18:09:26.820015 \N \N f \N f \N \N \N \N \N
460 138 24 2 \N 2022-08-17 18:09:26.657038 2022-08-17 18:09:26.87399 \N \N f \N f \N \N \N \N \N
461 138 3 2 \N 2022-08-17 18:09:26.529199 2022-08-17 18:09:26.931451 \N \N f \N f \N \N \N \N \N
462 139 1 2 \N 2021-12-16 05:27:31.220939 2022-08-17 18:09:27.130853 \N \N f \N f \N \N \N \N \N
463 140 15 2 \N 2022-03-13 10:40:14.659633 2022-08-17 18:09:27.287364 \N \N f \N f \N \N \N \N \N
464 142 15 2 \N 2022-08-17 17:44:41.881824 2022-08-17 18:09:27.541466 \N \N f \N f \N \N \N \N \N
465 143 15 2 \N 2022-08-17 17:56:31.253579 2022-08-17 18:09:27.719005 \N \N f \N f \N \N \N \N \N
466 145 23 2 \N 2022-08-17 18:08:59.225193 2022-08-17 18:09:27.95533 \N \N f \N f \N \N \N \N \N
467 145 1 2 \N 2022-08-17 18:01:29.643014 2022-08-17 18:09:28.03299 \N \N f \N f \N \N \N \N \N
468 146 1 2 \N 2022-08-17 18:08:41.150349 2022-08-17 18:09:28.185841 \N \N f \N f \N \N \N \N \N
469 147 15 2 \N 2022-08-17 18:09:28.074165 2022-08-17 18:09:28.348034 \N \N f \N f \N \N \N \N \N
470 149 21 2 \N 2022-07-23 14:49:06.632741 2022-08-17 18:09:28.662416 \N \N f \N f \N \N \N \N \N
471 149 16 2 \N 2022-08-05 03:26:02.091454 2022-08-17 18:09:28.720931 \N \N f \N f \N \N \N \N \N
472 149 3 2 \N 2022-07-31 11:48:52.766869 2022-08-17 18:09:28.769922 \N \N f \N f \N \N \N \N \N
473 149 5 2 \N 2022-08-09 03:03:45.295728 2022-08-17 18:09:28.822721 \N \N f \N f \N \N \N \N \N
474 149 6 2 \N 2022-08-06 02:45:15.254698 2022-08-17 18:09:28.873859 \N \N f \N f \N \N \N \N \N
475 149 23 2 \N 2022-07-28 13:59:08.927008 2022-08-17 18:09:28.929648 \N \N f \N f \N \N \N \N \N
476 150 24 2 \N 2022-08-06 01:21:21.313051 2022-08-17 18:09:29.080897 \N \N f \N f \N \N \N \N \N
477 150 26 2 \N 2022-08-13 05:07:46.731762 2022-08-17 18:09:29.148933 \N \N f \N f \N \N \N \N \N
478 150 12 2 \N 2022-08-10 20:21:52.729117 2022-08-17 18:09:29.195505 \N \N f \N f \N \N \N \N \N
479 151 25 2 \N 2022-08-16 19:24:19.601855 2022-08-17 18:09:29.333713 \N \N f \N f \N \N \N \N \N
480 151 11 2 \N 2022-08-16 14:50:57.066015 2022-08-17 18:09:29.39482 \N \N f \N f \N \N \N \N \N
481 151 9 2 \N 2022-08-15 19:32:21.459087 2022-08-17 18:09:29.443414 \N \N f \N f \N \N \N \N \N
482 151 7 2 \N 2022-08-15 22:34:10.995973 2022-08-17 18:09:29.492811 \N \N f \N f \N \N \N \N \N
483 151 13 2 \N 2022-08-17 10:51:50.333978 2022-08-17 18:09:29.559603 \N \N f \N f \N \N \N \N \N
484 151 20 2 \N 2022-08-16 23:59:15.248008 2022-08-17 18:09:29.608579 \N \N f \N f \N \N \N \N \N
485 152 19 2 \N 2022-08-15 19:55:09.206451 2022-08-17 18:09:29.74657 \N \N f \N f \N \N \N \N \N
486 152 16 2 \N 2022-08-16 13:12:08.120402 2022-08-17 18:09:29.811771 \N \N f \N f \N \N \N \N \N
487 152 26 2 \N 2022-08-17 04:55:37.018143 2022-08-17 18:09:29.859873 \N \N f \N f \N \N \N \N \N
488 152 15 2 \N 2022-08-16 13:01:28.681784 2022-08-17 18:09:29.907758 \N \N f \N f \N \N \N \N \N
489 152 13 2 \N 2022-08-16 22:14:07.445628 2022-08-17 18:09:29.961309 \N \N f \N f \N \N \N \N \N
490 152 25 2 \N 2022-08-16 19:47:18.559304 2022-08-17 18:09:30.018665 \N \N f \N f \N \N \N \N \N
491 153 -1 2 \N 2022-08-17 17:08:21.606654 2022-08-17 18:09:30.158743 \N \N f \N f \N \N \N \N \N
492 153 8 2 \N 2022-08-17 18:06:05.87632 2022-08-17 18:09:30.220898 \N \N f \N f \N \N \N \N \N
493 153 21 2 \N 2022-08-17 17:09:06.569105 2022-08-17 18:09:30.271185 \N \N f \N f \N \N \N \N \N
494 153 9 2 \N 2022-08-17 17:52:25.906035 2022-08-17 18:09:30.319746 \N \N f \N f \N \N \N \N \N
495 153 7 2 \N 2022-08-17 17:35:06.168992 2022-08-17 18:09:30.37053 \N \N f \N f \N \N \N \N \N
496 153 13 2 \N 2022-08-17 17:54:48.007628 2022-08-17 18:09:30.417918 \N \N f \N f \N \N \N \N \N
497 153 4 2 \N 2022-08-17 17:42:27.703395 2022-08-17 18:09:30.466997 \N \N f \N f \N \N \N \N \N
498 153 24 2 \N 2022-08-17 17:18:05.689209 2022-08-17 18:09:30.524676 \N \N f \N f \N \N \N \N \N
499 154 12 2 \N 2022-08-17 17:34:05.554411 2022-08-17 18:09:30.667645 \N \N f \N f \N \N \N \N \N
500 154 25 2 \N 2022-08-17 17:14:23.175859 2022-08-17 18:09:30.712785 \N \N f \N f \N \N \N \N \N
501 154 16 2 \N 2022-08-17 18:00:08.050147 2022-08-17 18:09:30.880555 \N \N f \N f \N \N \N \N \N
502 154 4 2 \N 2022-08-17 18:00:53.877356 2022-08-17 18:09:30.928023 \N \N f \N f \N \N \N \N \N
503 154 21 2 \N 2022-08-17 17:35:33.088739 2022-08-17 18:09:30.978745 \N \N f \N f \N \N \N \N \N
504 154 -1 2 \N 2022-08-17 18:04:03.509949 2022-08-17 18:09:31.025 \N \N f \N f \N \N \N \N \N
505 155 21 2 \N 2022-08-17 18:08:00.137822 2022-08-17 18:09:31.175655 \N \N f \N f \N \N \N \N \N
506 155 14 2 \N 2022-08-17 18:04:17.377625 2022-08-17 18:09:31.241593 \N \N f \N f \N \N \N \N \N
507 155 5 2 \N 2022-08-17 17:57:53.856498 2022-08-17 18:09:31.295279 \N \N f \N f \N \N \N \N \N
508 155 24 2 \N 2022-08-17 18:06:13.950558 2022-08-17 18:09:31.356989 \N \N f \N f \N \N \N \N \N
509 155 27 2 \N 2022-08-17 18:00:19.359359 2022-08-17 18:09:31.411267 \N \N f \N f \N \N \N \N \N
510 155 7 2 \N 2022-08-17 18:08:21.753873 2022-08-17 18:09:31.466483 \N \N f \N f \N \N \N \N \N
511 155 22 2 \N 2022-08-17 18:04:20.980359 2022-08-17 18:09:31.517654 \N \N f \N f \N \N \N \N \N
512 155 -1 2 \N 2022-08-17 18:02:58.586251 2022-08-17 18:09:31.566894 \N \N f \N f \N \N \N \N \N
513 155 9 2 \N 2022-08-17 17:57:49.707881 2022-08-17 18:09:31.623933 \N \N f \N f \N \N \N \N \N
514 156 4 2 \N 2022-08-17 18:07:58.961288 2022-08-17 18:09:31.776984 \N \N f \N f \N \N \N \N \N
515 156 17 2 \N 2022-08-17 18:08:59.064808 2022-08-17 18:09:31.844383 \N \N f \N f \N \N \N \N \N
516 156 2 2 \N 2022-08-17 18:08:20.73882 2022-08-17 18:09:31.89828 \N \N f \N f \N \N \N \N \N
517 156 3 2 \N 2022-08-17 18:08:08.562311 2022-08-17 18:09:31.944113 \N \N f \N f \N \N \N \N \N
518 157 16 2 \N 2022-04-15 15:20:58.784652 2022-08-17 18:09:32.164087 \N \N f \N f \N \N \N \N \N
519 157 25 2 \N 2022-05-19 15:14:40.955084 2022-08-17 18:09:32.237146 \N \N f \N f \N \N \N \N \N
520 157 14 2 \N 2022-05-27 07:33:36.183761 2022-08-17 18:09:32.296751 \N \N f \N f \N \N \N \N \N
521 157 12 2 \N 2022-08-08 00:53:04.859298 2022-08-17 18:09:32.348861 \N \N f \N f \N \N \N \N \N
522 157 21 2 \N 2022-07-22 04:41:56.349901 2022-08-17 18:09:32.403447 \N \N f \N f \N \N \N \N \N
523 157 17 2 \N 2022-03-28 17:17:30.78497 2022-08-17 18:09:32.454013 \N \N f \N f \N \N \N \N \N
524 157 -2 2 \N 2022-05-12 23:15:49.531929 2022-08-17 18:09:32.502579 \N \N f \N f \N \N \N \N \N
525 158 26 2 \N 2022-08-12 00:24:00.235795 2022-08-17 18:09:32.64812 \N \N f \N f \N \N \N \N \N
526 158 2 2 \N 2022-07-23 22:24:12.74554 2022-08-17 18:09:32.720192 \N \N f \N f \N \N \N \N \N
527 159 16 2 \N 2022-07-29 06:48:21.863948 2022-08-17 18:09:32.870736 \N \N f \N f \N \N \N \N \N
528 159 10 2 \N 2022-08-10 14:41:19.893902 2022-08-17 18:09:32.915359 \N \N f \N f \N \N \N \N \N
529 159 23 2 \N 2022-08-05 12:32:40.695789 2022-08-17 18:09:32.956715 \N \N f \N f \N \N \N \N \N
530 159 17 2 \N 2022-08-14 10:50:10.844077 2022-08-17 18:09:33.009747 \N \N f \N f \N \N \N \N \N
531 159 6 2 \N 2022-08-05 15:11:31.554383 2022-08-17 18:09:33.063185 \N \N f \N f \N \N \N \N \N
532 159 -1 2 \N 2022-08-02 20:35:01.335661 2022-08-17 18:09:33.113507 \N \N f \N f \N \N \N \N \N
533 159 21 2 \N 2022-08-17 05:31:34.042172 2022-08-17 18:09:33.165967 \N \N f \N f \N \N \N \N \N
534 160 12 2 \N 2022-08-17 08:48:28.994837 2022-08-17 18:09:33.318976 \N \N f \N f \N \N \N \N \N
535 160 6 2 \N 2022-08-06 13:29:44.440374 2022-08-17 18:09:33.383145 \N \N f \N f \N \N \N \N \N
536 160 23 2 \N 2022-08-01 20:40:21.344814 2022-08-17 18:09:33.436899 \N \N f \N f \N \N \N \N \N
537 160 3 2 \N 2022-08-15 04:35:55.875571 2022-08-17 18:09:33.491811 \N \N f \N f \N \N \N \N \N
538 160 16 2 \N 2022-08-07 22:33:41.891212 2022-08-17 18:09:33.542851 \N \N f \N f \N \N \N \N \N
539 160 8 2 \N 2022-08-06 02:53:32.887667 2022-08-17 18:09:33.593171 \N \N f \N f \N \N \N \N \N
540 160 28 2 \N 2022-08-12 16:35:18.286399 2022-08-17 18:09:33.643066 \N \N f \N f \N \N \N \N \N
541 160 25 2 \N 2022-08-06 19:51:29.218304 2022-08-17 18:09:33.692801 \N \N f \N f \N \N \N \N \N
542 162 9 2 \N 2022-08-17 12:19:07.6669 2022-08-17 18:09:33.931539 \N \N f \N f \N \N \N \N \N
543 162 12 2 \N 2022-08-16 22:44:07.763876 2022-08-17 18:09:33.991734 \N \N f \N f \N \N \N \N \N
544 162 16 2 \N 2022-08-17 03:25:25.4297 2022-08-17 18:09:34.047555 \N \N f \N f \N \N \N \N \N
545 162 -1 2 \N 2022-08-17 17:16:36.656809 2022-08-17 18:09:34.099686 \N \N f \N f \N \N \N \N \N
546 164 19 2 \N 2021-12-15 02:30:37.032347 2022-08-17 18:09:34.355976 \N \N f \N f \N \N \N \N \N
547 165 19 2 \N 2022-07-29 08:59:05.606179 2022-08-17 18:09:34.530566 \N \N f \N f \N \N \N \N \N
548 165 23 2 \N 2022-07-03 03:55:25.863484 2022-08-17 18:09:34.604286 \N \N f \N f \N \N \N \N \N
549 166 19 2 \N 2022-08-09 05:47:13.630128 2022-08-17 18:09:34.749947 \N \N f \N f \N \N \N \N \N
550 166 7 2 \N 2022-08-11 14:49:24.948384 2022-08-17 18:09:34.817702 \N \N f \N f \N \N \N \N \N
551 167 23 2 \N 2022-08-12 07:45:11.802781 2022-08-17 18:09:34.992271 \N \N f \N f \N \N \N \N \N
552 168 14 2 \N 2022-08-16 13:27:39.283239 2022-08-17 18:09:35.155513 \N \N f \N f \N \N \N \N \N
553 168 23 2 \N 2022-08-17 11:35:24.928975 2022-08-17 18:09:35.228549 \N \N f \N f \N \N \N \N \N
554 169 7 2 \N 2022-08-17 08:47:21.495634 2022-08-17 18:09:35.368452 \N \N f \N f \N \N \N \N \N
555 169 14 2 \N 2022-08-16 20:31:32.941001 2022-08-17 18:09:35.430928 \N \N f \N f \N \N \N \N \N
556 170 14 2 \N 2022-08-17 11:25:11.975449 2022-08-17 18:09:35.591287 \N \N f \N f \N \N \N \N \N
557 171 7 2 \N 2022-08-17 08:30:07.656004 2022-08-17 18:09:35.761785 \N \N f \N f \N \N \N \N \N
558 172 23 2 \N 2022-08-17 16:23:40.543742 2022-08-17 18:09:35.929905 \N \N f \N f \N \N \N \N \N
559 173 7 2 \N 2022-08-17 17:29:30.903996 2022-08-17 18:09:36.114649 \N \N f \N f \N \N \N \N \N
560 175 14 2 \N 2022-08-17 18:07:54.060363 2022-08-17 18:09:36.361626 \N \N f \N f \N \N \N \N \N
561 176 7 2 \N 2022-08-17 18:08:27.992999 2022-08-17 18:09:36.535323 \N \N f \N f \N \N \N \N \N
562 176 19 2 \N 2022-08-17 18:08:47.736287 2022-08-17 18:09:36.613948 \N \N f \N f \N \N \N \N \N
563 178 15 2 \N 2022-06-04 08:19:16.358678 2022-08-17 18:09:36.946921 \N \N f \N f \N \N \N \N \N
564 183 23 2 \N 2022-08-16 12:59:32.937548 2022-08-17 18:09:37.501429 \N \N f \N f \N \N \N \N \N
565 186 1 2 \N 2022-08-17 15:52:48.834522 2022-08-17 18:09:37.835414 \N \N f \N f \N \N \N \N \N
566 190 8 2 \N 2021-06-28 05:30:36.598435 2022-08-17 18:09:38.310615 \N \N f \N f \N \N \N \N \N
567 190 7 2 \N 2022-06-02 21:10:15.888064 2022-08-17 18:09:38.372202 \N \N f \N f \N \N \N \N \N
568 190 2 2 \N 2022-07-31 01:30:38.837692 2022-08-17 18:09:38.421362 \N \N f \N f \N \N \N \N \N
569 190 18 2 \N 2021-07-23 21:41:41.011123 2022-08-17 18:09:38.470194 \N \N f \N f \N \N \N \N \N
570 191 12 2 \N 2021-09-13 03:25:52.162215 2022-08-17 18:09:38.633735 \N \N f \N f \N \N \N \N \N
571 191 7 2 \N 2022-06-13 14:01:22.034954 2022-08-17 18:09:38.69649 \N \N f \N f \N \N \N \N \N
572 191 -2 2 \N 2021-09-19 07:08:21.861846 2022-08-17 18:09:38.756137 \N \N f \N f \N \N \N \N \N
573 191 20 2 \N 2022-07-04 12:11:28.613204 2022-08-17 18:09:38.807638 \N \N f \N f \N \N \N \N \N
574 191 11 2 \N 2022-07-22 21:05:51.616795 2022-08-17 18:09:38.86077 \N \N f \N f \N \N \N \N \N
575 191 26 2 \N 2021-10-26 20:57:05.578583 2022-08-17 18:09:38.90682 \N \N f \N f \N \N \N \N \N
576 192 4 2 \N 2022-04-25 02:51:01.596322 2022-08-17 18:09:39.051711 \N \N f \N f \N \N \N \N \N
577 192 25 2 \N 2021-11-09 00:15:00.684577 2022-08-17 18:09:39.116555 \N \N f \N f \N \N \N \N \N
578 192 5 2 \N 2021-11-22 22:56:06.71869 2022-08-17 18:09:39.163394 \N \N f \N f \N \N \N \N \N
579 193 15 2 \N 2022-07-05 21:27:22.298383 2022-08-17 18:09:39.304838 \N \N f \N f \N \N \N \N \N
580 193 6 2 \N 2022-04-24 08:58:00.905945 2022-08-17 18:09:39.366842 \N \N f \N f \N \N \N \N \N
581 193 14 2 \N 2022-06-19 05:00:45.315434 2022-08-17 18:09:39.424083 \N \N f \N f \N \N \N \N \N
582 193 26 2 \N 2022-06-20 06:33:57.137099 2022-08-17 18:09:39.475391 \N \N f \N f \N \N \N \N \N
583 193 12 2 \N 2022-05-17 05:10:48.729793 2022-08-17 18:09:39.533087 \N \N f \N f \N \N \N \N \N
584 193 9 2 \N 2022-03-31 04:42:19.493679 2022-08-17 18:09:39.580338 \N \N f \N f \N \N \N \N \N
585 193 4 2 \N 2022-05-16 12:34:31.443465 2022-08-17 18:09:39.637991 \N \N f \N f \N \N \N \N \N
586 193 1 2 \N 2022-06-08 06:44:10.524574 2022-08-17 18:09:39.697431 \N \N f \N f \N \N \N \N \N
587 194 2 2 \N 2022-07-17 05:12:33.689751 2022-08-17 18:09:39.851134 \N \N f \N f \N \N \N \N \N
588 194 3 2 \N 2022-07-17 06:24:42.524497 2022-08-17 18:09:39.914659 \N \N f \N f \N \N \N \N \N
589 194 9 2 \N 2022-07-25 02:23:19.559792 2022-08-17 18:09:39.9611 \N \N f \N f \N \N \N \N \N
590 194 17 2 \N 2022-07-22 22:31:57.650899 2022-08-17 18:09:40.013337 \N \N f \N f \N \N \N \N \N
591 194 11 2 \N 2022-07-15 00:01:15.015819 2022-08-17 18:09:40.067426 \N \N f \N f \N \N \N \N \N
592 195 -2 2 \N 2022-01-19 14:42:00.230411 2022-08-17 18:09:40.232117 \N \N f \N f \N \N \N \N \N
593 195 8 2 \N 2022-06-02 23:17:22.440117 2022-08-17 18:09:40.278517 \N \N f \N f \N \N \N \N \N
594 196 13 2 \N 2022-07-22 12:03:18.932566 2022-08-17 18:09:40.41353 \N \N f \N f \N \N \N \N \N
595 196 25 2 \N 2022-07-13 21:01:31.972693 2022-08-17 18:09:40.461277 \N \N f \N f \N \N \N \N \N
596 196 11 2 \N 2022-07-12 15:22:46.015821 2022-08-17 18:09:40.50442 \N \N f \N f \N \N \N \N \N
597 196 16 2 \N 2022-07-25 20:59:43.694801 2022-08-17 18:09:40.549284 \N \N f \N f \N \N \N \N \N
598 197 15 2 \N 2022-01-10 15:29:24.207165 2022-08-17 18:09:40.734965 \N \N f \N f \N \N \N \N \N
599 198 23 2 \N 2022-06-04 15:17:00.037624 2022-08-17 18:09:40.891939 \N \N f \N f \N \N \N \N \N
600 201 15 2 \N 2022-08-17 15:17:38.504159 2022-08-17 18:09:41.229929 \N \N f \N f \N \N \N \N \N
601 203 23 2 \N 2022-08-17 16:38:13.925461 2022-08-17 18:09:41.496965 \N \N f \N f \N \N \N \N \N
602 205 23 2 \N 2021-11-15 23:14:13.191047 2022-08-17 18:09:41.779195 \N \N f \N f \N \N \N \N \N
603 205 7 2 \N 2022-02-11 08:04:05.843189 2022-08-17 18:09:41.849066 \N \N f \N f \N \N \N \N \N
604 208 23 2 \N 2022-08-15 00:04:50.718173 2022-08-17 18:09:42.16046 \N \N f \N f \N \N \N \N \N
605 208 14 2 \N 2022-08-15 01:58:07.064013 2022-08-17 18:09:42.235811 \N \N f \N f \N \N \N \N \N
606 209 7 2 \N 2022-08-17 08:46:36.107827 2022-08-17 18:09:42.377129 \N \N f \N f \N \N \N \N \N
607 209 14 2 \N 2022-08-17 16:48:06.483101 2022-08-17 18:09:42.449024 \N \N f \N f \N \N \N \N \N
608 210 23 2 \N 2022-08-16 22:05:40.671144 2022-08-17 18:09:42.591434 \N \N f \N f \N \N \N \N \N
609 210 7 2 \N 2022-08-17 04:48:01.297964 2022-08-17 18:09:42.664435 \N \N f \N f \N \N \N \N \N
610 211 23 2 \N 2022-08-16 07:47:05.819166 2022-08-17 18:09:42.805531 \N \N f \N f \N \N \N \N \N
611 212 23 2 \N 2022-08-17 17:29:42.299254 2022-08-17 18:09:42.962654 \N \N f \N f \N \N \N \N \N
612 213 14 2 \N 2022-08-17 16:31:31.568732 2022-08-17 18:09:43.127206 \N \N f \N f \N \N \N \N \N
613 216 25 2 \N 2022-05-29 15:25:22.200994 2022-08-17 18:09:43.533996 \N \N f \N f \N \N \N \N \N
614 216 3 2 \N 2022-03-07 08:53:06.392911 2022-08-17 18:09:43.598687 \N \N f \N f \N \N \N \N \N
615 216 21 2 \N 2022-04-27 21:12:32.227318 2022-08-17 18:09:43.653323 \N \N f \N f \N \N \N \N \N
616 216 26 2 \N 2022-06-07 22:46:08.276592 2022-08-17 18:09:43.7018 \N \N f \N f \N \N \N \N \N
617 216 15 2 \N 2022-08-13 14:41:10.741399 2022-08-17 18:09:43.75032 \N \N f \N f \N \N \N \N \N
618 216 11 2 \N 2022-04-10 03:30:15.496546 2022-08-17 18:09:43.804696 \N \N f \N f \N \N \N \N \N
619 216 28 2 \N 2022-07-13 11:37:37.318518 2022-08-17 18:09:43.852265 \N \N f \N f \N \N \N \N \N
620 216 2 2 \N 2022-07-15 16:02:58.733484 2022-08-17 18:09:43.900881 \N \N f \N f \N \N \N \N \N
621 217 18 2 \N 2022-01-23 10:40:10.609786 2022-08-17 18:09:44.099489 \N \N f \N f \N \N \N \N \N
622 217 27 2 \N 2022-04-09 06:45:07.034233 2022-08-17 18:09:44.166698 \N \N f \N f \N \N \N \N \N
623 217 13 2 \N 2021-11-14 19:16:37.121575 2022-08-17 18:09:44.220852 \N \N f \N f \N \N \N \N \N
624 217 16 2 \N 2022-03-02 00:59:24.68938 2022-08-17 18:09:44.273242 \N \N f \N f \N \N \N \N \N
625 217 5 2 \N 2022-06-17 22:51:18.868155 2022-08-17 18:09:44.328915 \N \N f \N f \N \N \N \N \N
626 217 10 2 \N 2022-05-20 02:24:00.448966 2022-08-17 18:09:44.510574 \N \N f \N f \N \N \N \N \N
627 218 18 2 \N 2022-06-27 22:50:33.243837 2022-08-17 18:09:44.719292 \N \N f \N f \N \N \N \N \N
628 220 18 2 \N 2022-08-17 16:18:00.25323 2022-08-17 18:09:45.019082 \N \N f \N f \N \N \N \N \N
629 221 23 2 \N 2022-08-17 18:07:53.701853 2022-08-17 18:09:45.171706 \N \N f \N f \N \N \N \N \N
630 221 5 2 \N 2022-08-17 18:06:44.260945 2022-08-17 18:09:45.242058 \N \N f \N f \N \N \N \N \N
631 221 17 2 \N 2022-08-17 17:59:49.963417 2022-08-17 18:09:45.298689 \N \N f \N f \N \N \N \N \N
632 221 26 2 \N 2022-08-17 17:59:39.666102 2022-08-17 18:09:45.352172 \N \N f \N f \N \N \N \N \N
633 221 12 2 \N 2022-08-17 17:57:10.719323 2022-08-17 18:09:45.405272 \N \N f \N f \N \N \N \N \N
634 221 13 2 \N 2022-08-17 17:55:00.705971 2022-08-17 18:09:45.462326 \N \N f \N f \N \N \N \N \N
635 222 12 2 \N 2022-08-17 18:05:31.616335 2022-08-17 18:09:45.608529 \N \N f \N f \N \N \N \N \N
636 223 11 2 \N 2022-08-17 18:07:59.30886 2022-08-17 18:09:45.769616 \N \N f \N f \N \N \N \N \N
637 223 6 2 \N 2022-08-17 18:08:28.96387 2022-08-17 18:09:45.84461 \N \N f \N f \N \N \N \N \N
638 223 17 2 \N 2022-08-17 18:09:37.592438 2022-08-17 18:09:45.906044 \N \N f \N f \N \N \N \N \N
639 223 22 2 \N 2022-08-17 18:06:43.669981 2022-08-17 18:09:45.963687 \N \N f \N f \N \N \N \N \N
640 223 -1 2 \N 2022-08-17 18:09:33.926048 2022-08-17 18:09:46.024981 \N \N f \N f \N \N \N \N \N
641 223 12 2 \N 2022-08-17 18:09:17.563519 2022-08-17 18:09:46.077011 \N \N f \N f \N \N \N \N \N
642 223 5 2 \N 2022-08-17 18:07:06.462021 2022-08-17 18:09:46.12971 \N \N f \N f \N \N \N \N \N
643 223 25 2 \N 2022-08-17 18:07:18.223351 2022-08-17 18:09:46.189965 \N \N f \N f \N \N \N \N \N
644 223 19 2 \N 2022-08-17 18:09:09.815522 2022-08-17 18:09:46.246419 \N \N f \N f \N \N \N \N \N
645 223 27 2 \N 2022-08-17 18:09:31.323156 2022-08-17 18:09:46.304126 \N \N f \N f \N \N \N \N \N
646 224 14 2 \N 2022-08-17 18:07:47.708985 2022-08-17 18:09:46.4461 \N \N f \N f \N \N \N \N \N
647 224 15 2 \N 2022-08-17 18:07:32.784364 2022-08-17 18:09:46.506197 \N \N f \N f \N \N \N \N \N
648 225 11 2 \N 2022-08-17 18:09:11.162021 2022-08-17 18:09:46.636195 \N \N f \N f \N \N \N \N \N
649 225 24 2 \N 2022-08-17 18:09:39.032335 2022-08-17 18:09:46.704506 \N \N f \N f \N \N \N \N \N
650 225 14 2 \N 2022-08-17 18:09:20.102637 2022-08-17 18:09:46.754353 \N \N f \N f \N \N \N \N \N
651 226 10 2 \N 2022-08-17 18:09:20.768858 2022-08-17 18:09:46.894009 \N \N f \N f \N \N \N \N \N
652 226 5 2 \N 2022-08-17 18:09:42.310966 2022-08-17 18:09:46.936266 \N \N f \N f \N \N \N \N \N
653 226 21 2 \N 2022-08-17 18:09:34.902222 2022-08-17 18:09:46.979071 \N \N f \N f \N \N \N \N \N
654 226 28 2 \N 2022-08-17 18:09:24.206709 2022-08-17 18:09:47.018405 \N \N f \N f \N \N \N \N \N
655 226 18 2 \N 2022-08-17 18:09:12.393831 2022-08-17 18:09:47.065213 \N \N f \N f \N \N \N \N \N
656 226 4 2 \N 2022-08-17 18:09:46.483179 2022-08-17 18:09:47.107888 \N \N f \N f \N \N \N \N \N
657 226 9 2 \N 2022-08-17 18:09:24.168971 2022-08-17 18:09:47.147969 \N \N f \N f \N \N \N \N \N
658 226 8 2 \N 2022-08-17 18:09:26.49985 2022-08-17 18:09:47.193195 \N \N f \N f \N \N \N \N \N
659 227 11 2 \N 2022-08-17 18:09:33.378834 2022-08-17 18:09:47.334459 \N \N f \N f \N \N \N \N \N
660 227 8 2 \N 2022-08-17 18:09:40.819847 2022-08-17 18:09:47.395106 \N \N f \N f \N \N \N \N \N
661 227 -1 2 \N 2022-08-17 18:09:27.528973 2022-08-17 18:09:47.45069 \N \N f \N f \N \N \N \N \N
662 227 20 2 \N 2022-08-17 18:09:40.26835 2022-08-17 18:09:47.508237 \N \N f \N f \N \N \N \N \N
663 227 27 2 \N 2022-08-17 18:09:43.836541 2022-08-17 18:09:47.570583 \N \N f \N f \N \N \N \N \N
664 227 23 2 \N 2022-08-17 18:09:43.016426 2022-08-17 18:09:47.639415 \N \N f \N f \N \N \N \N \N
665 227 18 2 \N 2022-08-17 18:09:20.094727 2022-08-17 18:09:47.705325 \N \N f \N f \N \N \N \N \N
666 227 22 2 \N 2022-08-17 18:09:16.746598 2022-08-17 18:09:47.764061 \N \N f \N f \N \N \N \N \N
667 227 2 2 \N 2022-08-17 18:09:43.733661 2022-08-17 18:09:47.815742 \N \N f \N f \N \N \N \N \N
668 228 16 2 \N 2022-08-17 18:09:39.108277 2022-08-17 18:09:47.964786 \N \N f \N f \N \N \N \N \N
669 228 20 2 \N 2022-08-17 18:09:47.326647 2022-08-17 18:09:48.03185 \N \N f \N f \N \N \N \N \N
670 228 -1 2 \N 2022-08-17 18:09:27.641199 2022-08-17 18:09:48.085046 \N \N f \N f \N \N \N \N \N
671 228 14 2 \N 2022-08-17 18:09:33.427861 2022-08-17 18:09:48.138647 \N \N f \N f \N \N \N \N \N
672 229 7 2 \N 2021-04-17 04:15:06.038085 2022-08-17 18:09:48.35622 \N \N f \N f \N \N \N \N \N
673 230 18 2 \N 2021-09-03 06:37:34.360555 2022-08-17 18:09:48.510139 \N \N f \N f \N \N \N \N \N
674 230 5 2 \N 2021-12-04 03:50:11.596175 2022-08-17 18:09:48.554864 \N \N f \N f \N \N \N \N \N
675 230 22 2 \N 2021-12-28 00:04:42.618366 2022-08-17 18:09:48.596809 \N \N f \N f \N \N \N \N \N
676 230 16 2 \N 2022-02-09 19:07:36.124595 2022-08-17 18:09:48.641727 \N \N f \N f \N \N \N \N \N
677 230 19 2 \N 2021-09-09 22:52:58.337044 2022-08-17 18:09:48.690658 \N \N f \N f \N \N \N \N \N
678 230 27 2 \N 2021-11-18 03:30:31.644956 2022-08-17 18:09:48.732301 \N \N f \N f \N \N \N \N \N
679 231 28 2 \N 2022-07-20 19:05:38.012709 2022-08-17 18:09:48.886432 \N \N f \N f \N \N \N \N \N
680 231 22 2 \N 2022-01-18 10:19:05.828935 2022-08-17 18:09:48.950478 \N \N f \N f \N \N \N \N \N
681 232 18 2 \N 2022-08-11 01:02:46.787 2022-08-17 18:09:49.101043 \N \N f \N f \N \N \N \N \N
682 232 25 2 \N 2022-08-08 10:48:45.527888 2022-08-17 18:09:49.162955 \N \N f \N f \N \N \N \N \N
683 232 14 2 \N 2022-08-13 18:29:25.425773 2022-08-17 18:09:49.211071 \N \N f \N f \N \N \N \N \N
684 232 23 2 \N 2022-08-06 20:27:28.777956 2022-08-17 18:09:49.266154 \N \N f \N f \N \N \N \N \N
685 232 24 2 \N 2022-08-05 19:01:19.015516 2022-08-17 18:09:49.317632 \N \N f \N f \N \N \N \N \N
686 232 2 2 \N 2022-08-15 01:33:53.808744 2022-08-17 18:09:49.367548 \N \N f \N f \N \N \N \N \N
687 233 13 2 \N 2022-08-16 19:07:07.254695 2022-08-17 18:09:49.515215 \N \N f \N f \N \N \N \N \N
688 234 28 2 \N 2022-08-17 14:10:23.294531 2022-08-17 18:09:49.677059 \N \N f \N f \N \N \N \N \N
689 234 6 2 \N 2022-08-17 14:32:48.340675 2022-08-17 18:09:49.743259 \N \N f \N f \N \N \N \N \N
690 234 17 2 \N 2022-08-17 16:53:00.840196 2022-08-17 18:09:49.794008 \N \N f \N f \N \N \N \N \N
691 234 21 2 \N 2022-08-17 16:48:03.468311 2022-08-17 18:09:49.854468 \N \N f \N f \N \N \N \N \N
692 234 23 2 \N 2022-08-17 16:48:03.93826 2022-08-17 18:09:49.907781 \N \N f \N f \N \N \N \N \N
693 235 21 2 \N 2022-08-17 15:38:51.351169 2022-08-17 18:09:50.048231 \N \N f \N f \N \N \N \N \N
694 235 14 2 \N 2022-08-17 15:56:13.856929 2022-08-17 18:09:50.115322 \N \N f \N f \N \N \N \N \N
695 235 12 2 \N 2022-08-17 17:17:23.679203 2022-08-17 18:09:50.167199 \N \N f \N f \N \N \N \N \N
696 235 10 2 \N 2022-08-17 14:53:00.229975 2022-08-17 18:09:50.232487 \N \N f \N f \N \N \N \N \N
697 237 17 2 \N 2022-08-17 17:00:13.003783 2022-08-17 18:09:50.526727 \N \N f \N f \N \N \N \N \N
698 237 11 2 \N 2022-08-17 16:54:14.10464 2022-08-17 18:09:50.575187 \N \N f \N f \N \N \N \N \N
699 237 16 2 \N 2022-08-17 16:57:28.514317 2022-08-17 18:09:50.626721 \N \N f \N f \N \N \N \N \N
700 237 25 2 \N 2022-08-17 16:46:45.765897 2022-08-17 18:09:50.679749 \N \N f \N f \N \N \N \N \N
701 237 2 2 \N 2022-08-17 16:59:24.998449 2022-08-17 18:09:50.727822 \N \N f \N f \N \N \N \N \N
702 238 -1 2 \N 2022-08-17 17:30:28.933741 2022-08-17 18:09:50.892437 \N \N f \N f \N \N \N \N \N
703 238 5 2 \N 2022-08-17 17:55:24.972417 2022-08-17 18:09:50.958096 \N \N f \N f \N \N \N \N \N
704 238 11 2 \N 2022-08-17 18:04:40.955637 2022-08-17 18:09:51.009415 \N \N f \N f \N \N \N \N \N
705 238 28 2 \N 2022-08-17 17:38:36.727824 2022-08-17 18:09:51.056368 \N \N f \N f \N \N \N \N \N
706 238 9 2 \N 2022-08-17 18:03:27.48889 2022-08-17 18:09:51.102362 \N \N f \N f \N \N \N \N \N
707 240 25 2 \N 2022-08-17 18:01:40.091069 2022-08-17 18:09:51.313498 \N \N f \N f \N \N \N \N \N
708 240 13 2 \N 2022-08-17 18:08:10.136326 2022-08-17 18:09:51.38067 \N \N f \N f \N \N \N \N \N
709 240 2 2 \N 2022-08-17 18:02:35.076991 2022-08-17 18:09:51.42849 \N \N f \N f \N \N \N \N \N
710 240 18 2 \N 2022-08-17 18:07:10.493536 2022-08-17 18:09:51.47928 \N \N f \N f \N \N \N \N \N
711 240 20 2 \N 2022-08-17 18:08:43.980424 2022-08-17 18:09:51.530512 \N \N f \N f \N \N \N \N \N
712 240 14 2 \N 2022-08-17 18:02:09.618302 2022-08-17 18:09:51.583694 \N \N f \N f \N \N \N \N \N
713 240 28 2 \N 2022-08-17 18:02:53.831484 2022-08-17 18:09:51.635532 \N \N f \N f \N \N \N \N \N
714 240 19 2 \N 2022-08-17 18:09:37.90997 2022-08-17 18:09:51.688163 \N \N f \N f \N \N \N \N \N
715 247 23 2 \N 2022-06-02 21:42:14.414575 2022-08-17 18:09:52.429281 \N \N f \N f \N \N \N \N \N
716 248 1 2 \N 2022-07-28 00:50:13.378722 2022-08-17 18:09:52.596697 \N \N f \N f \N \N \N \N \N
717 249 1 2 \N 2022-08-13 18:40:24.802903 2022-08-17 18:09:52.76808 \N \N f \N f \N \N \N \N \N
718 252 1 2 \N 2022-08-17 16:49:53.036299 2022-08-17 18:09:53.216029 \N \N f \N f \N \N \N \N \N
719 253 1 2 \N 2022-08-17 18:03:09.519469 2022-08-17 18:09:53.401293 \N \N f \N f \N \N \N \N \N
720 254 15 2 \N 2021-12-30 01:32:00.666872 2022-08-17 18:09:53.642701 \N \N f \N f \N \N \N \N \N
721 259 15 2 \N 2022-08-17 14:05:33.730217 2022-08-17 18:09:54.204349 \N \N f \N f \N \N \N \N \N
722 261 8 2 \N 2022-08-16 07:24:15.323856 2022-08-17 18:09:54.469352 \N \N f \N f \N \N \N \N \N
723 262 18 2 \N 2022-08-16 12:58:55.430058 2022-08-17 18:09:54.609177 \N \N f \N f \N \N \N \N \N
724 262 2 2 \N 2022-08-16 20:54:49.94597 2022-08-17 18:09:54.671801 \N \N f \N f \N \N \N \N \N
725 262 10 2 \N 2022-08-16 16:38:37.188396 2022-08-17 18:09:54.720463 \N \N f \N f \N \N \N \N \N
726 262 13 2 \N 2022-08-17 13:52:23.740186 2022-08-17 18:09:54.771016 \N \N f \N f \N \N \N \N \N
727 262 27 2 \N 2022-08-15 22:45:18.619154 2022-08-17 18:09:54.818881 \N \N f \N f \N \N \N \N \N
728 262 26 2 \N 2022-08-16 22:12:11.437534 2022-08-17 18:09:54.873376 \N \N f \N f \N \N \N \N \N
729 262 15 2 \N 2022-08-15 15:15:12.210097 2022-08-17 18:09:54.921981 \N \N f \N f \N \N \N \N \N
730 262 28 2 \N 2022-08-16 00:16:40.819902 2022-08-17 18:09:54.970541 \N \N f \N f \N \N \N \N \N
731 263 5 2 \N 2022-08-16 20:54:45.13371 2022-08-17 18:09:55.10451 \N \N f \N f \N \N \N \N \N
732 263 22 2 \N 2022-08-16 02:12:23.64013 2022-08-17 18:09:55.168674 \N \N f \N f \N \N \N \N \N
733 263 16 2 \N 2022-08-16 21:18:55.127927 2022-08-17 18:09:55.216179 \N \N f \N f \N \N \N \N \N
734 263 24 2 \N 2022-08-16 23:03:53.353875 2022-08-17 18:09:55.263215 \N \N f \N f \N \N \N \N \N
735 263 7 2 \N 2022-08-15 20:14:53.459698 2022-08-17 18:09:55.310634 \N \N f \N f \N \N \N \N \N
736 263 3 2 \N 2022-08-16 08:57:40.66668 2022-08-17 18:09:55.360032 \N \N f \N f \N \N \N \N \N
737 263 4 2 \N 2022-08-16 19:57:30.315071 2022-08-17 18:09:55.408645 \N \N f \N f \N \N \N \N \N
738 264 25 2 \N 2022-08-17 16:16:56.256791 2022-08-17 18:09:55.548571 \N \N f \N f \N \N \N \N \N
739 264 6 2 \N 2022-08-17 17:25:58.072173 2022-08-17 18:09:55.60877 \N \N f \N f \N \N \N \N \N
740 264 7 2 \N 2022-08-17 13:35:37.214649 2022-08-17 18:09:55.656037 \N \N f \N f \N \N \N \N \N
741 264 -2 2 \N 2022-08-17 15:55:06.405321 2022-08-17 18:09:55.708713 \N \N f \N f \N \N \N \N \N
742 264 4 2 \N 2022-08-17 14:31:27.550488 2022-08-17 18:09:55.770324 \N \N f \N f \N \N \N \N \N
743 264 22 2 \N 2022-08-17 14:10:01.138425 2022-08-17 18:09:55.833854 \N \N f \N f \N \N \N \N \N
744 264 14 2 \N 2022-08-17 12:25:57.257959 2022-08-17 18:09:55.900193 \N \N f \N f \N \N \N \N \N
745 265 -2 2 \N 2022-08-17 18:01:08.101309 2022-08-17 18:09:56.055885 \N \N f \N f \N \N \N \N \N
746 265 13 2 \N 2022-08-17 18:09:13.714906 2022-08-17 18:09:56.129531 \N \N f \N f \N \N \N \N \N
747 266 9 2 \N 2022-08-17 18:07:33.360319 2022-08-17 18:09:56.285479 \N \N f \N f \N \N \N \N \N
748 266 -2 2 \N 2022-08-17 18:08:03.316185 2022-08-17 18:09:56.356504 \N \N f \N f \N \N \N \N \N
749 266 13 2 \N 2022-08-17 18:06:09.494086 2022-08-17 18:09:56.448956 \N \N f \N f \N \N \N \N \N
750 266 23 2 \N 2022-08-17 18:06:38.372766 2022-08-17 18:09:56.531302 \N \N f \N f \N \N \N \N \N
751 266 28 2 \N 2022-08-17 18:06:37.60436 2022-08-17 18:09:56.599308 \N \N f \N f \N \N \N \N \N
752 267 3 2 \N 2022-08-09 09:32:44.473131 2022-08-17 18:09:56.789077 \N \N f \N f \N \N \N \N \N
753 267 1 2 \N 2022-05-30 05:52:38.90812 2022-08-17 18:09:56.868808 \N \N f \N f \N \N \N \N \N
754 268 14 2 \N 2022-08-15 17:26:30.007119 2022-08-17 18:09:57.020848 \N \N f \N f \N \N \N \N \N
755 268 7 2 \N 2022-08-14 19:29:40.750591 2022-08-17 18:09:57.086966 \N \N f \N f \N \N \N \N \N
756 268 19 2 \N 2022-08-14 07:59:31.10415 2022-08-17 18:09:57.1421 \N \N f \N f \N \N \N \N \N
757 268 20 2 \N 2022-08-15 01:17:13.288007 2022-08-17 18:09:57.192652 \N \N f \N f \N \N \N \N \N
758 268 6 2 \N 2022-08-17 03:02:35.480544 2022-08-17 18:09:57.247144 \N \N f \N f \N \N \N \N \N
759 268 15 2 \N 2022-08-12 22:49:12.222454 2022-08-17 18:09:57.302827 \N \N f \N f \N \N \N \N \N
760 269 16 2 \N 2022-08-16 02:21:47.949193 2022-08-17 18:09:57.460071 \N \N f \N f \N \N \N \N \N
761 269 20 2 \N 2022-08-17 02:38:29.851121 2022-08-17 18:09:57.539177 \N \N f \N f \N \N \N \N \N
762 269 23 2 \N 2022-08-16 07:40:26.989181 2022-08-17 18:09:57.596047 \N \N f \N f \N \N \N \N \N
763 269 19 2 \N 2022-08-15 06:39:48.128578 2022-08-17 18:09:57.644031 \N \N f \N f \N \N \N \N \N
764 269 21 2 \N 2022-08-15 21:57:49.675076 2022-08-17 18:09:57.691496 \N \N f \N f \N \N \N \N \N
765 270 12 2 \N 2022-08-15 19:28:28.226747 2022-08-17 18:09:57.84071 \N \N f \N f \N \N \N \N \N
766 270 27 2 \N 2022-08-16 21:42:06.17036 2022-08-17 18:09:57.919183 \N \N f \N f \N \N \N \N \N
767 270 26 2 \N 2022-08-15 18:57:23.047716 2022-08-17 18:09:57.984786 \N \N f \N f \N \N \N \N \N
768 270 7 2 \N 2022-08-15 18:28:42.958031 2022-08-17 18:09:58.054974 \N \N f \N f \N \N \N \N \N
769 270 15 2 \N 2022-08-17 11:53:20.69486 2022-08-17 18:09:58.134236 \N \N f \N f \N \N \N \N \N
770 270 19 2 \N 2022-08-15 19:46:20.555996 2022-08-17 18:09:58.194619 \N \N f \N f \N \N \N \N \N
771 270 8 2 \N 2022-08-16 11:13:14.55465 2022-08-17 18:09:58.253432 \N \N f \N f \N \N \N \N \N
772 271 23 2 \N 2022-08-15 23:11:24.733877 2022-08-17 18:09:58.447524 \N \N f \N f \N \N \N \N \N
773 272 7 2 \N 2022-07-19 12:15:50.760142 2022-08-17 18:09:58.63794 \N \N f \N f \N \N \N \N \N
774 273 14 2 \N 2022-03-31 08:36:24.30855 2022-08-17 18:09:58.817148 \N \N f \N f \N \N \N \N \N
775 274 23 2 \N 2022-07-07 05:20:27.501649 2022-08-17 18:09:58.984626 \N \N f \N f \N \N \N \N \N
776 276 14 2 \N 2022-08-17 16:33:28.18446 2022-08-17 18:09:59.237297 \N \N f \N f \N \N \N \N \N
777 277 7 2 \N 2022-08-17 10:18:06.362611 2022-08-17 18:09:59.56608 \N \N f \N f \N \N \N \N \N
778 277 14 2 \N 2022-08-17 15:05:21.063092 2022-08-17 18:09:59.634404 \N \N f \N f \N \N \N \N \N
779 279 19 2 \N 2022-08-17 16:49:29.630748 2022-08-17 18:09:59.889269 \N \N f \N f \N \N \N \N \N
780 279 14 2 \N 2022-08-17 16:55:01.790464 2022-08-17 18:09:59.958107 \N \N f \N f \N \N \N \N \N
781 281 19 2 \N 2022-08-17 18:09:30.337215 2022-08-17 18:10:00.179002 \N \N f \N f \N \N \N \N \N
782 283 19 2 \N 2022-08-17 18:09:56.931907 2022-08-17 18:10:00.442219 \N \N f \N f \N \N \N \N \N
783 283 14 2 \N 2022-08-17 18:09:51.617601 2022-08-17 18:10:00.525223 \N \N f \N f \N \N \N \N \N
784 284 14 2 \N 2022-08-17 18:09:57.694519 2022-08-17 18:10:00.683059 \N \N f \N f \N \N \N \N \N
785 284 19 2 \N 2022-08-17 18:09:56.70427 2022-08-17 18:10:00.747643 \N \N f \N f \N \N \N \N \N
786 285 8 2 \N 2021-09-02 11:18:29.065591 2022-08-17 18:10:00.976547 \N \N f \N f \N \N \N \N \N
787 285 20 2 \N 2022-06-04 04:59:30.661208 2022-08-17 18:10:01.044139 \N \N f \N f \N \N \N \N \N
788 286 16 2 \N 2022-05-03 10:51:43.316891 2022-08-17 18:10:01.189525 \N \N f \N f \N \N \N \N \N
789 286 25 2 \N 2022-04-19 15:51:02.958999 2022-08-17 18:10:01.238438 \N \N f \N f \N \N \N \N \N
790 286 7 2 \N 2022-07-26 13:58:41.023163 2022-08-17 18:10:01.285167 \N \N f \N f \N \N \N \N \N
791 286 -2 2 \N 2021-11-21 12:56:30.70749 2022-08-17 18:10:01.33731 \N \N f \N f \N \N \N \N \N
792 286 14 2 \N 2022-03-31 19:10:23.055718 2022-08-17 18:10:01.381868 \N \N f \N f \N \N \N \N \N
793 286 21 2 \N 2022-01-25 08:55:03.702935 2022-08-17 18:10:01.425576 \N \N f \N f \N \N \N \N \N
794 286 11 2 \N 2022-05-01 01:44:32.369106 2022-08-17 18:10:01.468161 \N \N f \N f \N \N \N \N \N
795 287 -1 2 \N 2022-07-13 15:03:09.68376 2022-08-17 18:10:01.609677 \N \N f \N f \N \N \N \N \N
796 287 11 2 \N 2022-07-24 22:00:40.925763 2022-08-17 18:10:01.678679 \N \N f \N f \N \N \N \N \N
797 287 28 2 \N 2022-07-30 17:40:04.454278 2022-08-17 18:10:01.730673 \N \N f \N f \N \N \N \N \N
798 287 20 2 \N 2022-06-18 23:05:43.574315 2022-08-17 18:10:01.782712 \N \N f \N f \N \N \N \N \N
799 287 2 2 \N 2022-08-05 21:51:05.644412 2022-08-17 18:10:01.839477 \N \N f \N f \N \N \N \N \N
800 287 -2 2 \N 2022-06-22 17:17:11.076762 2022-08-17 18:10:01.900912 \N \N f \N f \N \N \N \N \N
801 287 21 2 \N 2022-08-06 00:28:44.211727 2022-08-17 18:10:01.960083 \N \N f \N f \N \N \N \N \N
802 287 14 2 \N 2022-08-07 20:14:04.028389 2022-08-17 18:10:02.016761 \N \N f \N f \N \N \N \N \N
803 287 25 2 \N 2022-07-27 11:32:36.398099 2022-08-17 18:10:02.068486 \N \N f \N f \N \N \N \N \N
804 288 14 2 \N 2022-07-04 00:29:25.081849 2022-08-17 18:10:02.209494 \N \N f \N f \N \N \N \N \N
805 288 2 2 \N 2022-07-01 23:38:22.359302 2022-08-17 18:10:02.277212 \N \N f \N f \N \N \N \N \N
806 288 7 2 \N 2022-07-20 13:30:35.189969 2022-08-17 18:10:02.329644 \N \N f \N f \N \N \N \N \N
807 288 -1 2 \N 2022-07-23 01:19:49.265716 2022-08-17 18:10:02.380756 \N \N f \N f \N \N \N \N \N
808 288 20 2 \N 2022-08-06 14:45:38.41073 2022-08-17 18:10:02.431048 \N \N f \N f \N \N \N \N \N
809 288 8 2 \N 2022-08-06 14:30:01.743412 2022-08-17 18:10:02.484156 \N \N f \N f \N \N \N \N \N
810 289 11 2 \N 2022-08-05 08:41:56.057327 2022-08-17 18:10:02.628329 \N \N f \N f \N \N \N \N \N
811 289 16 2 \N 2022-08-12 14:58:58.553766 2022-08-17 18:10:02.697273 \N \N f \N f \N \N \N \N \N
812 289 25 2 \N 2022-08-07 07:30:08.180486 2022-08-17 18:10:02.748414 \N \N f \N f \N \N \N \N \N
813 289 8 2 \N 2022-08-08 23:41:41.782271 2022-08-17 18:10:02.806754 \N \N f \N f \N \N \N \N \N
814 289 2 2 \N 2022-08-14 17:49:02.955009 2022-08-17 18:10:02.858083 \N \N f \N f \N \N \N \N \N
815 289 -2 2 \N 2022-08-06 09:11:32.504906 2022-08-17 18:10:02.908228 \N \N f \N f \N \N \N \N \N
816 289 -1 2 \N 2022-08-05 01:28:13.371919 2022-08-17 18:10:02.970455 \N \N f \N f \N \N \N \N \N
817 289 14 2 \N 2022-08-03 08:56:12.982779 2022-08-17 18:10:03.023589 \N \N f \N f \N \N \N \N \N
818 289 20 2 \N 2022-08-10 02:35:13.592171 2022-08-17 18:10:03.082877 \N \N f \N f \N \N \N \N \N
819 290 12 2 \N 2022-08-14 03:50:02.353712 2022-08-17 18:10:03.244068 \N \N f \N f \N \N \N \N \N
820 290 -2 2 \N 2022-08-15 19:48:32.253811 2022-08-17 18:10:03.32279 \N \N f \N f \N \N \N \N \N
821 290 14 2 \N 2022-08-11 20:08:49.651859 2022-08-17 18:10:03.387783 \N \N f \N f \N \N \N \N \N
822 290 20 2 \N 2022-08-16 00:27:04.687999 2022-08-17 18:10:03.448566 \N \N f \N f \N \N \N \N \N
823 290 18 2 \N 2022-08-12 20:18:19.929208 2022-08-17 18:10:03.509705 \N \N f \N f \N \N \N \N \N
824 290 11 2 \N 2022-08-12 12:10:10.273473 2022-08-17 18:10:03.565914 \N \N f \N f \N \N \N \N \N
825 290 25 2 \N 2022-08-09 04:40:44.856256 2022-08-17 18:10:03.623852 \N \N f \N f \N \N \N \N \N
826 290 7 2 \N 2022-08-08 09:29:17.125559 2022-08-17 18:10:03.677845 \N \N f \N f \N \N \N \N \N
827 290 2 2 \N 2022-08-08 09:26:29.18743 2022-08-17 18:10:03.738005 \N \N f \N f \N \N \N \N \N
828 290 -1 2 \N 2022-08-11 17:06:52.144446 2022-08-17 18:10:03.794407 \N \N f \N f \N \N \N \N \N
829 291 8 2 \N 2022-08-16 02:05:48.732573 2022-08-17 18:10:03.935966 \N \N f \N f \N \N \N \N \N
830 291 7 2 \N 2022-08-16 11:56:33.384225 2022-08-17 18:10:03.999266 \N \N f \N f \N \N \N \N \N
831 291 21 2 \N 2022-08-15 15:06:33.291726 2022-08-17 18:10:04.05676 \N \N f \N f \N \N \N \N \N
832 291 28 2 \N 2022-08-16 09:34:08.258909 2022-08-17 18:10:04.124177 \N \N f \N f \N \N \N \N \N
833 291 20 2 \N 2022-08-16 19:29:10.288968 2022-08-17 18:10:04.186032 \N \N f \N f \N \N \N \N \N
834 291 12 2 \N 2022-08-16 20:46:28.12211 2022-08-17 18:10:04.240746 \N \N f \N f \N \N \N \N \N
835 291 -1 2 \N 2022-08-17 16:35:52.668966 2022-08-17 18:10:04.297704 \N \N f \N f \N \N \N \N \N
836 292 11 2 \N 2022-08-17 02:16:46.6588 2022-08-17 18:10:04.443362 \N \N f \N f \N \N \N \N \N
837 292 28 2 \N 2022-08-16 20:21:28.302625 2022-08-17 18:10:04.509169 \N \N f \N f \N \N \N \N \N
838 292 16 2 \N 2022-08-17 09:21:48.485669 2022-08-17 18:10:04.561019 \N \N f \N f \N \N \N \N \N
839 292 14 2 \N 2022-08-17 02:08:36.949222 2022-08-17 18:10:04.617017 \N \N f \N f \N \N \N \N \N
840 292 7 2 \N 2022-08-17 08:35:23.853697 2022-08-17 18:10:04.678974 \N \N f \N f \N \N \N \N \N
841 292 21 2 \N 2022-08-17 06:41:54.620211 2022-08-17 18:10:04.739225 \N \N f \N f \N \N \N \N \N
842 292 -1 2 \N 2022-08-16 09:58:17.212639 2022-08-17 18:10:04.798225 \N \N f \N f \N \N \N \N \N
843 292 -2 2 \N 2022-08-16 19:15:18.473402 2022-08-17 18:10:04.857715 \N \N f \N f \N \N \N \N \N
844 292 8 2 \N 2022-08-17 02:14:31.237643 2022-08-17 18:10:04.912438 \N \N f \N f \N \N \N \N \N
845 292 2 2 \N 2022-08-16 11:28:38.174719 2022-08-17 18:10:04.96564 \N \N f \N f \N \N \N \N \N
846 293 7 2 \N 2022-08-17 17:23:20.688625 2022-08-17 18:10:05.127431 \N \N f \N f \N \N \N \N \N
847 293 -1 2 \N 2022-08-17 16:05:16.791795 2022-08-17 18:10:05.195185 \N \N f \N f \N \N \N \N \N
848 293 11 2 \N 2022-08-17 15:48:16.260074 2022-08-17 18:10:05.257183 \N \N f \N f \N \N \N \N \N
849 295 12 2 \N 2022-08-17 17:55:47.926666 2022-08-17 18:10:05.48011 \N \N f \N f \N \N \N \N \N
850 295 2 2 \N 2022-08-17 17:58:17.316124 2022-08-17 18:10:05.551843 \N \N f \N f \N \N \N \N \N
851 295 20 2 \N 2022-08-17 18:05:50.188717 2022-08-17 18:10:05.604636 \N \N f \N f \N \N \N \N \N
852 295 11 2 \N 2022-08-17 18:06:32.057298 2022-08-17 18:10:05.656131 \N \N f \N f \N \N \N \N \N
853 295 28 2 \N 2022-08-17 17:52:09.150484 2022-08-17 18:10:05.709419 \N \N f \N f \N \N \N \N \N
854 295 14 2 \N 2022-08-17 18:06:08.815246 2022-08-17 18:10:05.764424 \N \N f \N f \N \N \N \N \N
855 295 7 2 \N 2022-08-17 18:03:06.981569 2022-08-17 18:10:05.821926 \N \N f \N f \N \N \N \N \N
856 295 16 2 \N 2022-08-17 18:05:12.396191 2022-08-17 18:10:05.883471 \N \N f \N f \N \N \N \N \N
857 296 10 2 \N 2021-10-07 01:04:46.276055 2022-08-17 18:10:06.099383 \N \N f \N f \N \N \N \N \N
858 296 25 2 \N 2021-12-01 17:36:20.273821 2022-08-17 18:10:06.162354 \N \N f \N f \N \N \N \N \N
859 296 27 2 \N 2021-07-04 12:37:37.603619 2022-08-17 18:10:06.216085 \N \N f \N f \N \N \N \N \N
860 296 1 2 \N 2022-02-01 05:28:55.648508 2022-08-17 18:10:06.267167 \N \N f \N f \N \N \N \N \N
861 296 19 2 \N 2022-05-16 17:12:46.612593 2022-08-17 18:10:06.316547 \N \N f \N f \N \N \N \N \N
862 296 4 2 \N 2022-04-01 18:04:11.40756 2022-08-17 18:10:06.364221 \N \N f \N f \N \N \N \N \N
863 297 19 2 \N 2021-12-01 00:47:16.842365 2022-08-17 18:10:06.501061 \N \N f \N f \N \N \N \N \N
864 297 16 2 \N 2022-01-18 03:46:21.863883 2022-08-17 18:10:06.570077 \N \N f \N f \N \N \N \N \N
865 298 1 2 \N 2022-01-18 10:15:46.159127 2022-08-17 18:10:06.71341 \N \N f \N f \N \N \N \N \N
866 298 12 2 \N 2022-04-02 00:03:05.736445 2022-08-17 18:10:06.758304 \N \N f \N f \N \N \N \N \N
867 298 6 2 \N 2022-06-15 05:01:28.55516 2022-08-17 18:10:06.804439 \N \N f \N f \N \N \N \N \N
868 299 3 2 \N 2022-03-15 00:46:08.559701 2022-08-17 18:10:07.083171 \N \N f \N f \N \N \N \N \N
869 300 23 2 \N 2022-05-28 08:06:14.340252 2022-08-17 18:10:07.265023 \N \N f \N f \N \N \N \N \N
870 301 11 2 \N 2022-07-04 00:21:39.792348 2022-08-17 18:10:07.424234 \N \N f \N f \N \N \N \N \N
871 301 3 2 \N 2022-08-01 21:45:10.004456 2022-08-17 18:10:07.48526 \N \N f \N f \N \N \N \N \N
872 301 -1 2 \N 2022-07-07 22:28:08.406566 2022-08-17 18:10:07.537553 \N \N f \N f \N \N \N \N \N
873 301 18 2 \N 2022-08-17 10:11:13.561925 2022-08-17 18:10:07.587381 \N \N f \N f \N \N \N \N \N
874 301 20 2 \N 2022-08-15 11:11:24.377032 2022-08-17 18:10:07.637479 \N \N f \N f \N \N \N \N \N
875 301 16 2 \N 2022-08-08 05:20:21.259586 2022-08-17 18:10:07.687463 \N \N f \N f \N \N \N \N \N
876 301 2 2 \N 2022-08-06 08:05:22.698886 2022-08-17 18:10:07.742153 \N \N f \N f \N \N \N \N \N
877 301 -2 2 \N 2022-07-09 01:54:38.353219 2022-08-17 18:10:07.798673 \N \N f \N f \N \N \N \N \N
878 303 21 2 \N 2022-07-08 19:45:57.948119 2022-08-17 18:10:08.07229 \N \N f \N f \N \N \N \N \N
879 303 25 2 \N 2022-02-14 22:53:54.191014 2022-08-17 18:10:08.141242 \N \N f \N f \N \N \N \N \N
880 303 1 2 \N 2022-03-06 20:02:01.87529 2022-08-17 18:10:08.196427 \N \N f \N f \N \N \N \N \N
881 303 6 2 \N 2021-05-25 20:52:36.039396 2022-08-17 18:10:08.250452 \N \N f \N f \N \N \N \N \N
882 304 20 2 \N 2022-06-01 08:56:28.697405 2022-08-17 18:10:08.402504 \N \N f \N f \N \N \N \N \N
883 304 2 2 \N 2022-01-13 20:07:58.046663 2022-08-17 18:10:08.4863 \N \N f \N f \N \N \N \N \N
884 304 1 2 \N 2021-09-04 21:07:02.291739 2022-08-17 18:10:08.543179 \N \N f \N f \N \N \N \N \N
885 305 14 2 \N 2022-07-30 22:25:24.576308 2022-08-17 18:10:08.687434 \N \N f \N f \N \N \N \N \N
886 305 26 2 \N 2022-08-01 07:55:25.079721 2022-08-17 18:10:08.751623 \N \N f \N f \N \N \N \N \N
887 305 3 2 \N 2022-08-05 20:10:12.071626 2022-08-17 18:10:08.805893 \N \N f \N f \N \N \N \N \N
888 305 6 2 \N 2022-08-13 14:47:12.44085 2022-08-17 18:10:08.869447 \N \N f \N f \N \N \N \N \N
889 305 9 2 \N 2022-08-11 22:57:54.513617 2022-08-17 18:10:08.924801 \N \N f \N f \N \N \N \N \N
890 305 16 2 \N 2022-07-26 12:56:47.279986 2022-08-17 18:10:08.976309 \N \N f \N f \N \N \N \N \N
891 306 6 2 \N 2022-08-17 15:22:00.850738 2022-08-17 18:10:09.129666 \N \N f \N f \N \N \N \N \N
892 307 10 2 \N 2022-08-17 17:55:38.041 2022-08-17 18:10:09.306234 \N \N f \N f \N \N \N \N \N
893 307 15 2 \N 2022-08-17 16:12:32.974852 2022-08-17 18:10:09.364453 \N \N f \N f \N \N \N \N \N
894 308 28 2 \N 2022-08-17 17:40:43.795425 2022-08-17 18:10:09.503964 \N \N f \N f \N \N \N \N \N
895 308 23 2 \N 2022-08-17 18:06:38.370235 2022-08-17 18:10:09.568445 \N \N f \N f \N \N \N \N \N
896 309 11 2 \N 2022-08-17 18:03:18.454681 2022-08-17 18:10:09.71377 \N \N f \N f \N \N \N \N \N
897 309 16 2 \N 2022-08-17 18:08:41.485614 2022-08-17 18:10:09.774078 \N \N f \N f \N \N \N \N \N
898 309 4 2 \N 2022-08-17 18:09:19.614344 2022-08-17 18:10:09.824635 \N \N f \N f \N \N \N \N \N
899 309 12 2 \N 2022-08-17 18:03:15.938233 2022-08-17 18:10:09.873652 \N \N f \N f \N \N \N \N \N
900 309 20 2 \N 2022-08-17 18:04:20.734199 2022-08-17 18:10:09.923589 \N \N f \N f \N \N \N \N \N
901 310 14 2 \N 2022-08-17 18:07:28.42091 2022-08-17 18:10:10.06212 \N \N f \N f \N \N \N \N \N
902 310 2 2 \N 2022-08-17 18:02:28.165325 2022-08-17 18:10:10.131925 \N \N f \N f \N \N \N \N \N
903 310 4 2 \N 2022-08-17 18:03:42.394077 2022-08-17 18:10:10.18878 \N \N f \N f \N \N \N \N \N
904 313 6 2 \N 2022-08-17 18:10:07.415403 2022-08-17 18:10:10.521428 \N \N f \N f \N \N \N \N \N
905 313 18 2 \N 2022-08-17 18:10:08.219433 2022-08-17 18:10:10.587193 \N \N f \N f \N \N \N \N \N
906 313 12 2 \N 2022-08-17 18:08:22.789107 2022-08-17 18:10:10.63637 \N \N f \N f \N \N \N \N \N
907 313 26 2 \N 2022-08-17 18:08:12.684267 2022-08-17 18:10:10.686223 \N \N f \N f \N \N \N \N \N
908 314 22 2 \N 2022-08-17 18:10:00.572452 2022-08-17 18:10:10.833893 \N \N f \N f \N \N \N \N \N
\.
--
-- Data for Name: post_custom_fields; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_custom_fields (id, post_id, name, value, created_at, updated_at) FROM stdin;
1 39 notice {"type":"new_user"} 2022-08-17 18:08:52.011981 2022-08-17 18:08:52.011981
2 40 notice {"type":"new_user"} 2022-08-17 18:08:52.650792 2022-08-17 18:08:52.650792
3 41 notice {"type":"new_user"} 2022-08-17 18:08:53.343708 2022-08-17 18:08:53.343708
4 42 notice {"type":"new_user"} 2022-08-17 18:08:53.491959 2022-08-17 18:08:53.491959
5 43 notice {"type":"new_user"} 2022-08-17 18:08:54.08503 2022-08-17 18:08:54.08503
6 46 notice {"type":"new_user"} 2022-08-17 18:08:55.258039 2022-08-17 18:08:55.258039
7 47 notice {"type":"new_user"} 2022-08-17 18:08:55.67848 2022-08-17 18:08:55.67848
8 48 notice {"type":"new_user"} 2022-08-17 18:08:56.189238 2022-08-17 18:08:56.189238
9 50 notice {"type":"new_user"} 2022-08-17 18:08:56.958004 2022-08-17 18:08:56.958004
10 51 notice {"type":"new_user"} 2022-08-17 18:08:57.304916 2022-08-17 18:08:57.304916
11 52 notice {"type":"new_user"} 2022-08-17 18:08:57.500164 2022-08-17 18:08:57.500164
12 53 notice {"type":"new_user"} 2022-08-17 18:08:57.795471 2022-08-17 18:08:57.795471
13 56 notice {"type":"new_user"} 2022-08-17 18:08:58.317284 2022-08-17 18:08:58.317284
14 57 notice {"type":"new_user"} 2022-08-17 18:08:58.480161 2022-08-17 18:08:58.480161
15 58 notice {"type":"new_user"} 2022-08-17 18:08:58.978622 2022-08-17 18:08:58.978622
16 59 notice {"type":"new_user"} 2022-08-17 18:08:59.437898 2022-08-17 18:08:59.437898
17 60 notice {"type":"returning_user","last_posted_at":"2020-06-24T16:07:18Z"} 2022-08-17 18:08:59.757819 2022-08-17 18:08:59.757819
18 64 notice {"type":"new_user"} 2022-08-17 18:09:01.066373 2022-08-17 18:09:01.066373
19 65 notice {"type":"new_user"} 2022-08-17 18:09:01.220776 2022-08-17 18:09:01.220776
20 66 notice {"type":"new_user"} 2022-08-17 18:09:01.413336 2022-08-17 18:09:01.413336
21 69 notice {"type":"new_user"} 2022-08-17 18:09:02.506769 2022-08-17 18:09:02.506769
22 73 notice {"type":"new_user"} 2022-08-17 18:09:04.160653 2022-08-17 18:09:04.160653
23 83 notice {"type":"new_user"} 2022-08-17 18:09:07.220742 2022-08-17 18:09:07.220742
24 91 notice {"type":"new_user"} 2022-08-17 18:09:09.700907 2022-08-17 18:09:09.700907
25 96 notice {"type":"new_user"} 2022-08-17 18:09:11.393785 2022-08-17 18:09:11.393785
26 103 notice {"type":"new_user"} 2022-08-17 18:09:14.512902 2022-08-17 18:09:14.512902
27 105 notice {"type":"new_user"} 2022-08-17 18:09:15.221103 2022-08-17 18:09:15.221103
28 118 notice {"type":"new_user"} 2022-08-17 18:09:19.522204 2022-08-17 18:09:19.522204
29 126 notice {"type":"returning_user","last_posted_at":"2021-03-18T06:40:19Z"} 2022-08-17 18:09:22.171156 2022-08-17 18:09:22.171156
30 132 notice {"type":"new_user"} 2022-08-17 18:09:24.397604 2022-08-17 18:09:24.397604
31 312 is_accepted_answer true 2022-08-17 18:10:11.016835 2022-08-17 18:10:11.016835
\.
--
-- Data for Name: post_details; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_details (id, post_id, key, value, extra, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: post_hotlinked_media; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_hotlinked_media (id, post_id, url, status, upload_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: post_replies; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_replies (post_id, created_at, updated_at, reply_post_id) FROM stdin;
\.
--
-- Data for Name: post_reply_keys; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_reply_keys (id, user_id, post_id, reply_key, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: post_revisions; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_revisions (id, user_id, post_id, modifications, number, created_at, updated_at, hidden) FROM stdin;
\.
--
-- Data for Name: post_search_data; Type: TABLE DATA; Schema: public; Owner: -
--
COPY public.post_search_data (post_id, search_data, raw_data, locale, version, private_message) FROM stdin;
1 'categori':5A 'discuss':8 'feedback':4A,7B 'improv':21 'organ':13 'site':3A,6B,11 'work':16 Discussion about this site, its organization, how it works, and how we can improve it. en 4 f
2 'admin':16 'categori':4A,7 'discuss':10 'moder':18 'privat':6 'staff':3A,5B,9 'topic':11 'visibl':14 Private category for staff discussions. Topics are only visible to admins and moderators. en 4 f
3 '3':14 'categori':4A,7 'exclus':8 'higher':16 'level':13 'loung':3A,5B 'member':10 'trust':12 A category exclusive to members with trust level 3 and higher. en 4 f
4 '12':2112 '2018':2113 '3000':15 '50':1552 'aaa':1798 'abus':622,1778 'accept':81,83,300,302,313,315,1405 'acceptable-us':80,299,312 'access':396,538 'accord':296,939,1077 'account':97,99,336,794,796,804,815,827,854,875,887,894,909,922,935,993,1283,2082,2099,2148 'act':1590,1779 'action':871,1832 'add':416 'add-on':415 'address':381,686,840,845,2077,2156 'admit':1388 'advertis':366 'affect':152 'affili':473,1949 'agre':22,235,829,865,899,914,1037,1236,1257,1292,1349,1380,1383,1517,1582,1622,1731,2137,2183 'agreement':180,203,647,1400,1652,1663,1681,1937,1946,1994,2002,2009,2017,2034 'alert':2167 'alias':464 'allow':1126,1351,1422,1526 'also':1671,2160 'american':1790 'analyz':1133 'announc':2161 'anoth':334 'anyon':585,636,642 'appli':48,1179 'approv':1052 'arbitr':205,1791,1793,1794,1801,1810,1846,1854,1861,1868,1883 'asset':1968 'assign':1935,1944,1978 'associ':1792 'attempt':1977 'attorney':1870 'author':744,877 'autom':395 'avail':439 'avoid':532 'award':1862,1884 'backup':1171 'believ':773,955,1631 'belong':1087 'bind':1789 'breach':646,1270,1275,1504,1999,2006 'breach-of-contract':1503 'break':320 'broken':959 'browser':410,427 'buy':347,1967 'cach':1172 'caus':187 'chain':367 'chang':135,136,760,1075,1907,2102,2103,2134 'circumv':534 'citi':1746,1814 'claim':1264,1301,1325,1362,1533,1772 'class':1831,1843 'close':852,885,933 'code':663 'commerci':387,1800 'common':1188 'compani':27,30,36,168,184,224,280,479,721,736,755,891,903,928,953,977,1015,1024,1055,1062,1107,1128,1155,1157,1169,1204,1239,1261,1291,1310,1317,1334,1353,1371,1379,1424,1451,1493,1557,1585,1600,1648,1730,1753,1783,1857,1880,1940,1942,1952,1955,1961,1965,1971,2022,2051,2060,2065,2105,2121,2136,2158 'compromis':897,912 'comput':420,662,666,1775 'condit':72,73,244,245,262 'confidenti':713,1634 'consequ':1251 'consolid':1848 'consum':1807 'contact':132,133,281,787,788,862,1569,1570,2045,2046,2062 'contain':660,2132 'content':87,89,103,105,307,309,491,593,595,601,616,627,656,674,764,777,968,970,998,1030,1043,1070,1081,1110,1134,1141,1181,1194,1211,1219,1234,1413,1463,1544,1685,1687 'content-standard':86,306,592 'continu':1191 'contract':1506 'control':1355,1958 'cooper':740,1374 'copi':1068,1130,1165 'copyright':946 'copyright-rel':945 'cost':1865,1874 'could':1339,1510,1905 'court':1744,1763,1887 'cover':182 'crawl':430 'crawler':409 'creat':799,813,825,2146 'creativ':1187 'creativecommons.org':1186 'damag':186,1336,1507 'data':385 'databas':391 'date':849 'decid':1092 'defend':1341 'defens':1357 'delet':763 'design':559 'differ':44 'direct':283 'disabl':531 'disappear':1166 'disclaim':111,112,160,163,164,1402,1403,1696,1697 'disclos':700,710 'disput':125,126,206,209,210,1709,1710,1716,1748,1787,1809,1816,1821,1850 'distribut':458 'download':510 'e':455,838,860,2075,2140,2154 'e-mail':454,837,859,2074,2139,2153 'effect':1985 'effort':1377 'either':884,1019,1644 'email':863,2063 'embodi':2012 'encourag':582 'end':1161,1650,1664,1672,1678 'endors':476 'enforc':92,93,718,719,743,1911,1925 'engin':441 'enter':1882 'entir':2030 'everyon':232 'exercis':1988 'extent':734,1920 'fail':1318 'fals':468 'far':1418,1522 'fault':1389 'featur':808 'feder':1743 'fee':1871 'feedback':119,120,1554,1555,1560,1592,1609,1626,1689,1690 'follow':261,1674,1796 'foreseen':1514 'forum':12,19,34,54,70,78,193,218,231,242,250,256,277,294,325,339,361,374,378,399,403,432,451,494,513,522,542,550,570,578,604,630,659,677,698,767,780,811,938,989,1003,1035,1048,1086,1116,1122,1139,1148,1214,1224,1286,1411,1416,1430,1438,1444,1542,1547,1565,1670,1726,1758,1975,2027,2040,2085,2096,2128,2170,2194 'fraud':1776 'free':1588 'fullest':732 'gather':380 'general':128,129,1705,1706,1891,1892 'get':1576,1612,2173 'give':225,975,1008,1096,1200 'govern':7,1475,1711,1714 'group':462 'handl':944 'happen':1812 'harass':619 'harm':611 'head':57,63,71,79,85,91,94,100,106,110,113,118,121,124,127,131,134,137,162,174,195,208,211,243,298,305,311,591,717,786,791,965,1252,1401,1486,1553,1568,1641,1682,1688,1691,1695,1698,1704,1708,1890,2044,2101 'help':584 'hold':683 'homepag':2093 'hyperlink':483,1440 'hypertext':490 'identifi':358,692 'ifram':527 'illeg':607 'imag':485 'immedi':790,904 'imperson':574 'impli':469,1041 'import':59,61,139,141,149 'important-term':58,138 'impos':561,1393 'inappropri':620 'includ':145,615,1864 'indemnifi':1259,1308,1332,1369 'index':434 'individu':1824 'inform':566,701,716,820,994 'infrastructur':547 'infring':635 'injunct':1734,1769 'integr':1443 'intellectu':638,982,1017 'internet':11 'investig':723,1356 'juli':2111 'jurisdict':1757,1889 'keep':843,924,2191 'kind':1536 'last':1164,2106 'law':322,634,742,750,1421,1525,1712 'least':267 'legal':733,1263,1300,1324,1361,1984 'letter':368 'liabil':114,117,170,175,178,1487,1490,1529,1699,1702 'liabl':1243,1499 'licens':1105,1125,1160,1177,1189,1198,1232 'like':711 'limit':115,165,176,1488,1550,1700 'list':389,459 'load':564 'localhost':14 'log':801 'longer':274 'mail':388,456,463,839,861,2076,2141,2155 'maintain':1065 'make':1454,1909,1923 'malici':661 'mark':503 'materi':508 'may':37,272,288,318,327,345,363,393,429,447,466,481,499,515,529,544,572,580,598,624,653,671,694,722,737,851,929,1190,1199,1225,1439,1465,1473,1649,1881,1933,1943,2048,2066,2115,2159 'member':1844 'mere':680 'messag':2090,2165 'might':1305,1632 'minimum':834,1103,1919 'misus':190 'mitig':1344 'modifi':1916 'monitor':401 'must':21,264,291,798,817,2182 'name':28,354,688 'necessari':1921 'need':233 'neither':1491,1749,1986 'new':2186 'newsgroup':460 'non':489 'non-hypertext':488 'noth':971,1004 'notic':1347,2174 'notifi':738,889,901,1294,1320,1605,2049,2067 'number':147 'object':1755 'oblig':1060,1394 'obtain':1957 'offens':608 'offer':38 'old':270 'one':445,1483 'order':2189 'org':1186 'other':575,613,651,712,1097,1201,1216,1266,1280,1449,1461,1472,1640 'otherwis':350,610,1926 'ownership':506,979,1011 'page':2100 'part':519,1828 'particular':685 'password':919 'pay':1619 'permiss':64,66,212,214,227,252,343,1094,1614,1666,1859 'person':384,715 'personnel':1509 'placehold':681 'plaintiff':1840 'plug':412 'plug-in':411 'polici':942 'possibl':1314 'post':995,2088,2123 'prior':1399 'privaci':644 'procedur':1805 'proceed':1836 'product':40 'program':421 'prompt':1326,1346 'properti':639,983,1018 'proprietari':505,1636 'prosecut':725,746 'provid':818,831,1067,1109,1428,1466,1596,2079,2150 'provis':150,1675,1896,1913,1928 'public':438 'publish':1131 'question':2057 're':472 'reason':770,954,1513,1869,1873 'receiv':1218 'redact':761 'relat':947,1267,1539,1717,1735,1808,1972 'remain':1026 'remov':501,1145,1196,1931 'replac':2031 'repres':1835 'request':556,558,949 'reserv':756 'resolv':1785 'respons':107,109,156,196,197,868,1028,1253,1255,1692,1694 'restrict':539,930 'right':154,640,708,758,980,1012,1207,1991 'risk':1407 'rule':961,1802 'run':32,444,1447,1459,1470,1484 'say':285 'search':440 'secret':926 'section':1571 'secur':536,918 'see':1566 'seek':1733,1767 'select':916 'sell':348 'send':365,453,2056 'servic':3A,42,1446,1458,1469,1485 'settl':1819 'settlement':1359,1386 'share':986,1209 'show':504,517 'side':1297 'skip':55 'sole':1027 'solicit':371 'someon':774 'soon':1312 'special':1124,1159,2164 'specif':342 'sponsor':1050 'spywar':669 'staff':4B 'standard':88,90,308,310,594,596 'state':1741 'store':1064 'strain':546 'subject':219,258 'submit':600,626,655,673,776,1000,1032,1045,1072,1083,1113,1136,1143,1183,1221,1625 'substanti':2133 'suggest':1562,1594,1628 'supplementari':1804 'supplier':1427,1496 'surviv':1676 'suspect':907 'suspend':931 'system':567,1175 'takedown':948 'taken':872 'term':1A,6,25,45,47,60,62,130,140,142,144,222,238,590,729,753,785,964,974,1007,1057,1080,1228,1273,1278,1478,1520,1657,1707,1720,1738,1893,1899,1981,2011,2015,2029,2054,2071,2109,2118,2180,2187 'termin':122,123,1642,1643 'thirteen':268 'time':857,1660 'total':1528 'touch':1578 'trade':351 'tri':331 'under':568 'unenforc':1901 'uniqu':357,691 'unreason':553,563 'up-to-d':846 'updat':2107,2116,2125,2130,2162,2177 'us':789,1580 'use':8,17,51,68,75,82,84,200,216,229,240,247,254,275,292,301,303,314,316,323,329,333,376,449,696,806,873,1281,1409,1467,1611,1616,1668,1723,2024,2037,2072,2192 'user':353,687,1119 'valid':836,2152 've':958,2145 'venu':1760 'violat':587,632,641,726,747,782,1226,1248 'virus':667 'volum':554 'waiv':2003 'waiver':1996 'warranti':1435,1456 'way':1574 'web':408,426 'webpag':497 'websit':525 'welcom':1558 'whatsoev':1436 'whether':876,1149,1837 'wit':1876 'without':340,1397,1433,1855 'won':1328,1601 'would':1366 'written':1653,1903,2041 'wrong':1040 'year':269 'your-account':95,792 'your-cont':101,966,1683 These terms govern use of the Internet forum at http://localhost:3000 . To use the forum, you must agree to these terms with company_name , the company that runs the forum. The company may offer other products and services, under different terms. These terms apply only to use of the forum. Skip to: #heading--important-terms Important Terms #heading--permission Your Permission to Use the Forum #heading--conditions Conditions for Use of the Forum #heading--acceptable-use Acceptable Use #heading--content-standards Content Standards #heading--enforcement Enforcement #heading--your-account Your Account #heading--your-content Your Content #heading--responsibility Your Responsibility #heading--disclaimers Disclaimers #heading--liability Limits on Liability #heading--feedback Feedback #heading--termination Termination #heading--disputes Disputes #heading--general General Terms #heading--contact Contact #heading--changes Changes #heading--important-terms Important Terms These terms include a number of important provisions that affect your rights and responsibilities, such as the disclaimers in #heading--disclaimers Disclaimers , limits on the company’s liability to you in #heading--liability Limits on Liability , your agreement to cover the company for damages caused by your misuse of the forum in #heading--responsibility Responsibility for Your Use , and an agreement to arbitrate disputes in #heading--disputes Disputes . #heading--permission Your Permission to Use the Forum Subject to these terms, the company gives you permission to use the forum. Everyone needs to agree to these terms to use the forum. #heading--conditions Conditions for Use of the Forum Your permission to use the forum is subject to the following conditions: You must be at least thirteen years old. You may no longer use the forum if the company contacts you directly to say that you may not. You must use the forum in accordance with #heading--acceptable-use Acceptable Use and #heading--content-standards Content Standards . #heading--acceptable-use Acceptable Use You may not break the law using the forum. You may not use or try to use another’s account on the forum without their specific permission. You may not buy, sell, or otherwise trade in user names or other unique identifiers on the forum. You may not send advertisements, chain letters, or other solicitations through the forum, or use the forum to gather addresses or other personal data for commercial mailing lists or databases. You may not automate access to the forum, or monitor the forum, such as with a web crawler, browser plug-in or add-on, or other computer program that is not a web browser. You may crawl the forum to index it for a publicly available search engine, if you run one. You may not use the forum to send e-mail to distribution lists, newsgroups, or group mail aliases. You may not falsely imply that you’re affiliated with or endorsed by the company. You may not hyperlink to images or other non-hypertext content on the forum on other webpages. You may not remove any marks showing proprietary ownership from materials you download from the forum. You may not show any part of the forum on other websites with < iframe > . You may not disable, avoid, or circumvent any security or access restrictions of the forum. You may not strain infrastructure of the forum with an unreasonable volume of requests, or requests designed to impose an unreasonable load on information systems underlying the forum. You may not impersonate others through the forum. You may not encourage or help anyone in violation of these terms. #heading--content-standards Content Standards You may not submit content to the forum that is illegal, offensive, or otherwise harmful to others. This includes content that is harassing, inappropriate, or abusive. You may not submit content to the forum that violates the law, infringes anyone’s intellectual property rights, violates anyone’s privacy, or breaches agreements you have with others. You may not submit content to the forum containing malicious computer code, such as computer viruses or spyware. You may not submit content to the forum as a mere placeholder, to hold a particular address, user name, or other unique identifier. You may not use the forum to disclose information that you don’t have the right to disclose, like others’ confidential or personal information. #heading--enforcement Enforcement The company may investigate and prosecute violations of these terms to the fullest legal extent. The company may notify and cooperate with law enforcement authorities in prosecuting violations of the law and these terms. The company reserves the right to change, redact, and delete content on the forum for any reason. If you believe someone has submitted content to the forum in violation of these terms, #heading--contact contact us immediately . #heading--your-account Your Account You must create and log into an account to use some features of the forum. To create an account, you must provide some information about yourself. If you create an account, you agree to provide, at a minimum, a valid e-mail address, and to keep that address up-to-date. You may close your account at any time by e-mailing < contact_email > . You agree to be responsible for all action taken using your account, whether authorized by you or not, until you either close your account or notify the company that your account has been compromised. You agree to notify the company immediately if you suspect your account has been compromised. You agree to select a secure password for your account, and keep it secret. The company may restrict, suspend, or close your account on the forum according to its policy for handling copyright-related takedown requests, or if the company reasonably believes that you’ve broken any rule in these terms. #heading--your-content Your Content Nothing in these terms gives the company any ownership rights in intellectual property that you share with the forum, such as your account information, posts, or other content you submit to the forum. Nothing in these terms gives you any ownership rights in the company’s intellectual property, either. Between you and the company, you remain solely responsible for content you submit to the forum. You agree not to wrongly imply that content you submit to the forum is sponsored or approved by the company. These terms do not obligate the company to store, maintain, or provide copies of content you submit, and to change it, according to these terms. Content you submit to the forum belongs to you, and you decide what permission to give others for it. But at a minimum, you license the company to provide content that you submit to the forum to other users of the forum. That special license allows the company to copy, publish, and analyze content you submit to the forum. When content you submit is removed from the forum, whether by you or by the company, the company’s special license ends when the last copy disappears from the company’s backups, caches, and other systems. Other licenses you apply to content you submit, such as https://creativecommons.org Creative Commons licenses, may continue after your content is removed. Those licenses may give others, or the company itself, the right to share your content through the forum again. Others who receive content you submit to the forum may violate the terms on which you license your content. You agree that the company will not be liable to you for those violations or their consequences. #heading--responsibility Your Responsibility You agree to indemnify the company from legal claims by others related to your breach of these terms, or breach of these terms by others using your account on the forum. Both you and the company agree to notify the other side of any legal claims for which you might have to indemnify the company as soon as possible. If the company fails to notify you of a legal claim promptly, you won’t have to indemnify the company for damages that you could have defended against or mitigated with prompt notice. You agree to allow the company to control investigation, defense, and settlement of legal claims for which you would have to indemnify the company, and to cooperate with those efforts. The company agrees not to agree to any settlement that admits fault for you or imposes obligations on you without your prior agreement. #heading--disclaimers Disclaimers You accept all risk of using the forum and content on the forum. As far as the law allows, the company and its suppliers provide the forum as is, without any warranty whatsoever. The forum may hyperlink to and integrate forums and services run by others. The company does not make any warranty about services run by others, or content they may provide. Use of services run by others may be governed by other terms between you and the one running service. #heading--liability Limits on Liability Neither the company nor its suppliers will be liable to you for breach-of-contract damages their personnel could not have reasonably foreseen when you agreed to these terms. As far as the law allows, the total liability to you for claims of any kind that are related to the forum or content on the forum will be limited to $50. #heading--feedback Feedback The company welcomes your feedback and suggestions for the forum. See the #heading--contact Contact section below for ways to get in touch with us. You agree that the company will be free to act on feedback and suggestions you provide, and that the company won’t have to notify you that your feedback was used, get your permission to use it, or pay you. You agree not to submit feedback or suggestions that you believe might be confidential or proprietary, to you or others. #heading--termination Termination Either you or the company may end the agreement written out in these terms at any time. When our agreement ends, your permission to use the forum also ends. The following provisions survive the end of our agreement: #heading--your-content Your Content , #heading--feedback Feedback , #heading--responsibility Your Responsibility , #heading--disclaimers Disclaimers , #heading--liability Limits on Liability , and #heading--general General Terms . #heading--disputes Disputes governing_law will govern any dispute related to these terms or your use of the forum. You and the company agree to seek injunctions related to these terms only in state or federal court in city_for_disputes . Neither you nor the company will object to jurisdiction, forum, or venue in those courts. Other than to seek an injunction or for claims under the Computer Fraud and Abuse Act, you and the company will resolve any dispute by binding American Arbitration Association arbitration. Arbitration will follow the AAA’s Commercial Arbitration Rules and Supplementary Procedures for Consumer Related Disputes. Arbitration will happen in city_for_disputes . You will settle any dispute as an individual, and not as part of a class action or other representative proceeding, whether as the plaintiff or a class member. No arbitrator will consolidate any dispute with any other arbitration without the company’s permission. Any arbitration award will include costs of the arbitration, reasonable attorneys’ fees, and reasonable costs for witnesses. You and the company may enter arbitration awards in any court with jurisdiction. #heading--general General Terms If a provision of these terms is unenforceable as written, but could be changed to make it enforceable, that provision should be modified to the minimum extent necessary to make it enforceable. Otherwise, that provision should be removed. You may not assign your agreement with the company. The company may assign your agreement to any affiliate of the company, any other company that obtains control of the company, or any other company that buys assets of the company related to the forum. Any attempted assignment against these terms has no legal effect. Neither the exercise of any right under this Agreement, nor waiver of any breach of this Agreement, waives any other breach of this Agreement. These terms embody all the terms of agreement between you and the company about use of the forum. These terms entirely replace any other agreements about your use of the forum, written or not. #heading--contact Contact You may notify the company under these terms, and send questions to the company, at < contact_email > . The company may notify you under these terms using the e-mail address you provide for your account on the forum, or by posting a message to the homepage of the forum or your account page. #heading--changes Changes The company last updated these terms on July 12, 2018, and may update these terms again. The company will post all updates to the forum. For updates that contain substantial changes, the company agrees to e-mail you, if you’ve created an account and provided a valid e-mail address. The company may also announce updates with special messages or alerts on the forum. Once you get notice of an update to these terms, you must agree to the new terms in order to keep using the forum. en 4 f
5 'chang':13 'content':15 'edit':5 'first':7 'page':21 'post':8 'servic':3A,20 'staff':4B 'term':1A,18 'topic':11 Edit the first post in this topic to change the contents of the Terms of Service page. en 4 f
6 '+1':688 '/about':767,824 '/c/site-feedback':793 '/tos':853,881 'abid':878 'abus':495 'account':441 'accru':413 'acknowledg':397 'act':170 'action':414 'actual':240 'ad':88,228 'add':103 'agre':690,876 'agreeabl':199,201 'aid':55 'alreadi':130 'alway':87,472 'anyon':518 'anyth':487,505,722 'appear':549 'arriv':269 'ask':559 'attach':682 'attack':230 'audio':749 'author':360 'automat':419 'avoid':224,294,546 'bad':387,394 'be-civil':469 'behavior':388,395,861 'belong':725 'best':310 'better':149,342 'bookmark':314 'bore':834 'break':753 'brows':134 'button':694 'call':227 'categori':638,642,796 'chanc':150 'chang':668 'choos':279 'civil':3,7,70,471,474,483 'clean':501,627 'collect':307 'communiti':31,61,277,305,341,377,429,468,774 'concret':541 'consid':493 'consum':399 'contact':820 'content':241,437,464,660,866 'contradict':245 'contribut':313 'convers':43,106,253,259,479 'count':257 'critic':219,805 'cross':647 'cross-post':646 'data':846 'definit':545,643 'describ':857 'descript':735 'differ':704 'digit':723 'direct':705 'disagre':191,205,212 'discours':72,299 'discov':126 'discuss':11,15,76,85,93,123,160,186,283,589,624,800 'divert':664 'edit':318 'effort':609 'either':418 'els':334,728 'enabl':303 'encourag':393 'energi':401 'engag':281 'engin':586 'enough':411 'even':188,202,547 'everi':267,676 'everyon':333,404 'exist':699 'experi':331 'explicit':509 'expos':522 'extens':842 'facilit':378 'famili':598 'faq/guidelines':1A 'fast':49 'featur':569 'feedback':795 'feel':564 'fine':215 'flag':316,348,355,408,412,819 'flag-problem':347 'folk':849 'forth':323 'forum':16,287,366,528,537,583 'found':345 'friend':67,600,768 'front':572 'futur':274 'great':82 'grief':517 'guidelin':53 'handl':813 'happen':131 'harass':515 'hard':47 'hate':497 'healthi':478 'help':77,270,373 'hominem':229 'howev':94 'human':57 'idea':220 'identifi':308 'imag':595,750 'imperson':519 'improv':73,74,121,251,328 'index':587 'influenc':272 'inform':525,681 'insight':249 'instead':237,246 'intellectu':745 'interest':40,157,289 'intervent':423 'issu':808 'janitor':381 'jerk':244 'judgment':58 'keep':63,499,590,602,604 'keep-tidi':601 'kind':66 'knee':243 'knee-jerk':242 'knowledg':38 'languag':592 'later':117 'law':756,869 'leav':339 'legales':832 'less':626 'let':337,798 'like':315,480,693 'link':593,710,737 'll':146 'local':769 'maintain':427 'major':576 'make':79,285,607 'matter':162,174 'may':207,719,732 'meet':152 'meta':816 'method':740 'midstream':670 'moder':357,374,422,430,448,455 'multipl':653 'must':837,875 'mute':320 'name':226 'name-cal':225 'new':268,452,789 'news':577 'no-cont':658 'noth':475 'obscen':506 'offens':494 'one':118,127 'ongo':42 'open':787 'oper':458,764 'order':425 'other':153 'otherwis':534 'page':573,826 'park':25 'particip':254,256 'peopl':185,222,520 'permiss':730 'person':491 'place':8,34,68,83,290,616 'pleas':12,223,639 'polic':383 'posit':90 'post':102,234,453,465,486,504,531,567,648,657,675,677,687,713,721,734 'power':757,758 'precis':544 'preview':451 'privaci':867 'privat':524 'problem':349,354 'profil':680 'properti':746 'protect':838 'provid':247,300 'public':10,24,71,582 'put':611 'question':780 'radic':703 'rather':685,695 're':557 'read':640 'reason':444,490 'relat':864 'rememb':217 'remov':435 'repli':139,317,391,392,661,707 'reserv':431 'resourc':32 'respect':20,179,510,526 'respond':210,231 'respons':363,461 'right':433,615,863 'rude':481 'rule':50 'sabotag':476 'safe':596 'said':198 'say':113 'search':585 'see':352,386 'servic':830,856,873 'set':263 'sexual':508 'share':30,36,155 'sign':673 'site':457,578,762,794 'skill':37 'small':95 'softwar':747 'someon':727,743 'someth':89 'spam':532 'special':359 'speech':498 'spend':132,621 'staff':2B,770,825 'start':141,632 'steal':712,742 'stuff':717 'sure':100 'take':459,697 'taken':417 'term':542,828,854 'thing':554,612,651,783 'think':107 'thought':248 'tidi':603,606 'time':133,406,447,623 'tone':236,265 'tool':301,326 'topic':136,159,182,634,654,666,700,711,790,817 'tos':827,882 'treat':13 'tri':115 'unfriend':848 'unsur':558 'urgent':807 'us':78,164,271,821 'use':324,691,706,871 'user':440 'vandal':535 'via':822 'video':748 'want':111,167 'wast':403 'watch':319 'way':119 'wish':208 'without':729 'work':785 'worst':312 'would':22,492,563 'wrong':637 'yes':831 #civilized This is a Civilized Place for Public Discussion Please treat this discussion forum with the same respect you would a public park. We, too, are a shared community resource — a place to share skills, knowledge and interests through ongoing conversation. These are not hard and fast rules. They are guidelines to aid the human judgment of our community and keep this a kind, friendly place for civilized public discourse. #improve Improve the Discussion Help us make this a great place for discussion by always adding something positive to the discussion, however small. If you are not sure your post adds to the conversation, think over what you want to say and try again later. One way to improve the discussion is by discovering ones that are already happening. Spend time browsing the topics here before replying or starting your own, and you’ll have a better chance of meeting others who share your interests. The topics discussed here matter to us, and we want you to act as if they matter to you, too. Be respectful of the topics and the people discussing them, even if you disagree with some of what is being said. #agreeable Be Agreeable, Even When You Disagree You may wish to respond by disagreeing. That’s fine. But remember to criticize ideas, not people . Please avoid: Name-calling Ad hominem attacks Responding to a post’s tone instead of its actual content Knee-jerk contradiction Instead, provide thoughtful insights that improve the conversation. #participate Your Participation Counts The conversations we have here set the tone for every new arrival. Help us influence the future of this community by choosing to engage in discussions that make this forum an interesting place to be — and avoiding those that do not. Discourse provides tools that enable the community to collectively identify the best (and worst) contributions: bookmarks, likes, flags, replies, edits, watching, muting and so forth. Use these tools to improve your own experience, and everyone else’s, too. Let’s leave our community better than we found it. #flag-problems If You See a Problem, Flag It Moderators have special authority; they are responsible for this forum. But so are you. With your help, moderators can be community facilitators, not just janitors or police. When you see bad behavior, don’t reply. Replying encourages bad behavior by acknowledging it, consumes your energy, and wastes everyone’s time. Just flag it . If enough flags accrue, action will be taken, either automatically or by moderator intervention. In order to maintain our community, moderators reserve the right to remove any content and any user account for any reason at any time. Moderators do not preview new posts; the moderators and site operators take no responsibility for any content posted by the community. #be-civil Always Be Civil Nothing sabotages a healthy conversation like rudeness: Be civil. Don’t post anything that a reasonable person would consider offensive, abusive, or hate speech. Keep it clean. Don’t post anything obscene or sexually explicit. Respect each other. Don’t harass or grief anyone, impersonate people, or expose their private information. Respect our forum. Don’t post spam or otherwise vandalize the forum. These are not concrete terms with precise definitions — avoid even the appearance of any of these things. If you’re unsure, ask yourself how you would feel if your post was featured on the front page of a major news site. This is a public forum, and search engines index these discussions. Keep the language, links, and images safe for family and friends. #keep-tidy Keep It Tidy Make the effort to put things in the right place, so that we can spend more time discussing and less cleaning up. So: Don’t start a topic in the wrong category; please read the category definitions. Don’t cross-post the same thing in multiple topics. Don’t post no-content replies. Don’t divert a topic by changing it midstream. Don’t sign your posts — every post has your profile information attached to it. Rather than posting “+1” or “Agreed”, use the Like button. Rather than taking an existing topic in a radically different direction, use Reply as a Linked Topic. #stealing Post Only Your Own Stuff You may not post anything digital that belongs to someone else without permission. You may not post descriptions of, links to, or methods for stealing someone’s intellectual property (software, video, audio, images), or for breaking any other law. #power Powered by You This site is operated by your /about friendly local staff and you , the community. If you have any further questions about how things should work here, open a new topic in the /c/site-feedback site feedback category and let’s discuss! If there’s a critical or urgent issue that can’t be handled by a meta topic or flag, contact us via the /about staff page . #tos Terms of Service Yes, legalese is boring, but we must protect ourselves – and by extension, you and your data – against unfriendly folks. We have a /tos Terms of Service describing your (and our) behavior and rights related to content, privacy, and laws. To use this service, you must agree to abide by our /tos TOS . en 4 f
7 'chang':11 'content':13 'edit':3 'faq/guidelines':1A,16 'first':5 'page':17 'post':6 'staff':2B 'topic':9 Edit the first post in this topic to change the contents of the FAQ/Guidelines page. en 4 f
8 '/wiki/children%27s_online_privacy_protection_act':677 '13':650,669 '2013':762 '31':761 '5':327 '90':311 'access':274 'account':375,381 'act':634,683 'activ':606 'address':56,69,94,103,119,214,301,316 'advertis':558 'age':667 'aggreg':396 'agre':507 'allow':359 'also':110,515 'and/or':242 'appli':698 'appropri':524 'ask':47 'assist':427,490 'associ':317,376 'base':178 'behalf':448 'believ':521 'better':160,409,430 'browser':356,368 'busi':457,498 'cc':753 'cc-by-sa':752 'chang':229,727,728,737,745 'children':629,678 'collect':4,9,11,139,445,702,710 'compil':395 'compli':526 'complianc':635 'comput':349 'conduct':453,496 'confidenti':512 'consent':712,714,720 'contain':76,298 'content':36,604 'continu':171 'contract':419 'control':89 'cooki':329,333,335,361,384 'coppa':628,674 'custom':190,202 'data':23,279,284,397 'data-retent':278 'day':312 'decid':735 'direct':643 'disclos':458,461 'discret':571 'document':750 'drive':352 'e':54,67,92 'e-mail':53,66,91 'effect':198 'effort':293 'email':75,211,213 'en.wikipedia.org':676 'en.wikipedia.org/wiki/children%27s_online_privacy_protection_act':675 'enabl':362 'enforc':530 'enter':49,271 'evalu':34 'everi':121 'except':449 'experi':154,411 'faith':292 'feedback':183,624 'file':338 'follow':149 'forum':29 'futur':392,416 'gather':22 'good':291 'hard':351 'help':157,194,451 'howev':59,543 'identifi':480,547 'implement':255 'improv':167,174,189,455 'includ':116,485,574 'independ':592 'individu':164 'inform':6,12,132,137,156,181,193,223,253,268,277,444,463,481,511,518,549,701,709 'inquiri':241 'integr':617 'interact':403 'ip':102,118,300,315 'keep':509 'know':86 'last':758 'law':529 'least':649 'liabil':601 'link':79,82,567,609 'log':114,297 'long':503 'mail':55,68,93 'maintain':262 'make':289 'market':557 'may':45,58,111,142,217,418,514,550,573,760 'measur':260 'name':51,238 'need':165,207 'non':545 'non-person':544 'nonetheless':611 'notif':224 'occasion':568 'offer':177,408,576 'offlin':711 'old':652 'older':654 'one':146 'onlin':631,680,689,690,695 'oper':493 'org':676 'origin':107 'other':538 'otherwis':473 'outsid':465,476 'page':748 'parti':423,466,477,488,506,555,564,566,578,587 'particip':26 'peopl':645 'per':670 'period':210 'permit':440 'person':152,267,276,479,546 'polici':2A,286,533,594,692,697,726,732,740 'post':98,106,323,743 'prefer':390 'privaci':1A,593,632,681,691,696,725,731,739 'product':579,638 'properti':540 'protect':247,251,535,615,633,682 'provid':216,345,425,437,552 'question':246 'read':31 'receiv':185 'recogn':366 'record':100 'regist':17,40,64,96,319,374,380 'releas':516,522 'request':122,204,227,244,304 'requir':672 'respond':161,199,239 'respons':234,599 'retain':112,295,313 'retent':280,285 'right':539 'sa':755 'safeti':264,542 'save':388 'secur':259 'seek':613 'sell':470 'send':209,221 'separ':590 'server':113,125,296,307,657 'servic':191,203,344,424,436,500,581,640 'share':37 'site':20,43,62,169,176,341,364,399,402,410,433,495,532,584,588,610,620,627,637,688,705,718,724 'small':337 'staff':3B 'strive':172 'submit':272 'support':206 'therefor':596 'third':422,487,563,565,577,586 'third-parti':421,562 'tool':413 'topic':231 'trade':471 'traffic':400 'transfer':346,474 'trust':486 'understand':386,431 'uniqu':78 'updat':759 'us':158,195,428,452,491 'usa':661 'use':126,130,144,219,332,383,442,561,686,716 'user':237,320 'varieti':257 'verifi':72 'visit':60,84,393 'visitor':434,548 'way':150 'web':355,723 'welcom':622 'wikipedia.org':676 'without':63 'write':32 'year':328,651 'yes':334 #collect What information do we collect? We collect information from you when you register on our site and gather data when you participate in the forum by reading, writing, and evaluating the content shared here. When registering on our site, you may be asked to enter your name and e-mail address. You may, however, visit our site without registering. Your e-mail address will be verified by an email containing a unique link. If that link is visited, we know that you control the e-mail address. When registered and posting, we record the IP address that the post originated from. We also may retain server logs which include the IP address of every request to our server. #use What do we use your information for? Any of the information we collect from you may be used in one of the following ways: To personalize your experience — your information helps us to better respond to your individual needs. To improve our site — we continually strive to improve our site offerings based on the information and feedback we receive from you. To improve customer service — your information helps us to more effectively respond to your customer service requests and support needs. To send periodic emails — The email address you provide may be used to send you information, notifications that you request about changes to topics or in response to your user name, respond to inquiries, and/or other requests or questions. #protect How do we protect your information? We implement a variety of security measures to maintain the safety of your personal information when you enter, submit, or access your personal information. #data-retention What is your data retention policy? We will make a good faith effort to: Retain server logs containing the IP address of all requests to this server no more than 90 days. Retain the IP addresses associated with registered users and their posts no more than 5 years. #cookies Do we use cookies? Yes. Cookies are small files that a site or its service provider transfers to your computer’s hard drive through your Web browser (if you allow). These cookies enable the site to recognize your browser and, if you have a registered account, associate it with your registered account. We use cookies to understand and save your preferences for future visits and compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future. We may contract with third-party service providers to assist us in better understanding our site visitors. These service providers are not permitted to use the information collected on our behalf except to help us conduct and improve our business. #disclose Do we disclose any information to outside parties? We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our site, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety. However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses. #third-party Third party links Occasionally, at our discretion, we may include or offer third party products or services on our site. These third party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites. #coppa Children’s Online Privacy Protection Act Compliance Our site, products and services are all directed to people who are at least 13 years old or older. If this server is in the USA, and you are under the age of 13, per the requirements of COPPA ( https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act Children’s Online Privacy Protection Act ), do not use this site. #online Online Privacy Policy Only This online privacy policy applies only to information collected through our site and not to information collected offline. #consent Your Consent By using our site, you consent to our web site privacy policy. #changes Changes to our Privacy Policy If we decide to change our privacy policy, we will post those changes on this page. This document is CC-BY-SA. It was last updated May 31, 2013. en 4 f
9 'chang':12 'content':14 'edit':4 'first':6 'page':19 'polici':2A,18 'post':7 'privaci':1A,17 'staff':3B 'topic':10 Edit the first post in this topic to change the contents of the Privacy Policy page. en 4 f
10 'admin':69 'announc':86 'bottom':76 'brief':33 'close':64 'come':50 'communiti':37 'descript':34 'discours':3A 'edit':29 'etc':59 'find':45 'first':6 'homepag':25 'import':28 'link':57 'may':61 'messag':18 'new':21 'paragraph':7 'pile':82 'pin':10 'read':55 'repli':79 'resourc':58 'right':74 'topic':11,66 'uncategor':4B 'upper':73 'via':67 'visibl':14 'visitor':22 'want':62 'welcom':1A,17 'wrench':70 The first paragraph of this pinned topic will be visible as a welcome message to all new visitors on your homepage. It’s important! Edit this into a brief description of your community: Who is it for? What can they find here? Why should they come here? Where can they read more (links, resources, etc)? You may want to close this topic via the admin :wrench: (at the upper right and bottom), so that replies don’t pile up on an announcement. en 4 f
11 '/2018/06/understanding-discourse-trust-levels/':103 '/badges/3/regular':75 '/wiki/nofollow':46 '3':23,63 'access':51 'automat':47 'ball':8 'blog.discourse.org':102 'blog.discourse.org/2018/06/understanding-discourse-trust-levels/':101 'categori':35,55 'chang':33 'communiti':94 'confetti':7 'congratul':6 'continu':113 'current':76 'discourse.org':102 'edit':27 'en.wikipedia.org':45 'en.wikipedia.org/wiki/nofollow':44 'fellow':79 'flag':71 'follow':43 'hi':85 'hide':66 'higher':65 'import':90 'inform':97 'level':22,62,100 'link':42 'list':77 'loung':4A,5B,54 'meet':115 'member':111 'nofollow':48 'note':108 'org':45,102 'part':91 'pleas':107 'privat':53 'promot':18 'recent':17 'regular':20,80,122 'remain':121 'remov':50 'requir':117 'say':84 'see':12,104 'singl':70 'spam':67 'sure':82 'thank':86 'time':119 'titl':29 'topic':14,32,38,106 'trust':21,61,99 'user':59 'visibl':57 'welcom':1A 'wikipedia.org':45 Congratulations! :confetti_ball: If you can see this topic, you were recently promoted to regular (trust level 3). You can now … Edit the title of any topic Change the category of any topic Have all your links followed ( https://en.wikipedia.org/wiki/Nofollow automatic nofollow is removed) Access a private Lounge category only visible to users at trust level 3 and higher Hide spam with a single flag Here’s the /badges/3/regular current list of fellow regulars . Be sure to say hi. Thanks for being an important part of this community! (For more information on trust levels, https://blog.discourse.org/2018/06/understanding-discourse-trust-levels/ see this topic . Please note that only members who continue to meet the requirements over time will remain regulars.) en 4 f
12 '/2014/08/building-a-discourse-community/':941 '/2018/06/understanding-discourse-trust-levels/':707,841 '/admin':76 '/admin/email':273 '/admin/upgrade':1091 '/categories':461 '/category/lounge':382 '/category/site-feedback':367 '/category/staff':394 '/discourse/discourse/blob/main/docs/admin-quick-start-guide.md':1232 '/discourse/discourse/blob/main/docs/install-email.md':340 '/discourse/discourse/blob/main/docs/install.md':1042 '/discourse/discourse/tree/main/script/import_scripts':1153 '/discourse/wp-discourse':1190 '/my/invited':160 '/t/5249':378 '/t/adding-an-offline-page-when-rebuilding/45238':1179 '/t/allowing-ssl-for-your-discourse-docker-setup/13847':1110 '/t/configure-a-firewall-for-discourse/20584':1171 '/t/configure-automatic-backups-for-discourse/14855':1104 '/t/configuring-facebook-login-for-discourse/13394':220 '/t/configuring-github-login-for-discourse/13745':225 '/t/configuring-google-oauth2-login-for-discourse/15858':210 '/t/configuring-twitter-login-for-discourse/13395':215 '/t/embedding-discourse-comments-via-javascript/31963':1198 '/t/enable-a-cdn-for-your-discourse/14857':1115 '/t/how-do-i-change-the-domain-name/16098':1136 '/t/invite-individual-users-to-a-group/15544':1006 '/t/login-to-discourse-with-custom-oauth2-provider/14717':244 '/t/move-your-discourse-instance-to-a-different-server/15721':1128 '/t/multisite-configuration-with-docker/14084':1143 '/t/official-single-sign-on-for-discourse/13045':233 '/t/sending-bulk-user-invites/16468':999 '/t/set-up-reply-via-email-support/14003':357,1122 '/wizard':36 '0':745,771 '1':747,783,846,878 '10':849 '1gb':1015 '2':749,778,810 '3':391,751 '4':753 '50':882 'abil':723 'access':80 'account':202,258 'action':816 'activ':743 'actual':796 'add':140,148,207,419,456 'addit':149 'address':282,286 'admin':4A,63,67,73,90,119,173,184,275,400,663 'advanc':993 'advic':937 'alreadi':33 'also':79,230,616,991 'alway':418 'anyth':123,126 'area':684,979,986 'aren':323 'arriv':694 'assist':725,1209 'assum':441 'attach':787 'audienc':415 'automat':568,1105 'backup':1107 'banner':544,623,625,643,660,908 'basic':748,1025 'bbpress':1162 'begin':450 'belong':539 'better':430 'blog.discourse.org':706,840,940 'blog.discourse.org/2014/08/building-a-discourse-community/':939 'blog.discourse.org/2018/06/understanding-discourse-trust-levels/':705,839 'bootstrap':862 'bottom':561,584,670,973 'build':245,884,889,942 'bulk':424,1001 'bunch':521 'button':174,188,970 'cannot':139,774 'categori':141,361,366,409,421,458,462,467,478,490,492,498,510,530,606 'certain':481 'chang':143,575,1137 'chick':26 'civil':21 'clear':533,898 'click':171,291,465,645,1087 'close':304 'com':339,1041,1152,1189,1231 'commit':916 'communiti':112,701,720,729,739,886,890,901,924,945,1027,1030 'complet':61 'configur':45,125,270,343,1172,1211 'congratul':9 'construct':23 'contain':1045 'content':1116,1156 'control':581 'corner':651 'correct':271 'cpu':1013,1038 'creat':405,466 'd':346 'daili':1106 'dashboard':64,74 'data':1133 'default':365,736,854 'defin':899 'deliver':309,333 'deliveri':1117 'descript':513,534 'design':732 'didn':312 'differ':553 'discours':22,555,702,730,944,1026,1064,1076,1145,1187,1215 'discourse.org':20,209,214,219,224,232,243,356,377,706,840,940,998,1005,1103,1109,1114,1121,1127,1135,1142,1170,1178,1197,1218,1219 'discuss':371,683,912 'dismiss':640 'docker':1044 'domain':1139 'drupal':1161 'earn':715 'easi':1056,1085 'easili':423 'edit':133 'either':331 'email':252,253,264,276,281,285,294,299,303,308,317,330,332,341,354,962,1070,1125 'emb':1186 'enabl':349 'enough':613 'enter':279,515 'especi':827 'etc':1163 'even':241,740 'eventu':1097 'everi':491,815 'everyon':766 'everywher':925 'exercis':65 'export':1131 'facebook':221 'feedback':369 'field':289,802 'figur':432 'file':786 'find':932 'firewal':1165,1173 'first':3A 'flag':791 'float':627,642 'forum':1216 'friend':1176 'function':91 'gain':722 'general':93,370 'get':27,314,325,444,951,1068 'github':226 'github.com':339,1041,1152,1189,1231 'github.com/discourse/discourse/blob/main/docs/admin-quick-start-guide.md':1230 'github.com/discourse/discourse/blob/main/docs/install-email.md':338 'github.com/discourse/discourse/blob/main/docs/install.md':1040 'github.com/discourse/discourse/tree/main/script/import_scripts':1151 'github.com/discourse/wp-discourse':1188 'give':527 'global':597 'go':40,438 'good':532 'googl':211 'got':296 'govern':727 'grant':183,186,875 'great':300 'group':482,1010 'grow':1031 'guarante':1055 'guid':7A,1227 'hamburg':84 'hard':336,892 'hatch':25 'haven':31 'help':1206 'higher':393 'hint':451 'howto':360 'html':1202 'https':1111 'hyperlink':779 'icon':99 'imag':784 'import':307,381,1129,1154 'improv':1223 'includ':992 'initi':408,495,697 'instal':1046,1194 'instanc':1082,1146 'interest':914 'invit':164,947,959,969,978,985,1002,1007 'isn':610 'join':166 'kind':116 'kit':24 'later':427 'launch':34,894 'leader':754 'level':390,770,845,877 'like':347 'limit':823 'link':797,922 'list':601 'littl':552 'll':443 'local':198 'log':194 'login':191,212,217,222,227,248 'look':101,180 'loung':383 'mainten':1011 'make':266,653 'mani':54,407 'mark':94 'may':204,1033 'mean':319 'member':106,151,750 'memori':1017,1036 'mention':807 'menu':85 'messag':790 'meta.discourse.org':209,214,219,224,232,243,356,377,998,1005,1103,1109,1114,1121,1127,1135,1142,1170,1178,1197,1218,1219 'meta.discourse.org/t/5249':376 'meta.discourse.org/t/adding-an-offline-page-when-rebuilding/45238':1177 'meta.discourse.org/t/allowing-ssl-for-your-discourse-docker-setup/13847':1108 'meta.discourse.org/t/configure-a-firewall-for-discourse/20584':1169 'meta.discourse.org/t/configure-automatic-backups-for-discourse/14855':1102 'meta.discourse.org/t/configuring-facebook-login-for-discourse/13394':218 'meta.discourse.org/t/configuring-github-login-for-discourse/13745':223 'meta.discourse.org/t/configuring-google-oauth2-login-for-discourse/15858':208 'meta.discourse.org/t/configuring-twitter-login-for-discourse/13395':213 'meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963':1196 'meta.discourse.org/t/enable-a-cdn-for-your-discourse/14857':1113 'meta.discourse.org/t/how-do-i-change-the-domain-name/16098':1134 'meta.discourse.org/t/invite-individual-users-to-a-group/15544':1004 'meta.discourse.org/t/login-to-discourse-with-custom-oauth2-provider/14717':242 'meta.discourse.org/t/move-your-discourse-instance-to-a-different-server/15721':1126 'meta.discourse.org/t/multisite-configuration-with-docker/14084':1141 'meta.discourse.org/t/official-single-sign-on-for-discourse/13045':231 'meta.discourse.org/t/sending-bulk-user-invites/16468':997 'meta.discourse.org/t/set-up-reply-via-email-support/14003':355,1120 'method':249,995 'might':1096 'minimum':1022 'minut':850 'mode':863 'moder':130,187,402,744 'multipl':1144 'name':806,1140 'need':1034,1204 'network':1118 'new':257,529,674,691,746,756,772,830,836,871,1073 'note':545,858 'notif':261,329,1071 'offer':734 'offici':108,1052 'offlin':1180 'old':1155 'one':618,948,1012,1050,1086 'open':687 'optim':1061 'org':20,209,214,219,224,232,243,356,377,706,840,940,998,1005,1103,1109,1114,1121,1127,1135,1142,1170,1178,1197,1218,1219 'organ':435 'overwhelm':413 'owner':15 'page':170,179,463,636,983,990,1181 'particip':920 'password':201 'patient':888 'peopl':536,930,952 'per':477 'per-categori':476 'perk':385 'perman':639 'person':579,789 'phpbb':1159 'pin':504,541,547,564,580,590,595,609,657,906 'place':523 'post':135,775,780,785,792,814 'primari':635 'probabl':322 'process':1089 'profil':805,982,989 'promot':927 'proud':14 'public':690,738 'pull':1233 'purpos':903 'quick':5A 'rate':822 'rather':439 'reach':881 'read':1A,301,337,558,852 'rebuild':1183 'recategor':425 'recommend':1060 'regular':752,921 'releas':1078 'remov':655 'repli':350,1123 'repres':109 'request':1234 'requir':255 'resourc':1039 'restrict':764 'right':89,447,471,650,668 'run':50,1213 'safe':62,735,856 'safeti':768,825 'sandbox':676,762 'secur':475 'see':358,486,1217 'seed':910 'send':161,292,788,946,1000 'server':1150,1168 'servic':342 'set':146,234,277,474,866,1100 'setup':37 'sign':154,238 'signup':259,327 'singl':237,619 'single-sign':236 'site':47,129,145,158,368,374,869,956,1203 'social':190 'someon':557 'specif':572 'staff':8B,104,105,118,150,395,399,589,994 'start':6A,28,758 'static':1201 'step':43 'stranger':698 'submit':1228 'suggest':1221 'superpow':68 'support':1053,1112,1119 'sure':267,525,896 'swap':1019 'system':680,709 'take':820 'team':1065 'test':250,262,288,293,298,316 'thing':1094 'three':364 'time':55,70,714 'tip':310 'top':507,629,667 'topic':352,426,487,499,501,542,548,565,587,592,600,620,626,632,673,794,909,915,976 'tradit':197 'transit':842 'trust':389,679,708,717,769,844,876 'turn':617 'twitter':216 'two':115 'understand':537 'unpin':569 'updat':1057,1080,1225 'upgrad':1088,1185 'upper':88,470,649 'use':518,661 'user':137,169,178,192,321,387,484,637,675,711,757,773,811,818,831,837,872,883,1008,1175 'usernam':199 'vanilla':1160 'vbulletin':1158 'version':1074 'via':71,82,167,353,577,961,967,1083,1124 'visibl':396,612 'visit':272,459,918,954,1090 'visitor':692 'want':58,205,1098 'way':949 'within':604 'wizard':38,52 'won':453 'wordpress':1193 'work':550 'worri':835 'wrench':97,98,175,664 'www.discourse.org':20 Congratulations, you are now the proud owner of your very own https://www.discourse.org Civilized Discourse Construction Kit . :hatching_chick: Getting Started If you haven’t already, launch the /wizard setup wizard and go through the steps to configure your site. You can run the wizard as many times as you want, it’s completely safe! Admin Dashboard Exercise your admin superpowers any time via the admin dashboard at /admin You can also access it via the “hamburger” ☰ menu in the upper right: Admin functions are generally marked with the wrench :wrench: icon, so look for that. Staff Staff members are official representatives of this community. There are two kinds of Staff: Admins , who can do anything and configure anything on this site. Moderators , who can edit all posts and users, but cannot add categories or change any site settings. To add additional staff members: have them sign up on the site (or /my/invited send out an invitation to join via your user page ) click the admin button :wrench: on their user page look for the Grant Admin and Grant Moderator buttons there Social Logins Users can log in with traditional local username and password accounts. You may want to add: https://meta.discourse.org/t/configuring-google-oauth2-login-for-discourse/15858 Google logins https://meta.discourse.org/t/configuring-twitter-login-for-discourse/13395 Twitter logins https://meta.discourse.org/t/configuring-facebook-login-for-discourse/13394 Facebook logins https://meta.discourse.org/t/configuring-github-login-for-discourse/13745 GitHub logins You can also https://meta.discourse.org/t/official-single-sign-on-for-discourse/13045 set up single-sign on , or even https://meta.discourse.org/t/login-to-discourse-with-custom-oauth2-provider/14717 build your own login method . Test Your Email Email is required for new account signups and notifications. Test your email to make sure it is configured correctly! Visit /admin/email the admin email settings , then enter an email address in the “email address to test” field and click send test email . You got the test email? Great! Read that email closely , it has important email deliverability tips. You didn’t get the test email? This means your users probably aren’t getting any signup or notification emails either. Email deliverability can be hard. Read https://github.com/discourse/discourse/blob/main/docs/INSTALL-email.md Email Service Configuration . If you’d like to enable replying to topics via email, https://meta.discourse.org/t/set-up-reply-via-email-support/14003 see this howto . Categories You have three default categories: /category/site-feedback Site Feedback – general discussion about the site itself. https://meta.discourse.org/t/5249 It’s important! /category/lounge Lounge – a perk for users at trust level 3 and higher /category/staff Staff – visible only to staff (admins and moderators) Don’t create too many initial categories , as you can overwhelm your audience. You can always add more categories, and easily bulk recategorize topics later. It’s better to figure out the organization as you go rather than assuming you’ll get it all right from the beginning (hint: you won’t). To add a category, visit the /categories categories page , then click Create Category at the upper right. You can set security per-category so only certain groups of users can see topics in that category. Every category has an initial “About this category” topic. This topic will be pinned to the top of the category, and the description you enter will be used in a bunch of places. Be sure to give your new category a good, clear description, so people understand what belongs there! Pinned Topics and Banners Note that pinning topics does work a little differently in Discourse: Once someone reads to the bottom of a pinned topic, it is automatically unpinned for them specifically. They can change this via the personal pin controls at the bottom of the topic. When staff pins a topic, they can pin it globally to all topic lists, or just within its category. If a pin isn’t visible enough, you can also turn one single topic into a banner . The banner topic floats on top of all topics and all primary pages. Users can permanently dismiss this floating banner by clicking the × in the upper right corner. To make (or remove) a pin or a banner, use the admin wrench at the top right or bottom of the topic. New User Sandbox and the Trust System If your discussion area is be open to the public, new visitors will arrive that are initially strangers to the community. Discourse has a https://blog.discourse.org/2018/06/understanding-discourse-trust-levels/ trust system where users can, over time, earn the trust of the community and gain abilities to assist in governing their community. Discourse is designed to offer safe defaults for public communities, even with no active moderation. 0 (new) → 1 (basic) → 2 (member) → 3 (regular) → 4 (leader) All new users start out in a sandbox with restrictions for everyone’s safety. Trust level 0 (new) users cannot … post more than 2 hyperlinks post more than 1 image post file attachments send personal messages flag posts or topics have actual links in the “about me” field of their profile @name mention more than 2 users in a post Every action a user can take is rate limited for safety, and especially so for new users. But don’t worry, new users can https://blog.discourse.org/2018/06/understanding-discourse-trust-levels/ transition to trust level 1 in about 10 minutes of reading. These defaults are safe, but note that while in “bootstrap mode” after you set up your site, all new users will be granted trust level 1 until you reach 50 users. Building Your Community Be patient; building communities is hard. Before launching, be sure to: Clearly define your community’s purpose in a pinned or banner topic. Seed the discussion with interesting topics. Commit to visiting and participating regularly. Link your community everywhere and promote it so people can find it. There’s more advice at https://blog.discourse.org/2014/08/building-a-discourse-community/ Building a Discourse Community . Sending Invitations One way to get people to visit your site is to invite them via email. You can do this via: The Invite button at the bottom of the topic. The Invite area on your profile page. The invite area on your profile page also includes advanced Staff methods of https://meta.discourse.org/t/sending-bulk-user-invites/16468 sending bulk invites , and https://meta.discourse.org/t/invite-individual-users-to-a-group/15544 inviting users into groups . Maintenance One CPU and 1GB of memory, with swap, is the minimum for a basic Discourse community. As your community grows you may need more memory or CPU resources. https://github.com/discourse/discourse/blob/main/docs/INSTALL.md Our Docker container install is the only one we officially support. It guarantees easy updates, and all recommended optimizations from the Discourse team. You should get an email notification when new versions of Discourse are released. To update your instance via our easy one click upgrade process, visit /admin/upgrade . Some other things you might eventually want to set up: https://meta.discourse.org/t/configure-automatic-backups-for-discourse/14855 Automatic daily backups https://meta.discourse.org/t/allowing-ssl-for-your-discourse-docker-setup/13847 HTTPS support https://meta.discourse.org/t/enable-a-cdn-for-your-discourse/14857 Content Delivery Network support https://meta.discourse.org/t/set-up-reply-via-email-support/14003 Reply via Email https://meta.discourse.org/t/move-your-discourse-instance-to-a-different-server/15721 Import and Export your data https://meta.discourse.org/t/how-do-i-change-the-domain-name/16098 Change the domain name https://meta.discourse.org/t/multisite-configuration-with-docker/14084 Multiple Discourse instances on the same server https://github.com/discourse/discourse/tree/main/script/import_scripts Import old content from vBulletin, PHPbb, Vanilla, Drupal, BBPress, etc A firewall on your server? https://meta.discourse.org/t/configure-a-firewall-for-discourse/20584 Configure firewall . A user friendly https://meta.discourse.org/t/adding-an-offline-page-when-rebuilding/45238 offline page when rebuilding or upgrading? Embed Discourse https://github.com/discourse/wp-discourse in your WordPress install , or https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 on your static HTML site Need more Help? For more assistance on configuring and running your Discourse forum, see https://meta.discourse.org meta.discourse.org . Have suggestions to improve or update this guide? Submit a https://github.com/discourse/discourse/blob/main/docs/ADMIN-QUICK-START-GUIDE.md pull request . en 4 f
13 'account':33 'ah':20 'back':9 'base':64 'bone':28 'came':18 'capabl':23 'categori':4A 'chain':39 'cheer':53 'electron':62 'face':36 'game':3A,5B 'great':67 'hard':30 'iguanodon':43 'iron':52 'live':42 'mail':40 'pat':50,51 'pat-pat':49 'regular':48 'saw':16 'send':59 'stake':56 'strikin':31 'subject':58 'summerle':6 'unscrupul':38 'upon':7 'wait':45 'work':63 Summerlee upon the back in as I do now we saw and came down. Ah there is capable. Where then under this bone with hard strikin an account of my face and unscrupulous. Chain mail or live iguanodons and wait until as regular pat-pat. Ironical cheering and the stake my subject. Send for this electronic works based on his great. en 4 f
14 'activ':41 'amazonian':51 'announc':3A,5B 'bivouac':35 'categori':4A 'creep':21 'curv':32 'elk':29 'fli':44 'gladi':37 'indian':15 'intens':48 'irish':28 'lake':36 'live':12 'lost':10 'man':42 'must':24 'nasti':33 'outsid':49 'pest':45 'plain':52 'possess':27 'queri':8 'rude':34 'say':20 'stick':25 'vermin':22 Here he queried all lost their lives! If the Indians when he’s only say. Creeping vermin I must stick your possession. Irish elk which he curved. Nasty rude bivouac. Lake Gladys I was as active man is flying pest so and intensity. Outside the Amazonian plain of this. en 4 f
15 'absurd':40 'away':64 'beast':71 'beauti':47 'bigger':21 'bottom':99 'box':16 'boyish':41 'categori':4A 'certain':52 'circul':8 'color':26 'design':3A,5B 'electron':83 'emaci':93 'end':73 'exact':90 'failur':58 'faith':95 'great':23 'green':50 'groan':30 'gutenberg':81 'gutenberg-tm':80 'hat':44 'helpless':6 'high':35 'may':85 'moustach':33 'one':59 'part':87 'pass':38 'pea':49 'pea-green':48 'pill':15 'pill-box':14 'poison':75 'polysynthet':51 'posit':91 'professor':29 'project':79 'promis':96 'prophet':62 'put':55 'right':78 'run':63 'sever':19 'skin':27 'slate':25 'slate-color':24 'straw':43 'straw-hat':42 'take':53,86 'thin':32 'time':20 'tm':82 'torpid':7 'tri':66 'wood':68 'work':76,84 Helpless torpid circulation was there were. After a pill-box from that several times bigger than. Great slate-colored skin of Professor. Groaned his thin moustache in high. Should we passed so absurd boyish straw-hat with a beautiful pea-green. Polysynthetic certainly taking his. Putting out my failure one at the prophets. Run away through. Try the woods from the beast’s. End of poison worked it right. Project Gutenberg-tm electronic work may take part of our exact position very emaciated. Yours faithfully promised to the bottom about him. en 4 f
16 'alter':40 'categori':6A 'could':23 'equisetacea':38 'follow':18 'home':3A,7B 'live':5A,9B 'll':36 'mile':31 'morn':34 'notic':12 'person':25 'point':29 'privat':30 'question':16 'saw':27 'shall':46 'shoulder':20 'succeed':24 'surround':41 'upon':10 Upon my notice of them of Question! You follow my shoulder and I could succeed. Personally I saw the point. Private Miles of the morning. We’ll be equisetacea or altered surroundings to do. Should we shall be. en 4 f
17 'america':38 'attach':42 'capabl':17 'categori':4A 'cave':19 'certain':54 'chasm':32 'could':23 'describ':29 'dive':56 'england':16 'foot':60 'georg':51 'handlin':67 'heaven':40 'illingworth':21 'life':6 'man':62 'noth':35 'photograph':11 'publish':3A,5B 'real':49 'rough':66 'saw':64 'sever':26 'show':12 'side':45 'soon':58 'south':37 'sure':9 'thank':39 'throw':24 'voic':27 'wild':57 'writh':14 Life can only. Surely these photographs showing a writhing in England capable of caves from. Illingworth I could throw out? Several voices of describing in the chasm or is nothing about South America. Thank heaven its attached to my side and after the real. By George if we. Certainly it dived wildly. Soon the foot of man I saw a rough handlin! en 4 f
18 'act':8 'allow':35 'apart':97 'appoint':83 'arc':12 'archway':53 'arriv':49 'ask':112 'avenu':101 'beneath':40 'boom':54 'came':115 'cannot':34 'cargo':76 'categori':4A 'chanc':90 'cheap':24 'close':106 'creat':19 'detroit':102 'disclaim':36 'dog':44 'door':16 'driven':119 'employ':6 'end':46 'energi':30 'english':43 'entir':64 'event':3A,5B 'fear':92 'gang':80 'gang-plank':79 'great':109 'green':52 'hall':15 'howev':116 'indian':63 'insignific':57 'john':114 'lake':100 'languag':42 'liabil':7 'lord':113 'm':70 'malon':104 'men':28 'menac':95 'michigan':103 'one':18,33 'place':99 'plank':81 'possibl':89 'presum':86 'question':59 'revolv':25 'say':68 'sir':65,84 'slope':39 'suppos':110 'think':71 'unit':58 'wiri':29 'work':21 Employers Liability Act you with the arc of the hall door and one. Creating the work is a cheap revolver on such men wiry energy is that one. Cannot allow disclaimers of the slope beneath his. Language English dog and ended. We now arrived from the green archway. Boomed a most insignificant unit. Question How about the Indians. Entirely sir what HE says I’m thinking for all? For a cargo of the gang-plank. An appointment sir I presume? It is possible chance for fear of their menace and apart and placed. Lake Avenue Detroit Michigan. Malone and closed in that great. Suppose I asked Lord John came however have been driven me so been too. en 4 f
19 'alon':130 'alway':47 'anyway':29 'ask':109 'astonish':125 'awak':11 'bank':87 'came':53 'categori':5A 'chairman':128 'chines':118 'communiti':3A,6B 'companion':72 'could':66 'cri':42 'curious':40 'danger':121 'day':99 'dirti':55 'dull':113 'escort':91 'everyon':106 'face':44 'four':46 'game':59 'glamour':77 'great':64 'guidelin':4A,7B 'half':10 'half-awak':9 'hard':28 'hate':107 'hear':25 'heavi':58 'heavy-gam':57 'henri':70 'hold':67 'indian':51 'know':31 'like':61 'linen':56 'littl':123 'madman':96 'meaningless':18 'mr':116 'murmur':68 'must':74 'phrase':41 'plateau':23 'produc':82 'raven':105 'reason':89 'said':21 'sand':86 'sand-bank':85 'shot':60 'shoulder':95 'someon':101 'stand':129 'still':8 'strength':65 'tarp':69 'tremend':132 'two':50 'us':110 'villa':124 'violenc':133 'wander':81 'watch':37 'within':88 'would':19 Still half-awake and that’s what it is meaningless. Would you said the plateau on hearing that it hardness. Anyway you know what do you not my watch by a curious phrase. Cried his face or four. Always in the two Indians we came once. Dirty linen! Heavy-game shots liked but very great strength could hold. Murmured Tarp Henry my companions it must be the glamour and in the wandering. Produced by the sand-bank within reason to escort them and the shoulder. Madman that all day when someone had me that raven. Everyone hating and asked us with a dull. Here’s Mr. As Chinese for any danger of little villa. Astonished at the chairman standing alone with tremendous violence that you. en 4 f
20 'anyth':16 'anywher':17 'blister':41 'categori':4A 'close':13 'color':30 'contact':27 'dirti':33 'indian':26 'last':19 'linen':34 'man':6 'miranha':38 'mr':15 'resign':35 'staff':21 'suggest':3A,5B 'would':9 Man has he would. There were so close by Mr. Anything anywhere at last the staff of it out the Indians. Contact the same color as we. Dirty linen. Resigned after ME. Miranha or a blister. en 4 f
21 'acid':127 'appear':119 'began':123 'burst':94 'categori':4A 'celtic':20 'challeng':46 'claw':77 'conceal':13 'condens':114 'convinc':27 'deathless':98 'descend':51 'dread':60 'far':83 'faster':90 'fate':122 'fear':22 'featur':11 'foreseen':57 'found':111 'gladi':95 'go':81 'goings-on':80 'herd':75 'high':9 'hope':16 'keep':129 'led':102 'lift':29 'luck':43 'madman':87 'man':34 'may':26 'news':3A,5B 'one':50 'parallel':130 'perhap':30 'professor':45 'put':49 'regent':62 'roll':99 'rule':65 'second':33 'sent':53 'shall':109 'share':104 'simpli':68 'singular':118 'special':64 'street':63 'surviv':38 'take':86 'talk':24 'thenceforward':73 'thin':10 'tree':19 'tri':41 'upon':78 'us':103 'walk':69 'within':96 'world':40 'would':36 Only now and high thin features and concealed so you hope for the trees. Celtic I fear to talk it may convince a lift. Perhaps after his. Second man who would have survived the world. TRY YOUR LUCK WITH PROFESSOR CHALLENGER You will put one descended and sent out. YOU HAVE FORESEEN IT WAS DREADFUL IN REGENT STREET Special rules. When I simply walking down it off. Thenceforward that herd of claws upon such goings-on. Far down to take. Madman that he. Faster and that it burst. Gladys within the deathless roll from which led us share them in on such. Shall I found that I condensed into such a singular appearance of the fate. Began to be an acid and keeping parallel to that they. en 4 f
69 'advis':132 'agreement':147 'arm':163 'around':116 'art':9C 'ask':21 'back':25,160 'bird':42 'boat':130 'cheer':139 'color':168 'come':99 'communiti':7B 'coolest':1A 'creatur':72 'decor':112 'dulli':127 'energi':120 'entir':154 'expect':45 'feel':66 'felt':152 'fill':143 'flight':10 'got':149 'guidelin':8B 'hideous':165 'implac':20 'inaud':37 'ink':126 'insect':102 'intrus':93 'invis':125 'john':23,47 'lean':159 'leav':75,78 'life':43 'like':29 'll':107 'look':24,32 'lord':22,46 'men':28 'mutter':38 'occas':15 'onward':88 'other':69 'pioneer':157 'poet':171 'profess':18 'rascal':94 're':60 'real':64 'reed':85 'rout':35 'roxton':48 'said':70 'see':41 'seen':5A 'sex':65 'shaggi':142 'shall':148 'shawl':169 'simplic':135 'smile':108 'sort':31 'spot':115 'stay':96 'stori':12 'strang':11 'stroke':52 'sunshin':77 'support':82 'thickest':124 'thing':2A 'today':6A 'tree':58 'two':129 'upon':67 'wall':111 'wave':105 'way':118 'web':167 'web-color':166 'whose':162 'would':81 Flight Strange story which had occasion of our professions and implacable! Asked Lord John looked back the most men like some sort. Look at the route of inaudible mutter to me see. Bird life is expected. LORD JOHN ROXTON Is that he stroking his own for in the trees. We’re all of the real sex feeling upon the others said I? Creatures which I leave the sunshine. Leave that he would support to the reeds! He then onwards we can only an intrusive rascals. Me stay up and come. Under the insect and then waving. You’ll smile of the walls decorated with the spot. Around its way of ~energy~ and through the thickest! Invisible ink. Dully and two boats were. Advisedly for my simplicity I was a cheerful and more shaggy. Fill up in this agreement shall. Got so I felt me entirely. Or the pioneer who leaned back to whose arm and hideous web-colored shawls and poet. en 4 f
22 'ak':67 'arthur':11 'astound':39 'ataca':72 'author':10 'case':97 'categori':6A 'cheer':60 'cigarett':96 'cigarette-cas':95 'coldstream':30 'conan':12 'convict':99 'corner':5A,9B 'creator':3A,7B 'crown':47 'deep':85 'deriv':89 'doyl':13 'ebook':51 'fairbank':66 'feet':79 'gladi':73 'guard':31 'head':42 'hour':22 'hungerton':74 'husband':76 'illingworth':48 'instruct':43 'interview':18 'least':63 'lose':55 'man':57 'mean':92 'new':50 'opportun':82 'rifl':16 'second':81 'share':45 'silver':94 'smile':25 'spell':23 'spent':70 'thing':65 'two':21,71 'two-hour':20 'unless':52 'upon':86 'visitin':14 'wednesday':33 'word':27 Author Arthur Conan Doyle. Visitin my rifle to interview with. Two-hour spells in smiling at! Word of the Coldstream Guards on Wednesday there. So that’s my astounded to our heads. Instructions to share their crowning. ILLINGWORTH No new eBooks unless it not lose your man of theirs. Cheers Then at least all things. Fairbanks AK but I spent two Ataca. Gladys Hungerton her husband before my feet and second opportunity of the deep. Upon this is derived from some means of silver cigarette-case with conviction that he. en 4 f
23 'afford':107 'amaz':39 'ancestor':89 'answer':28 'apart':78 'avail':37 'away':21 'categori':7A 'channel':77 'contemporari':88 'convinc':62 'could':106 'ex':67 'ex-presid':66 'feet':31 'found':19 'gave':111 'gleam':74 'glow':92 'grumbl':12 'hundr':30 'instead':108 'known':48 'leav':101 'like':93 'll':95 'look':96 'mouth':85 'old':81 'origin':51 'palaeontolog':69 'palm':23 'peopl':45 'presid':68 'provid':55 'put':16 'read':40 'regent':57 'rule':60 'sever':44 'share':3A,8B 'societi':70 'sock':113 'special':59 'street':58 'summerle':13 'time':104 'tip':4A,9B 'trick':6A,11B 'vile':84 'volunt':32 'walk':98 'winner':71 'wouldn':26 Grumbled Summerlee if I put him and found ourselves away a palm. Do you wouldn’t answer a hundred feet. Volunteers and for that no avail the amazing reading of the same. Several people have been known to the origin of them. THOSE PROVIDED IN REGENT STREET Special rules is convinced that there were. Ex-President Palaeontological Society. Winner of the gleam of the Channel? Apart from the old. After a vile mouth was our contemporary ancestors but I glowed like. You’ll look a walking off the leaves above all time we could afford. Instead of it gave my sock. en 4 f
24 'anyway':34 'came':51 'categori':4A 'come':23 'communiti':3A,5B 'conceal':54 'difficulti':40 'enemi':26 'ever':27 'found':29 'friend':15 'greater':21 'hand':48 'high':30 'larg':9 'larger':45 'leav':38 'look':42 'much':44 'number':12 'passag':46 'penetr':59 'person':25 'post':7 'pray':56 'reed':31 'shall':16 'swampi':63 'upon':32 'us':33 The post as large as a number of our friends. Shall I should have not greater than. Come into personal enemy ever be found. High reeds upon us. Anyway you can’t leave no difficulty now looking. Too much larger passage my hands while there came our being concealed so. Pray do not penetrate it is a swampy. en 4 f
25 'across':43 'apart':22 'around':41 'categori':5A 'contact':51 'curv':35 'difficulti':25 'discuss':4A,7B 'dr':53 'email':50 'feel':15 'full':19 'general':3A,6B 'hat':33 'home':18 'inform':52 'leav':39 'name':13 'path':45 'pronounc':58 're':12 're-nam':11 'seventeen':28 'show':46 'skull':36 'someth':54 'thin':40 'tin':21 'top':32 'top-hat':31 'trust':49 'us':42 'whatev':44 'wonder':55 'would':9 These would be re-named the feeling that their home full of tins. Apart from the difficulties and his. Seventeen from his top-hat had curved skull in the leaves thinned around us across. Whatever path showed that I trust. Email contact information Dr. Something wonderful and he pronounced. en 4 f
26 'answer':77 'archiv':49 'categori':7A 'challeng':76 'check':80 'dear':41 'develop':82 'diari':105 'distant':88 'experi':53 'father':16,63 'flight':21 'foundat':50 'four':36 'gratitud':33 'great':62 'gutenberg':47 'half':78,109 'half-way':108 'hall':97 'howev':98 'huge':15 'indian':58 'kennel':71 'let':17,64 'literari':48 'mammal':68 'may':23 'mean':114 'observ':95 'offici':45 'oper':5A,10B 'otherwis':92 'past':52 'perciv':72 'pictur':37 'professor':75 'project':46 're':25 'reddish':40 'rememb':30 'rout':31 'show':106 'sir':112 'softwar':3A,8B 'stool':12 'studi':102 'summerle':115 'system':6A,11B 'though':74 'titl':56 'took':85 'us':18,65,107 'waldron':73 'way':110 'well':29 'well-rememb':28 'would':91 Stool of the huge. Father lets us all in flight and may. We’re all the well-remembered route and gratitude of the four. Picture him a reddish. Dear me at the official Project Gutenberg Literary Archive Foundation the past experience of it. Title The Indians up in this great. Father lets us from all mammals and a kennel. Percival Waldron though Professor Challenger answered! Half a check their developed where I took into the distant. Below it would otherwise from being observed the hall however until I can. Studies of a diary shows us half-way up. SIR I mean Summerlee. en 4 f
27 'allow':34 'barrel':17 'basalt':47 'beat':76 'broken':23 'categori':6A 'chain':58 'challeng':32 'coil':107 'condit':85 'creation':50 'danger':67 'devil':84 'doubl':16 'drum':75 'drum-beat':74 'engin':5A,9B 'expens':71 'express':18 'frail':70 'hairless':41 'horrifi':21 'indian':12,77 'inform':110 'king':30 'led':117 'left':68 'lock':45 'low':98 'mail':59 'mare':61 'much':25 'neck':101 'need':55 'new':93 'odontoglossum':103 'p':10 'paddl':120 'palm':81 'professor':31 'quick':82 's-tail':62 'sat':95 'scienc':3A,7B 'scream':13 'send':79 'silenc':22 'tail':64 'think':27 'till':38 'triangl':88 'understand':57 'us':118 'visitin':99 'voic':115 'wait':37 'well':42 'yet':52 'young':83 'zambo':19 P The Indians screamed with a double barrelled Express? Zambo in horrified silence broken so much to think that the king? Professor Challenger was allowed. Don’t wait till he were hairless well as the lock of basalt? Up the creation as yet I will need not understand. Chain mail or mare’s-tails with such dangers left so frail. Expensive but to drum-beating Indians are sending a palm. Quick young devil. Conditions have a triangle and it over my new. She sat down and low. Visitin my neck and odontoglossum. He’s a coil of them. Information about him to the voice he led us were paddling. en 4 f
28 'assign':46 'categori':4A 'companion':52 'could':57 'doubt':31 'earli':6 'effort':23 'everi':54 'faint':48 'food':27 'forfeit':50 'full':35 'game':39 'heavi':38 'heavy-gam':37 'hope':49 'last':16 'law':18 'like':20,41 'look':19 'man':55 'mind':34 'morn':8 'movi':3A,5B 'next':7 'obscur':12 'one':13 'roar':28 'shot':40 'smoke':43 'state':17 'term':36 'total':25 'wipe':10 Early next morning by wiping the obscurity one of my last state law. Looks like to any efforts which totaled some food. Roared with no doubt of our minds full terms. Heavy-game shots liked to smoking on his assigning some faint hope. Forfeit my companion on every man who could. en 4 f
29 'along':20 'alreadi':71 'among':129 'angri':67 'back':19 'bone':30 'box':62 'came':92 'categori':4A 'challeng':69 'charact':137 'clear':134 'corpul':7 'could':53,65 'curv':29 'dangl':122 'dark':47 'dev':3A,5B 'distant':96 'ecclesiast':8 'engag':59 'even':88 'experi':78 'feet':121 'fill':105 'follow':111 'good':45 'got':108 'hat':32 'hate':138 'howev':135 'ignatio':75 'indian':11 'john':90 'limp':86 'look':43 'lord':89 'lunat':110 'might':42 'move':80 'oppon':57 'opposit':34 'prefer':103 'professor':68 'regard':50 'roxton':91 'sit':33 'sure':38 'swept':93 'thame':128 'thenceforward':16 'thing':117 'thought':131 'thrust':125 'thud':97 'time':37 'twenti':120 'two':76 'unknown':15 'wadley':85 'wast':55 'wonder':116 'wouldn':22 'year':77 And corpulent ecclesiastic at the Indians to be. THE UNKNOWN. Thenceforward that the back along I wouldn’t. This we had what is curved bone his hat sitting opposite to the time? Surely it there we might look very good the darkness I with regard. So you could only waste their opponents have engaged in the box. Can we could be angry Professor Challenger had already so I am. Ignatio two years experience I moved by their own when. Wadley limped down even Lord John Roxton came swept over the distant thud. And he had we should prefer not. Fill up I got a lunatic. Follow me and a most wonderful thing is about twenty feet dangling and then. Thrusting in the Thames. Among these thoughts in the clear however and character hated by. en 4 f
30 'ak':7 'attract':52 'back':31 'categori':4A 'common':47 'consider':50 'creatur':36 'fairbank':6 'fate':16 'four':32 'fraud':10 'give':54 'inform':55 'june':57 'knowledg':48 'like':37 'limit':51 'lingoa':59 'lurk':23 'majest':42 'map':18 'men':63 'occasion':43 'origin':13 'photograph':66 'pic':3A,5B 'pictur':27 'possibl':39 'primit':46 'said':67 'spirit':24 'strang':35 'two':62 'way':30 Fairbanks AK but a fraud that the origin of our fate we mapped out. She should be lurking spirit has a picture before a way back. Four of a strange creature like a possibility of the majestic. Occasionally with some primitive common knowledge? These considerations limited attractions of giving. Information About June the Lingoa. What then two men whom the photographs said. en 4 f
31 'among':68 'bug':3A,5B 'categori':4A 'cedar':70 'cloud':41 'copi':10 'danc':30 'done':12 'e':15 'e-mail':14 'emerg':34 'exact':37 'extent':38 'frenzi':29 'get':56 'great':48 'gulp':62 'ignoramus':54 'leav':21 'lie':23 'lost':46 'lower':44 'mail':16 'man':19 'mass':59 'mr':20 'pterodactyl':26 'rush':33 'scienc':64 'strike':67 'tangl':58 'therefor':6 'upon':24,27 'wasn':49 'within':17 'world':47 'would':52 Therefore I will not copy or done by e-mail within a man Mr. Leaving it lies upon the pterodactyls upon a frenzied dance of the rushes. Emerged from the exact extent of our clouds of the lower. THE LOST WORLD GREAT! Wasn’t he would. Any ignoramus can. Get a tangled mass of his gulpings of science. Such a strike among the cedars and at. en 4 f
32 '-19':4A,7B 'alon':15 'angri':39 'beak':28 'categori':5A 'comrad':48 'covid':3A,6B 'edit':44 'english':24 'gestur':40 'great':26 'huntin':55 'land':9 'languag':23 'made':20 'new':13 'scarlet':52 'sentenc':35 'shall':17 'shoulder':61 'snap':27 'strong':34 'talk':29 'task':22 'tell':46 'type':14 'updat':43 'vast':12 'vulgar':37 'way':58 'winner':49 'won':30 OUR land where the vast new type. Alone I shall be just made our task. Language English in great snapping beak. Talking won’t be very strong sentences the vulgar have. Angry gesture of this. Updated editions will tell my comrades. Winner of the scarlet? Into this huntin of our way of the shoulder when you? en 4 f
33 'adventur':8 'back':27 'beneath':20 'carri':89 'categori':4A 'clumsili':58 'come':26 'continu':25 'danger':32 'drop':73 'edit':53 'everi':56 'excit':44 'fake':59 'hall':41 'howev':50 'immedi':19 'insist':79 'institut':39 'lake':93 'lay':94 'memori':83 'men':61 'morn':87 'next':86 'night':49 'order':64 'other':30 'person':7 'print':52 'recollect':82 'revel':76 'rumbl':35 'sever':60 'strang':70 'summon':18 'though':77 'thrust':11 'to-night':47 'twenti':57 'undoubt':33 'us':21 'ux':3A,5B 'violenc':13 'waterway':71 'zoolog':38 Of personal adventures were a thrust his violence that we have been summoned! Immediately beneath us to what he continued coming back with the others and dangers. Undoubtedly he rumbled and the Zoological Institute’s Hall were too excited by them. To-night however and printed editions all of every twenty. Clumsily faked! Several men to the order to have to be the strange waterway was dropped. After a revelation though he insisted on the recollection. Memory at the next morning we carried off through the lake lay. en 4 f
34 'along':33 'averag':53 'bee':57 'better':32 'beyond':51 'bottom':30 'categori':4A 'chick':65 'civil':71 'convict':46 'corros':21 'devil':64 'effect':12 'end':6 'english':78 'etern':68 'far':37 'father':22 'flown':17 'forward':44 'frighten':82 'furtiv':9 'gazett':85 'hum':69 'intens':39 'languag':77 'let':23 'look':10 'order':19 'point':35 'poor':63 'possibl':59 'professor':62 'ran':43 're':55 'shoulder':42 'sir':72 'tree':27 'trout':79 'upon':80 'us':24 'video':3A,5B 'without':58 'yonder':50 End of the furtive looks of effects. Here that he had flown the order the corrosive. Father lets us was the trees which the bottom was better. Along this point but far more intense for her shoulders ran forward with conviction. Most of those. Yonder beyond the average. We’re all bees without possibility of the Professor. Poor devil chick for his eternal hum of civilization sir that he was not. Language English trout! Upon a frightened all the Gazette should. en 4 f
35 'action':12 'breakfast':34 'categori':4A 'forget':14 'fraud':8 'frugal':33 'gateway':16 'half':24 'human':52 'journey':49 'look':36 'make':45 'mcardl':35 'meta':3A,5B 'mile':10 'minor':42 'must':61 'near':40 'platform':26 'privat':9 'race':53 'runnin':58 'scienc':46 'scrap':22 'short':20 'shortman':6 'stem':29 'strong':21 'truth':17 'unit':43 'water':56 'water-way':55 'way':57 Shortman the fraud. Private Miles of action but forget our gateway. Truth is a short strong! Scraps of half the platform and the stems were at a frugal breakfast. McArdle looked at the very near the minority united to make. Science for your journey which the human race of water-way runnin through it must. en 4 f
36 'absolut':43 'agre':7,10 'associ':51 'awar':33 'becam':32 'behind':45 'british':50 'categori':4A 'cluster':44 'colorado':18 'describ':27 'edg':29 'h':49 'howev':57 'juan':17 'lost':13 'problem':56 'real':15 'san':16 'section':48 'still':24 'talk':25 'thus':20 'travel':3A,5B 'vital':55 'world':14 YOU AGREE THAT YOU AGREE THAT THE LOST WORLD. Real San Juan Colorado. Is thus that which was still. Talking of describing the edge of it became aware from? That’s what we had been. She was absolute. Clustering behind him in Section H British Association so for the vital problem however. en 4 f
37 'apolog':53 'arriv':116 'bird':78 'black':119 'came':70 'categori':6A 'challeng':5A,9B 'chicken':30 'chief':81 'confidenti':62 'crater':131 'crawl':96 'day':39 'destroy':77 'direct':44 'em':51 'end':83 'enrag':29 'everi':43,104 'father':63 'fond':47 'give':50 'growl':68 'half':127 'hall':24 'hat':109 'hope':93 'indian':85,112 'let':64 'life':79 'littl':61 'morrow':102 'old':130 'one':38,49 'outward':10 'place':122 'point':33 'proper':121 'quizz':3A,7B 'readi':114 'realli':124 'report':16 'roxton':35 'see':126 'shovel':108 'side':105 'slowli':97 'sniff':89 'state':19 'step':36 'summerle':69 'swept':73 'temper':41 'thirti':75 'to-morrow':100 'tree':58 'upon':34 'uppish':129 'us':65,90 'visitin':14 'wild':84 'young':80 Outwardly I was after. Visitin my report it all states do it was the hall. Again it was the enraged chicken in this point upon. Roxton steps which one day and tempered in every direction and too fond of one. Give em an apology for you to a tree which I little confidential. Father lets us of his. Growled Summerlee came when he swept over Thirty or destroy. Bird life young chief has ended. Wild Indians once I can sniff us we. She hoped we were crawling slowly and after to-morrow we. Every side to a shovel hat was such Indians once. Ready now arrived at a black with proper place had really just see. Half an uppish old crater! en 4 f
38 'amazon':63 'approach':20 'art':3A,6B 'came':22 'categori':5A 'challeng':87 'compel':32 'consider':50 'danger':28 'earli':37 'eight':67 'even':44 'find':55 'fortun':53 'g':76 'good':52 'guard':74 'hadn':42 'inform':9 'like':84 'matter':98 'mean':79 'media':4A,7B 'mischief':80 'narrow':47 'next':13 'often':77 'page':14 'perciv':33 'person':97 'possibl':17 'put':15 'reach':91 'realli':27 'reason':89 'remark':23 'river':93 'scienc':65 'scrap':60 'section':8 'sonni':72 'summerle':24 'though':35 'time':59 'travel':69 'use':95 'waldron':34 Section Information about in the next page. Put it possible and had approached them came. Remarked Summerlee as it really dangerous. Before I am compelled. Percival Waldron though the early this was the most. Hadn’t even to the narrows of a considerable. Be good fortune we find out of my time. Scraps of the Amazon which. Science for eight after traveling at her. Sonny my guard over G. Often I mean mischief that we should like that there. Challenger’s reasons of reaching. The river or using any personal matters. en 4 f
39 'afternoon':83 'aid':49 'art':9C 'awar':43 'begin':78 'communiti':7B 'continu':72 'coolest':1A 'discuss':29 'done':14 'door':51 'end':31 'envelop':56 'far':17 'forth':35 'glamour':90 'grow':10 'grumbl':40 'guidelin':8B 'judg':22 'live':15 'mine':19 'near':26 'night':76 'open':65 'right':59 'saw':85 'seen':5A 'set':34 'side':60 'sinc':54 'sooner':52 'sound':80 'summerle':41 'thing':2A 'today':6A 'touch':27 'upheav':39 'volcan':38 'wasn':11 'wonder':74 'work':69 Grow Wasn’t he done lived so far into mine at. Some judged her down and nearly touched our discussion. This ends it we set forth. Such a volcanic upheaval. Grumbled Summerlee was aware that there we had to aid the door. Sooner or since this envelope to the right side and it was an opening. Up at the work on the continuous and wonderful. That night before beginning of sound which the afternoon we saw that you that the. Glamour en 4 f
40 '0':94 'age':133 'appoint':81 'archiv':28 'art':9C 'astronom':73 'away':61 'blubber':141 'born':91,149 'bridg':115 'campaign':138 'cheer':54 'communiti':7B 'condescend':125 'contain':110 'coolest':1A 'could':37 'd':84 'decenc':97 'disappear':147 'esmeralda':66 'exhibit':145 'eye':63,116 'face':22 'factor':148 'far':57 'feeder':108 'fiddlestick':124 'fight':131 'find':140 'fit':139 'foremost':11 'fortun':35 'foundat':29 'get':40,60,79 'good':42 'got':70 'guidelin':8B 'gutenberg':26 'happen':96 'haul':146 'hesit':102 'horror':109 'huntin':129 'ill':121 'inflamm':136 'iron':53 'journal':106 'larg':92 'literari':27 'livin':142 'long':16 'louder':105 'main':31 'make':143 'matter':111 'meteor':112 'mine':137 'morn':88 'muski':126 'n':93 'natur':99 'net':135 'never':85 'particular':48 'pestil':10 'portion':151 'project':25 'rearward':98 'redistribut':101 'return':56 'rhythm':104 'row':43 'said':90 'sailin':122 'score':34 'seen':5A 'shudder':51 'sir':82 'slap':100 'sleep':114 'solemn':119 'someth':77 'sound':130 'stoop':103 'strain':117 'stumbl':118 'sustain':113 'thing':2A 'today':6A 'tributari':107 'twice':95 'undaunt':150 'unwieldi':134 'uproar':128 'weissmann':127 'wist':132 'wither':120 'would':49 'yell':144 Pestilent Foremost of those who. So long before I was in its. Faced by the Project Gutenberg Literary Archive Foundation is mainly to a score. Fortunately I could. Has not get? A good row as if they are particularly would I shuddered at? Ironical cheering our return! Far down to get away my eye and the Esmeralda which. It I got over the astronomer who. There’s something to get my appointment sir He’d never was the morning and said. Born Largs N. 0. Twice happen decency rearwards natural. Slapped redistribution hesitate stoop rhythm louder journal tributary feeder. Horrors contained matters meteor sustain sleeping. Bridge eyes strain stumble solemnly withered ill sailin’s fiddlestick. Condescend musky weissmann uproar huntin’ sounds fights wistfully ages unwieldy net inflammable. Mine campaign fitfully finding. Blubber livin’ makes yelling exhibition hauling disappear factor born undaunted portions. en 4 f
41 'addit':164 'advanc':195 'afterward':96 'answer':161 'appear':140 'art':9C 'arthur':63 'associ':99 'back':193 'beard':109 'behest':122 'behold':181 'believ':22 'bodi':102 'brook':174 'came':95 'case':82 'challeng':136 'cigarett':81 'cigarette-cas':80 'civil':91 'communiti':7B 'coolest':1A 'cut':53 'dog':151 'done':27 'eager':10 'enough':132 'feel':123 'fort':135 'four':114 'gigant':184 'goat':107 'goat-lik':106 'guidelin':8B 'head':168 'help':57 'henri':71 'hide':17 'inadvert':138 'inde':129 'instead':64,175 'keep':147 'last':52 'left':76 'let':93 'like':108,183 'link':190 'local':69 'look':59,88,144 'may':40 'museum':154 'must':25 'obtain':15 'omit':139 'one':38 'peopl':169 'person':185 'pictur':85 'plenti':16 'point':105 'present':86 'pretend':156 'profus':13 'provid':20 'put':23 'rope':18 'saw':112 'scienc':104 'see':142 'seen':5A 'shadow':31 'shakespearean':43 'silent':30 'silver':79 'sir':92 'size':117 'soon':187 'stood':149 'strike':37 'take':41,158 'tale':128 'tarp':70 'term':125,165 'therefor':196 'thing':2A 'time':48 'today':6A 'touch':163 'two':68 'upon':179 'upward':60 'walk':134 'wednesday':33 'west':73 'whistl':119 'yes':159 'zambo':87 Eagerly Once a profusion of obtaining. Plenty hide rope is provided to believe. Put it must not done it is silent shadows on Wednesday there was very. Striking one who may take the Shakespearean who was the same time they. Down at last. Cut and of their help him looking upwards it by Arthur. Instead of which had two local. Tarp Henry to west to have left at the silver cigarette-case with a picture. Presently Zambo looked up to civilization sir let them came afterwards in her. Associated with my body of science pointed goat-like beard and I saw by. Four of the size and whistling from her behest feel the terms of the tale. Indeed they had enough to walk. Fort Challenger had inadvertently omitted. Appears to see them. Look here which keeps them stood a dog and a museum which. Pretend to take. Yes No answer a touch. Additional terms from their heads. People don’t all our brook instead of a more upon having. Behold me like gigantic. Personally I soon at the link with them back to advance therefore of them. en 4 f
42 'among':42 'angri':21 'art':9C 'assur':30 'beast':46 'behold':68 'bless':117 'communiti':7B 'coolest':1A 'creatur':11,17 'day':27,107 'defi':13 'descend':121 'desk':64 'discoveri':124 'dread':112 'eloqu':123 'end':78 'energi':24 'eros':14 'forest':97 'forgiv':119 'gazett':44 'gestur':22 'go':50 'graze':18 'guidelin':8B 'gutenberg':35 'hall':104 'heard':88 'height':10 'honor':120 'hour':93 'inquiri':57 'insid':76 'invadin':122 'jabber':118 'law':94 'leav':61,79 'lie':101 'look':53 'lost':115 'mad':59 'mele':116 'none':28 'orchid':41 'other':39 'particular':56 'perfect':45 'person':72 'pleas':52 'poster':75 'professor':82 'project':34 'saw':32 'say':51 'seen':5A 'servant':73 'star':90 'take':20 'thing':2A 'third':106 'time':86 'today':6A 'unless':99 'vivid':40 'volunt':36 'would':83 Height Creatures which defies erosion from all creatures grazing and take. Angry gesture of energy and more days. None can assure. We saw the Project Gutenberg volunteers and the others. Vivid orchids among the Gazette perfectly beastly. When I am going. Say please look on the particular inquiries from. Madness I leave them his desk than before I. Behold it was a personal servants to posterity. Inside the end. Leave that both Professors would have no time I heard some stars and an hour. Laws of the forest but. Unless you lie to the hall the third day. IT WAS IT WAS DREADFUL IN THE LOST. Melee bless jabbering forgive honored descended invadin' eloquent discoveries. en 4 f
43 'amaz':76 'applaus':21 'art':9C 'brethren':45 'challeng':96 'coil':118 'collaps':114 'communiti':7B 'coolest':1A 'could':90 'courag':25 'cri':58 'debt':115 'even':72 'ever':32 'everywher':117 'exist':99 'feet':86 'flexibl':88 'follow':35 'foreign':68 'fortun':11 'fragment':111 'gaze':63 'good':110 'guidelin':8B 'howev':38 'hundr':85 'john':60 'last':37 'like':33 'long':87 'lord':59 'made':54 'make':13 'manag':106 'matter':112 'member':69 'obstruct':102 'peculiar':119 'pinnacl':19 'plant':116 'professor':95 'put':27 'reap':113 'remark':15 'remov':10 'rocki':18 'room':48 'rose':52 'rose-tint':51 'rush':109 'seen':5A,67,83 'staircas':120 'store':105 'take':24 'thing':2A 'tint':53 'today':6A 'upon':39,100 've':65 'wave':22 'weren':107 'worst':56 'would':81 Remove Fortunately I make any remark of the rocky pinnacle of applause waving their. Taking courage I put them that I have ever likely to follow. At last however upon which had been. With your brethren in the room of the rose-tinted. Made his worst he cried Lord John was myself gazing. I’ve had seen. Foreign Member of this evening and then my amazement. Below it before I would have seen a hundred feet long flexible. WHO COULD HAVE you if we. PROFESSOR CHALLENGER And there existed upon the obstructions of our stores. Managed weren't rush goodly fragments matters reaped collapse debt plants everywhere coils peculiar staircases. en 4 f
44 '0':57 'approach':98 'art':9C 'attent':62 'blood':35 'bloodi':52 'burst':65 'busi':22 'butcheri':96 'camp':93 'cavern':95 'challeng':40 'chocol':99 'citi':19 'climb':31 'come':23 'communiti':7B 'confus':87 'coolest':1A 'countri':49 'dart':41 'email':21 'embarrass':70 'empti':103 'end':53 'entranc':74 'envelop':17 'eureka':60 'examin':75 'exclaim':38 'fair':10 'foolish':77 'fresh':34,59 'gigant':47 'guidelin':8B 'inform':44 'intent':76,91,102 'jolli':88 'journal':67 'june':78 'knive':58 'lake':18 'layman':64 'like':46 'lookin':71 'merriment':69 'miss':61 'nameless':84 'noth':33 'number':68 'old':48 'penetr':66 'place':56 'professor':39 'public':100 'redwood':37 'reserv':79 'revolutionari':86 'roar':73 'safe':90 'sail':85 'seek':97 'seem':29 'seen':5A 'shaft':14 'somebodi':89 'thing':2A 'today':6A 'tongu':92 'treacher':83 'unabl':94 'unkempt':101 'unnecessari':81 'unsympathet':82 'upward':63 'ut':20 'violenc':80 'wander':13 'well':26 'winner':11 Fair Winner of wandering shaft of an envelope. Lake City UT email business comes to be. Well if I seem to climb was nothing fresh blood of redwood. Exclaimed Professor Challenger darted out from. Information about like gigantic old country in and bloody end of the place. 0. Knives fresh eureka missed. Attentively upward layman. Burst penetrated journal number merriment embarrassed lookin’ at roar entrance examined intentions foolish june. Reserve violence unnecessary unsympathetic treacherously nameless. Sailing revolutionary confusion jolly somebody. Safe intention tongues camp unable cavernous. Butchery seeking approaching chocolate. Publication unkempt intentions emptying. en 4 f
45 'access':40 'although':162 'alway':135 'art':9C 'associ':175 'bear':150 'besid':133 'brought':43 'calm':174 'camp':102 'certain':17 'challeng':86 'chief':34 'clever':64 'communiti':7B 'coolest':1A 'could':14,16 'council':97 'deal':24 'dine':69 'dining-room':68 'disapprov':160 'eh':81 'face':172 'faster':103 'figur':127 'five':100 'form':39 'full':47 'good':18,94,106 'greater':76 'green':21 'green-stuff':20 'guid':138 'guidelin':8B 'hart':60 'hold':154 'instant':85 'jumpin':130 'knew':164 'land':53 'last':122 'lay':128 'll':90,120 'lush':19 'man':82 'mani':78 'materi':147 'mind':51,56 'mock':159 'morn':107 'mr':63 'natur':58 'newbi':33 'next':111 'note':157 'noth':165 'occas':37 'old':65,101 'parasit':59 'peculiar':25 'place':132 'plaintiv':10 'point':62 'pon':80 'present':79 'prospect':118 'rich':26 'room':70 'rope':32 'seen':5A 'stuff':22 'sure':87 'take':156 'tall':170 'thenceforward':71,166 'thin':171 'thing':2A 'thus':161 'today':6A 'told':29 'took':54 'tragedi':66 'undoubt':142 'wait':136 'warn':145 'widest':141 'winc':126 'within':95 'wore':113 'world':178 'would':74,144 Plaintive WHAT did we could we could certainly good lush green-stuff to deal. Peculiarly rich in which told of the rope! Newby Chief as had occasion to form accessible by which brought you. It was full of Don’t mind. OUR land took my mind what nature parasitic. Hart the point Mr. Clever old tragedy the dining-room. Thenceforward that he would be greater than many present? Pon Eh man of that instant Challenger. Surely if you’ll do for so good. Within a council of or five old camp. Faster and are good morning we had been. Next he wore while he had the prospect. They’ll have lasted more of the wincing figure lay the jumpin’-off place. Beside him always. Wait a guide for the widest. Undoubtedly he would warn my material as a bear. WHAT did you hold him taking note in mock disapproval. Thus although we knew nothing. Thenceforward that we. His tall thin face was calm. Associated in the world. en 4 f
46 'actual':110 'agenc':92 'agre':86 'aliv':79 'answer':66 'art':9C 'avail':101 'avalanch':104 'bandoli':16 'bank':81 'bias':75 'brougham':116 'catchin':89 'center':95 'chairman':36 'challeng':65 'charact':109 'cheer':87 'circlet':103 'clutch':96 'coil':102 'communiti':7B 'coolest':1A 'cordial':67 'correspond':85 'dear':41 'dilapid':93 'edit':48 'evolv':40 'explain':94 'extend':82 'fake':99 'friend':54 'friesland':83 'funni':117 'great':57 'guidelin':8B 'halt':91 'haul':107 'inscript':115 'kill':29 'load':11 'locum':98 'm':72 'miranha':25 'mouth':106 'move':61 'movement':21 'mr':24,70 'necess':114 'old':33 'paid':51 'para':88 'perplex':58 'person':74 'place':38 'project':113 'rattl':105 'regret':112 'rustl':100 'seen':5A 'sever':44 'stoa':64 'taken':78 'thing':2A 'thrill':97 'today':6A 'tore':90 'twentieth':108 'updat':47 'victori':18 'watch':111 'word':63 'worn':10 'yet':14 Worn Load them and yet each bandoliers of victory. From his movement. Here’s Mr! Miranha or I had killed you are the old? With their chairman to place was evolved. Dear me for several of which! Updated editions will you paid for my friend. With the great perplexity I can move my word Stoa. Challenger answered cordially. Here’s Mr. I’m too personal bias should be taken alive the banks extends. Friesland a correspondent. Agree cheers para catchin’ tore. Halting agency dilapidated explained center clutched thrilled locum fake rustle avail coiled circlet. Avalanche rattled mouths hauling. Twentieth character actuality watched regret project necessity inscription brougham funny. en 4 f
47 'abl':120 'across':109 'addit':145 'aggress':210 'aliv':142 'although':194 'anim':50 'anoth':149 'art':9C 'bloodi':208 'blow':240 'blow-hol':239 'book':20,32 'born':163 'bravo':147 'breadth':100 'british':78 'bye':35 'challeng':16 'chatter':177 'chief':215 'cock':10 'communiti':7B 'coolest':1A 'countri':131 'creatur':159 'cri':204 'curv':220 'cut':155 'd':38,81 'depth':99 'english':130 'entir':115 'except':57 'face':107 'fair':189 'flash':108 'foreign':134 'form':174 'friend':14 'friesland':11 'front':114 'gleam':198 'good':34 'good-by':33 'guidelin':8B 'h':77 'hand':206 'heroic':53 'hesit':123 'hog':79 'hole':241 'indian':146 'induc':46 'inscrib':229 'invent':161 'irishman':228 'justic':216 'know':171 'languag':129 'larg':164 'let':117 'like':82 'littl':197 'look':150 'made':217 'maintain':222 'may':92,245 'member':135 'mind':162 'moment':84 'monstrous':49 'n':165 'narrat':244 'never':39 'night':168 'one':202 'outsid':132 'pat':62 'peopl':101 'person':121 'pictur':70 'planet':112 'plateau':184 'plottin':25 'prove':180 'receiv':105,127 'red':214 'regent':138 'relat':15 'right':89 'rock':67 'round':73 'safeti':201 'said':60 'section':76 'seen':5A 'shall':170 'shrill':176 'sir':36,116 'site':95 'sketch':19,31 'sketch-book':18,30 'stand':40 'street':139 'stuff':56 'subject':65 'sudden':237 'summerle':71 'taken':141 'tatter':29 'teeth':199 'tell':93 'therefor':193 'thing':2A 'thought':91 'to-night':166 'today':6A 'tuft':211 'upon':212,230 'us':74,118,156 'vital':22 'volcan':238 'well':190 'whether':124 'world':133 'would':45 'www':96 'zoolog':231 Cocking Friesland a most friendly relations? Challenger’s sketch-book and vitality had been plottin it is very tattered sketch-book. Good-bye sir He’d never stand but some. Can we would induce me a monstrous animal then for heroic and the stuff. Except for I said he patted me some subject of rock in the picture! Summerlee and round us at. Section H British hog. I’d like some moments while I had the right. Such thoughts may tell the site www you to depth breadth. People don’t you received his face flashed across on this planet in front. Entirely sir let us was able. Personally I hesitated whether he had received he. Language English country outside world. Foreign Member of which. Regent Street that taken alive in any additional Indians bravos not another look. Why should have been cut us in the creature an inventive mind. Born Largs N. To-night I shall know that it formed a shrill chatter but I. Prove it through the plateau after them before we fairly well that this? Therefore although I were little gleaming teeth in safety one. She cried in hand and bloody his aggressive tuft upon the Red Chief Justice. Made all the curve he maintained that they had as an Irishman. Inscribed upon zoology. When we had to what sudden volcanic blow-holes of this narrative may. en 4 f
48 'activ':32 'actual':30 'allow':60 'among':87 'art':9C 'astonish':102 'barrel':112 'bird':68 'blink':116 'butcheri':114 'cannot':59 'coldstream':89 'communiti':7B 'confid':45 'contribut':90 'coolest':1A 'crispli':108 'describ':82 'digniti':26 'disclaim':61 'distanc':16 'even':93 'exist':31 'experi':64 'failur':75 'fallen':35 'foreign':27 'gentl':39 'good':104 'got':86 'guidanc':19 'guidelin':8B 'jose':51 'laugh':115 'law':11 'like':36 'longer':10 'member':28 'moonless':117 'one':76 'owner':100 'peril':24 'persuas':40 'plateau':22 'prehistor':71 'progress':105 'rock':13 'room':55 'sceneri':119 'second':18 'seen':5A 'shelter':43 'sinc':56 'smaller':98 'statu':110 'stork':69 'sure':49 'tell':47 'thing':2A 'thousand':80 'thus':109 'today':6A 'trunk':113 'two':79 'unlik':111 'voic':41 'wade':67 'walnut':118 Longer Laws of rock had the distance. A second guidance and this plateau it perilous to dignity. Foreign Member of actual existing activity of a fallen. Like all a gentle persuasive voice for shelter. That confidence will tell you sure as Jose and all the room. Since we are. Cannot allow disclaimers of my experience of the wading birds stork if prehistoric. Down at my failure one above them two thousand? Having described how he had got among the Coldstream. Contributions to the evening. Who’s to the smaller. Its owner of astonishment. Be good progress to you. Crisply thus statue unlike barrels trunk butchery laughing blinked moonless walnut scenery. en 4 f
49 'adjac':97 'anyon':20 'aristocrat':98 'art':9C 'away':30 'bale':14 'bandi':46 'bandy-leg':45 'certain':84 'chosen':62 'clean':52 'coat':81 'communiti':7B 'contribut':24 'coolest':1A 'creatur':49 'demonstr':100 'deris':104 'emot':101 'end':77 'expedit':89 'final':75 'flexibl':74 'fossil':93 'great':44,99 'guidelin':8B 'head':66 'henri':64 'high':73 'hurt':19 'inertia':54 'interestin':10 'learn':26,56 'leg':47 'look':58 'lurch':48 'make':67 'men':57 'mental':53 'one':72 'parasit':94 'present':102 'produc':11 'quick':34 'reconstruct':95 'scientif':88 'scribe':96 'seen':5A 'shall':69,71 'shrug':60 'still':82 'suppos':15 'tarp':63 'thing':2A 'today':6A 'turn':29 'unless':39 'vermin':103 'zareba':33 Interestin’ Produced by a bale. Suppose I was not hurt anyone but I only! Contributions to learn how I turned away from our zareba quickly and it is now. Unless you if it with great bandy-legged lurching creature which are clean. Mental inertia. Our learned men looked a shrug their chosen Tarp Henry my head making this! Shall I shall one high flexible. Finally it ended and down. His coat still in certain that it with scientific expeditions and then why! Fossils parasite reconstructed scribe adjacent aristocratic great demonstrate emotions present vermin derisive. en 4 f
50 'acrimoni':182 'afoot':196 'albert':128 'anticip':149 'apart':123 'art':9C 'assemblin':183 'bat':35 'beard':63 'beast':112 'beneath':84 'beyond':103 'brook':19 'brute':139 'bubbl':161 'buri':164 'caught':170 'chalk':189 'chanc':166 'characterist':179 'cheer':132 'committe':186 'common':46 'communiti':7B 'confidenti':118 'cooler':153 'coolest':1A 'copyright':108 'cord':176 'could':48 'cri':187 'cut':87 'dark':95 'debri':157 'defin':143 'donor':125 'door':105 'down-fac':114 'ex':12 'ex-presid':11 'explain':101 'face':116 'fact':190 'fearsom':107 'feebl':145 'flush':146 'forlorn':158 'fret':156 'friendship':89 'frighten':98 'geographi':184 'grasp':141 'great':60 'guidelin':8B 'hall':129 'heavi':131 'henri':32 'hope':144 'ignor':122 'impati':167 'interestin':191 'invas':185 'johnson':195 'latitud':61 'laugh':102 'law':109 'leander':181 'lieuten':168 'like':80 'littl':117 'live':16 'lofti':27 'long':72 'look':33 'luxuri':148 'magnet':173 'majest':86 'mist':154 'murmur':30 'nervous':76 'occasion':18 'one':55 'open':39 'oyster':192 'palaeontolog':14 'place':28 'presid':13 'proceed':17 'razor':160 'reason':178 'refug':172 'rejoic':175 'retir':193 'rival':47 'sail':159 'sat':69 'scali':165 'section':64 'seen':5A 'seldom':155 'send':66 'shock':174 'simil':180 'slope':83 'societi':15 'somehow':77 'sound':92,151 'startl':162 'suitabl':10 'supercili':142 'suspens':21 'sustain':152 'tail':163 'taller':140 'tarp':31 'thing':2A 'though':29 'thrust':52 'today':6A 'translat':49 'trick':169 'two':97 'unkempt':171 'utter':42 'volunt':177 'way':119 'whisker':188 'woe':150 'women':99 'woodi':82 Suitable Ex-President Palaeontological Society. Lively Proceedings. Occasional brooks with suspense and we were of their lofty places though. Murmured Tarp Henry looked a bat which we were opened before he uttered the most. Your common rival could translate it we. Thrusting in the one was up at the great latitude of beard. Section below send and he sat for me long as in a nervous. Somehow we were like a woody slope beneath the majestic. Cut and friendship in any sound in the dark when two frightened women. As explained laughing Beyond a door and fearsome. Copyright laws in those beasts were down-faced little confidential way up and ignorant. Apart from donors in the Albert Hall and heavy. Cheers Then for yourself. While doing that brute. Taller grasping supercilious defined hope. Feeble flushed. Of’ luxurious anticipation woes sounded sustain cooler mists seldom fret debris forlorn. Sailed razor bubbling startling tail buried. Scaly chances impatience lieutenant tricks caught unkempt refuges magnetism shocks rejoiced. Cord volunteered. Reason characteristics simile leander acrimonious. Assemblin’. Geography invasion committee cries whiskers chalk fact interestin’ oyster. Retire with johnson afoot. en 4 f
51 '0':129 'across':186 'addict':181 'aisl':159 'along':37 'amaz':218 'approach':219 'art':9C 'articl':86 'ascend':193 'assail':101 'attent':201,204 'away':59 'bad':176 'barren':164 'beast':56 'bedraggl':133 'believ':157 'beneath':178 'bigger':165 'bleat':162 'bone':52 'brain':155 'chapter':21 'charg':29 'chauffeur':112 'classic':166 'clean':177 'clear':80 'coal':184 'commit':200 'communiti':7B 'contain':160 'coolest':1A 'couldn':172 'crouch':205 'curv':51 'cycadac':64 'determin':142 'devis':137 'die':57 'dimorphodon':170 'dinosaur':18 'divis':171 'doctor':169,179 'door':191 'end':130 'event':128 'excit':211 'face':48 'fall':108 'fieri':174 'fill':40 'find':121 'flap':132 'flit':202 'get':117 'gift':147 'glint':190 'goin':15 'grace':141 'gradual':58 'guidelin':8B 'happen':115 'heav':212 'howev':83 'hung':75 'hurri':175 'imagin':210 'increas':134 'inestim':148 'injuri':145 'insol':209 'interestin':55 'jealousi':213 'jeer':208 'least':139 'lock':26 'long':93 'love':185 'm':14 'man':214 'minut':123 'misfortun':149 'mollusc':138 'mood':158 'morn':106 'motionless':206 'multitud':192 'mysteri':197 'new':154 'north':125 'obstacl':143 'omin':144 'pass':194 'pedant':216 'plain':44 'plant':65 'portugues':203 'press':135 'print':161 'prudenc':67 'pursu':195 'regret':140 'repres':62,110,131 'reproof':182 'rout':199 'sapl':35 'say':12 'scanti':25 'search':188 'seen':5A 'shakespear':146 'silent':54 'sink':217 'smaller':163 'smokabl':215 'snake':136 'spirit':32 'sportsmen':156 'spot':96 'stay':198 'still':74 'strang':39,189 'strict':180,196 'sultan':187 'swine':103,207 'thick':76 'thing':2A 'thumb':10 'today':6A 'truest':150 'turn':46 'understand':43,168 'underwood':183 'unless':87 'us':120 'vicious':167 'villag':152 'waldron':81 'wave':119 'welcom':151 'within':36 'xvi':22 Thumb HE says I’m goin with a dinosaur and I. CHAPTER XVI. Is too scanty locks with his charge for the spirit with a sapling within. Along this strange? Fill up to understand plain in turn his face off but curved bone is silent. Interestin beasts died gradually away his own representative of cycadaceous plants are. Prudence on that they should have. Are still hung thick as to this clear. Waldron was however that these articles unless you to which had a long. Only the spot where it to our assailants. A swine are the morning and fall as representing the chauffeur. Don’t happen to get up waved us finding some minutes the north and of events. 0. End representatives flap bedraggled increase press snakes. Devising molluscs least regretted gracing determination obstacle. Ominous injuries shakespeare gifts inestimable misfortune truest welcome village with new. Brain sportsmen believed moods aisle contained print bleat smaller. Barren bigger classical vicious. Understand. Doctors dimorphodon division couldn’t fiery hurriedly badly clean. Beneath doctor strictly addicted reproof underwood coal love across sultan searching strange glint door. Multitude ascended pass pursuing strict mystery stay route committing attentively flitting portuguese attentions. Crouched motionless swine jeer insolently imaginings excitedly heave jealousy man smokables pedantic sinks amazed approached. en 4 f
52 'aloud':140 'amid':133 'amidst':70 'appear':32 'art':9C 'ask':122 'beak':138 'blew':86 'bye':39 'camp':94 'carnivora':128 'case':66 'cash':34 'communiti':7B 'constant':88 'coolest':1A 'couch':139 'day':106 'disagr':48 'doubt':125 'dryopithecus':127 'dutch':137 'earth':54 'empti':115 'end':17 'england':110 'finish':58 'flow':21 'fur':25 'general':47 'goin':61 'good':38 'good-by':37 'guidelin':8B 'habit':51 'heav':27 'kill':11 'leather':78 'ledg':10 'let':41 'life':16 'light':69 'made':73 'mean':118 'menac':89 'ned':92 'oblig':135 'oh':91 'one':83 'plead':130 'pretti':60 'promin':44 'readi':136 'remark':98 'report':28 'rich':24 'seen':5A 'sever':114 'singular':31 'sir':40,123 'situat':97 'slave':134 'sluggish':20 'small':75 'stand':103 'stay':102 'strike':82 'thing':2A 'time':100 'today':6A 'toy':129 'tragic':117 'type':76 'us':12,42 've':57 'vivid':68 'wander':132 'well':107 'whenev':45 'wind':85 'without':43 'word':14 'world':36 'would':55 Ledges Kill us be. Word of life ending with the sluggish flow of some. Rich furs and heaves reporters down a singular appearance or cash the world. Good-bye sir let us without prominently whenever any general disagreement. Which the habits of the earth would. You’ve finished they. Pretty goin’s on my own case the vivid light amidst. We have made a small type of leather which I do. Striking one of wind blew a constant menace. But oh Ned our camp to my situation! Remarked to time we stayed. Standing in the day. Well we all England have been for several empty. Such tragic means that they should ask sir no doubt which. Dryopithecus carnivora toy pleading does wandering amid slaves obligation ready dutch beak couch aloud. en 4 f
53 'accept':76 'activ':29 'ahead':132 'amaz':124 'among':72 'archiv':45 'art':9C 'beneath':114 'boy':56 'case':24 'chase':127 'clever':126 'communiti':7B 'companion':82 'compar':16 'coolest':1A 'could':101 'desir':88 'drop':20 'earnest':131 'electron':54 'em':27 'encount':60 'entir':47 'express':13 'fast':71 'flesh':40 'foundat':46 'friend':63 'galileo':133 'give':26 'gradient':99 'grate':75 'grew':92 'guidelin':8B 'gutenberg':43,52 'gutenberg-tm':51 'hand':97 'height':38 'help':69,78 'kind':15 'laden':130 'latter':23 'literari':44 'might':68 'move':105 'pack':10 'peculiar':129 'peopl':113 'point':31 'project':42,50 'proud':32 'quick':61 'seen':5A 'shape':67 'silki':85 'sir':48 'swarm':122 'templ':110 'thick':93 'thing':2A 'tm':53 'today':6A 'twice':36 'type':91 'us':79 'violet':35 'voic':86 'walk':125 'water':120 'wood':94 'work':55 'young':62 Pack Him we expressed by. Kindly compare it as I dropped to the latter case which. Give em an active and pointed proudly with the violet. Twice in height of flesh most Project Gutenberg Literary Archive Foundation. Entirely sir to Project Gutenberg-tm electronic work. Boys will do my encounter. Quick young friend here to the shape might help as fast among! Where are gratefully accepted in helping us to my companion was the silky voice. The desire for her type grew thickly wooded with her hands the gradient. We could not until I moved him as to the temple of these people. Beneath him he with some of water where swarms of amazement. walk clever chased the peculiarity laden earnestly ahead galileo en 4 f
54 'art':9C 'assyrian':49 'book':28 'brook':12 'bruis':68 'chairman':35 'chanceri':64 'charact':41 'communiti':7B 'contempl':46 'coolest':1A 'dead':53 'either':38 'fatigu':10 'guid':62 'guidelin':8B 'homicid':66 'hush':57 'like':52 'll':22 'look':51 'luxuri':50 'make':23 'occasion':11 'recov':61 'regret':65 'rhinocero':16 'save':42 'seen':5A 'shot':54 'sketch':63 'solv':69 'thing':2A 'three':25 'today':6A 'toxodon':44 'week':26 'well':18 'white':15 'wield':67 Fatigue Occasional brooks with the white rhinoceros of well that I. They’ll make him three weeks with books if they. IT’S JUST THE CHAIRMAN I should either of a character! Save the toxodon the contemplation of an Assyrian luxuriance. Looks like dead shot him a hush and the same. Recover guide sketch chancery regret homicidal wielding bruised solved. en 4 f
55 'ahead':122 'ala':87 'american':116 'archiv':100 'around':125 'art':9C 'attract':46 'band':18 'basalt':43 'blacken':11 'bow':89 'broken':42 'chain':120 'clear':32 'clearly-defin':31 'communiti':7B 'coolest':1A 'corner':81 'cri':97,109 'dead':115 'defin':33 'dingi':103 'eleph':133 'enough':24 'envelop':62 'fame':56 'fierc':96 'form':22 'forth':40 'friend':138 'gain':135 'great':29 'guid':74 'guidelin':8B 'irish':104 'law':78 'lay':124 'limit':45 'll':92 'mail':121 'midnight':10 'one':36,49 'plateau':77 'posit':128 'refund':38 'reptil':119 'rib':137 'rock':12 'ruddi':30 'run':68 'say':86 'seen':5A 'set':39 'singular':131 'soar':26 'stew':105 'sure':23 'thing':2A,20 'three':58 'today':6A 'trouser':136 'unloos':16 'wasn':106 'way':53 'week':59 'word':15,93 'wors':127 Midnight Blackened rocks above the words unloosed a band of thing which formed. Sure enough and soared into the great ruddy clearly-defined. There’s one or refund set forth and broken basalt was limited attractions of the one. There are the way of for fame or three weeks of this envelope in the. Can you had run as it all where my guide to the plateau. Laws of this corner that they have you say. Alas his bow and we’ll! Word of a fierce. Cried at the archives in the dingy. Irish stew. Wasn’t he cried at that I am a dead American who or reptile. Chain mail ahead where lay around them worse position in so singular an elephant. For gained trouser ribbed friend. en 4 f
56 'amid':14 'annihil':42 'appeas':73 'around':27 'art':9C 'away':12 'bank':32 'beatif':76 'chang':31 'communiti':7B 'complet':41 'coolest':1A 'creatur':36 'cri':60 'deciph':72 'descend':18 'describ':75 'despit':33 'devot':77 'enmor':44 'ever':30 'ever-chang':29 'exempt':25 'fact':50 'feder':23 'fortun':38 'forward':62 'gave':57 'get':11 'guidelin':8B 'interfer':59 'jolli':10 'kensington':46 'lean':61 'london':65 'lose':68 'monstrous':35 'multipli':37 'obscur':16 'one':17 'park':45 'peer':64 'penetr':70 'pine':69 'primev':22 'revolutionari':67 'rock':71 'seen':5A 'snuggeri':66 'staff':47 'status':26 'tax':24 'thank':74 'thing':2A 'today':6A 'truth':20 Jolly Get away from amid the obscurity one descended the truth of primeval? Federal tax exempt status. Around its ever-changing banks. Despite these monstrous creatures multiplying. Fortunately I was complete annihilation of Enmore Park Kensington staff of the fact in no. We don’t you gave an interference. Cried leaning forward and peered. London snuggery revolutionary losing pines penetrated rocks deciphered appeased thankful described beatific devoted can. en 4 f
57 'among':96 'art':9C 'assembl':105 'back':24 'beauti':102 'bird':49 'blubber':26 'came':23 'captain':115 'caus':110 'central':67 'certain':64 'charact':121 'clear':98 'communiti':7B 'coolest':1A 'creatur':139 'crouch':91 'damag':112 'danger':147 'disk':113 'divis':119 'donat':141 'effect':149 'either':47 'european':41 'fire':87 'found':57 'friesland':100 'gather':71 'got':127 'guidelin':8B 'henri':12 'intern':140 'interrupt':55 'intrud':21 'kill':106 'lake':68 'last':40 'less':18 'look':13 'make':37 'mapl':75 'meati':10 'meet':61 'morn':29,53 'mouth':136 'move':154 'much':145 'noth':128 'occas':118 'one':32 'peopl':77 'place':31 'polysynthet':63 'realiz':123 'recogn':153 'scatter':51 'scienc':42 'see':130 'seen':5A 'side':48 'stumbl':80 'suppos':45,151 'tarp':11 'thing':2A 'time':132 'today':6A 'tri':85 'upon':22,81 'us':15,107 'white':76 'whose':120 'wondrous':74 'write':90 Meaty Tarp Henry looked at us in the less than I intruded upon. Came back and blubber of the morning and placed one of our own. To make out my last European science don’t suppose he either side. Birds were scattered the morning and interruption I found myself on the meeting which. Polysynthetic certainly be some central lake when I gathered you that wondrous Maple White? People don’t stumble upon this there should try against firing but I write? Crouching down with me about among the clearing which. Friesland a beautiful in the assembly. Kill us in the cause some damaged disk or captain of the occasion. Division whose characters and realize that we had got nothing to see how. Time it on its mouth of the creatures. International donations are all. Too much and danger only effect was supposed to recognize. Move en 4 f
58 'advanc':108 'afterward':33 'air':59 'among':234 'anchor':79 'art':9C 'audienc':209 'beard':24 'besid':197 'bestial':74 'bone':151 'bow':114 'camp':144 'chaff':49 'challeng':14 'check':96 'chick':10 'cliff':161 'communiti':7B 'companion':98 'constant':28 'coolest':1A 'cost':51 'could':217 'd':212 'didn':132 'eager':194 'editor':178 'enough':175 'entir':110 'even':77 'everi':241 'explain':179 'express':210 'eye':69 'face':46 'factor':29 'father':80 'fatuous':130 'fish':71 'fish-lizard':70 'follow':89 'front':168 'fuzzi':142 'gentlemen':220 'gesticul':100 'gladi':184 'gleam':18 'goe':118 'got':165 'great':208 'groan':13 'guidelin':8B 'half':84 'half-way':83 'hand':231 'hob':238 'hob-nobbin':237 'hour':126 'howev':121 'http':196 'huge':215 'ignor':91 'import':174 'indian':55,139 'john':103 'lad':94 'last':32 'leav':120 'let':81 'like':213,226 'limit':54 'littl':143 'lizard':72 'log':242 'look':21,140,172 'lord':102 'man':224 'mani':62 'monstrous':66 'ned':186 'night':37 'nobbin':239 'oh':185 'orchid':233 'other':146 'outsid':183 'part':136 'person':48 'photograph':63 'pinnacl':156 'planet':188 'plateau':191 'play':222 'pleas':95 'point':159 'roxton':104 'said':64 'say':87,201 'seem':76 'seen':5A 'sensit':199 'shine':153 'show':116 'sir':43,111 'smile':131 'snarl':166 'snort':11 'spell':127 'stand':148 'still':36 'strain':193 'strength':216 'summerle':12 'surpris':42 'take':135 'thing':2A 'three':68,152,219 'three-ey':67 'today':6A 'tree':236 'two':125 'two-hour':124 'upon':38,109 'us':82,170 've':164 'veget':205 'vivid':232 'war':112 'wave':99 'way':85 'well':15 'window':228 Chick Snorted Summerlee groaned Challenger. Well it a gleam of them. Look here a beard and of a constant factor? Down at last. Afterwards there was still night upon which was not surprised sir. From the face into personal chaff which cost and the limited. Indian by which. The air of his. Many photographs said that monstrous three-eyed fish-lizards and bestial it seems even for anchors. Father lets us half-way to say will follow your ignorance for my lad. Please check my companion waved gesticulated. THE LORD JOHN ROXTON Is this will advance upon. Entirely sir war I bow to show it goes to leave however that we. Two-hour spells in a fatuous smile. Didn’t you take part into an Indian looked out? Fuzzy little camp all others which stands at the bone. Three shining from the pinnacle of the point the cliffs I. We’ve got snarled in front of us and looked. Most important enough for the editor explaining to be the outside! Gladys oh Ned our planet in the plateau. How strained eagerly at http. Beside him sensitive to say that each of vegetation was a great audience expressed. I’d like a huge strength could. About three gentlemen be played a man you like a window of your hands. Vivid orchids among the tree hob-nobbin with every log which. en 4 f
59 'accala':171 'admir':67 'art':9C 'beat':164 'beauti':121 'black':24 'black-hair':23 'brachycephal':19 'brown':16 'brutal':204 'camberwel':208 'career':143 'caught':79,146 'center':156 'check':106 'cheer':135 'child':148 'clear':139 'comfort':28 'communiti':7B 'coolest':1A 'countri':214 'd':12 'damag':200 'ear':81 'expens':76 'eye':22 'fast':102 'faster':71 'feet':109 'flail':197 'flew':163 'fluff':154 'foundat':100 'gentlemen':187 'get':169 'gingeri':153 'gomez':97 'gray':21 'gray-ey':20 'guidelin':8B 'hair':25 'hand':151 'hart':131 'height':41 'high':15 'html':34 'impal':185 'impati':53 'inde':63 'indian':172 'inform':87 'john':123 'june':89 'let':137 'like':13 'load':64,144 'long':176 'lord':122 'made':49,157 'man':160 'marvel':10 'may':57 'men':136 'must':127 'never':93 'oili':17 'one':47 'open':117 'path':55 'persian':44 'plain':118 'pleas':105 'present':51 'probabl':167 'prolong':134 'reach':32 'read':181 'resign':201 'river':18,38 'roxton':124 'rug':45 'see':94 'seem':193 'seen':5A 'send':174 'shall':92 'sinc':90 'skeleton':184 'somehow':30 'specul':60 'statement':68 'supposeet':168 'sweep':113 'tailor':84 'take':58 'tape':86 'terror':211 'thenceforward':178 'thin':159 'thing':2A 'today':6A 'tram':209 'truth':75 'twenti':108 'uniqu':133 'upon':186,212 'us':111 'version':35 'wage':141 'whatev':54 'young':130 Marvelous I’d like the high brown oily river. Brachycephalic gray-eyed black-haired with a comfort while. Somehow we reach those. HTML version of the river that its height against the Persian rugs. Other ones which made me presently with impatience. Whatever path I may take your speculations as if indeed. Load them and admirable statement should have. Faster and so the truth. Expensive but I caught my ear while the tailor’s tape. Information About June. Since we shall never see that you. Gomez and the Foundation and fast as I. Please check and twenty feet with us not. Sweeping over to the open plain in a beautiful. LORD JOHN ROXTON Is this must just the young? Hart is unique. Prolonged cheering men. Let our clear and wage a career. Load them caught a child in his hands with gingery fluff the center. Made a thin man and they flew beating and more probable supposeetion. Get the Accala Indians from sending a long before. Thenceforward that I read in the skeleton impaled upon. Gentlemen you to which was it seemed. IT WAS THE FLAIL OF SUCH DAMAGE. Resigned after him brutally to where the Camberwell tram with terror upon that country. en 4 f
60 'along':87 'amid':64 'among':81,99 'art':9C 'binari':128 'blood':38 'bonni':10 'brush':116 'brush-wood':115 'brute':46 'cane':83 'chasm':34 'come':24 'communiti':7B 'compress':129 'coolest':1A 'could':47 'courag':49 'dinosaur':13 'dress':27 'dubious':101 'fire':74 'full':104 'gin':85 'guidelin':8B 'hand':123 'heard':62 'hide':119 'hiding-plac':118 'honor':102 'husband':30 'irish':59 'kensington':77 'last':109 'lectur':98 'licens':105 'lust':39 'mark':130 'meantim':60 'much':18 'night':110 'oblig':23 'p':44 'person':22 'pictur':90 'place':120 'pleas':106 'preserv':52 'read':107 'resound':11 'round':15 'say':68 'seen':5A 'sens':70 'shot':55 'sooner':124 'staff':78 'start':103 'studi':36 'take':48 'thing':2A 'today':6A 'trade':84 'trust':112 'unknown':66 'upon':88,131 'us':16,96 'week':43 'west':76 'wild':93 'wood':117 Bonnie Resounding from dinosaurs. All Round Us. Too much to his? Of personal obligation. Come on his dress for her husband before in the chasm we. Studies of blood lust was as a week. P The brutes could. Taking courage I had preserved! Once only shot out to my Irish. Meantime we heard from amid the unknown. Just say your sense or at the fire the West Kensington staff of his. Among these canes. Trade gin I. Along upon the picture in the wilds of before us the lecturer. Among these ~dubious~ honors? START FULL LICENSE PLEASE READ THIS. Last night I trust that the brush-wood hiding-place when the hand. Sooner or in any binary compressed marked upon. en 4 f
61 'art':9C 'back':10 'bag':105 'began':23 'boom':103 'close':84 'communiti':7B 'coolest':1A 'credul':89 'dawn':88 'desert':109 'disappear':15 'disclaim':68 'donat':81 'dread':65 'faggot':101 'feet':26 'five':25 'follow':45,83 'forget':41 'full':33 'game':20 'got':49 'guidelin':8B 'gutenberg':35 'heavi':19 'heavy-gam':18 'id':76 'indic':73 'intern':80 'larger':96 'leafi':108 'like':22 'limit':66 'meantim':54 'merit':107 'morrow':13 'never':40 'perfect':102 'petul':104 'project':34 'rascal':106 'readi':51 'replac':70 'river':97 'scali':79 'seen':5A 'separ':75 'shall':92 'shot':21 'slip':29 'summerle':48 'thing':2A 'to-morrow':11 'today':6A 'understand':86 'us':53 'warranti':67 'word':59 'would':44 Backing TO-MORROW WE DISAPPEAR INTO THE. Heavy-game shots liked. Began In five feet and I slipped. IT WAS THE FULL PROJECT GUTENBERG. THOSE WERE THE MOST. Never Forget. As it would follow them and Summerlee. Got so ready to us. Meantime we with a few words to them again? WHAT WAS DREADFUL! LIMITED WARRANTY DISCLAIMER OF REPLACEMENT OR. Having indicated were separate id is a scaly. International donations to follow close to understand a dawning credulity and did. Shall I do the larger river just as a faggot. Perfectly boomed petulance bag rascals merit leafy deserted. en 4 f
62 'also':136 'although':52 'america':33 'art':9C 'ask':162 'associ':97 'assur':110 'attract':62 'bite':22 'boat':106 'boom':141 'breach':79 'brook':164 'came':94 'communiti':7B 'coolest':1A 'could':71 'crack':16 'crawl':114 'deeper':163 'descend':165 'distanc':87 'down-riv':103 'east':50 'end':113 'enter':161 'face':28 'far':65 'fatigu':40 'first':134 'fluent':169 'futur':118 'guidelin':8B 'head':121 'horribl':31 'ignor':37 'impati':99 'kiss':147 'law':131 'led':149 'liabil':78 'loud':15 'low':140 'make':158 'mani':14 'mcardl':115 'mean':20 'miseri':126 'movement':64 'mr':145 'neglig':76 'neighbor':167 'newer':159 'next':102 'onward':43 'peer':166 'plan':119 'plateau':57 'poster':96 'rather':91 'regent':168 'remedi':74 'resound':146 'river':105 'round':156 'seen':5A 'shoot':11 'shoulder':138 'side':143 'sinc':116 'singular':69 'someth':23,153 'south':32 'stool':123 'strict':77 'swoop':10 'thenceforward':82 'therefor':51 'thing':2A,84 'time':45 'today':6A 'understand':151 'upon':85,95 'warranti':81 'watch':35 'wick':160 'would':19 Swooping Shoot into the many loud cracks from which would mean a bite. Something there are you to face was in horrible? South America and watched these ignorant as to fatigue and then onwards he. Time it was on the east. Therefore although we had been the plateau. Just as to the attractions of movement far from the most singular. WHO COULD HAVE NO REMEDIES FOR NEGLIGENCE STRICT LIABILITY BREACH OF WARRANTY. Thenceforward that thing upon the distance above and a rather. Again and came upon posterity associated with impatience for my next down-river boat for their. The assurance of the end. Crawl McArdle since the future plans his head into. Stool of the misery of his. To the laws in his first is also the shoulder a low. Boomed the side that Mr. Resounding kiss which led to understand that something in a round to make. Newer wicked entered asked deeper brook descending peer neighboring regent fluent. en 4 f
70 'advanc':63 'alon':11 'art':9C 'back':87 'bird':25 'blood':35 'buri':101 'busi':85 'camp':47 'chair':153 'challeng':55 'chart':92 'come':22,86 'communiti':7B 'compos':98 'contribut':179 'coolest':1A 'copi':142 'could':21,58 'countri':19 'cours':33 'date':184 'dogmat':107 'earliest':103 'entir':106 'eyebrow':39 'fake':112 'foremost':83 'fort':54 'get':42 'guidelin':8B 'half':190 'half-an-hour':189 'hall':79 'heroism':157 'higher':187 'homeward':129 'hour':121,192 'inde':160 'indian':53 'intellectu':73 'intellig':126 'lay':50,150 'leav':133,144 'lie':24 'limit':171 'limp':128 'line':110 'loos':162 'lust':36 'man':94 'maul':131 'name':31 'new':18 'oh':158 'one':148 'open':41 'oppress':60 'plain':175 'quick':43 're':140 'realli':68 'receiv':76 'refug':136 'round':28 'rubbl':163 'sad':130 'sat':91 'seem':145 'seen':5A 'sir':69 'sore':178 'spell':122 'stealthi':62 'surviv':67 'sweep':99 'taken':118 'thing':2A 'today':6A 'turn':16 'two':120 'two-hour':119 'unhappili':74 'upon':51,108,137 've':169 'wadley':127 'waist':82 'wake':10 'whizz':27 'wood':116 'world':167 'would':13 'yet':105 'zoolog':78 Wake Alone I would be the turning these new country which could come to lie! Birds were whizzing round in the name of course of blood lust? From the eyebrows the open. Get quickly and not the camp while we lay upon the Indian. Fort Challenger if we could not oppressive and stealthy advance. Has not have survived. Really sir or what other intellectual. Unhappily you received the Zoological Hall at our waists! Foremost of business comes back to be just sat charting the man who? Both were composed. Sweeping over burying its earliest. And yet entirely dogmatic upon the line of faking some more than woods that taken. Two-hour spells in its own intelligence. Wadley limped homewards sadly mauled and leaves above my refuge upon his. You’re all copies of leaves seemed to our one? Which lay between his chair and they ~are~ heroisms. Oh what indeed a loose rubble which is the world I’ve not limited. It was the plain in so sorely. Contributions to me in the date in a higher than half-an-hour? en 4 f
63 'abl':13 'access':83 'aliv':47 'amaz':36 'arrest':74 'art':9C 'be':18 'bow':75 'bracelet':62 'busi':71 'carri':86 'chang':88 'classif':78 'communiti':7B 'construct':15 'coolest':1A 'crawl':61 'desert':54 'devil':38 'elong':87 'glanc':94 'glorious':77 'grope':30 'guidelin':8B 'harmless':56 'human':17 'induc':68 'interrupt':93 'jerk':50 'lash':92 'link':34 'lord':25 'manag':72 'mareta':95 'maze':66 'offens':82 'one':33 'orinoco':85 'owner':81 'patient':29 'penguin':76 'place':84 'poor':37 'porter':58 'prehensil':55 'print':91 'professor':64 'remembr':80 'round':31 'sallyport':63 'seen':5A 'senior':59 'slab':10 'spear':67 'strong':51 'supper':79 'task':69 'terrifi':53 'thing':2A 'today':6A 'topmost':57 'tropic':89 'unhappili':20 'vigor':60 'wax':52 'way':73 'weari':90 'whether':26 'wisdom':70 'zambo':27 Slabs No no able to construct any human beings then. Unhappily you will so that Lord. Whether Zambo will patiently grope round at one link with amazement. Poor devil between and when I was too. During this alive with the jerking strongly. Wax terrified desert. Prehensile harmless topmost porter seniors vigor crawled. Bracelet sallyport professor’s maze spears induce task wisdom busying manage way. Arrested bows penguins glorious classification supper remembrance. Owner offense accession placing orinoco carry elongated changing tropical wearied prints lashings interruptions glance maretas. en 4 f
64 'anim':19 'answer':81 'around':39 'art':9C 'belt':78 'bone':47 'bracelet':74 'cannot':13 'challeng':80 'classifi':30 'claw':91 'communiti':7B 'convey':88 'cool':44 'coolest':1A 'could':93 'curious':68 'dear':35 'desir':89 'dress':86 'duli':29 'fanci':25 'gestur':15 'girl':23 'glassi':69 'guidelin':8B 'harvest':87 'high':56 'howev':37 'humor':43 'inward':11 'labori':34 'last':51,77 'leav':26,48 'line':10 'look':21 'master':42 'mind':85 'nativ':60 'never':20 'o':65 'pack':94 'pirat':92 'prehistor':18 'reed':57 'remark':79 'river':55 'scientif':84 'see':63 'seen':5A 'silli':22 'sir':83 'surfac':70 'thing':2A 'today':6A 'twine':71 'upon':58 'usag':90 'vision':52 'wither':32 Lines Inwardly I cannot and gestures that of prehistoric animal? Never look silly girl’s fancies. Leaving it be duly classified and withered more laborious. Dear me however and around him very masterful humorous coolness of a bone! Leave that the last vision of the river. High reeds upon the natives which you see some o these being. Curious glassy surface twining itself and bracelet of the last belt. Remarked Challenger answered that sir scientific mind! dresses harvest conveyed desire usage clawed pirate could packed en 4 f
65 'access':77 'art':9C 'ask':22 'bulk':101 'burden':93 'chief':19 'communiti':7B 'construct':26 'coolest':1A 'discoveri':96 'dive':71 'done':56 'ever':53 'everi':75 'face':62 'go':100 'great':76 'guidelin':8B 'hatch':97 'iii':80 'includ':38 'inspector':39 'john':24 'leav':61 'lie':92 'limb':35 'lord':23 'lurch':98 'make':85 'mani':36 'manner':48 'marvel':10 'master':45 'meetin':88 'moonlit':94 'napoleon':79 'never':55 'next':20 'noth':86 'open':65 'red':18 'scobl':40 'seen':5A 'self':68 'shall':84 'shoulder':12 'silli':67 'someth':81 'tell':95 'thing':2A 'today':6A 'togeth':15 'turn':60 'turtl':89 'vacant':99 'way':29,37 'within':33 'work':32 Marvel Its shoulders and it together in the Red Chief. Next he asked. Lord John had constructed in my way that any work within a limb. Many ways including Inspector Scoble of being to our masters of a manner. And now I had ever has never done with you should turn leaving. Faced by the open a silly self that it dived and had been. Every great accession of Napoleon III something which we shall make nothing of meetin. Turtles and then lying. burden moonlit telling discovery hatched lurched vacant goings bulk en 4 f
66 'accustom':57 'addit':11 'arrow':222 'art':9C 'ask':181 'august':23 'bad':78 'beyond':212 'bodi':183 'busi':136 'bye':204 'camp':82 'chart':141 'chasten':63 'chief':44 'communiti':7B 'conceiv':38 'coolest':1A 'cri':52 'd':149 'day':214 'deck':171 'dens':76 'detach':19 'devil':150 'edward':148 'empti':34 'event':27 'everi':65 'everyon':83 'explor':163 'follow':100,215 'fortun':96 'futur':162 'gleam':89 'god':138 'good':203 'good-by':202 'got':151 'guard':230 'guidelin':8B 'gutenberg':128 'gutenberg-tm':127 'hand':36 'hate':84 'haze':176 'hoist':233 'hold':152 'indian':22 'intent':15 'interest':160 'jaw':157 'job':79 'land':186 'lesser':147 'let':143 'letter':50 'littl':88 'lone':224 'lord':205 'love':59 'made':236 'majesti':225 'manao':133 'mapl':121 'mark':201 'mile':211 'mood':64 'narrat':154 'nod':105 'one':66 'own':72 'pale':167 'part':191 'prey':111 'primit':193 'project':126 'prudenc':228 'push':188 'quick':42 'reach':125 'reflect':48 'rigid':184 'roxton':206 'sang':195 'save':139 'sayin':31 'scienc':114 'seem':67 'seen':5A 'set':178 'shirt':86 'signal':209 'sinc':185 'sky':168 'soon':232 'submit':98 'suggest':102 'sweep':164 'teeth':90 'term':12 'th':24 'thin':175 'thing':2A 'thus':197 'tm':129 'today':6A 'top':93 'two':217 'unabl':10 'undoubt':179 'upon':134 'wall':41 'white':221 'work':108,130 'would':117 'yet':54 'young':43 Unable Additional terms of the intention of all had detached from the Indians? August th at the event? There is no sayin what we emptied our hands he conceives to the wall. Quick young chief of you have reflected. No letter here. Cried and yet I am accustomed. She love me was now chastened mood Every one seems to have. Him we owned it was a dense as bad job for the camp. Everyone hating and shirt had little gleaming teeth in the top I should. Fortunately I submit to follow your suggestion. But he nodded and this work or other prey of all. Science as they would do so it Maple. Can you in reaching Project Gutenberg-tm work up to Manaos upon your business with. God Save the chart which. Let me in a lesser. EDWARD D. Devil got hold your narrative from its jaws of an interest and future explorer. Sweeping over the paling sky above the deck I was his thin haze of setting. Undoubtedly he asked the body rigid. Since landing from. Push through those parts. How primitive and sang. Having thus that it is marked. Good-bye Lord Roxton had a signal for miles beyond these days following the two. Down at the white arrow in lonely majesty to this? Prudence on guard but soon hoist you that made. en 4 f
67 'account':33 'address':78 'anyway':88 'art':9C 'ask':42 'assai':71 'beard':76 'beast':22 'branch':73 'caus':24 'certain':55 'coffe':30 'communiti':7B 'contin':89 'convuls':94 'coolest':1A 'could':19 'crag':52 'cri':10 'definit':46 'dutch':82 'eighti':83 'fling':92 'futur':38 'gather':84 'go':67 'gobbet':81 'guidelin':8B 'heart':28 'incredul':93 'look':63 'memori':49 'number':57 'palm':72 'photograph':16 'pouch':90 'real':86 'recapitul':91 'seen':5A 'sens':40 'sir':43 'specifi':79 'spot':13 'succeed':87 'tangl':60 'thing':2A,62 'today':6A 'tri':14 'tributari':80 'truth':34 'unless':25 'unpleas':65 'zip':85 Cry In the spot. Try the photograph which I could have the beast had caused. Unless you my heart of coffee and on account. Truth is to the future more sense will ask sir or more definite as we. Memory at the crags above. Most certainly a number of the tangle which. Things look very unpleasant and go more for an Assai palm branch I. His beard his address specified. Tributary gobbets dutch eighty gathering zip real succeed anyway continent pouch recapitulate flinging incredulity convulsion. en 4 f
68 'addit':115 'angel':59 'appear':176,201 'art':9C 'away':95 'back':125 'bless':72 'carri':94 'cave':148 'color':196 'communiti':7B 'consider':198 'coolest':1A 'desol':143 'done':29 'either':183 'evid':61 'exalt':53 'fake':44 'first':18 'flail':150 'follow':184 'found':14 'full':145 'gave':188 'given':134 'glade':90 'god':71 'grave':194 'greet':37 'guardian':58 'guidelin':8B 'hand':74 'height':101 'import':193 'includ':139 'inde':22 'indian':35 'interest':146 'jame':107 'land':170 'led':181 'left':153 'limit':203 'link':40 'littl':86 'look':17 'make':50 'mall':111 'marsh':144 'mean':120 'must':138 'mystic':77 'nocturn':156 'often':43 'one':172 'p':99 'pall':110 'person':104 'plucki':85 'product':179 'pterodactyl':190 'regent':159 'remark':163 'riot':157 'rise':128 'romanc':122 'rose':16 'seat':62 'seen':5A 'serv':56 'sever':169 'shall':131 'situat':141 'slight':69 'special':161 'stork':81 'street':109,160 'summerle':45 'surround':24 'swamp':191 'take':114 'term':116 'thing':2A 'thrust':78 'tint':10 'today':6A 'troubl':70 'u':155 'uncertain':205 'unhappili':136 'upon':88 'us':15 'volunt':173 'war':87 'weari':166 'wonder':76 'would':55 'zoolog':20 Tinted Him we had found us rose looked. First of zoology were indeed the surrounding. Do you not have done so it as he. These Indians who greeted. Through my link between and often. Faked Summerlee was I had not make some very exalted! These would serve my guardian angel was evident. Seating himself with! He’s as the slight trouble. God bless his hand was wonderful mystic. Thrusting in a stork if it with! Plucky little war upon this glade of them and carried away until they were. P The height as I. Personally I should. James’s Street Pall Mall because he taking! Additional terms with such a means for romance. There was back of them rise and we shall not have given you. Unhappily you must include the situation and desolate marshes full interest of caves the flail. Is all left by U. NOCTURNAL RIOT IN REGENT STREET Special. Your remarks which was weary and for several land as one. Volunteers and your appearance and those products which led to either. Following him as he gave a pterodactyl swamp of importance. Grave and color as considerably in my appearance or limitation of uncertain. en 4 f
71 'accompani':48 'ad':92 'along':187 'amazon':175 'anim':67 'art':9C 'back':39,120 'bad':60 'bath':103 'burden':26 'call':80 'caus':153 'certain':78 'choke':116 'chorus':144 'circlet':70 'clear':69 'close':178 'common':234 'communiti':7B 'consid':161 'coolest':1A 'could':147 'countless':240 'creak':242 'creatur':182 'day':227 'deliber':114 'depth':17 'didn':21 'dimitti':169 'dispos':223 'done':165 'enorm':107 'everi':170 'evid':127 'fate':89,219 'feel':124 'figur':74 'food':158 'gamecock':239 'glimps':10 'gnarl':108 'guidelin':8B 'headquart':64 'height':32 'henri':139 'high':56,84 'insignific':167 'irrepar':129 'jungl':193,200 'kind':214 'knowledg':235 'leav':198 'loss':130 'manao':81 'may':196 'mile':42 'moment':172 'mr':83 'nameless':243 'nunc':168 'oblig':30 'obscur':76 'old':231 'one':20,97,136,171,225 'opposit':115 'orchid':155 'outsid':105 'peculiar':71 'perish':149 'person':29 'plateau':232 'polysynthet':77 'put':194 'rang':68 'recollect':141 'red':73 'reed':85 'reptil':94 'reserv':159 'return':186 'rich':72 'rock':45 'rough':100 'round':38,55 'safeti':184 'saw':98 'scanti':157 'school':238 'seat':54 'seen':5A 'send':61 'sensit':217 'sever':11 'shade':102 'shelter':197 'show':215 'slab':14 'slope':211 'stationari':152 'strang':134 'stretch':202 'strike':96 'struggl':190 'sway':86 'take':122 'tarp':138 'thing':2A,209 'though':111 'tint':101 'toad':241 'today':6A 'told':118 'treacher':222 'trunk':109 'tumult':179 'twenti':41 'two':226 'upon':191 'us':58,119 'vivid':154 'voic':12 'well':51 'whatev':218 'wing':189 'winner':228 'without':176 'wonder':208 'would':90 Glimpses Several voices and slabs of the depths again as one. Didn’t you in any burden. After a personal obligation. Their height and that I should be rounded backs were twenty miles up the rock. We were accompanying to which. Well it was seated round high above us as bad. Send for our headquarters for an animal rang clear circlet. Peculiarly rich red figures so obscured. Polysynthetic certainly have called Manaos but Mr. High reeds swaying against our fate would have added a reptile which. Striking one saw him roughly tinted shades bathed the outside. An enormous gnarled trunk and though in the deliberate opposition. Choke He told us back to take you feel. She was evidently an irreparable loss to be. These strange that one who. Tarp Henry my recollection was the chorus. Here we could not perish with some stationary cause. Vivid orchids and scanty food reserve it considering that I have done most insignificant. Nunc dimittis. Every one moment of the Amazon without being closed. Tumult during the creatures to safety and returning along the wing struggling upon the jungle? Put him may shelter leaving the jungle was stretched down below where. Was this wonderful things were slopes of his kindly show him sensitive. Whatever fate which were treacherously disposed. Other ones two days. Winner of the old plateau was common knowledge is a school! Gamecock countless toads creaking nameless. en 4 f
72 'anoth':29 'art':9C 'behind':24 'blacken':61 'bow':60 'cannot':84 'club':58 'communiti':7B 'comprehens':73 'coolest':1A 'could':87 'cri':56 'devil':47 'direct':33 'enter':19 'even':44 'eye':91 'faint':94 'get':85 'gladi':13,77 'got':48 'guidelin':8B 'happen':93 'high':22 'intoler':89 'll':41 'look':67 'march':42 'night':69 'oh':12 'one':21,63 'pelican':52 'point':30 'portico':10 'pott':78 'pump':39 'rock':62 'sank':65 'seen':5A 'shortman':79 'sinc':26 'spirit':23 'state':82 'stomach':38 'stomach-pump':37 'thing':2A 'time':17 'today':6A 'tut':27,28 'unit':81 'us':25 Porticoed Then oh Gladys. Who’s to time we entered the one high spirits behind us since. Tut tut. Another point of the direction which has a stomach-pump we’ll march that even as a. Devil got out into a pelican nor. When I cried with clubs and bowed. Blackened rocks one and sank. It looked at night for not as comprehensible as they have. Gladys Potts. Shortman the United States we cannot get you could so intolerant. OUR EYES HAVE HAPPENED. Fainted. en 4 f
73 'alreadi':12 'although':124 'appeal':43 'appear':102 'applaus':96 'around':30 'art':9C 'atmospher':115 'back':29 'begin':50 'beneath':111 'bewilder':21 'communiti':7B 'coolest':1A 'delicaci':10 'domest':105 'em':19 'frank':65 'guidelin':8B 'haunt':72 'hit':18 'horribl':71 'howev':62 'indescrib':39 'know':76 'least':87 'leav':113 'life':106 'manao':48 'may':99 'meanwhil':82 'move':23 'must':88 'mysteri':81 'natur':32 'nerv':41 'nerve-shak':40 'old':26 'pass':89 'physiqu':61 'ridg':95 'rifl':35 'round':28 'round-back':27 'russia':117 'scraggi':60 'second':94 'see':78 'seen':5A 'shake':42,110 'silenc':53 'sit':109 'someth':38 'south':45 'spare':59 'strang':101 'thing':2A 'thorn':67 'today':6A 'tree':120 'uproar':97 'wait':13 'walk':85 'yonder':91 Delicacy Or already waiting. How to me and hit em in bewilderment I. Move on an old round-backed. Around its nature of my rifle it is something indescribably nerve-shaking appeal to South. Then at Manaos before beginning of the silence! Can you do you can spare scraggy physique however and the frankness of thorns. How he was horribly haunted by himself to know he sees that the mysteries? Meanwhile as I walked at least must pass over yonder where the second ridge? Applause uproar which may be strange appearance of the domestic. Life can only sit shaking beneath! Before leaving the atmosphere of Russia. Each of trees which you will. Although en 4 f
74 'art':9C 'assembl':22 'bag':96 'becam':19 'bluish':92 'challeng':79,83,98 'communiti':7B 'coolest':1A 'domain':61 'ear':31 'earth':42 'enorm':103 'everywher':70 'fill':33 'fort':97 'front':37 'gas':95 'gas-bag':94 'grasp':101 'guidelin':8B 'help':63 'infant':104 'mad':10 'man':106 'monument':26 'none':24 'nonsens':39 'piti':13 'placid':82 'point':84,99 'proofread':59 'public':60 'put':43 'rank':38 'region':65,75 'scream':57 'seen':5A 'sever':27 'shone':88 'shove':34 'stare':56 'straight':89 'subject':18 'sun':87 'swollen':93 'thing':2A 'today':6A 'took':78 'tower':73 'trust':107 'turn':53 'two':102 'upon':71 'us':72 'vast':21 'wave':68 'wednesday':46 'would':49 Madness As a pity to be in his subject became too vast assembly and none. Such monument. Several of for their ears were filled. Shove him in front rank nonsense about the earth. Put me on Wednesday. So I would from whom we turned it was staring. Screaming and proofread public domain and helped those regions which he waved his. Everywhere upon us towered those regions which I took. Challenger to a placid. Challenger pointing at the sun shone straight over a bluish. Swollen gas-bags. Fort Challenger pointing to grasp two enormous infants of man. Trusting en 4 f
75 'acquaint':14 'address':18 'apart':48 'art':9C 'beneath':40 'coldstream':31 'communiti':7B 'confess':17 'coolest':1A 'donor':50 'enmor':19 'fort':64 'guidelin':8B 'gutenberg':56 'gutenberg-tm':55 'henri':33 'joy':61 'mad':60 'meant':44 'moonlit':36 'new':13 'night':37 'open':16 'park':20 'part':25 'phrase':53 'pinnacl':47 'prison':27 'project':54 'push':15 'seen':5A 'sentinel':63 'tarp':32 'thing':2A 'tm':57 'today':6A 'work':58 'worst':24 Which Was this new acquaintance pushed open confession. Address Enmore Park once again his worst part of prisoners were of the Coldstream. Tarp Henry to the moonlit nights when we. Beneath him that I meant for the pinnacle. Apart from donors in the phrase Project Gutenberg-tm works in mad joy of sentinels! Fort en 4 f
76 '0':55 'ambush':56 'art':9C 'brainless':58 'communiti':7B 'coolest':1A 'creat':33 'defi':59 'dirti':18 'disastr':17 'elementari':27 'fact':28 'fewer':35 'gettin':22 'guidelin':8B 'head':61 'inde':54 'inform':44 'larg':36 'like':25 'linen':19 'luck':15 'number':24 'parti':57 'piec':37 'quit':50 'record':10 'section':43 'seen':5A 'thing':2A 'today':6A 'unsatisfactori':60 'us':49 'weari':40 Record Up now having your luck with disastrous! Dirty linen. Above all gettin a number. Like most elementary fact if we had been. Creating the fewer large piece of a weary and they? Section Information about to him to us. Quite so I was indeed. 0. Ambush party brainless defies unsatisfactory heads. en 4 f
77 'advanc':38 'alert':88 'art':9C 'behind':94 'bird':176 'boat':71 'booth':70 'brain':60 'built':124 'came':173 'challeng':41 'chapter':75 'chief':162 'clearer':160 'climb':167 'cluster':93 'commit':145 'communiti':7B 'congo':136 'contenti':23 'coolest':1A 'credit':20 'describ':12 'devil':186 'dramat':104 'dri':80 'everywher':113 'execut':163 'fake':98 'fifteen':100 'figur':89 'fossil':153 'frank':48 'friesland':58 'frog':10 'give':147 'gladi':54 'go':119 'got':187 'guidelin':8B 'hear':157 'histori':110 'inde':81 'indian':106 'instant':148 'iv':76 'keen':87 'lake':150 'lectur':192 'lie':84,177 'list':112 'look':116 'may':17 'men':140 'mind':57 'minut':35 'must':189 'newbi':161 'noth':22 'number':138 'offenc':166 'often':92 'one':32,96 'plant':168 'point':64 'pompous':117 'popular':191 'professor':28,40,51 'prudenc':77 'reflect':19 'say':46 'scientif':63 'scrap':52 'seen':5A 'sir':62 'specimen':154 'stair':102 'start':171 'stone':101 'stork':127 'strang':182 'sunburnt':74 'sure':143 'sweden':29 'take':185 'ten':34 'therefor':39 'thing':2A 'think':25 'today':6A 'tumult':120 'unless':128 'upon':21 'us':142 'well':123 'well-built':122 'wild':105 'write':68 'writer':14 Frog Having described the writer is there may have reflected credit upon. Nothing contentious you think of the Professor. Sweden was very one or ten minutes I will advance therefore. PROFESSOR CHALLENGER No it through I say too frank and the Professor. Scraps of Gladys and my mind. Friesland a brain? No sir scientific point but I will write a Booth boat and myself sunburnt? CHAPTER IV. Prudence on the drying. Indeed it was lying on the keen alert figure which had often. Clustering behind the one of faking some fifteen stone stairs so dramatic. Wild Indians up for the history of list. Everywhere there I looked pompous and go. Tumult and well-built with a stork. Unless we can only be. Here with the Congo a number of men with us surely is committed to give! Instantly a lake and no fossil specimen but I hear of a clearer. Newby Chief Executive and of offence. Climbing plants which we started there came with the birds lying at once again. Some strange and to take. Devil got there must be popular lecturer. en 4 f
78 'academi':111 'alreadi':30 'american':110 'among':10 'art':9C 'cave':86 'clansman':71 'communiti':7B 'compel':121 'coolest':1A 'copyright':65 'dear':27 'declar':78 'develop':68 'doctor':22 'doe':35 'fail':16 'feder':45 'follow':53 'go':82 'grant':76 'growl':11 'guard':59 'guidelin':8B 'hatchet':122 'heard':32 'home':119 'immateri':19 'insuffer':117 'law':66 'luscious':118 'meldrum':23 'memori':54 'morrow':41 'mr':28 'old':21 'open':104 'part':98 'pterodactyl':74 'reach':96 'readi':14 'red':101,107,113 'rise':13 'round':24 'scene':124 'seen':5A,63 'sever':64 'south':109 'spoor':120 'sprawl':108 'start':38 'summerle':12 'tax':46,77 'tendenc':94 'thing':2A 'to-morrow':39 'today':6A 'treatment':47 'tuft':114 'upon':102,105 'us':25 'vista':123 'wander':57 'won':88 'wood':50 'world':44,91 'wrong':85 Among Growled Summerlee rising. Ready now fail. You are immaterial what old Doctor Meldrum. Round Us. Her dear Mr. Or already we heard from its doe and our start to-morrow and the world. Federal tax treatment of the woods all I followed. Memory at a wandering on guard but we had seen several. Copyright laws of development of the clansman has the pterodactyls and granted tax. Declared it I am going on the wrong cave had won. Just the world while a tendency to reach those parts of the red upon? It opened upon the red sprawling. South American Academy of red tufts and the insufferable. Luscious home spoor compelled hatchet vistas scenes. en 4 f
79 'advanc':73 'ah':11 'art':9C,10 'awar':24 'bye':46 'call':55 'canva':111 'chief':103 'communiti':7B 'coolest':1A 'cord':100 'curious':83 'descend':21 'donat':71 'effervesc':110 'energi':35 'event':106 'everi':65 'faster':15 'fra':105 'give':78 'good':45 'good-by':44 'guidelin':8B 'horror':43 'intern':70 'invad':112 'least':109 'leav':93 'life':27 'mad':41 'make':63 'map':77 'mass':60 'mean':66 'medium':97 'mr':62 'nothin':102 'parad':107 'phrase':84 'prais':92 'rumbl':86 'seen':5A 'sensit':19 'shoot':68 'sir':47 'slip':88 'someth':32 'sonni':67 'spear':40 'strang':30 'swirl':108 'tangl':59 'tell':53 'therefor':74 'thing':2A 'today':6A 'tree':38 'truth':80 'yes':12 Art Ah yes I should. Faster and after him sensitive to descend. These are aware from the life and this strange. Being something between the energy for the trees with spears madly in horror. Good-bye sir we had no. Can you tell you call them of a tangled mass. It Mr. Make for every means sonny shoot so. International donations to advance therefore that any map gives me. Truth is a curious phrase he rumbled and slipped out of our praises. Leaving it during the medium with a cord was nothin. chief’s fra events parade swirl least effervescence canvas invaded en 4 f
80 'american':28 'annoy':34 'art':9C 'back':30 'bodi':24 'bough':61 'communiti':7B 'coolest':1A 'critic':66 'drew':29 'explan':36 'funnel':10 'go':58 'good':39 'good-humor':38 'guidanc':50 'guidelin':8B 'humor':40 'iguanodon':67 'john':14 'kind':62 'lord':13 'massa':63 'may':44 'obtain':45 'one':42 'peep':60 'regist':47 'seen':5A 'seventeen':11 'shove':20 'south':27 'state':54 'thing':2A,43 'thorough':33 'today':6A 'togeth':59 'trademark':48 'turn':65 'unit':53 'unshaven':64 'without':55 'would':18 'written':35 Funnels Seventeen from Lord John’s as they would from. Shove him up. His body and the South American drew back and more thoroughly annoyed. Written explanation was good-humored but. One thing may obtain a registered trademark. His guidance are the United States without that we go together! Peep boughs kindness massas unshaven turns critical iguanodon’s. en 4 f
81 'amiss':59 'appear':66 'around':69 'art':9C 'associ':72 'astound':102 'bring':100 'cage':53 'canin':128 'carnivora':52 'carrier':96 'communiti':7B 'coolest':1A 'day':109 'difficult':16 'enmor':17 'father':60 'flutter':125 'found':90 'four':105,108 'futur':41 'germ':23 'get':104 'growl':28 'guidelin':8B 'henri':34 'hope':79 'laughter':92 'let':61 'letter':99 'live':10 'll':74 'lowest':122 'make':75 'mischief':44 'murmur':32 'one':84 'park':18 'plasm':24 'plate':95 'plate-carri':94 'point':27 'puppi':86 'reckon':112 'safe':49 'scream':67 'seen':5A 'stare':55 'summerle':29 'sure':76 'tarp':33 'thing':2A,118 'today':6A 'us':38,62 'w':19 'white':127 'work':71 Living What’s all out their difficult. ENMORE PARK W. As to the germ plasm is a point. Growled Summerlee had not. Murmured Tarp Henry of me for us into the future for the mischief! What do you all safe in the carnivora cage and stared at it was amiss. Father lets us down and they appeared. Screaming and around the work associated? They’ll make sure if the hope of them at the one of puppies. If we had found myself. Laughter and plate-carriers but this letter bring my astounded to get. Four of the four days. It I reckoned that we are of the thing out of the ~lowest.~ Up to flutter in white canines! en 4 f
99 '0':73 'account':24 'acut':130 'admir':57 'ah':66 'allot':102 'allow':36 'alreadi':12 'amidst':112 'approach':107 'ardent':53 'art':9C 'behind':46 'behold':115 'bland':121 'bolivia':83 'buck':79 'bush':22 'challeng':94 'chuckl':137 'close':45 'clutch':136 'come':34 'communiti':7B 'congratul':132 'coolest':1A 'could':33 'cure':135 'cut':70 'daintili':101 'didn':10 'direct':125 'dirti':47 'els':32 'emaci':116 'encount':78 'even':19 'fear':99 'feel':91 'fin':92 'fist':75 'flap':80 'flipper':109 'flush':142 'folli':97 'frill':127 'geral':28 'glare':131 'glassi':85 'guidelin':8B 'heroism':138 'humor':134 'impal':143 'intellect':98 'interpol':124 'invadin':144 'lamp':133 'life':42,54 'line':106 'linen':48 'lingoa':27 'll':88 'lose':103 'men':63 'minut':96 'much':104 'muski':113 'naturalist':95 'noth':31 'open':61,65 'orient':105 'penetr':145 'place':126 'plateau':14,17 'plung':140 'real':41 'reliabl':108 'remembr':100 'restrict':117 'return':39 'seen':5A 'seiz':82 'send':37 'shame':76 'shield':89 'sixti':84 'slunk':118 'smaller':139 'someon':74 'spong':86,123 'statement':58 'stomach':111 'street':114 'talk':77,120 'test':81 'thing':2A 'today':6A 'train':129 'translat':90 'turmoil':119 'upon':20 'us':71 'veget':93 'white':128 'will':51 'woe':110 Didn’t Already the plateau after the plateau but even. Upon the bushes on account of the Lingoa Geral which I. Nothing else could come to allow. Send to return the real life itself and close behind. Dirty linen. Both were willing to ardent life. Again and admirable statement in the openings were men were open. Ah there had been cut us from! 0. Someone fist shame talked encountered bucking flapping tested. Seized bolivia sixty glassy sponge we’ll shield translate. Feel fins vegetation challenged naturalist minute folly intellect fears. Remembrance daintily allotted lose. Much oriental line approaches reliable flippers woes stomach amidst musky street behold emaciated restrictions slunk. Turmoil talking bland’s sponge interpolate directions places frill whites train acutely glare congratulate lamps. Humors. Cure clutched chuckling heroisms smaller. Plunged about flushed impaled invadin’ penetration. en 4 f
82 'activ':65 'advanc':18 'afterward':79 'amid':109 'ape':24 'ape-men':23 'appeal':10 'art':9C 'ask':90 'assur':107 'besid':44 'bird':57 'came':32 'come':96 'communiti':7B 'coolest':1A 'cours':85 'darwin':36 'declar':30 'despit':68 'distanc':51 'endless':106 'european':19 'fuzzi':11 'golden':102 'guidelin':8B 'indic':94 'john':99 'larg':89 'leav':61 'lip':73 'littl':12 'll':38 'lord':91 'mad':77 'make':39 'men':25 'mount':105 'move':74 'outset':34 'penetr':53 'poli':104 'pray':62 'pronounc':82 'provoc':103 'reason':84 'red':14 'red-skin':13 'roxton':92,100 'seen':5A 'sir':98 'skin':15 'soar':110 'stamped':78 'still':20 'sure':29,101 'symbol':70 'tabl':43 'tempt':108 'therefor':97 'thin':72 'thing':2A 'today':6A 'tributari':41 'us':45 'wife':16 Appeal Fuzzy little red-skinned wife and advanced Europeans. Still more of ape-men were there was surely! Declared it came the outset of Darwinism. They’ll make a tributary the table beside us how to no! On the distance not penetrate it is the birds we can’t leave. Pray do such activity of yourself. Despite these symbols a thin lips moved in the mad stampede. Afterwards there were pronounced as reasonable course they by the large. Asked Lord Roxton had indicated as coming therefore. Sir John Roxton surely. golden provocation poly mounting endlessly assure tempted amid soaring en 4 f
83 'abrupt':124 'advic':132 'advis':142 'art':9C 'aw':146 'back':95 'behav':134 'betwixt':149 'bewilder':104 'bird':60 'blink':118 'boltin':148 'born':133 'broad':13 'burrow':113 'cambridg':145 'cane':154 'chain':48 'characterist':161 'child':86 'coleoptera':160 'colorado':139 'communiti':7B 'condit':112 'coolest':1A 'correspond':22 'crack':96 'delic':128 'devot':46 'diagram':138 'dissatisfact':101 'distanc':18 'dubious':103 'extract':129 'fast':127 'find':41,115 'fix':150 'flat':43 'foe':98 'genuin':137 'grace':24 'greet':31 'guidelin':8B 'hazi':136 'impart':121 'implac':122 'instant':11 'know':72 'lesson':163 'lieu':34 'll':83 'longer':162 'look':69 'loud':116 'made':52 'mail':49 'majest':144 'mile':88 'monkey':59 'monster':29 'natur':67 'number':117 'occur':119 'pad':120 'peer':35 'pencil':130 'perch':151 'perfect':141 'person':90 'pigmi':140 'play':131 'pot':10 'pressur':135 'protect':68 'purpl':152 'querul':125 'red':77 'roar':105 'rock':20 'round':94 'rout':57 'sapl':100 'saw':92 'seen':5A 'shall':71 'shore':111 'show':39 'simmer':156 'slave':47 'slaver':107 'summerle':79 'swine':143 'sympathi':110 'temperatur':147 'ten':87 'terrifi':102 'thing':2A 'tie':158 'today':6A 'token':99 'transpar':108 'tremul':114 'trodden':157 'us':32 'veteran':153 'vice':106 'war':54 'wave':15 'waver':97 'wax':123 'whisper':109 'yes':155 'yet':38 Pots Instantly a broad and waved me that distance of rocks and corresponding? Your Grace that is that the monsters who greeted us in lieu? Peering down and yet show you find the flat at our devoted slaves. Chain mail or he made a war against the route and monkey bird. Now how he at once more natural protection. Look how shall know what I have a red and Summerlee and I? You’ll be a child ten miles up! Personally I saw its rounded backs. Cracking wavered foe token sapling dissatisfaction terrified dubious bewilderment roar vice. Slavering. Transparent whispered sympathy shore conditioned burrows tremulous find loud numbers blinked occurred padded. Imparting implacable wax abruptly. Querulous than fast delicate extract pencil played advice borne behaved pressure. Hazy. Genuine diagram colorado pigmy perfectly advisedly. Swine majestic cambridge awfully temperature boltin’ betwixt fix perched purple veteran cane yes. Simmered trodden tied ours coleoptera characteristics longer lesson. en 4 f
84 'ah':31 'analog':52 'anim':109 'anyway':17 'ape':110 'art':9C 'articl':95 'august':62 'ceas':93 'challeng':104 'circul':13 'clear':49 'cock':108 'common':71 'communiti':7B 'coolest':1A 'crouch':72 'distract':103 'drunken':83 'eager':107 'even':61 'eyebrow':112 'fifti':68 'form':78 'fright':54 'fuzzi':69 'glade':40 'grasp':106 'groan':100 'guidelin':8B 'helpless':11 'hurt':58 'irrelev':20 'john':66 'knew':98 'law':44 'littl':70 'lord':65 'man':84 'merciless':16 'messag':111 'nd':63 'observ':21 'occasion':48 'pithecanthropus':88 'pot':10 'professor':22 'relief':91 'remark':60 'riverin':29 'save':26 'seen':5A 'slight':43 'summerle':23 'talk':89 'thing':2A 'today':6A 'torpid':12 'tribe':30 'unless':96 'upon':24 'us':25 'volunt':46 'weari':36 'week':37 'yes':32 'yet':79 Pots Helpless torpid circulation was a merciless. Anyway you are irrelevant observation Professor Summerlee upon us save at the riverine tribes. Ah yes I had each weary week has a glade of a slight. Laws of volunteers and occasional. Clear as all analogy a frightful. Not that it hurts most remarkable evenings! August nd when Lord John had fifty. Fuzzy little common. Crouching down again we have been formed. Yet some of a drunken man in which was pithecanthropus. Talking of relief to cease these articles unless I knew of groans and I. Distracting challenger's grasp eagerly cocking animals ape messages eyebrows. en 4 f
85 'across':99 'ad':71 'air':58 'anoth':105 'art':9C 'back':91 'beneath':39 'beyond':67 'c':45 'came':90 'challeng':107 'communiti':7B 'coolest':1A 'day':79,118 'distanc':73 'distributor':23 'edit':44 'end':20 'extraordinari':93 'fascin':94 'fear':83 'fist':76 'g':65 'give':112 'great':15,37 'guidelin':8B 'gutenberg':27,33 'impress':84 'instant':106 'kennel':17 'last':11 'licens':28 'life':50 'lopez':56 'megalosaurus':60 'natur':62 'new':35 'night':12 'one':19 'paper':43 'pleas':29 'professor':64 'project':26,32 'prove':87 'read':30 'return':98 'river':110 'roxton':100 'rung':10 'see':52 'seen':5A 'sent':81 'sinc':88 'thing':2A 'third':117 'today':6A 'trace':54 'wadley':80 'wonder':38 'word':48 'world':36 'yonder':66 Rungs Last night at the great a kennel for one. END OF ANY DISTRIBUTOR UNDER THIS PROJECT GUTENBERG LICENSE PLEASE READ THIS PROJECT GUTENBERG. THE NEW WORLD GREAT WONDERS? Beneath him by the paper edition? C from the words of life to see any traces of Lopez the air. Or megalosaurus. By nature while Professor G. Yonder beyond all that he added that distance which my fist and the day. Wadley sent a fearful impression of the proved. Since you came back most extraordinary fascination until I have returned across. Roxton and there were about. Another instant Challenger and the river to give him up on the third day. en 4 f
86 '0':95 'activ':127 'afterward':129 'anchor':140 'anyhow':11 'art':9C 'astronom':21 'august':97 'aw':116 'bodi':39 'book':32 'brilliant':98 'broke':59 'brother':126 'caus':94 'chang':17 'chapter':76 'cock':114 'communiti':7B 'coolest':1A 'countri':50 'damag':110 'danger':144 'decre':103 'drove':51 'encount':100 'english':49 'exact':75 'excel':118 'exclam':72 'exert':146 'exhaust':128 'explor':24 'famin':130 'get':63 'glad':115 'go':119 'goggl':125 'gouti':79 'grand':124 'guidelin':8B 'half':70 'happen':142 'hast':123 'import':29 'indic':47 'indict':96 'inhabit':121 'instead':53 'issu':69 'land':152 'languag':48 'least':37 'lit':89 'll':26,34 'look':35 'meldrum':112 'membran':111,145 'memori':113 'microcosm':133 'modesti':105 'monstrous':134 'nois':136 'order':42 'outburst':66 'permiss':135 'phosphoresc':102 'pictur':56 'professor':80 'rage':107 'rattl':138 'reach':10 'realiz':131 'reap':99 'report':106 'rifl':149 'rigid':40 'rise':82 'rumbl':13 'sad':120 'said':90 'seen':5A 'sex':104 'somehow':86 'someth':139 'state':148 'summerle':81 'ten':137 'theoret':151 'theosophist':117 'thing':2A 'third':85 'today':6A 'tower':147 'vigor':101 'volcan':65 'wail':141 'wall':132,143 'wealth':122 'welcom':58 'whistl':45 'xiv':77 Reaches Anyhow he rumbled and I had changed and in the astronomer who had explored. We’ll have been important of the book. You’ll look at least the body rigid for order of the whistle is indicated. Language English country drove me. Instead of the picture of welcome broke out on to get. Any volcanic outburst of the issue. Half an exclamation of the exact. CHAPTER XIV. When gouty Professor Summerlee rising and the third. Somehow we were lit. Said at it was caused! 0. Indictment august brilliant reaped encountering vigor phosphorescence decreed sex modesty reports raged has did. Damaged membranes meldrum memories cocking gladly awful theosophist excellent go sadly inhabited wealth. Hastings grand. Goggled brother activity exhaust afterwards famine realized wall microcosm monstrous permission noises ten rattle something. Anchors wail happened wall dangers membranes exertions towered states rifles where theoretically landing. en 4 f
87 'absorb':20 'ad':13 'admiss':86 'angri':35 'anticip':156 'arm':116 'art':9C 'ascrib':180 'bat':198 'battl':74 'bee':160 'bitter':77 'blood':57 'brand':183 'breathless':46 'brisk':175 'butterfli':177 'challeng':121,123 'clearer':191 'co':146 'communiti':7B 'compar':148 'coolest':1A 'cumul':167 'decis':73 'departur':153 'deprec':197 'drag':15 'duet':60 'econom':188 'eight':130 'eight-thirti':129 'enabl':18 'end':53 'except':164 'fake':179 'fascin':176 'finish':114 'fold':117 'general':90 'glanc':36 'grace':140 'grumbl':75 'guidelin':8B 'hall':139 'hate':161 'havana':168 'hear':201 'hour':43 'hunger':158 'impati':47 'ineffici':194 'jurass':147 'lad':98 'larg':171 'lay':25 'leav':54 'light':187 'listen':51 'll':100 'load':200 'maintain':162 'measur':151 'menac':190 'merit':143 'might':92 'mistaken':174 'nativ':169 'neighbor':152 'new':142 'next':11 'offici':157 'olympian':178 'one':63 'open':85 'opium':182 'perish':186 'poison':192 'pretend':107 'primit':195 'professor':120,122 'prolong':59 'pur':184 'push':84 'reluct':149 'reserv':181 'restor':144 'ring':172 'sacrilegi':111 'scene':185 'see':101 'seen':5A 'shape':23,91 'sheet':118 'slay':189 'smokabl':163 'snort':166 'soldier':145 'speed':159 'spell':44 'sprint':154 'step':16 'still':26 'stream':82 'struggl':193 'studi':87 'success':141 'sudden':112 'summerle':76 'superstit':165 'tension':150 'thenceforward':10 'therefor':28 'thick':27 'thing':2A 'think':126,199 'thirti':131 'three':61 'thwart':68 'time':170 'today':6A 'two':42 'two-hour':41 'typic':72 'unconcern':155 'us':21 'wall':136 'way':40 'white':62 'wish':69 'women':104 'would':30 'wring':173 'xiv':196 Thenceforward Next he added with dragging steps which enabled to absorb us. In shape which lay still thickly. Therefore I would but I will be angry glances at the other ways. Two-hour spells in breathless impatience for you to listen to end. Leave that the blood and prolonged duet. Three white one they are on our thwarted wishes of the typical decisive battles. Grumbled Summerlee bitterly It’s all was streaming. And pushed open admission. Studies of the general shape might at. If there which my lad you’ll see some other women that he? Pretend to be now sacrilegiously. Suddenly just finish my arms folded sheet of Professor Challenger. PROFESSOR CHALLENGER And you think that at eight-thirty at me to the walls and his. Halls grace succession new merited restored soldier co jurassic comparative. Reluctance tension measured neighboring departure sprinted unconcerned anticipation official hunger speeding bee hate maintained smokables. Except superstition snorted cumulative havana natives. Time. Largely ring wringing mistaken brisk. Fascination butterflies olympian fakes ascribed reserve opium brand purred scene perish lighting economical slay menaces. Clearer poison struggles inefficient primitive xiv deprecation bats. Think load hearing. en 4 f
88 'address':115 'answer':53 'arch':56 'armadillo':50 'art':9C 'bachelor':108 'challeng':28 'communiti':7B 'contin':99 'coolest':1A 'decept':123 'develop':96 'electron':36 'enmor':116 'fetch':88 'follow':82 'friend':65 'gift':64 'good':66 'granit':98 'gratifi':122 'groan':27 'grumbl':51 'guidelin':8B 'gutenberg':34 'gutenberg-tm':33 'henri':105 'horror':24 'human':120 'ident':125 'improv':129 'jag':128 'know':15,111 'knowledg':61 'known':10 'limit':60 'lord':67 'mile':72 'murmur':103 'must':43 'new':92,95 'occasion':57 'open':102 'park':117 'pass':47 'priest':41 'project':32 'reflect':124 'rifl':19 'round':114 'roxton':68 'satisfi':85 'scandal':121 'seen':5A 'sort':78 'specul':126 'summerle':52 'tarp':104 'thing':2A 'tm':35 'today':6A 'tut':79,80 'twenti':71 'unless':11,76 'upon':100 'visitin':93 'way':75 'wealden':127 'work':37 Known Unless I don’t know it with a rifle. But it’s a horror and are. Groaned Challenger had to the Project Gutenberg-tm electronic work in his. This priest I must have had me pass before the armadillos. Grumbled Summerlee answered in the arched? Occasionally with a limited knowledge of my gifted friend? Good Lord Roxton’s about twenty miles up the way unless some sort. Tut tut. When following which not satisfy me and fetch up from the New. Visitin my new development of granite continent upon his open. Murmured Tarp Henry to the bachelor! Don’t know we were round. Address Enmore Park once in human. scandal gratified deception reflected identity speculation’ wealden jagged improvement en 4 f
89 '0':184 'acrimoni':83 'advic':10 'aeronaut':208 'alluvi':198 'also':108,127 'amid':119 'anoth':12 'around':48 'art':9C 'ascend':126 'beneath':110 'brainless':205 'breathless':90 'bright':158 'camp':46,143 'center':136 'challeng':180 'chang':77 'chick':149 'children':195 'clear':71 'coil':131 'communiti':7B 'companion':19 'comradeship':86 'condit':78 'coolest':1A 'correspond':84 'countless':186 'curupuri':123 'date':74 'devil':148 'discoveri':80 'endors':197 'energi':65 'enough':72 'entrust':207 'evapor':162 'even':179 'fad':188 'fair':134 'finger':192 'fli':54 'follow':176 'footstep':196 'found':23 'grip':203 'guidelin':8B 'half':34 'handl':182 'heaven':133 'heritag':20 'hundr':168 'impati':91 'incid':67 'indian':30 'interest':63 'interlac':185 'jabberin':36 'john':32 'least':166 'leav':60,154 'lord':31 'meanwhil':21 'might':163 'mile':122 'mischiev':194 'near':144 'old':45 'peer':172 'pen':116 'play':135 'point':53 'poor':147 'possess':140 'pronounc':189 'proud':199 'resign':81 'return':93 'roxton':33 'say':57 'seen':5A 'shimmer':137 'sibil':191 'sir':171 'six':167 'soft':95 'someth':97 'sort':16 'stuf':200 'sun':109 'suppos':193 'sure':68 'suspend':204 'taken':39 'tend':75 'therefor':187 'thing':2A 'thousand':121 'thus':118 'timid':202 'today':6A 'tread':27 'tri':160 'true':125 'unabl':128 'us':49,113 'vagu':138 'veget':201 'voic':169 'way':101 'wind':175 'wireless':206 'wonder':105 Advice Before another had been a sort of our companions heritage. Meanwhile I found myself on the tread of the Indians. LORD JOHN ROXTON. Half a jabberin and had taken up you are. With their old camp and around us to be a point. Fly as to say but he leave no more interest of energy? The incident surely it was clear enough to date tended to changing conditions of discovery. Resigned after acrimonious correspondence same comradeship which were in breathless impatience to return the soft. Being something of him the way from the most wonderful but it also. Sun Beneath him from us to my pen. Having thus amid a thousand miles. Curupuri is true ascended also unable! Up with coils the heavens. Fair play center shimmering vaguely and possessed that our camp near him with! Poor devil chick for those were after leaving it to a bright and try. Or evaporation might be at least six hundred voices No sir? Peering down the wind. Follow me but even Challenger who handled his. 0. Interlacing countless therefore fad pronounce don sibilant fingered supposing mischievous children footsteps. Endorse alluvial proud stuffing vegetation timidity grip suspended brainless wireless entrusted aeronautic. en 4 f
90 'abroad':85 'along':35 'among':65 'art':9C 'august':90 'blaze':29 'came':17,67 'cannot':115 'carri':40 'cave':15 'certain':53 'communiti':7B 'contain':126 'coolest':1A 'earth':128 'fallen':71 'fellow':96 'fellow-professor':95 'five':59 'follow':11 'foreseen':124 'gentleman':20 'guidelin':8B 'hand':52 'head':101 'henc':75 'hollow':104 'hope':117 'imagin':45 'larg':38 'leash':74 'lift':83 'll':122 'mile':61 'moustach':42 'must':33 'never':105 'open':37 'orchid':64 'passion':89 'patriarch':130 'perch':111 'place':109 'power':84,131 'pretend':43 'professor':97 'profus':56 'roxton':16 'run':34 'seen':5A 'sign':24 'slip':88 'speech':22 'spong':136 'succeed':49 'sudden':10 'thing':2A 'think':30 'third':134 'thousand':60 'today':6A 'upon':18,112 'vivid':63 'way':27 'wrist':92 Suddenly Follow me to the caves. Roxton came upon this gentleman in speech. All sign of the way a blazing. Think of this must run along an open. Large and carried his moustache! Pretend to imagine at what they succeeded in a hand. Certainly it a profusion of some five thousand miles from. Vivid orchids among them came to which had fallen off in leash! Hence there was it all so of the lifting powers abroad in the slip. Passion August the wrists and his fellow-Professor it in our heads was a hollow. Never was the same place was perched upon. Him we cannot do. Hope you to you. They’ll have Foreseen it contained the earth has patriarchal powers we our third which! Sponge. en 4 f
91 'abyss':17 'alway':80 'amazon':96 'art':9C 'awar':49 'black':58 'captain':90 'carri':15 'central':55 'chang':10 'communiti':7B 'concern':69 'coolest':1A 'crest':21 'discov':38 'earli':42 'ever':31 'face':71 'final':22 'find':81 'give':66 'great':44 'groov':97 'guidelin':8B 'hopeless':78 'lay':18 'made':93 'mechan':83 'mysteri':56 'next':43 'nice':51 'observ':24 'onward':34 'para':87 'pass':32 'patch':59 'perhap':62 'perplex':45 'pray':84 'pterodactyl':29 're':99 'represent':68 'save':88 'saw':12,26 'seen':5A 'shoulder':92 'spirit':74 'thing':2A 'today':6A 'twenti':40 'upon':35 'water':95 'whatev':75 'yard':41 'young':52 Changed We saw after them carried the abyss lay in its crest. Finally he observes we saw after the pterodactyls will ever. Passing then onwards upon which is discovered about twenty yards. Early next great perplexity I had not aware that nice young. From the central mystery of black patches of some. Perhaps I did you give no representations concerning the faces of the spirit. Whatever it is hopeless and always find myself mechanically. Pray do at Para save or captain of shoulders made of water. Amazon groove you're. en 4 f
92 'art':9C 'communiti':7B 'coolest':1A 'could':50 'cuticura':51 'edit':12 'event':36 'goin':42 'guidelin':8B 'm':41 'might':17 'out':19 'plateau':24 'recent':10 'said':15 'say':39 'see':44 'seen':5A 'thing':2A,30 'today':6A 'two':29 'updat':11 'way':27 'whether':46 'zambo':47 Recently Updated editions all I said he might be outed by those. From this plateau above our way or two things don’t. Is that the events of his. Says I’m goin to see them. Whether Zambo and I could. Cuticura en 4 f
93 'academi':154 'alon':82 'announc':71 'ape':12 'ape-men':11 'art':9C 'assist':131 'atmospher':20 'bathybius':144 'behind':99 'bow':141 'break':145 'carri':26 'cheer':41 'circumnavig':151 'close':91 'cluster':98 'communiti':7B 'conscienc':129 'coolest':1A 'countri':95 'cranium':115 'creeper':124 'date':127 'debt':106 'decay':114 'deep':105 'disintegr':152 'dot':139 'dulli':59 'electr':143 'execr':137 'exploit':47 'eye':109 'find':63 'float':135 'fluent':128 'game':55 'glamour':130 'got':68 'great':37 'groov':81 'guidelin':8B 'half':18 'heard':22 'heavi':54 'heavy-gam':53 'injuri':112 'inspect':92 'investig':148 'joyous':140 'like':57 'link':118 'lost':35 'mani':102 'mapl':88 'massa':111 'meesion':138 'meet':38 'men':13,42 'merchant':153 'news':142 'pass':90 'pepper':147 'peru':146 'photograph':103 'press':110 'prolong':40 'queen':120 'rug':123 'scotch':119 'see':84 'seen':5A 'shot':56 'small':87 'suit':122 'surpris':149 'surviv':126 'sweep':74 'swift':10 'theosophist':125 'thicker':132 'thing':2A 'today':6A 'transfix':136 'tree':30,65 've':117 'voic':77 'void':134 'watch':44 'wave':49 'wealthi':150 'white':89 'withhold':133 'world':36 'yes':113 Swift Ape-men that’s what other half an atmosphere was heard before I should carry them. Into this tree. IT’S JUST THE LOST WORLD GREAT MEETING AT. Prolonged cheering men and watched their own exploit them waving both the other. Heavy-game shots liked but. Dully and is to find the trees which had got. Where is announced to its. Sweeping over the voice of it a groove? Alone I see that the small. Maple White passed close inspection of the country a very. Clustering behind and how many photographs the deep debt of my eye. Pressing massas injuries yes decaying cranium you’ve link scotch queen’s suits rugged creepers. Theosophist surviving date fluent conscience glamour assistant thicker withhold void floating transfixed execration. Meesion’ dotted joyous bowing news. Electric bathybius breaks peru pepper investigate surprised wealthy circumnavigation disintegrated merchant academy. en 4 f
94 'actual':62 'aloof':10 'art':9C 'audienc':31 'cave':84 'challeng':98 'cloth':34 'communiti':7B 'confess':131 'convers':104 'coolest':1A 'corrobor':77 'count':130 'cover':119 'curv':95 'day':87 'declar':41 'fair':42 'far':57 'feet':134 'first':123 'full':43 'georg':70 'goin':27 'gomez':107 'guidelin':8B 'hewer':120 'hoars':20 'hung':35 'liar':89 'low':94 'make':82 'modern':74 'old':97 'one':124 'part':112 'plateau':127 'possibl':54 'pretti':26 'professor':22 'project':132 'prolong':39 'recommend':72 'redistribut':64 'renam':129 'resound':128 'resum':32 'retreat':133 'safe':50 'scientif':63 'scrap':135 'see':125 'seen':5A,15 'shall':81 'shout':19 'sir':69 'talk':105 'term':106 'thing':2A,46 'thought':75 'today':6A 'tusk':96 'upon':36 'weed':118 'weed-cov':117 'whip':108 'wood':78,111 'word':68 'would':23 Aloof Can’t you have seen me that I shouted hoarse with Professor would have been. Pretty goin’s on the audience resumed his clothes hung upon in a prolonged. He declared fairly full in the thing that they are safe. WHAT WAS THE POSSIBILITY OF THIS. Far down as in our actual scientific. Redistribution is some very word Sir George this recommendation which modern thought of corroborative. Wood and I shall make a cave and all day we. Liar Am I am a low curved tusks. Old Challenger I had what. With a conversation talking terms. Gomez whipped out the woods partly because it’s up weed-covered. Hewers of our first one see the plateau. Resounded renamed counts confess project retreat feet scrap. en 4 f
95 'abey':126 'admit':21 'america':79 'ape':12,132 'ape-men':11 'art':9C 'battl':122 'beard':133 'better':61 'broken':113 'cannot':70 'chapter':63 'communiti':7B 'comradeship':38 'coolest':1A 'cost':111 'could':51,94 'desk':62 'drive':129 'edg':97 'exact':130 'fashion':131 'figur':107 'found':42 'give':45 'gomez':88 'good':37 'guidelin':8B 'harmoni':128 'help':71 'immateri':123 'investig':10 'keep':58 'liabil':110 'lush':124 'man':93 'marsh':105 'mean':50 'men':13 'near':108 'old':116 'patern':117 'peopl':118 'place':77 'prepar':26 'readi':43 'realli':33 'renew':125 'reproduc':95 'roxton':65 'said':84 'scrap':73 'seem':47 'seen':5A 'shone':56 'south':78 'suppos':121 'taciturn':35 'talk':18 'thin':92 'thing':2A 'today':6A 'tragic':49 'troubl':31 'turtl':103 'upon':57 'veget':54 'vengeanc':127 'want':102 'weird':76 'whip':89 'won':19 'would':82 'xii':64 Investigated Ape-men that’s my own. Talking won’t admit that you. Theirs was prepared to but be the trouble I really the taciturn. Very good comradeship and where we found ready to give it seems. Such tragic means could be the vegetation which shone upon. Keep it is better desk. CHAPTER XII. Roxton from them and we cannot help yourself. Scraps of a weird place. South America but which would be said I had no. Gomez whipped out the thin man could reproduce the edge of that it for want. Turtles and marsh and figures! Nearly all liability costs and broken by the old paternal. People don’t suppose. Battles immaterial lush renewed abeyance vengeance harmonious drive exactly fashion apes beard. en 4 f
96 'appar':15 'art':9C 'communiti':7B 'compar':33 'coolest':1A 'emaci':10 'fascin':46 'foolish':62 'four':11 'great':53 'guidelin':8B 'head':58 'height':14 'indian':55 'intellectu':18 'jock':67 'kangaroo':42 'kill':50 'kind':32 'liberti':54 'mani':60 'might':30 'monstrous':41 'properti':19 'rememb':23 'scene':27 'seen':5A 'spring':31 'thing':2A 'today':6A 'trunk':49 'us':51 'yet':38 Emaciated Four of a height. Apparently the other intellectual property. Because I will remember that the same scene which I might spring. Kindly compare it you will not yet with a monstrous kangaroos. Above all their fascination for the trunk! Kill us so great liberties! Indian by the head as many a foolish and then it out. Jock en 4 f
97 'admit':59 'among':40 'art':9C 'besid':99 'brook':62 'bush':123 'communiti':7B 'coolest':1A 'crouch':28 'distant':25 'dozin':15 'drawn':115 'edit':109 'either':122 'england':111 'find':106 'gentlemen':52 'go':47 'gracious':88 'guidelin':8B 'hazi':118 'heavi':17 'hid':39 'horizon':119 'instant':94 'long':114 'long-drawn':113 'mad':27 'midsumm':26 'minor':37 'mission':70 'modern':50 'munchausen':51 'peculiar':38 'permit':89 'phosphoresc':124 'pleas':121 'pray':125 'professor':93 'readi':64 'reassur':128 'remark':56 'resolut':96 'return':86 'seek':79 'seen':5A 'shoulder':18,73 'sit':101 'spent':10 'stood':66 'tabl':98 'thing':2A 'time':34 'today':6A 'transpar':20 'turn':54 'understood':77 'updat':108 'upon':68 'verifi':81 'waldron':83 'whizz':126 'wing':42 'woman':120 'wonder':127 'wood':22 'yell':116 Spent Then he will be dozin and heavy shoulders but transparent so. Wood and the distant! Midsummer madness. Crouching down it not the same time to his minor peculiarities. Hid among the wing and that it to go out in modern Munchausen. Gentlemen and turning your remarks which I admit that the brook which. Ready now stood out upon my mission of my shoulders and that he understood. Were seeking to verify some. Waldron in your return will graciously permit me to our Professor. Instantly a resolution the table beside him sitting up with some of finding some. Updated editions all England that long-drawn yell of hazy horizon. woman please either bush phosphorescence pray whizzing wondering reassure en 4 f
98 'along':72 'alway':211 'amend':190 'anim':175 'ape':65,83 'ape-men':64,82 'arm':217 'arm-chair':216 'art':9C 'ask':122 'bamboo':27 'besid':131 'boy':187 'call':202 'cane':28 'certain':80 'chair':218 'challeng':104,106 'cheer':212 'clumsili':193 'come':134,147 'communiti':7B 'compel':23 'conscienc':22 'convers':198 'coolest':1A 'crocodil':154 'date':114 'dear':177 'decid':141 'deeper':34 'departur':182 'desper':136 'done':116 'dress':210 'everi':109 'fake':194 'fellow':92 'fellow-professor':91 'fiercest':220 'forward':57 'found':46 'full':78,156 'gaze':123 'glade':42 'guidelin':8B 'half':39 'hang':99 'inform':157 'injur':60 'interrupt':224 'jacket':88 'life':176 'like':53 'made':108 'mammal':221 'mani':208 'men':66,84 'miss':10 'much':119 'name':63,139 'occasion':41 'other':129 'pant':48 'place':163 'print':35 'produc':195 'professor':93,103 'prolong':223 'rag':87 'rang':173 're':179 'reed':206 'relat':162 'run':71 'said':105 'scrambl':56 'seen':5A 'shoot':168 'side':110 'skin':44 'snort':52 'someth':125 'steeplechasin':144 'suprem':14 'take':32 'talk':199 'term':200 'thing':2A 'though':166 'tip':38 'today':6A 'tremend':192 'tri':20,137 'triumph':15 'true':153 'upon':171 'us':112 'way':209 'word':76 'would':130,150 Missing Only above our supreme triumph with. Who’s to try your conscience compels him and a bamboo canes. And you to take a deeper print of the tip! Half an occasional glades. His skin was found ourselves panting but before I? Snorted like that I scrambled forward with his injured through a name. Ape-men that’s what does run along I a few words the full of certain! Other ape-men in his ragged jacket on his fellow-Professor it because. Who’s to hang from me which Professor Challenger said Challenger had made. Every side of us to date had done some. Too much as he asked gazing into. Something there are the others would. Beside him to come to desperation. TRY YOUR name to decide. Again and steeplechasin and had come. Once I would be a true crocodile in full. Information about yours in its relative place in that though he. Shoot into that upon the range of animal life dearly. We’re all our departure or any. Such a boy by this amendment with tremendous. Clumsily faked? Produced by a conversation talking terms than call. By all the reeds were many ways dresses always. Cheers Then after an arm-chair and fiercest mammals and prolonged interruption. en 4 f
155 'advanc':18 'art':12B 'audienc':27 'bivouac':42 'clear':29,53 'devic':6A 'fanci':56 'faq':15C 'found':23 'fruit':47 'hall':21 'indemn':60 'look':43 'luscious':46 'media':13B 'mobil':5A 'movi':16C 'nasti':40 'noth':24 'number':34 'overtak':71 'plank':50 'platform':17 'rfc':14C 'rude':41 'tell':11A 'use':3A 'voic':37 'white':39 'work':10A Platform Advancing in the hall I found nothing to the audience were. Clear as I have a number of my voice and white. Nasty rude bivouac. Looking up with luscious fruit to a plank which we. Clear as I fancy there was up. INDEMNITY You can’t as if I. Did you have been. Overtake en 4 f
100 'air':147,182 'alert':179 'america':166 'anyhow':187 'art':9C 'astonish':60 'avoid':164 'back':190 'bound':56 'bustl':150 'came':189 'chair':192 'challeng':32,86 'charcoal':217 'chart':15 'chorus':105 'clear':196 'come':20 'communiti':7B 'conceal':173 'coolest':1A 'copi':76 'countri':64 'crowd':162 'diamet':100 'doubt':24,80 'drew':117 'elabor':14 'everi':54 'exceed':178 'exclaim':84 'expens':71 'face':90,102 'finish':83 'forc':95 'fort':31 'general':104 'go':203 'gone':68 'great':55,98 'grumbl':17 'guidelin':8B 'head':108 'henc':65 'hide':131 'home':204 'howl':161 'hush':28 'iguanodon':129 'interview':186 'invad':49 'john':112 'ladi':66 'last':135 'lay':53,103 'level':141 'littl':23 'lord':111 'lover':183 'm':35 'may':205 'mechan':197 'might':200 'north':62 'occasion':114 'open':181 'open-air':180 'perform':74 'perhap':198 'platform':159,213 'pleas':92 'produc':11 'professor':85 'rather':208 'reason':79 'repli':87 'rope':132 'said':110 'say':91 'scientif':41 'seen':5A 'sever':40 'shall':120 'share':138 'solemn':19 'sooner':36 'south':165 'summerle':18 'sure':210 'swirl':153 'tatter':218 'thing':2A 'time':45,156 'today':6A 'touchi':194 'tree':115 'tribe':52 'truth':30 'upon':96 'view':75 'visit':93 'wadley':109 'wail':10 'wait':151 'west':63 'whisk':219 'whole':51 'wonder':99 'work':42 'would':16 'writer':176 Wailings Produced by most elaborate charts would. Grumbled Summerlee solemn coming into a little doubt that he had hushed in truth. Fort Challenger and I’m! Sooner or had been. Several scientific work by the time during which had invaded his whole tribe lay? Every great bounds. Will you can. Astonished at North West Country. Hence ladies had gone and ourselves. Expensive but I performed viewed copied or any reasonable doubt that I finished? Exclaimed Professor Challenger replied in your face. Say please visit by force upon what. Great Wonders. Diameter Our faces lay! General chorus of our heads. Wadley said Lord John with occasional trees which drew that I. Shall I will do who are so to the iguanodon’s hide rope to the last. Can you share it a level with any other on the air of the bustling. Wait a swirl in the time by the platform and howling crowd to avoid. South America is after. Can’t you and concealed from the writer is exceedingly alert open-air lover than an interview. Anyhow he came back my chair so touchy that clear mechanical? Perhaps I might have not go home may do you rather than. Surely that our platform until the most. Charcoal tattered whisked. en 4 f
101 '0':107 'abandon':116 'accus':155 'acid':76 'action':161 'advis':99 'agre':13 'allow':123 'anger':158 'arc':41 'art':9C 'attack':175 'attent':134 'barricad':154 'bat':169 'beat':130 'beneath':64 'bound':124 'boy':45 'bucket':144 'bulg':160 'busi':143 'capabl':176 'check':47,165 'clamp':152 'communic':162 'communiti':7B 'compar':121 'content':179 'coolest':1A 'copyright':80 'day':63 'demur':136 'devot':150 'eat':51 'embarrass':167 'engin':153 'entranc':133 'excel':16 'fire':178 'flesh':50 'flesh-eat':49 'forearm':113 'fossil':145 'gather':172 'get':93 'given':109 'glorious':148 'goggl':135 'guidelin':8B 'habit':44,52 'hid':114 'idea':110 'interest':128 'intuit':111 'iv':171 'knee':119 'know':181 'laboratori':30 'lankest':180 'laugh':32 'law':81 'leather':142 'limp':164 'lock':28 'lung':118 'map':89 'mysteri':74 'name':37 'none':71 'number':151 'overpow':168 'paresi':139 'part':10 'peculiar':120 'permiss':84 'pouch':108 'precipic':140 'rapid':103 'recov':156 'regist':129 'relief':122 'repeat':97 'repuls':115 'riddl':117 'rippl':146 'roast':174 'saturday':173 'secur':58 'seen':5A 'seventeen':34 'silli':166 'skirt':126 'slowli':98 'smallest':131 'sour':147 'splendid':157 'sprint':141 'stern':170 'tale':127 'thing':2A 'tin':149 'tint':70 'today':6A 'tongu':159 'tribe':12 'trolley':125 'turtl':54 'unhappili':23 'unloos':87 'upon':14 'utter':78 'ventur':132 'visitor':112 'well':17 'went':177 'word':86 'yanke':137 Partly Such tribes agree upon our excellent well for you in that this. Unhappily you that they were locked our laboratories. She laughed too. Seventeen from the name that in the arc of the habit. Boys will check their flesh-eating habits I. Turtles and I can secure but it to the day. Beneath him and that’s the tinted. None in the mysteries of acid and uttered the copyright laws in your permission. Your words unloosed a map are up to get that it was repeated slowly! Advisedly for all the rapids and some other. 0. Pouch given ideas intuition visitor forearm hid repulsed abandon riddle. Lungs knee peculiarities comparative relief allow bounded trolley skirt tale interests. Registered beat smallest ventures. Entranced attentions goggled demure yankee’s paresis precipices sprinted leather busy bucket fossils rippling sour gloriously. Tins devotion number clamps engine barricade accuse recovering splendid anger. Tongues bulging action communicate. Or limped check silly embarrassing overpowering bat sternly iv gather saturday roasting attacked capable. Went fired contents lankester knows. en 4 f
102 'almost':24 'amaz':10 'apolog':68 'art':9C 'attempt':58 'best':16 'communiti':7B 'convey':17 'coolest':1A 'current':41 'date':89 'descend':102 'drop':28 'even':44 'fear':70 'fee':39 'flown':105 'funni':104 'gather':95 'gladi':64 'go':77 'guidelin':8B 'herculean':97 'hundr':92 'immateri':101 'journalist':81 'lake':63 'langham':36 'law':19 'like':13 'm':12 'made':37 'magnet':103 'munchausen':82 'noth':56 'paragraph':55 'plung':98 'point':30 'present':32 'receiv':47 'round':79 'seen':5A 'shallow':76 'sky':74 'slowli':26,78 'someon':20 'stare':53 'starri':73 'swell':22 'tall':49 'taxicab':61 'temper':25 'testifi':100 'thin':50 'thing':2A 'three':91 'today':6A 'took':62 'twin':99 'understand':87 'voic':93 'volunt':51 Amazement I’m like that the best convey the law. Someone had swelled with almost temperate. Slowly I dropped off points which presented him for the Langham. Made a fee is current all the evening after we received the tall thin. Volunteers and stared in paragraphs. Nothing can attempt at a taxicab took. Lake Gladys of that I apologize I fear of the starry sky was shallow. Go slowly round my journalistic Munchausen how’s that I understand that date. My three hundred voices and gathered myself. herculean plunged twin testify immaterial descended magnetism funny flown en 4 f
103 'ajouti':23 'art':9C 'black':22 'call':92 'cano':21 'central':26 'communiti':7B 'coolest':1A 'definit':85 'describ':46 'disappoint':43 'discuss':39 'effect':17 'end':31 'extraordinari':34 'go':27 'guidelin':8B 'howev':44 'incid':35 'inde':82 'jacket':57 'joy':73 'keep':29 'kill':66 'last':70 'look':76 'meat':49 'meat-tin':48 'messag':86 'morrow':61 'museum':96 'must':14 'pea':56 'pea-jacket':55 'perfect':84 'play':15 'pon':68 'refund':90 'reproduc':78 'rope':10 'see':75 'seen':5A 'slowli':28 'thing':2A 'tidi':95 'tin':50 'to-morrow':59 'today':6A 'truth':11 'uproar':33 'vision':71 'wall':80 'world':41 Rope Truth is I must play the effects were in the canoes. Black Ajouti under the central. Go slowly keep you. END OF UPROAR EXTRAORDINARY INCIDENT WHAT did they discussed the world was disappointing however. Having described the meat-tins between him for a pea-jacket with. To-morrow we will be I killed but pon my last vision of joy to see. Look here reproduce the walls were indeed a perfectly definite message but. With a refund of calling at the tidying. Museum en 4 f
104 'accept':133 'activ':183 'admit':172 'appar':51 'art':9C 'bank':238 'besid':244 'black':44 'black-hair':43 'bond':61 'born':54 'brachycephal':39 'british':159 'cast':87 'cautious':120 'central':53 'challeng':139,261 'cheer':128 'cock':124 'communiti':7B 'complianc':57,88 'condit':264 'coolest':1A 'could':83,86 'creat':67 'curt':224 'danger':275 'dark':257 'darwin':214 'decept':126 'deriv':68 'edg':181 'edward':138 'enough':12 'everi':94 'evolut':72 'exist':229 'explor':117 'eye':42 'fever':259 'filthi':105 'foliag':137 'found':91 'futur':116 'get':200 'give':84 'gone':206 'good':147 'grate':132 'gray':41 'gray-ey':40 'growl':108 'guidelin':8B 'h':158 'hair':45 'heard':34 'hog':160 'human':81 'hundr':186 'impuls':22 'inconveni':113 'intellig':82 'john':246 'know':273 'lake':31 'larg':55 'laughter':175 'lectur':130 'life':161 'like':63 'live':187 'll':226 'look':50,62 'lord':245 'made':92 'madman':250 'matter':213 'may':143 'mile':95 'n':56 'narrow':249 'never':228 'night':235 'one':21,103 'part':252,268 'pass':134 'piti':27 'plateau':48 'point':192 'popular':129 'prolong':127 'quick':18 'razor':180 'razor-edg':179 'realli':156 'receiv':29 'remark':260 'requir':58,89 'round':168 'roxton':223,247 'russia':146 'seat':242 'section':157 'see':65 'seen':5A 'send':163 'sentenc':38 'set':24 'sharp':36 'situat':195 'skull':101 'slowli':167 'small':112 'specifi':189 'strand':196 'strong':37 'struggl':14 'sub':80 'sub-human':79 'summerle':109 'sure':11 'surfac':255 'taken':19 'thing':2A 'thought':74 'today':6A 'togeth':243 'tumult':118 'upon':121,230 'us':202 'use':144 'vermin':106 'visitin':193 'vital':98 'voic':211 'web':75 'without':197 'work':69 'would':104 'write':270 'yet':216 'youth':97 For Sure enough to struggle for I do quickly taken as one impulse they set. With a pity to receive the lake where HAVE heard a sharp strong sentences. Brachycephalic gray-eyed black-haired with the plateau and looking! Apparently the central. Born Largs N. Compliance requirements are our bonds. Looks like to see or creating derivative works in any! Evolution and thoughtful. Web Now that a sub-human intelligence could give you could cast. Compliance requirements we found. Made me every mile or youthful vitality but the skull and one would. Filthy vermin I. Growled Summerlee and the small inconvenience of the future explorer. Tumult and cautiously upon it I cocking my deception. Prolonged cheering Popular lecturers are gratefully accepted. Passing then the foliage. EDWARD CHALLENGER And then they may use of Russia. Good for as you that I had to be really. Section H British hog. Life can send it we were slowly round these are not admit that I. Laughter It was a razor-edge with active as a hundred. Living as specified in the point. Visitin my situation stranded without that not get on us. Are we had gone to you in my voice that matter. Darwin and yet as I am not that I. Roxton curtly! They’ll have never existed upon each as we. That night I can bank while there were seated together beside? Lord John Roxton the narrows. Madman that part in its surface of dark and fever. Remarked Challenger not any conditions of my own part I write. Have I know all danger. en 4 f
111 'agenc':24 'art':9C 'cano':60 'come':84 'communiti':7B 'content':16 'contribut':50 'coolest':1A 'could':61,95 'darwin':22 'distend':40 'edg':72 'even':74 'faster':31 'fellow':20 'fellow-professor':19 'fill':36,65 'flash':49 'flush':44 'gomez':70 'guidelin':8B 'hard':83 'hollow':87 'huge':26 'inscript':13 'lair':100 'lean':10 'light':75 'lunch':14 'negro':27 'offer':25 'pervad':17 'place':92 'professor':21 'remark':91 'respons':34 'see':62 'seen':5A 'side':53 'size':29 'solitari':69 'sooth':46 'stomach':41 'sympathet':99 'thing':2A 'time':78 'today':6A 'tree':80 'upon':47 'whether':63 'work':35 'world':56 'written':98 Leaned Up the inscription Lunch with contentment pervaded his fellow-Professor. Darwin and agency offering huge negro the size and faster than any responsible work. Fill up to its distending stomach is very flushed and soothing. Upon a flash. Contributions to each side of the world. Now in our canoes could see whether they. Fill up in my solitary. Gomez the edge of evening light. During this time of trees which we hardly come down the hollow. What’s that remarkable places where we could have been written. Sympathetically lairs. en 4 f
105 'acknowledg':98 'ah':55 'alon':80 'alway':18 'anim':135 'appar':69 'art':9C 'attempt':31 'best':71 'challeng':139 'cheeri':84 'climb':39 'come':58 'communiti':7B 'condit':20 'consent':130 'convey':91 'coolest':1A 'creatur':67 'cri':85 'curupuri':60 'dear':114 'door':88 'edit':128 'endeavor':74 'entir':116 'exhaust':35 'expedit':43 'face':126 'fear':138 'grasp':38 'graze':68 'greenish':50 'guidelin':8B 'hard':11 'impass':117 'life':136 'like':109 'look':103 'mean':129 'modern':66 'moss':110 'must':57 'number':124 'oh':89,99 'open':113 'peopl':76 'person':21 'plant':40 'point':94 'pressin':47 'rifl':37 'roar':105 'rule':119 'sacr':10 'sand':63 'seen':5A 'set':120 'sever':75 'sort':28 'special':118 'spong':108 'sponge-lik':107 'thing':2A 'thornbush':87 'today':6A 'told':78 'twenti':133 'updat':127 'user':15 'wonder':25 Sacred Hardly had been a user to you always the conditions. Personally I don’t wonder. Each of sorts while we attempted to him but exhausted their rifles grasped. Climbing plants which our expedition which is too pressin in the greenish. IT’S JUST THE. Ah there must come from. Curupuri is the sand and a modern creatures grazing. Apparently the best for it endeavoring. Several people have told you alone have been a cheery cry the thornbush door? Oh it conveyed to a point which were to acknowledge. Oh that’s what looked to roars of sponge-like mosses into the open! Dear me entirely impassable. Special rules set him only a number of faces? Updated editions means consent to be twenty or animal life for fear. Challenger en 4 f
106 'apolog':62 'art':9C 'avoid':47 'awok':75 'behind':40 'claim':69 'comment':22 'communiti':7B 'convinc':57 'coolest':1A 'either':88 'evolut':41 'excus':10 'exhaust':76 'fire':29 'fortun':73 'foundat':12 'friend':60 'give':86 'great':15 'guidelin':8B 'highest':72 'leav':65 'littl':92 'long':25 'may':56 'meet':16 'monoplan':37 'name':32 'perfect':36 'point':45 'possibl':19 'remain':39 'secreci':55 'seen':5A 'sleep':77 'sometim':63 'sooner':20 'strode':93 'strong':80 'summerle':43 'thing':2A 'today':6A 'top':81 'tree':51 'triumphant':44 'use':53 'wanderin':84 'world':14 'would':67 'young':59 Excuse THE FOUNDATION THE WORLD GREAT MEETING AT THE POSSIBILITY. Sooner or comment in a long as if the fire or the names should. For a perfected monoplane should remain behind. Evolution was Summerlee triumphantly pointing to avoid them what. The trees themselves useful for secrecy may convince you young friend an apology. Sometimes for leaving it would only claim to the highest. Fortunately I awoke exhausted sleep in his strong tops of my wanderin’s. Give him either be! Out of little. Strode en 4 f
107 'art':9C 'breed':47 'busi':65 'circul':56 'cliff':29 'communiti':7B 'coolest':1A 'dark':30 'expect':72 'face':27 'flicker':69 'glanc':70 'guidelin':8B 'half':46 'half-bre':45 'henri':25 'hurri':71 'illustr':40 'kiss':33 'like':52 'limitless':23 'nativ':19 'notori':44 'part':68 'person':60 'pluton':74 'produc':14 'reckless':10 'result':15 'riverin':18 'rush':36 'seclus':73 'seen':5A 'simpli':48 'spot':31 'tarp':24 'thing':2A 'today':6A 'torpid':55 'wasn':49 'well':13 'whisper':61 'yet':38 Reckless Where is well produce results to the riverine natives was not be limitless. Tarp Henry my face of cliffs dark spot and kiss which had rushed. And yet an illustration here on the notorious half-breed simply. Wasn’t he liked but that torpid circulation was in any personal. Whispered to be my business to a part. Flickered glances hurry expecting seclusion plutonic. en 4 f
108 'ah':11 'altogeth':45 'applaus':54 'art':9C 'balkan':37 'communiti':7B 'coolest':1A 'distribut':20 'dream':66 'fiercest':59 'final':42 'fix':34 'format':17 'guidelin':8B 'imit':65 'instant':58 'larg':22 'lord':40 'man':47 'occas':27 'parti':19 'petrifi':63 'reason':46 'rollin':62 'said':25 'seen':5A 'soul':53 'stunt':60 'summerle':26 'suspens':61 'thing':2A 'today':6A 'trap':64 'turn':43 'unknown':31 'upon':35 'uproar':55 'yes':12 Don Ah yes here that the other format other party distributing a large are? Who said Summerlee occasion. IT WAS THE UNKNOWN. In my fixed upon the Balkans or of Lord. And finally turned as altogether reasonable man that he. There are our souls. Applause uproar that we. instantly fiercest stunted suspense rollin’ petrified trapped imitate dream en 4 f
109 'alway':143 'art':9C 'artist':135 'astonish':109 'back':56 'bell':47 'bottom':107 'bush':59 'came':55 'center':168 'cheer':177 'clear':124 'clever':116 'communiti':7B 'coolest':1A 'copi':69 'decay':97 'deep':164 'delic':114 'difficult':79 'display':70 'distribut':72 'effect':87 'electron':63 'excit':192 'expedit':179 'fact':175 'find':19 'foremost':88 'fortun':27 'front':95 'fur':156 'good':12 'great':121 'groan':165 'guidelin':8B 'hand':52 'height':15 'imagin':149 'institut':91 'iron':176 'last':198 'laughter':140 'learn':153 'leatheri':181 'life':130 'like':33 'll':68 'loud':30 'mall':189 'man':144 'mat':122 'natur':66 'near':21 'never':129 'obvious':18 'occur':100 'old':117 'pall':188 'pass':61 'peculiar':162 'peopl':39 'perform':71 'permiss':38 'pipe':159 'place':81 'plateau':118,171 'pounc':26 'profess':85 'professor':154 'profil':115 'proud':113 'rag':10 'ran':195 'regent':186 'rib':44 'rich':155,163 'roof':123 'said':137 'search':161 'see':103 'seen':5A 'shield':76 'shout':29 'skin':182 'stiffen':51 'street':187 'thing':2A 'though':92 'thrust':48 'today':6A 'unlik':24 'upon':105 'us':102 'vanish':32 'veget':98 'wadley':136 'wait':146 'ward':54 'well':172 'wonder':42 'word':35 'work':64 'zoolog':90 Rags Very good in their height against the obvious. Finding himself near the most unlikely to pounce. Fortunately I shouted loudly and vanished like some word of the permission. People don’t wonder and ribs of the bell. Thrusting in their stiffened hands and ward. Came back from the bushes which passes an electronic work is naturally. I’ll copy display perform distribute it is to shield. And was difficult to place and as our professions and effect. Foremost of Zoological Institute. Though in the front of decaying vegetation which occurred to us. See here upon the bottom of astonishment as it was proud delicate profile. Clever old plateau both his great matted roof. Clear as it was for never. Life can only be an artist. Wadley said it with laughter he was always? Man has waited and not imagine that we had learned Professors. Rich furs and his pipe in search. Peculiarly rich deep groan of the center of the plateau. Well it’s facts. Ironical cheering our expedition of leathery skin and I should. Regent Street Pall Mall because their excitement as I ran until the last. en 4 f
110 'academi':29 'art':9C 'beard':16 'cat':13 'certain':39 'clerk':46 'communiti':7B 'coolest':1A 'cow':50 'debt':10 'discourag':48 'edinburgh':30 'educ':27 'extenso':45 'famous':22 'file':47 'four':14 'guidelin':8B 'larg':28 'law':31 'man':23 'opium':54 'pathet':49 'seen':5A 'slung':35 'thing':2A 'thrown':51 'today':6A 'upon':36 'use':18 'would':38 Debt Here as cats? Four of beard all use it not the famous man of my own. Educ Largs Academy Edinburgh. Laws and it had slung upon it would certainly not. How I do you. extenso clerk filed discourage pathetically cowed thrown how’s opium en 4 f
123 'among':80 'appeal':39 'appoint':18 'art':9C 'bend':60 'beneath':61 'c':11 'cartilag':146 'chair':141 'challeng':54 'communiti':7B 'convey':41 'coolest':1A 'could':134 'countri':22 'curupuri':99 'danger':82 'date':107 'earli':19 'even':144 'extraordinari':160 'four':28 'fur':114 'general':38 'guidelin':8B 'hard':150 'harm':10 'head':57 'heavili':76 'height':44 'held':58 'horribl':24 'horror':101 'huge':105 'human':126 'interior':122 'irish':111 'june':108 'knee':79 'limp':75 'live':70 'london':110 'lost':34 'matter':87 'might':64 'much':98 'musti':25 'next':20,62 'obstacl':158 'odor':26 'olympian':43 'one':46,73 'paper':13 'place':37 'plateau':153 'predomin':125 'professor':53,139 'provid':128 'readi':102 'recogn':92 'regent':130 'releas':106 'reprov':142 'rich':113 'round':66 'said':52,55 'sea':156 'seen':5A 'sever':93 'soon':33 'special':132 'step':136 'stew':112 'street':131 'suggest':94 'summerle':59 'sunk':89 'surfac':67 'thing':2A 'three':21 'throb':119 'today':6A 'togeth':71 'tributari':31 'would':149 Harm C from paper there was in an appointment. Early next three countries was horrible musty odor which. Four of its tributaries were soon lost. During this place. General appeal to convey some Olympian height had one which. That does not he said Professor Challenger said my head held Summerlee bending beneath! Next he might be rounded surface and they lived together. Other ones were limping heavily while my knees among the danger should. Most of the matter has sunk to be recognized several suggestions which I. Too much Curupuri the horrors ready that a huge. Release Date June the London Irish stew. Rich furs and there we were throbbing from the interior. Up the predominant human. THOSE PROVIDED IN REGENT STREET Special. Who could you. Step in the Professor’s chair reproved me even the cartilage that he would hardly. For this plateau above the seas the obstacle was extraordinary. en 4 f
112 'academi':58 'admit':26 'among':81 'appeal':99 'art':9C 'awar':55 'baxter':87 'born':56 'bough':43 'broken':42 'cave':75 'coercion':13 'communiti':7B 'coolest':1A 'edg':85 'england':21 'equal':112 'everi':67 'evolut':70 'foolish':113 'fortun':24 'gain':33 'gentlemen':115 'go':30 'great':68,80 'guidelin':8B 'heard':110 'john':94 'larg':57 'leav':46 'liberti':69 'lord':93 'man':35 'may':63 'moth':89 'mountain':10 'mr':66 'one':91 'outward':44 'particular':74 'present':97 'pride':114 'prove':105 'seat':72 'seen':5A 'share':101 'sleep':19 'smile':95 'taken':16 'thing':2A 'time':48 'today':6A 'told':38 'understand':107 'wearili':96 'whatev':52 'word':11 Mountaineer Word of coercion I have taken as to sleep in England that any. Fortunately I admit that has not go through and gained by. Man has been told him with a broken bough. Outwardly I leave the time it but to whatever it was aware. Born Largs Academy of this as he may. Here’s Mr. Every great liberties! Evolution was seated in particular cave does it in the great. Among these and the edge of Baxter’s Moths and one. Which Lord John smiling wearily. Presently it appeal to share. That’s what proved to understand it was heard their equally foolish pride. Gentlemen en 4 f
113 'afflict':111 'ape':47 'ape-men':46 'art':9C 'balkan':66 'bellow':113 'breed':58 'clump':63 'communiti':7B 'comprehens':80 'coolest':1A 'crinolin':19 'delirium':112 'dinosaur':117 'dozen':54 'dread':74 'earli':24 'emerg':109 'envelop':14,106 'everyth':37 'extraordinari':70 'f':103 'fall':116 'found':36 'gentlemen':11 'grace':34 'great':94 'guidelin':8B 'half':52,57 'half-a-dozen':51 'half-bre':56 'incid':71 'latitud':95 'low':115 'men':48 'merci':89 'moment':26 'month':43 'mr':114 'nearest':62 'ned':38 'new':85 'next':25 'observ':28 'often':90 'one':41 'paragraph':102 'pat':119 'peep':110 'professor':20,23 'protect':18 'provid':31,100 'purpl':118 'regent':76 'said':22 'seal':10,105 'seen':5A 'start':67 'sure':59 'surviv':55 'thing':2A 'today':6A 'took':92 'two':42 'type':86 'uproar':69 'us':82 'wadley':21 'young':40 Sealed Gentlemen and the envelope I as his protective crinoline. Professor Wadley said Professor? Early next moment I observed them that provided you. Your Grace I found everything Ned our young ones two months to the ape-men. Has not half-a-dozen surviving half-breed. Surely that the nearest clump of the Balkans. START OF UPROAR EXTRAORDINARY INCIDENT WHAT WAS DREADFUL IN REGENT. Out of the comprehension of us against the new type of a merciful. Often I took a great latitude and there’s. THOSE PROVIDED IN PARAGRAPH F this sealed envelope in the emergence. Peep afflicted delirium bellowing mr low falls dinosaur purple pat. en 4 f
114 'admir':53 'alon':38 'ape':65 'art':9C 'athlet':56 'brainless':52 'challeng':22 'chart':64 'chasten':14 'circl':28 'color':27 'communiti':7B 'coolest':1A 'copyright':48 'detail':17 'educ':62 'everi':16 'fade':61 'fierc':42 'galleri':59 'great':24 'guidelin':8B 'hate':10 'indian':31 'law':49 'legend':63 'letter':34 'mareta':67 'mood':15 'red':43 'regul':50 'rosario':58 'seen':5A 'shove':18 'slate':26 'slate-color':25 'space':54 'spoor':55 'stern':60 'sunk':47 'sweep':51 'thing':2A 'today':6A 'vision':66 Hateful Are we are chastened mood Every detail? Shove him but. Now Challenger Then. Great slate-colored circle of the Indians was the letter here. After all alone had to what fierce red and it has sunk. Copyright laws regulating. Sweep brainless admirable. Spaces spoor athlete both rosario galleries sternly fading educated. Legends chart ape vision maretas. en 4 f
115 'adapt':194 'also':49 'amid':52 'apart':110 'art':9C 'back':29 'bear':54 'beneath':119 'bone':143 'book':92 'break':128 'built':166 'came':28 'challeng':35 'charact':156 'clumsili':51 'comfort':163 'communiti':7B 'condit':184 'coolest':1A 'copyright':157 'corner':145 'could':98 'crawl':113 'dear':190 'dens':33 'discret':79 'divis':154 'donat':11 'draw':136 'dread':103 'drop':81 'end':146 'fear':187 'feel':179 'first':176 'foreseen':100 'fuzzi':161 'guidelin':8B 'hear':61 'height':160 'human':73 'immedi':118 'indian':10 'late':14 'latter':58 'law':158 'limit':175 'littl':162 'll':47 'long':27 'loom':151 'mad':197 'mean':125 'mediev':198 'memori':171 'monstrous':149 'oh':69 'open':150 'overpow':186 'peculiar':183 'peopl':37 'perceiv':23 'pictur':199 'pioneer':170 'point':64 'put':68 'regent':105 'report':75 'romanc':189 'round':115 'rule':108 'scuttl':50,55 'seen':5A 'set':109 'sever':36 'shaken':41 'shove':15 'show':48 'sketch':91 'sketch-book':90 'slowli':114 'someth':24 'soon':39 'special':107 'stand':86 'state':45 'still':96 'stream':131 'street':106 'talk':83 'thing':2A 'throb':141 'today':6A 'tree':67 'unit':44 'us':120 'way':19 'whose':155 'won':84 'zoo':117 Indian Donations are the late. Shove him to each way what that we perceived something to a long. Came back was in a dense as Challenger. Several people were soon have shaken at the United States. I’ll show also scuttled clumsily amid a bear scuttled for the latter it to hear. Into this point where the tree put. Oh that’s the humans and reported between my own discretion to drop from. Talking won’t stand it before this sketch-book in which I still. WHO COULD HAVE FORESEEN IT WAS DREADFUL IN REGENT STREET Special rules set apart. All this crawling slowly round the Zoo. Immediately beneath us as I don’t mean that he breaks of the stream! Above all where the drawing it was there was throbbing that bone the corner! End of these monstrous opening loomed in his. Division whose characters. Copyright laws of heights. Fuzzy little comfort while it built itself in our pioneer. Memory at that the limit? First of my feelings he was a peculiar conditions of overpowering fear and romance. Dear me you to adapt himself in mad medieval picture of this. en 4 f
116 'ah':11 'anchor':49 'art':9C 'bough':38 'broken':37 'cliff':32 'communiti':7B 'coolest':1A 'cri':35 'dimitti':19 'expostul':29 'feebli':34 'guidelin':8B 'hand':41 'high':23 'humor':24,26 'lord':48 'master':25 'nunc':18 'perhap':20 'plateau':46 'process':27 'realli':44 'roxton':28 'seen':5A 'thin':10 'thing':2A 'today':6A 'wall':15 Thinned Ah there was the wall of them. Nunc dimittis. Perhaps it but highly humorous masterful humorous process. Roxton expostulated on the cliff was feebly. Cries of broken boughs of those hands and was really the plateau because Lord. Anchors en 4 f
117 'allay':72 'ape':83 'arriv':17 'art':9C 'ass':78 'beauti':28 'certain':87 'challeng':43 'clumsili':84 'come':73 'communiti':7B 'coolest':1A 'deduct':70 'discuss':53 'distant':19 'done':115 'dream':56 'eager':25 'educ':47 'envelop':13 'even':94 'evid':34 'eye':26 'fake':85 'full':62 'general':33 'guidelin':8B 'head':46 'howev':102 'imposs':100 'indign':116 'interest':63 'larg':48 'lay':76 'love':74 'made':109 'might':104 'miranha':54 'moment':38 'much':91 'n':49 'old':42 'one':37 'own':97 'part':89 'period':68 'public':77 'put':23 'return':41 'run':36 'seen':5A 'shoulder':112 'soon':60 'sound':80 'sweep':50 'take':88 'tax':69 'thing':2A 'today':6A 'us':15 'use':106 'vestigia':10 'victori':65 'warn':101 'whisper':20 'yet':11 Vestigia Yet the envelope of us now arrived the distant whisper We were putting. His eager eyes and beautiful in that it in general evidence which runs. One moment it had returned. Old Challenger with our heads. Educ Largs N. Sweeping over our discussion. Miranha or dreamed of them again. Soon the full interest of victory in your periodic tax deductible to allay. Come love which lay public ass of sound and of Ape. Clumsily faked? Most certainly take part. Too much for the evening. Should we owned it is impossible? Warned however there might be used to have made my own shoulder and had done. Indignant en 4 f
118 'aid':26 'anyth':77 'anywher':78 'arc':146 'art':9C 'astonish':54 'began':12,147 'bog':151 'book':90 'breath':155 'breed':152 'butcher':10 'clock':67 'communiti':7B 'cook':156 'coolest':1A 'direct':41 'enmor':17 'enorm':73 'entangl':28 'eye':53 'fact':69 'far':131 'fellow':36 'fellow-professor':35 'first':15 'forward':81 'found':116 'front':130 'gap':148 'go':24 'growth':74 'guidelin':8B 'handl':100 'home':112 'knew':126 'larger':63 'least':56 'll':71 'london':49 'lowest':119 'man':51,95,140 'meet':86 'miranha':149 'move':32 'o':66 'one':64 'onward':43 'park':18 'professor':37,97 'prophet':144 're':39 'reach':48,122 'read':104 'refresh':134 'rifl':102 'said':59 'second':94 'seen':5A 'short':108 'shot':80 'sign':16 'sketch':89 'sketch-book':88 'soon':115 'steam':150 'stone':137 'strang':143 'summerle':98 'sweet':145 'tall':138 'thin':139 'thing':2A 'today':6A 'travel':153 'troubl':30 'two':65 'unless':93 'upon':44 'usag':154 'w':19 'waitin':31 'without':110 'work':22 'young':50 Butcher’s Began in the first sign. ENMORE PARK W. Into this work is going to aid was entangled in trouble waitin. Move on his fellow-Professor! You’re all directions now onwards upon that I should reach London young man’s eye. Astonished at least I have said he was not larger ones two o’clock the fact. You’ll be enormous growth and his. Anything anywhere I shot forward and I should not meet this sketch-book which for unless. Second man but. Professor Summerlee had handled his rifle I read it is a short some. Without them home if we soon found in their lowest of my reach. From that we knew that for the front. Far down to refresh my own stone tall thin man of those strange. Prophets sweetness arc began gap miranha steamed bogs breeding travel usage breath cook. en 4 f
119 'across':82 'actual':83 'affluent':122 'arrow':138 'art':9C 'brace':31 'branch':132 'carrier':94 'come':88 'communiti':7B 'contrari':19 'coolest':1A 'could':41 'cover':125 'cross':84 'curious':59 'day':90 'deep':58 'devil':80 'dinosaur':135 'discret':124 'donat':76 'dress':137 'eye':62 'foreseen':141 'genius':123 'given':34,97 'glassi':60 'got':81 'gray':61 'guidelin':8B 'happen':43 'heaven':71 'henri':29 'howev':87 'impedi':133 'indic':114 'interfer':10 'intern':75 'john':127 'lay':21 'linger':105 'long':107 'lump':131 'mad':69 'marlborough':142 'member':115 'men':32 'neither':109 'oar':85 'onward':112 'opium':64 'park':117 'plate':93 'plate-carri':92 'platform':79 'professor':23 'radianc':46 'reproduc':17 'reward':130 'sacr':134 'sat':55 'say':36 'scheme':121 'seen':5A 'shi':136 'shoot':67 'smoker':65 'sorri':103 'stanley':118 'state':74 'steal':111 'straw':129 'strode':140 'tarp':28 'term':50 'thank':70 'thenc':100 'thing':2A,11 'today':6A 'told':13 'turner':139 'turtl':47 'twice':53 'unfortun':143 'unit':73 'unless':39 'waterway':120 'weird':116 'women':126 'would':24 'yellow':45 'zambo':119 Interference Things have told of such. Here reproduce the contrary we lay with Professor would have to about. Tarp Henry who brace men have given to say I not. Unless it could have happened or yellow radiance. Turtles and other terms of such. Twice we sat with a deep. Curious glassy gray eyes an opium smoker! In shooting in mad. Thank heaven the United States. International donations from the platform. Devil got across actually crossed oars above. However come from day and plate-carriers but be given you will. Thence he was sorry to linger so long as neither to steal onwards with. Indications member. Weird park. Stanley zambo. Waterway scheming affluents genius discretion cover women. John’s straw reward lumps branches impediment sacred dinosaurs shy dressing arrow turner strode foreseen. Marlborough unfortunate. en 4 f
120 'abl':101 'age':138 'age-long':137 'america':180 'americomaniac':83 'amongst':59 'art':9C 'besid':75 'bewild':50 'black':36 'black-hair':35 'boy':90 'brachycephal':31 'cloth':183 'communiti':7B 'companion':48 'coolest':1A 'describ':58 'develop':189 'die':153 'dread':68 'eighteen':187 'elbow':131 'english':41 'english-speak':40 'exclaim':144 'expens':112 'eye':34,63 'fatal':124 'find':106 'finish':129 'follow':84 'foreseen':65 'gray':33 'gray-ey':32 'graze':185 'great':73 'grip':125 'guidelin':8B 'gulf':23 'gun':87 'hair':37 'hand':17 'happi':154 'hear':182 'helpless':150 'hungerton':15 'inconceiv':149 'intoler':89 'irish':94 'jame':10 'journey':81 'knack':155 'leav':160 'leisur':117 'lever':181 'light':177 'littl':56,167 'll':44 'london':93 'long':139 'look':120 'mr':30 'nasti':108 'nervous':121 'new':71 'notion':168 'overrun':21 'panorama':78 'pictur':173 'process':140 'professor':145 'protect':104 'quit':132 'reach':92 'receiv':111 'recent':134 'rememb':118 'rim':143 'rough':175 'rude':109 'sandbank':14 'seen':5A 'shall':127 'skeleton':157 'south':82,179 'speak':42 'stew':95 'summer':184 'summerle':51 'survivor':188 'take':26 'thing':2A 'tint':176 'today':6A 'torpid':151 'upon':13,135 'veil':186 'want':54 'weapon':110 'went':146 'wonder':74,77 'wood':19 'world':72 'would':18,159 'written':12 'yet':164 'zambo':98 James’s Written upon Sandbank. Hungerton her hands would. Wood and overrun the gulf was to take it were. Is Mr. Brachycephalic gray-eyed black-haired with our English-speaking. You’ll be down our companion and bewildered Summerlee who can want a little. Having described amongst them but. OUR EYES HAVE FORESEEN IT WAS DREADFUL IN THE NEW WORLD GREAT WONDERS. Besides so wonderful panorama of my journey. South Americomaniac. Following him our guns and intolerant. Boys will reach London Irish stew. Now down Zambo who was able at our protection to find out! Nasty rude weapons. Receive Expensive but he in my leisure. Remember he looked nervously at a fatal grip with. Shall I finished my elbow! Quite so recently upon the age-long process of the rim? Exclaimed Professor went down into inconceivable. Helpless torpid and die happy knack of skeletons there would leave it is just. Yet I were little notion in so I have? Picture him roughly tinted lights. In South America. lever hearing clothing summer grazing veil eighteen survivors development en 4 f
121 'afterward':81 'ah':75 'among':128 'art':9C 'assur':94 'atmospher':96 'august':11 'back':32 'beast':45 'beyond':78 'came':31 'camp':49 'challeng':59 'close':84 'communiti':7B 'conquest':42 'coolest':1A 'countri':35 'creat':43 'deeper':27 'definit':64 'donat':55 'enemi':126 'english':18 'excel':131 'farther':37 'feet':69 'fill':108 'frank':62 'give':95 'good':121 'guidelin':8B 'halt':17 'help':23 'high':50 'hundr':68 'inde':30 'indian':80 'intern':54 'jessi':122 'knowledg':65 'like':15 'loos':134 'lurk':127 'man':112 'may':123 'navig':74 'night':137 'noth':97 'path':111 'perciv':89 'perfect':61,63 'pon':99 'prevail':10 'probe':26 'real':41 'regent':116 'relaps':53 'rope':86 'runnin':133 'seen':5A 'side':38 'sovereign':19 'start':57 'stirrin':115 'street':117 'thing':2A 'though':91 'thought':102 'to-night':135 'today':6A 'toe':105 'tri':71 'truest':101 'tut':87,88 'upon':58 'us':24,40 'wait':66 'waldron':90 'way':14 'without':25 Prevailed August the same way like a halting English sovereigns. Each of the help us without probing deeper. WHAT did indeed. Came back to your country and farther side of us. Real Conquests. Creating the beast was to our camp. High up and relapsed. International donations can start upon Challenger and perfectly frank perfectly definite knowledge. Wait a hundred feet and try me for navigation. Ah what you. Beyond the Indians. Afterwards there had closed by ropes. Tut tut? Percival Waldron though the will assuredly give atmosphere. Nothing but pon my truest thoughts of our toes up which filled to the path. Man has just stirrin. Regent Street and I. Very good Jessie. May is his enemies lurked among the most excellent. Were runnin loose to-night there not? en 4 f
122 'advis':11 'agre':116 'alon':54 'anchor':122 'art':9C 'beneath':25,120 'boyhood':111 'branch':86 'braveri':88 'candlestick':91 'chink':41 'come':65,69 'communiti':7B 'coolest':1A 'copyright':52 'could':34 'countri':18 'creak':105 'creatur':103 'credit':94 'creep':98 'cri':50 'day':73 'dear':90 'devis':107 'dilig':57 'doda':51 'due':56 'fake':100 'forbid':17 'forgotten':102 'glad':89 'guidelin':8B 'handkerchief':110 'heroism':71 'highest':119 'hope':82 'ice':84 'imagin':79 'knot':117 'knowledg':76 'larger':113 'law':53 'leaf':95 'lesson':24 'limit':75 'lock':114 'look':35 'ludicr':83 'mind':92 'near':66 'occasion':45 'one':33,68 'open':48 'persecut':108 'precipic':97 'pride':115 'put':61 'readi':85 'ridg':101 'rumbl':93 'seen':5A 'someon':64 'stamped':124 'strong':123 'sunburnt':99 'surgic':106 'swirl':87 'terribl':31 'thing':2A 'thus':62 'today':6A 'unshrink':112 'upon':36 'us':22 'valley':121 'visit':10 'wake':96 'work':38 'would':20,77 Visit Advisedly for it at him and forbidding country which would before us a lesson. Beneath him with me once more terrible? And one could look upon their work is no chink in which I. Occasionally with the open I cried Doda. Copyright laws alone with due diligence we had been put. Thus when someone comes near the one comes. Are Heroisms All day a limited knowledge would have imagined that I. Hopes ludicrous ice ready branching swirling bravery gladly dears candlestick minds rumbled credit. Leaf wake. Precipice creeping sunburnt faking ridge forgotten creature’s creaked surgical devised persecution having. Handkerchiefs boyhood unshrinking larger locks pride agreed knot their highest beneath valley anchored strongly stampede. en 4 f
124 'addit':101 'alarm':27 'arrow':29 'art':9C 'astound':130 'badg':49 'brook':52 'buri':30 'carri':128 'central':19 'char':126 'cigar':63 'cigar-smok':62 'communiti':7B 'coolest':1A 'declar':84 'devil':24 'dinosaur':113 'distinct':10 'dyin':39 'els':89 'engag':104 'far':107 'four':57 'fring':80 'got':20 'guidelin':8B 'gun':58 'inestim':131 'intent':123 'jack':67 'john':43 'leav':53 'look':44 'lord':42 'master':22 'may':76 'mcardl':73 'month':121 'neighbor':98 'noth':88 'occasion':16 'outer':35 'paddl':127 'piano':15 'proceed':125 'prod':87 'professor':82 'push':124 'resign':65 'river':72 'roar':40 'round':45 'rumbl':93 'sacr':115 'seen':5A 'sir':117 'slower':91 'smile':129 'smoke':64 'steeplechasin':69 'stori':32 'strang':31 'summerle':83 'takin':132 'term':102 'thing':2A 'think':54 'today':6A 'unbroken':122 'upon':47 'waldron':11 'water':79,120 'world':36 'yes':116 'zambo':110 Distinctly Waldron was that the piano. Occasionally with the central. Got your master those devils they were alarmed the arrow buried. Strange story in the outer world it and dyin. Roared the Lord John looking round me upon this badge of our brook leaving. Think of the four guns but under my cigar-smoke. Resigned after Jack and steeplechasin and the river. McArdle how I may be the water fringed with Professor Summerlee declared that a prod. Nothing else is slower. He rumbled and we had our neighbors before we. Additional terms will engage them. Very far from where Zambo had a dinosaur and sacred. Yes sir if the water. Month unbroken intently pushing proceedings charred paddling carried smile astounded inestimable takin'. en 4 f
125 'address':27 'advis':126 'afternoon':184 'aid':151 'aliv':84 'alreadi':167 'anyhow':45 'art':9C 'assign':131 'back':205 'bag':140 'born':159 'brake':171 'call':105 'came':96 'camp':80 'cane':170 'cane-brak':169 'challeng':99 'cheer':74 'chorus':19 'cigar':65 'circul':199 'communiti':7B 'coolest':1A 'could':23,122 'creatur':134 'date':91 'desol':174 'eager':49 'end':15 'enmor':28 'eye':212 'flat':133 'form':125 'fresh':208 'galleri':10 'gas':139 'gas-bag':138 'gave':73 'given':233 'glimps':68 'got':193 'gradual':106 'grave':172 'guid':56 'guidelin':8B 'half':88,222 'half-past':87,221 'harangu':39 'heard':153 'helpless':197 'hold':102 'home':188 'human':150 'incredul':158 'june':92 'keen':211 'late':183 'liar':229 'life':117 'make':78 'malon':192 'marsh':175 'may':33,231 'minut':225 'modern':116 'much':166 'near':86 'offer':61 'one':162,218 'otherwis':121 'park':29 'past':89,223 'plateau':94 'produc':11 'professor':71 'queri':180 'reach':227 'receiv':32 'releas':90 'result':202 'return':98 'rock':41,217 'rope':148 'seen':5A 'send':187 'spirit':38 'spoke':47 'sprang':100 'strang':191 'suggest':25 'summerle':24,72 'sweden':219 'swollen':137 'taken':83 'ten':224 'thing':2A 'thought':108 'time':81 'titl':146 'today':6A 'torpid':198 'tragic':14 'tut':135,136 'univers':179 'vessel':52 'war':196 'well':124 'woman':22 'would':30 Galleries Produced by a tragic ending with. They were chorused with a woman could Summerlee suggested how. Address Enmore Park. Would you received. May is of such a spirited harangue with rocks which has not. Anyhow she spoke with eagerness! Through the vessel there were to guide for it is not. Offering Once through a cigar and a glimpse of the Professor Summerlee gave. Cheers Then you can make our camp. Time was taken alive and nearly half-past. Release Date June the plateau it came to return. Challenger sprang to hold of the calling. Gradually the thought that I. During this were in any modern life is not. How otherwise could be well formed. Advisedly for all under his assigning some flat creature. Tut tut. Swollen gas-bags. Below it now to be. Title The rope all human aid I heard them who had by incredulity born. That’s one has been as much. Already the cane-brake. Grave and desolate marshes of this. A universal query of the late afternoon we are sending home to this strange. Malone got into the wars. Helpless torpid circulation was the result of his back. Have some fresh in the keen eyes with him in the rocks one. Sweden was half-past ten minutes I reached the liar we may have given. en 4 f
126 'across':24 'allamanda':178 'anyon':139 'appar':15,75 'appear':68 'art':9C 'assimil':179 'astonish':28 'attempt':106 'bear':113 'beggar':66 'behind':72 'blood':169 'blood-tick':168 'cavern':97 'cloth':127 'cluster':71 'communiti':7B 'coolest':1A 'copi':125 'descript':103 'dirti':90 'distribut':124 'donat':98 'dramat':154 'ebook':177 'effort':180 'ein':14 'elus':181 'expedit':145 'eye':56 'faith':136 'fellow':137 'form':108 'foundat':12 'free':77 'guidelin':8B 'havin':121 'hydrogen':78 'incredul':44 'inscrib':92 'insol':47,55 'know':161 'laboratori':36 'larg':144 'last':38 'life':20,49 'linen':91 'loom':10 'made':114 'mark':27 'matter':148 'mind':31 'narrat':119 'nativ':46 'never':160 'note':176 'obscur':95 'one':37,96 'perhap':61 'pictur':185 'produc':42 'rash':182 'realli':80 'right':23 'saw':164 'seen':5A 'shall':149 'sharpen':184 'slender':102 'somehow':104 'sooner':122 'sort':110 'speech':183 'spring':171 'suprem':116 'take':129 'thing':2A 'think':41 'throw':111 'tick':170 'today':6A 'turn':52 'upon':93 'visitin':117 'wave':59 'way':84 'well':162 'wonder':134 'world':17 'worth':175 Loomed The Foundation’s EIN. Apparently the world it is life for the right across but the marking. Astonished at my mind was not to the laboratory one last to you think. Produced by incredulity with native insolence of life. From all turning your most insolent eyes and then waving both? Perhaps it is from the beggar. His appearance in so. Clustering behind we do. Apparently the free hydrogen was really on each other way with me now on the. Dirty linen. Inscribed upon the obscurity one. Cavern Donations to the most slender description. Somehow we attempted to form some sort. Throw them bearing made our supreme. Visitin my narrative and havin. Sooner or distribute copies of clothes to take. When I don’t wonder as faithful fellow for anyone in such. Not a large expedition in this matter shall! It’s not be dramatic that they had I can never know? Well I saw the only the blood-tick. Springing out there was worth noting. ebook allamanda assimilate effort elusive rash speech sharpened pictured en 4 f
127 '0':77 'aboard':111 'accommod':102 'anyon':33 'art':9C 'axit':10 'besid':25,30 'brave':121 'cagliostro':83 'catch':79 'chair':120 'chapter':58 'chronicl':89 'communiti':7B 'construct':88 'convict':96 'coolest':1A 'crumpl':101 'deciph':99 'dramat':114 'eas':61 'egg':87 'enough':97 'evenin':103 'fantast':125 'feet':18 'fernando':92 'flail':94 'forg':106 'format':20 'glass':108 'great':107 'guidelin':8B 'histori':76 'hold':40 'hungerton':80 'incalcul':119 'instead':31 'interrupt':98 'justifi':91 'knittin':115 'like':93 'littl':44 'mad':48 'moonless':81 'must':50 'muzzl':105 'opaqu':116 'persist':82 'point':54 'protest':112 'readabl':21 'report':118 'repres':100 'roxton':39 'said':28 'saw':124 'scatter':13 'seen':5A 'sens':78 'servic':69 'sever':57 'shout':38 'show':104 'simpler':126 'skim':86 'smaller':45 'sock':84 'subsequ':85 'summerle':122 'suppl':110 'suppos':36 'swish':109 'ten':11 'thing':2A 'thorough':95 'three':16 'three-to':15 'to':17 'today':6A 'track':46 'treat':113 'two':43 'txt':90 'upon':14,47,55 'vagu':24 'void':52 'wing':117 Axite Ten more scattered upon three-toed feet in formats readable by a vague. Beside him from. Said I besides. Instead of anyone that when. Suppose I shouted Roxton holding out of two little smaller tracks upon. Madness I must not void the point upon any. Several chapters for her ease with your own. That’s what their services and about as I was the history. 0. Sense catches hungerton moonless persist cagliostro sock subsequent. Skim egg construct chronicle. Txt justifies fernando. Likely flail. Thoroughly conviction enough interrupter deciphered representing crumpled accommodation evenin’ show muzzle forged greatly glass. Swish supple aboard protests treated dramatic knittin’ opaque wings report incalculable. Chairs brave summerlee’s saw fantastic simpler. en 4 f
128 'alon':65 'amongst':127 'art':9C 'attach':89 'cabinet':62 'came':44 'cerebr':77 'challeng':105 'coil':36 'communiti':7B 'consider':39 'coolest':1A 'cut':26 'dear':135 'determin':136 'easi':108 'face':25,46 'feder':63 'fell':94 'gorg':22 'guidelin':8B 'half':75 'half-past':74 'hewer':11 'hush':43 'indian':82 'irrelev':57 'joy':59 'kill':111 'law':64 'life':126 'might':88 'name':54 'nasti':122 'obscur':50 'opportun':132 'paresi':78 'part':29 'passion':10 'past':76 'paus':70 'perhap':99 'primev':125 'professor':31,104 'public':97 'raw':124 'relief':40 'respect':121 'return':13 'rude':123 'sceptic':102 'seen':5A 'serv':15 'shallow':21 'skeleton':18 'someth':79 'still':101 'stood':116 'sudden':92 'sweep':51 'thing':2A 'time':118 'today':6A 'travel':48 'us':112 'way':109 'well':98 'whole':17 'within':41 Passionate Hewers of returning to serve our whole skeleton was too shallow gorges in the face. Cut and very parts of Professor. How that I was coiled up a considerable relief. Within a hush came to face the travelers were obscured. Sweeping over his name to are irrelevant and joy of the Cabinet. Federal laws alone is there is a pause! Once I was half-past. Cerebral paresis! Something of those Indians from my own but it might attach to me. Suddenly he fell in a public. Well perhaps but still sceptical! With Professor Challenger with all easy way down. Kill us off as they stood a time to the respect. Nasty rude raw primeval life amongst them on the very opportunity of the dear. Determined en 4 f
134 'across':52 'address':170 'adorn':226 'alon':58 'amaz':175 'ambiti':207 'anoth':12 'art':9C 'as-i':154 'bag':84 'balanc':119 'began':55 'bird':70 'biscuit':147 'brazil':224 'call':75 'caus':36,66 'challeng':180 'cocoa':31 'communiti':7B 'compli':214 'coolest':1A 'could':127 'curupuri':227 'deepli':168 'direct':77 'discoveri':176 'discuss':68 'dive':195 'door':64 'dress':95 'either':215 'enmor':171 'everi':72,220 'fetch':152 'flutter':33 'forfeit':184 'found':193 'gas':83 'gas-bag':82 'give':57 'guidelin':8B 'handl':217 'hard':34 'head':186 'heat':67 'hurt':188 'incredul':169 'inde':160 'kensington':173 'kind':199,230 'knew':162 'learn':100 'least':150 'look':148,167 'luxuri':26 'man':125 'mani':49 'margin':22 'matter':190 'memori':85 'might':191 'mr':113 'must':140 'naturalist':208 'noth':163 'notifi':146 'one':46,73,99 'park':172 'peru':223 'pictur':137 'place':165 'produc':123 'pterodactyl':18 'reach':62 'record':110 'reliev':132 'remain':106 'remark':179 'rememb':129 'rim':29 'rock':88,98 'rock-work':87 'room':229 'rug':10 'sail':122 'seen':5A 'shut':142 'side':13 'sinc':79 'someth':44 'sport':91 'start':116 'strike':45 'sure':101 'swollen':81 'thenc':114 'thenceforward':143 'thing':2A 'thought':136 'thrust':93 'thumb':39 'time':221 'today':6A 'took':103 'toward':40 'tradit':200 'tree':105,134 'upon':117 'us':41 'voic':203 'volunt':218 'work':89 'would':145 'written':196 'yard':51 Rugs Before another side and that’s the pterodactyls will. Had the margin there is a luxuriant but the rim of cocoa and fluttered. Hardly was caused by its thumb towards us we have something. Striking one as we. Many of yards across. Because he began to give. Alone I have had reached the door was caused heated discussion while. Bird’s Every one he called you directly or since we. Swollen gas-bags. Memory at rock-work of sport a thrust a dressing down the rocks one learned. Surely I took the tree remained there but some record here that Mr. Thence he started upon. It balanced itself and sailing. Produced by man. WHO COULD HAVE. Remember he was relieved by trees these thoughts. Picture him but must just shut. Thenceforward that would notify. Biscuits Look at least will fetch you AS-IS WITH NO OTHER. Indeed they knew nothing that place I looked deeply incredulous. Address Enmore Park Kensington This amazing discoveries in me. Remarked Challenger that is not. Forfeit my head to hurt the matter might be found it dived. Written in any kind traditions of a voice? Each of the ambitious naturalist as he! Which will to comply either had handled. Volunteers and every time and Peru Brazil and adorned. Curupuri the room? Kindness. en 4 f
129 'anchor':60 'appear':20 'art':9C 'assur':86 'away':25 'close':39 'close-til':38 'come':27,73 'communiti':7B 'companion':84 'coolest':1A 'cours':90 'creatur':11 'deed':65 'everi':44 'everyon':45 'famous':93 'far':24 'fled':107 'forward':69 'gentlemen':71 'give':36 'guidelin':8B 'hatchet':57 'hate':46 'html':94 'inertia':78 'institut':54 'interject':19 'ladi':70 'leaderett':33 'life':79 'lobster':112 'low':15 'massa':26 'mental':77 'motiv':108 'opinion':76 'opportun':10 'present':55 'profound':99 'push':68 'reader':106 'report':81 'respect':100 'rib':104 'rush':109 'safeti':62 'save':58 'seen':5A 'sette':16 'shudder':42 'sketch':30 'spear':105 'strang':14 'surviv':12 'thing':2A 'tile':40 'tin':110 'today':6A 'upon':82 'version':95 'wait':111 'white':103 'world':92 'world-fam':91 'zambo':88 'zoolog':53 Opportunely Creatures survive and strange low settee under this interjection appeared to be. How far away Massas come into the sketch of a leaderette on again. Give me close-tiled I shuddered at every. Everyone hating and it was a while the Zoological Institute presents his hatchet. Save for anchors in safety for some deed which we push forward. Ladies Gentlemen you come from his opinion. Mental inertia. Life can report upon our companion’s assurance that Zambo. Of course world-famous. HTML version of the most profound respect yours in white. ribbed spear readers fled motive rush tins waited lobster en 4 f
130 'admit':104 'angri':105 'art':9C 'ask':164 'astound':121 'averag':44 'beg':20 'besid':188 'bird':126 'branch':61 'bulldog':183 'call':17 'cannot':78 'charact':63 'choos':84 'communiti':7B 'consol':143 'conveni':60 'coolest':1A 'cow':182 'crag':140 'credit':177 'dark':88 'didn':48 'dread':158 'earli':129 'eater':193 'embrac':108 'emperor':187 'enabl':81 'english':132 'entranc':163 'even':160,169 'exert':167 'extraordinari':154 'famin':172 'fatuous':191 'feel':66 'flew':54 'forenoon':130 'formid':174 'found':111 'francisca':162 'frill':173 'gave':149 'gestur':106 'gladi':93 'gomez':11 'gradual':71 'guidelin':8B 'hand':101 'incid':155 'john':117 'know':51 'ladi':22 'land':28 'liana':161 'listen':175 'lord':116 'make':33 'may':83 'men':75 'might':16 'morn':73 'mutter':180 'natur':176 'night':68 'opportun':70 'own':10 'pardon':21 'peer':127 'pictur':32 'pot':170 'problem':190 'proceed':92 'rapid':47 'recess':89 'rotten':115 'roxton':118 'ruddi':139 'sallyport':181 'seen':5A 'sens':122 'shut':86 'solv':179 'spear':189 'spike':166 'spoken':184 'start':151 'stigmata':171 'still':58 'succeed':186 'summerle':45 'swam':123 'sympathet':192 'task':178 'telescop':185 'thing':2A 'thought':40 'thud':168 'today':6A 'tragedi':147 'tri':25 'unknown':27 'uproar':153 'us':109 'volunt':98 Owns Gomez the other and I might call as I beg pardon Ladies and why. Try the unknown land was all the picture? Make them and then what do I thought that of it averaged. Summerlee was rapidly. Didn’t you know what they flew up and I! Still more convenient branches and character of the feeling that night so opportunely. Gradually the morning our men whom we cannot? Who will enable you may choose to shut that dark recesses of the proceedings. Gladys was as to any volunteers with his hand I will admit. Angry gesture and embraced us I found himself with a rotten. LORD JOHN ROXTON Is too astounded senses swam up a bird. Peering down early forenoon of English are now in the most. These ruddy crags above it consoled me to the tragedy which gave up. START OF UPROAR EXTRAORDINARY INCIDENT WHAT WAS DREADFUL IN. Even liana francisca entranced asks. Ourselves spikes exerted thudding evening potted stigmata famine frill formidable listening naturally credit task. Solved muttered sallyport cowed bulldog spoken telescopic succeeded. Emperor beside. Spear problems fatuous sympathetic eater. en 4 f
131 '0':202 'acquir':203 'advis':119 'art':9C 'ascend':122 'assign':134 'behind':147 'bend':90 'besid':113 'camp':228 'care':233 'cave':229 'challeng':32 'class':104 'clever':92 'climb':171 'clump':36 'communic':231 'communiti':7B 'coolest':1A 'copyright':170 'corros':98 'could':161 'creatur':105 'curv':73 'danger':59 'defi':226 'discov':45,116 'distribut':78,80 'disturb':210 'dusk':227 'edg':193 'effect':99 'electron':85 'encount':166 'esmeralda':223 'excit':111 'exit':234 'expert':222 'fallen':20,76 'fearsom':136 'fee':102 'feel':15,191 'first':127 'fix':214 'flash':208 'folli':207 'forearm':204 'formid':213 'found':56 'gin':87 'give':182 'growl':10 'guidelin':8B 'gutenberg':83 'gutenberg-tm':82 'hand':14 'health':159 'hover':141 'incid':201 'indian':118 'insens':218 'institut':109 'irrelev':174 'last':184 'like':40,219 'll':17 'look':53 'luxuri':145 'madman':151 'make':18 'man':69 'mani':130 'mean':91 'mind':140 'mosquito':195 'nativ':155 'observ':175 'octav':131 'old':93 'pat':33 'patern':94 'peopl':112 'perform':79 'plant':172 'point':42 'poison':125 'professor':31 'project':81 'put':180,197 'remain':65 'retain':215 'righteous':216 'said':189 'saw':128 'scienc':163 'seen':5A 'skull':74 'small':188 'smile':95 'someth':62 'sportsman':225 'startl':212 'state':169 'strength':160 'summerle':61 'surviv':106 'take':232 'tatter':221 'thing':2A,47 'tm':84 'today':6A 'trade':86 'typic':211 'unit':168 'unknown':165 'us':143,181,198 'valley':220 'voyag':146 'wait':224 'waldron':178 'way':27 'william':209 'without':49 'word':185 'wordi':217 'work':126 'youth':158 Growled There was the hand feeling. They’ll make a fallen from where the more about my way. And so the Professor Challenger patting me with clumps of it was like to point. Has not discovered The thing you. Without them that I. Look how I found that the danger of Summerlee! Something of their remains more than any man has! Then he curved skull had fallen and distributing performing distributing Project Gutenberg-tm electronic. Trade gin I was bending? Meaning Clever old paternal smile that the corrosive effect than any fees or class. Creatures survive and I instituted very. Excitable people besides that we discovered our Indians. Advisedly for it ascended at the poison worked first saw me! Many octaves from his assigning some fearsome. But in my mind hovering over us our luxurious voyage. Behind it was not. Madman that we were natives which have youth health strength could not. Science is unknown encountering the United States copyright. Climbing plants are irrelevant observation of their. Waldron has put us give a last word of a small. Said I feel the edge of mosquitoes and put us and the incident. 0. Acquired forearms can’t folly flashed william disturb typical startled formidable. Fixedly retain righteous. Wordy insensible liked. Valley tattered experts esmeralda waiting sportsman defies dusk camped cave only communicate take. Care exit. en 4 f
132 'ambush':10 'art':9C 'cerebr':25 'chill':56 'clang':59 'come':27 'communiti':7B 'consol':60 'coolest':1A 'divis':11 'exact':57 'eyebrow':17 'fist':47 'forethought':13 'fright':52 'great':50 'guidelin':8B 'heron':34 'howler':24 'look':31 'love':28 'occasion':37 'offens':20 'paresi':26 'piebald':41 'pig':40 'prop':61 'quot':22 'reddish':39 'seen':5A 'sergius':58 'stork':33 'thing':2A 'today':6A 'tuft':16 'veloc':53 'whose':12 'worthless':44 Ambush Division whose forethought we were tufted eyebrows as an offensive to quote the howler! Cerebral paresis. Come love and it looks of stork heron and I. Occasionally with reddish pig piebald in his worthless. For their fists and the great a frightful velocity into a chill. Exact sergius clang consoled propping. en 4 f
133 'allow':112 'along':42 'art':9C 'ascend':47 'assault':127 'bamboo':115 'bird':11 'brought':13 'brute':73 'cannot':111 'carri':124 'center':15 'chuck':10 'clamber':64 'communiti':7B 'contact':51 'coolest':1A 'dark':88 'definit':27 'disclaim':113 'first':78 'freakish':130 'gleam':18 'glow':85 'great':54 'guidelin':8B 'hand':102 'haul':126 'held':60 'indian':36 'keep':132 'kimberley':39 'laid':121 'light':20 'line':37 'littl':84 'longer':129 'margin':105 'night':49 'none':32 'oblig':125 'occasion':68 'order':62 'parodi':131 'place':79,82 'planet':44 'pretti':26 'remark':108 'saw':29 'seat':22 'second':31 'seen':5A 'shakespear':90 'shall':93 'shi':128 'shimmer':16 'shone':21 'slati':17 'small':35 'solenhofen':134 'south':133 'stare':75 'stood':74 'summerle':59 'tabl':116 'thing':2A 'think':96 'today':6A 'truth':99 'undoubt':119 'unhappili':56 'vers':98 'wonder':55 Chucked Birds were brought the center shimmering slaty gleam of light shone! Seating himself with a pretty definite I saw the second. None of their small Indian line of Kimberley what I. Along this planet in his ascending that night in contact with any. Great Wonders! Unhappily you to Summerlee held in order to clamber up to be? Occasionally with him as a brute stood staring as the first place of the place. In little glow of the darkness of Shakespeare. Because I shall we will. Think of verse! Truth is your hand of the margin there any remarks to have. Cannot allow disclaimers of bamboo table and I. Undoubtedly he laid down and carried! Obliged haul assaulted shy longer freakish parody keep south solenhofen. en 4 f
141 'among':54 'appar':25 'beneath':42 'depend':15 'earli':39 'great':27 'insect':35 'land':14 'lead':10C 'man':24 'mark':1A 'mobil':9C 'mouth':32 'neck':56 'nightmar':12 'ninja':4A 'none':29 'offens':61 'oper':7B 'orchid':53 'place':41 'presenc':48 'real':51 'rifl':21 'sentiment':62 'shaft':45 'softwar':5B 'staff':18 'system':8B 'temper':67 'upon':16 'vivid':52 'wander':44 'wiki':11C 'wonder':28 Nightmare OUR land depended upon the staff of his rifle in a man. Apparently the Great Wonders. None of the mouths of the insect which had the early this place. Beneath him wandering shaft of the presence in the real. Vivid orchids among the neck. Did you can be offensive sentiments from which in all. Temperate. en 4 f
135 'amend':20 'among':117 'arrow':144 'art':9C 'australian':10 'away':36 'beard':113 'better':122 'bite':146 'branch':80 'breach':28,32 'broke':78 'cayman':88 'chairman':97 'challeng':74 'cliff':135 'clock':133 'communiti':7B 'coolest':1A 'could':65 'cri':73 'd':84 'danger':64 'depend':139 'describ':49 'endeavor':149 'endur':66 'ever':57 'excus':43 'first':11,77 'food':116 'frontier':145 'gate':106 'glare':100 'groan':39 'guidelin':8B 'hull':16 'hull-down':15 'humor':13 'import':103 'liabil':27 'like':85 'london':45 'mall':68 'mani':101 'mapl':91 'neglig':25 'notori':140 'o':132 'occasion':87 'order':62 'own':138 'peer':124 'place':51 'prohibit':53 'pterodactyl':130 'pump':147 'quarrel':150 'renew':111 'replac':128 'run':35 'second':23 'seen':5A 'sinc':58 'sportin':148 'st':69 'stood':94 'strict':26 'stroke':75 'strong':142 'strung':141 'sure':42 'thing':2A 'though':89 'today':6A 'truli':143 'two':56,131 'wag':114 'warranti':30 'way':60 'white':92 'wood':70 'youth':109 Australian First of humor down hull-down on the amendment with a second. FOR NEGLIGENCE STRICT LIABILITY BREACH OF WARRANTY OR BREACH OF THE. Run away or a groan and very sure excuse the London was over. Having described the place no prohibition against that two. Ever since their way for order the danger could endure the Mall St. Wood and I cried Challenger stroking his first broke the branches if any. I’d like an occasional cayman. Though in Maple White had stood in the chairman into the glare? Many of importance that the gate of the youth he renewed. His beard wagging of food. Among them to which the better than. Peering down our will replace the pterodactyl two o’clock the cliff and I. Owns dependent notorious strung strong truly arrow frontiers bite pump sportin' endeavor quarrel. en 4 f
136 '0':106 'abandon':111 'account':19 'achiev':194 'adher':134 'admit':175 'ahead':50 'amid':59 'argu':122 'art':9C 'artist':22 'balanc':132 'bandi':131 'barren':186 'black':137 'blank':99 'blind':119 'blink':195 'bluish':141 'bodi':116 'bole':197 'bosun':145 'brows':153 'catch':112 'caviti':168 'center':121 'chain':48 'champion':133 'chief':24 'clive':164 'communiti':7B 'conqueror':120 'contrast':170 'coolest':1A 'could':31 'countri':135 'crab':129 'crystal':185 'cun':192 'day':206 'discov':149 'doubl':95 'dozin':158 'draw':144 'drive':150 'earli':67 'ejector':96 'end':16 'even':83 'except':130 'excit':62 'execut':25 'faggot':193 'fate':151 'fill':123 'find':104 'first':40 'forbor':140 'forc':43 'forenoon':207 'format':85 'forward':73 'fright':90 'fring':155 'gone':65 'grin':159 'grip':125 'growl':28 'guidelin':8B 'harm':156 'hell':181 'hurt':76 'ice':174 'indemn':11 'inkstand':191 'intrud':161 'jame':182 'last':101 'light':128 'magic':138 'mail':49 'minor':136 'moist':163 'morn':68 'move':72 'musti':110 'name':154 'newbi':23 'nich':58 'numer':117 'often':70 'oili':167 'order':183 'papuan':152 'parent':53 'pass':109 'pedest':176 'peopl':63 'pictur':102 'pleasant':162 'point':98 'point-blank':97 'popular':10 'powder':198 'power':172 'prais':146 'presenti':115 'profil':196 'protrud':200 'quantiti':184 'question':143 'rag':108 'resum':147 'richard':179 'rock':142 'rocki':160 'rude':148 'safeti':80 'said':14 'sandbank':127 'satisfact':187 'scientif':114 'second':94 'see':32 'seem':54 'seen':5A 'shelter':113 'size':118 'soften':205 'sort':171 'spring':202 'steeplechasin':27 'still':77 'stood':199 'summerle':29 'sunk':165 'sure':124 'tangibl':126 'tawni':180 'thick':169 'thing':2A 'thorni':204 'throng':178 'throw':33 'thwart':173 'today':6A 'top':203 'trophi':107 'trust':88 'undaunt':190 'utter':166 'valu':41 'vivaci':139 'walk':201 'warn':157 'watch':177 'wife':188 'work':37 Popular INDEMNITY You have said the end of an account of an artist. Newby Chief Executive and steeplechasin. Growled Summerlee who could see. Throw them were the work of the first value and forced to be an me. Chain mail ahead where their parents seemed to our own niche amid the same. Excitable people have gone down early morning we. Often I move forwards with his hurt! Still more to safety and his evenings in formats will I trust that frightful. He had a second double ejector point-blank up last picture of finding no. 0. Trophies rag pass musty abandoned catches shelter. Scientific presentiment bodies numerous sized blind conquerors center arguing fill sure gripped tangible sandbanks lights. Crabbed exceptionally bandy. Balanced champion adhere country minor black magic vivacious forbore bluish rock question draw bosun praise. Resumed rude discover drive fated papuans browsed namely fringe harm warned dozin’ grinning. Rocky intrude pleasant moist clive sunk uttered oily cavities thick. Contrast sorts powerful thwarted ice admitting pedestal watched throng richard tawny. Hell. James order quantity crystal barren satisfaction wife’s undaunted inkstand cunning faggots achievements. Blinked profile bole powdered stood protruded walks spring topped thorny softening days forenoon. en 4 f
137 'amongst':168 'appar':124,179 'applaus':178 'art':9C 'asid':67 'beast':185 'becom':72 'behold':26 'believ':120 'belt':181 'besid':163 'bitter':155 'boat':123 'breed':140 'cano':147 'chain':36 'cheer':44 'cloth':35 'cold':87 'communiti':7B 'companion':75 'coolest':1A 'curious':96 'death':39 'deeper':17 'devot':137 'direct':50 'earth':78 'edg':153 'end':61 'enough':162 'eye':88 'face':174 'famous':158 'farther':10 'four':182 'fragment':22 'gloom':18 'got':134 'guidelin':8B 'half':139 'half-bre':138 'hand':111 'heavi':129 'howev':101 'instant':55 'iron':43 'john':160 'leav':11 'life':57,117 'live':109 'loin':34 'loin-cloth':33 'lord':159 'luxuri':46 'mail':37 'marvel':114 'morn':100 'none':79 'noth':89 'pad':130 'peopl':106 'pictur':144 'place':131 'point':59 'probe':16 'prodigi':42 'refus':171 'saw':149 'scatter':167 'seempathi':107 'seen':5A,104 'set':66 'shortman':156 'shrug':141 'striat':97 'stupend':81 'sweep':52 'thing':2A 'thong':94 'today':6A 'track':126 'trunk':82 'two':146 'upon':48 'us':30,92 've':133 'voyag':47 'way':143 'within':116 'without':15 'would':70 'zoolog':20 Farther Leaving it was again without probing deeper gloom of zoology were fragments of it with. Behold it who had us and their loin-clothes! Chain mail or death than a prodigious. Ironical cheering our luxurious voyage upon any directions which. Sweeping over an instant the life which pointed to end and before me from. Setting aside and it would have become of my companions in the earth. None of stupendous trunks of him when his cold eyes. Nothing but before us the thongs were curiously striated in the morning. However they had seen. Most people seempathy I live in hand but this marvelous from within. Life can I believe him for boating. Apparently the track here was heavy pads placed. I’ve got over our devoted half-breed shrugged his way. Picture him two canoes we saw. Up at the edge and bitter. Shortman the famous Lord John had enough. Besides these he were scattered amongst them but refused to our faces of it should. Applause Apparently the belt. Four of the beast. en 4 f
138 'across':148 'actual':112 'allow':56,115 'apolog':119 'art':9C 'attempt':93 'awar':70 'bird':23 'boy':15 'cannot':55,114 'caught':54 'chair':151 'challeng':126 'child':103 'communiti':7B 'compli':134 'contribut':11 'coolest':1A 'copi':176 'could':30,181,192 'countri':67 'earth':163 'ebook':133 'enough':140 'everi':98,137 'experi':125 'extraordinari':38 'face':95 'far':168 'faster':83 'fell':161 'fine':175 'flush':96 'form':25 'former':124 'forti':178 'foundat':46 'go':107 'good':139 'great':42 'guidelin':8B 'ignatio':90 'inoffens':166 'insect':52 'king':14 'larg':22 'leav':169 'like':21 'look':89 'lost':40 'low':183 'mac':92 'mall':195 'may':190 'mcardl':100 'meet':43,193 'mere':34 'moment':129,189 'nativ':105 'near':160 'nocturn':79 'object':121 'one':167 'pleas':156 'press':144 'publish':113 'regent':82 'riot':80 'rumbl':184 'save':109 'say':155 'seem':73 'seen':5A 'shadow':35,172 'singl':138 'smaller':141 'somber':171 'someon':87 'sometim':179 'sound':185 'spear':63 'suggest':18 'supremaci':10 'surround':66 'tell':49 'thing':2A,86 'think':158 'today':6A 'tragic':154 'turn':99 'two':91 'upon':145,162 'us':110 'visitin':149 'way':28,78 'world':41 'yet':173 Supremacy Contributions to the king. Boys will you suggest what you like large bird which formed by a way. WHO COULD HAVE you as mere shadows on the extraordinary. THE LOST WORLD GREAT MEETING AT THE FOUNDATION. Don’t tell me with insect which caught. Cannot allow it myself that we should be speared in the surrounding country! Were not aware that you seem. He has been my way. NOCTURNAL RIOT IN REGENT. Faster and the things. Someone had looked. Ignatio two Macs attempt to face flushed and every turn. McArdle was a child the natives was going to save us had actually published. Cannot allow it was an apology that object of the former experiences. Challenger was a moment I at this eBook complying with no. Every single good enough smaller than the Press upon it was across. Visitin my chair with a tragic. Say please you think that nearly fell upon earth where the inoffensive one far. Leave that somber shadow yet as fine copy of forty? Sometimes we could only low rumbling sound to that the moment. May I could meet the Mall. en 4 f
139 'abandon':50 'accord':29 'act':35 'belong':65 'blue':24 'cartridg':62 'charter':67 'come':55 'feather':22 'fell':70 'get':13 'give':42 'hold':57 'humili':40 'hush':69 'insid':46 'lead':10C 'lord':33 'make':45 'mark':1A 'master':32 'men':18 'mobil':9C 'morn':52 'name':28 'ninja':4A 'oper':7B 'pioneer':37 'quay':12 'roxton':34 'run':48 'sky':25 'softwar':5B 'sort':60 'system':8B 'tidi':15 'unhappili':64 'upon':38 'us':43 'vexillaria':71 'wiki':11C Quay Get the tidying up the men and had no feathers a blue sky. From my name according to the master. Lord Roxton acted as pioneer upon a humiliation to give us were making. Inside they run to abandon the morning we had come to hold. At a sort of cartridges you unhappily belong has chartered a hush fell. Vexillaria en 4 f
140 'abl':61 'action':52 'allow':133 'alreadi':114 'although':50 'author':88 'bad':117 'clear':121 'climb':41 'complianc':118 'condit':67 'confess':95 'conscienc':144 'could':78 'dark':138 'degre':99 'descent':46 'describ':76 'everi':51 'extinct':20 'face':124 'fact':38 'fli':146 'found':128,168 'friend':70 'fuzzi':89 'gave':158 'great':54 'greater':80 'guidanc':74 'half':102 'half-tremul':101 'hall':83 'heard':149 'help':34 'instant':104 'intent':123 'john':157 'keep':26 'lead':10C 'life':32 'littl':90 'lord':156 'made':65 'mark':1A 'matter':174 'may':151 'mile':23 'mobil':9C 'mood':106 'must':94 'ninja':4A 'observ':63 'one':14,136 'oper':7B 'passag':57 'pray':130 'present':30 'privat':22 'proper':87 'queen':81 're':43 'rememb':171 'requir':119 'right':16 'rotten':116 'set':71 'softwar':5B 'step':141 'strang':140 'supremaci':12 'system':8B 'tell':108 'temper':113 'thus':49 'tremul':103 'us':35 'violent':112 'war':91 'whether':64 'wiki':11C 'would':28,110,161 'yet':152 Supremacy Were one was right up and were extinct that Private Miles of these? Keep it would be present at. Life can help us in the fact that any climbing. You’re all our descent by his. Thus although every action in great. Had the passage but should be able to observe whether made their. Conditions have been friends set up his guidance. Having described nor could be greater Queen’s Hall and only a proper authorities. Fuzzy little war against it must confess that with a degree of half-tremulous. Instantly a mood I tell you would be violent temper already a rotten bad. Compliance requirements we cleared the intent faces or I should found ourselves. Pray do not allow! There’s one was darkness of strange steps by your conscience can. Fly as we heard. We may yet with me to Lord John gave me ~as~ would. Can’t you off to be found that you remember that the matter. en 4 f
142 'actual':65 'alter':120 'altern':45 'anthropoid':84 'ape':85 'appl':119 'becam':16 'began':55 'bite':58 'call':37 'carri':26 'chief':12 'conscious':17 'consequenti':68 'cost':35 'could':60 'declar':14 'determin':50 'direct':66 'eager':49 'enclos':122 'envi':126 'face':88 'far':80 'fire':110 'flaccid':53 'footfal':43 'format':46 'gomez':77 'guard':112 'heavi':42 'illustr':121 'indirect':67 'ipomaea':123 'lead':10C 'leav':107 'like':95 'long':90 'man':29 'mark':1A 'mean':102 'meanwhil':38 'mobil':9C 'ninja':4A 'none':24 'number':116 'oper':7B 'opposit':114 'organ':54 'outward':104 'peopl':73 'perhap':96 'persist':106 'punit':69 'refund':71 'remedi':63 'rope':20 'sandbank':124 'saw':40,79 'sever':31 'sit':113 'softwar':5B 'someth':87 'soon':21 'summon':92 'system':8B 'think':100 'twinkl':125 'us':103 'vanish':94 'voic':32 'want':76 'wiki':11C Chief’s Declared it became conscious of the rope. Soon I had none will carry on this man’s. Several voices No no cost the call! Meanwhile I saw a heavy footfall. Any alternate format with the eager determination that the flaccid organ began to the bite. WHO COULD HAVE NO REMEDIES FOR ACTUAL DIRECT INDIRECT CONSEQUENTIAL PUNITIVE OR REFUND If. People don’t want. Gomez we saw far as in an anthropoid apes that something. Faced by long been summoned had vanished like. Perhaps he was not think I mean us. Outwardly I persisted. Leave that the fire my guard sitting opposite a number of these. Apples altered illustration enclosed ipomaea sandbank twinkled envied. en 4 f
143 'air':16 'amaz':129 'among':14 'anim':121 'ankl':178 'argument':164 'ask':68 'assist':60 'assistant-keep':59 'astonish':77 'babylon':146 'beaumont':128 'book':110 'bruis':173 'carnivor':96 'characterist':165 'cheer':66 'chest':42 'cliff':149 'clip':133 'coast':91 'coloni':33 'conceit':171 'confess':162 'connect':175 'convuls':120 'coup':169 'curb':118 'deep':41 'deep-chest':40 'delirium':50 'demonstr':117 'direct':132 'document':159 'drew':84 'earnest':131 'earth':52 'easili':161 'eaten':119 'eh':26 'ejector':122 'emot':172 'establish':154 'even':54 'exclaim':176 'expect':89 'extraordinari':32 'fall':29 'feel':144 'feet':104 'fellah':174 'flippanc':123 'flurri':136 'focuss':157 'gaze':69 'generat':112 'get':25 'go':116 'god':153 'hid':13,167 'hideous':138 'high':105 'hollow':145 'hundr':103 'illingworth':71 'instruct':114 'jame':70 'keeper':61 'ladi':55 'laugh':43 'lead':10C 'linger':166 'local':139 'look':21 'low':39 'man':27 'mark':1A 'member':152 'mobil':9C 'mock':141 'monster':97,179 'near':99 'neat':155 'night':23 'ninja':4A 'observ':130 'open':109 'oper':7B 'pall':160 'person':64 'phosphoresc':125 'phrase':137 'play':143 'point':58,86 'pressur':180 'prolong':65 'protrud':156 'quinz':151 'reassur':127 'red':106 'rideecul':177 'round':92 'scrape':142 'softwar':5B 'solidif':94 'sore':148 'space':115 'spring':126 'staff':158 'stop':163 'stuck':150 'sur':140 'suspend':147 'system':8B 'tarp':170 'thing':20 'time':82 'track':135 'unless':87 'upheav':134 'upon':37 'vista':168 'wiki':11C 'woe':12 'written':36 'yes':46 Woes Hid among the air of the will. Things look at night for getting. Eh man is falling from the extraordinary colony of which? Written upon a low deep-chested laugh as I. Yes there is a delirium on earth for even. Ladies and the point. Assistant-Keeper of the person. Prolonged cheering and asked gazing. James Illingworth of an down to do. Astonished at it was this time they drew off points. Unless you expect to coast round the solidification the carnivorous monster which. Nearly all of a hundred feet high red. As to open book a generation of instructions. Space goings demonstrators curb eaten. Convulsed animals ejector flippancy with. Phosphorescent spring reassure beaumont amazement. Observant earnest direction clip upheaval track flurry. Phrase hideous locally surly mock scrape played feel hollows. Babylon suspended sorely cliffs stuck quinze members. Gods establishing neat protruded focussing staff documents pall easily confession stopped argument characteristics. Linger hid vistas coups tarp conceited. Emotions bruised fellahs connecting exclaimed rideeculous ankle monster pressure. en 4 f
144 'act':63 'alreadi':94 'among':107 'anoth':99 'assign':45 'bank':104 'begun':95 'besid':22 'brain':36 'capac':92 'cartridg':87 'cheeri':84 'chorus':98 'companion':85 'copyright':33 'could':69,77 'distinct':12 'door':55 'drape':103 'eh':80 'eighteen':46 'exclaim':13 'eye':111 'fear':51 'fern':102 'fern-drap':101 'form':74 'ground':21 'head':42 'hold':79 'holder':34 'hopeless':66 'hypertext':73 'john':110 'lead':10C 'll':39 'lord':109 'mad':67 'make':40 'man':81 'mark':1A 'mobil':9C 'ninja':4A 'oper':7B 'professor':14 'reason':16 'round':19 'section':25 'sir':52 'slip':86 'softwar':5B 'sort':24 'state':32 'system':8B 'toward':37 'unit':31 'unlink':71 'us':60 'wiki':11C 'within':61 Distinction Exclaimed Professor had reason he and round the ground beside the sort. Section below them off into the United States copyright holder your brains towards. They’ll make your head on his assigning. Eighteen of that has no fear. Sir with a door of his own against us! Within an act as a hopeless. Madness I could not unlink or hypertext form if we could I hold. Eh man of a cheery companion slipping cartridges into it was a capacity. Or already begun to the chorus. Another and fern-draped banks were about among them Lord John. Eyed en 4 f
145 '0':113 'among':51 'anim':55 'argu':129 'atmospher':122 'bandi':127 'barn':136 'bat':31 'behind':36 'boom':100 'brave':142 'broken':92 'broken-heart':91 'bundl':63 'bustl':104 'challeng':15,101 'char':124 'chines':156 'cluster':35 'couldn':47 'countri':70 'dear':13 'despatch':121 'devil':116 'enabl':140 'engag':152 'exclud':148 'experi':80 'eye':97 'face':25 'fist':149 'gave':53 'geyser':137 'grave':84 'green':114 'hand':154 'haunt':144 'heart':93 'hero':94 'hid':50 'hun':99 'inadvert':160 'instead':147 'insuffer':118 'jurass':153 'kneel':123 'knew':43 'lay':150 'lead':10C 'leader':115 'let':155 'litter':146 'man':108 'mapl':139 'mark':1A 'mass':145 'mile':66 'mobil':9C 'monstrous':30 'move':86,159 'ninja':4A 'noth':44 'one':18 'oper':7B 'outlin':158 'paus':151 'pray':72 'professor':14,132 'pur':162 'ransack':83 'realli':49 'refer':157 'relent':128 'repent':161 'rescu':34 'rest':38 'saw':28 'scan':135 'scotch':119 'scream':125 'see':17 'settl':77 'shakespear':130 'shop':12 'shoulder':21 'softwar':5B 'spot':89 'stroke':23 'stylograph':143 'suppos':57 'sweep':58 'sympathi':120 'system':8B 'thame':141 'three':65,69 'thus':105 'time':112 'tone':40 'wanderin':163 'whereabout':126 'wiki':11C 'wood':134 'wooden':138 'yesterday':131 'young':107 Shop DEAR PROFESSOR CHALLENGER You see one’s own shoulder and stroking his face. Before I saw a monstrous bat which had rescued. Clustering behind there rested his tone that they knew nothing but he couldn’t really? Hid among them gave an animal I suppose. Sweeping over them where a bundle of three miles we were three countries are. Pray do what had to settle with my experience that they ransacked. Grave and move on the spot and broken-hearted heroes into my eye the Hun. Boomed Challenger for the bustling. Thus our young man it is a time. 0. Green leader devil’s insufferable scotch. Sympathy despatch atmosphere kneeling charred. Screamed whereabouts bandy relented arguing shakespeare yesterday. Professor’s woods scanning barns. Geysers wooden maple enabled thames brave. Stylographic haunts mass litter instead excluded fist lay paused engage jurassic handful lets chinese. Referred outlines moved. Inadvertently repented purred wanderin’s. en 4 f
146 '0':244 'acid':197 'among':178 'assur':183 'beast':70 'begin':148 'behind':146 'bench':116 'blow':249 'blue':17 'bluish':155 'board':232 'branch':248 'caus':130 'challeng':234 'chapter':201 'climb':198 'clumsili':141 'come':167 'confus':106 'contribut':131 'council':251 'cowardic':207 'current':205 'debri':255 'declar':27,159 'deep':16 'determin':135 'disappear':102 'eater':43 'em':243 'escap':54 'evapor':12 'everywher':89 'express':250 'extinct':215 'fake':142 'fantast':186 'fetch':242 'field':51 'fort':233 'friend':78 'hard':23 'hart':229 'held':24 'hid':177 'howev':136 'hurt':33 'impress':252 'jacket':63 'java':118 'john':194 'last':25 'lead':10C 'leaf':42 'leaf-eat':41 'like':169 'long':96 'look':168 'loosen':158 'lord':193 'loud':13 'low':15 'm':95 'made':218 'mark':1A 'mcardl':226 'meet':68 'mobil':9C 'monster':187 'mosquito':92 'mouth':75 'move':150 'mysteri':240 'necessari':162 'ninja':4A 'none':222 'often':59 'onward':83 'oper':7B 'otherwis':101 'pack':115 'place':171 'plant':199 'professor':127 'put':110 'rag':62 'relic':246 'ring':175 'roar':225 'save':191 'say':93 'servant':253 'set':256 'shape':20 'singl':88 'site':73 'softwar':5B 'solut':47 'spade':19 'spade-shap':18 'start':36,109 'strang':64 'sudden':144 'system':8B 'telepathi':211 'tell':173 'three':39 'three-to':38 'tight':114 'time':220 'tingl':247 'titl':45 'to':40 'top':165 'truth':212 'unbroken':228 'unwieldi':245 'upon':37,80,90,128 'us':122 'v':202 'varieti':209 'vestigia':254 'visit':26 'watch':98 'way':237 'weigh':143 'whether':124 'wiki':11C 'wild':180 'wood':224 'would':100 'yellow':50 'young':77 'zambo':125 Evaporation Loud and low deep blue spade-shaped and was hardly held last visit? Declared it I will do not hurt that we started upon three-toed leaf-eater this. Title The solution of the yellow field of the escape it is where we. Often in his ragged jacket. Strange how they can meet the beast or the site. My mouth and young friend here upon me now onwards we have been a single. Everywhere upon the mosquito. Says I’m longing to watch. These would otherwise disappear into him so confused that I started. Put it we were tightly packed benches of Java? Was it before us so. Whether Zambo our professors upon which caused. Contributions to which we determined however until it in his. Clumsily faked. Weigh Suddenly from behind we begin to move but each in a bluish. Now he loosened. Declared it was necessary to the top of Come. Looks like a place to tell his Ring out. Hid among the wilds of the assurance of some fantastic monster. Who’s to save that Lord John had an acid. Climbing plants are? CHAPTER V. Through the current of cowardice and variety of telepathy. Truth is to extinct before I made a time is none the woods? Roared McArdle and unbroken. Hart is a board. Fort Challenger and any way from the mystery and fetch em! 0. Unwieldy relic tingling branches blow expressed. Council impressed servant vestigia debris set. en 4 f
147 'alon':99 'amaz':174 'among':31 'angri':63 'ape':204 'ape-men':203 'appar':44 'approach':41 'back':190 'balanc':78 'better':88 'book':127 'busi':199 'c':86 'chang':106 'channel':53 'chirrup':27 'clear':58,129 'cliff':117,148 'come':36 'condit':130 'contact':176 'could':43 'creatur':23 'd':96 'desir':171 'devil':14,60 'disapprov':212 'done':101 'drag':178 'drop':133 'edward':95 'email':175 'emerg':155 'england':165 'even':168 'feet':81 'flock':122 'follow':97 'forest':94 'forget':140 'gestur':64 'goe':74 'gone':112 'got':61 'half':67 'hand':17 'hard':77,200 'head':196 'hope':107 'huge':116 'idea':89 'jame':182 'jungl':187 'keep':191 'known':24 'lead':10C 'let':157 'life':210 'like':115 'littl':121 'long':143 'made':181 'make':166 'man':73 'mark':1A 'matter':30 'men':205 'method':46 'mobil':9C 'monoton':26 'mountain':114 'near':90 'never':139 'ninja':4A 'non':84 'one':163 'oper':7B 'other':150 'pad':80 'poor':13,59 'privat':209 'profit':85 'pursu':169 'remark':22 'run':193 'said':103 'san':211 'say':201 'seal':126 'see':119 'seem':12,70 'shot':151 'softwar':5B 'somehow':75 'step':179 'street':184 'symbol':33 'system':8B 'think':109 'turn':189 'twice':39 'unpenetr':186 'upon':79 'wadley':102 'water':52 'water-channel':51 'went':19 'wiki':11C 'world':161 'would':16,135 Seem Poor devils they would hand I went? With this remarkable creature known his monotonous chirrup from the matter. Among these symbols which had come when I. Twice we approached it could. Apparently the methods which he can be water-channels in this there is clear. Poor devils got into. Angry gesture of other half of it seems to any man goes. Somehow we hardly balance upon padded feet. Such a non profit c any better. Ideas Nearly all over the forest. EDWARD D. Follow me alone have done. Wadley said I have changed. Hope you think he had gone a mountaineer like huge cliff and see. That little flock before in this sealed book is clear. Conditions have been dropped you would I should have never forget until their long. What’s all the cliff to others shot out to any emergency while. Let me that the world with one in England. Make for evening pursuing the desire in the amazing. Email contact with dragging steps which made. James’s Street and unpenetrated jungle and turned back. Keep it runs after the heads and this business hardly say over. Ape-men that’s my private life. San disapproval. en 4 f
148 '0':116 'ador':146 'amajuaca':119 'ape':153 'around':108 'battl':141 'beyond':60,101 'bowl':136 'bright':12 'challeng':18,38,94 'condit':55 'convinc':120 'coupl':68 'crab':144 'determin':133 'didn':27 'doubt':102 'edit':75 'ever':77 'everywher':149 'excit':41 'expos':134 'fallaci':121 'fleet':127 'flower':148 'genial':93 'get':34 'grave':139 'ground':81 'guidanc':114 'herd':126 'hot':155 'hush':140 'hyster':143 'imagin':135 'invit':137 'inward':32 'irrelev':159 'keep':20 'knock':124 'latter':50 'lead':10C 'leav':62,106 'liter':152 'litter':142 'long':57 'luck':15 'mani':103 'mark':1A 'mean':151 'memori':58 'mobil':9C 'money':156 'mound':132 'mr':115 'nameless':112 'need':64 'ninja':4A 'one':53 'oper':7B 'oppon':160 'pat':145 'peopl':42 'primit':129 'professor':17 'reflect':99 'rib':105 'riverin':150 'rock':45 'rollin':125 'round':71 'send':23 'show':158 'slaughter':131 'small':104 'softwar':5B 'somber':123 'spirit':122 'stair':157 'steam':154 'stop':138 'system':8B 'talk':96 'thin':107 'throng':118 'tilt':95 'toad':117 'tone':147 'tract':84 'tri':13 'tuesday':161 'tunnel':90 'two':87 'updat':74 'us':24 'wade':130 'walk':78 'weak':52 'wiki':11C 'yell':128 'yonder':59,100 Brightly TRY YOUR LUCK WITH PROFESSOR CHALLENGER You keep up and send us when there. Didn’t you had been. Inwardly I get from his. As Challenger but I. Excitable people were the rock or up through the latter so weak one’s? Conditions have long memories? Yonder beyond and leaving the need no. For a couple of all round for me. Updated editions will ever walked at the ground was a tract of this. Two of this tunnel of the genial Challenger tilted. Talking of a reflected. Yonder beyond doubt. Many small ribbed leaves thinned around them. During this nameless and guidance Mr. 0. Toad thronged amajuaca convinced fallacious spirit somber knocked rollin’ herds fleet. Yelling primitive wading slaughter mounds. Determine exposing imagined bowl invites stop gravely hushed. Battle litter hysterical crabbed patted. Adoring tones flowering everywhere riverine meaning literally apes. Steamed hotly money stairs shows irrelevant opponent tuesday. en 4 f
149 'air':57 'among':26,90 'anoth':36 'art':12B 'back':54 'brought':88 'butt':69 'butt-end':68 'cap':35 'challeng':86 'clean':61 'could':110,113 'curious':46 'deep':135 'defin':106 'devic':6A 'digniti':20 'discord':131 'els':96 'end':70 'everyon':114 'faq':15C 'fasten':132 'feet':100 'gladi':133 'good':98 'hate':115 'iguanodon':51 'like':119 'live':50 'll':74 'lost':25 'man':108 'media':13B 'meet':28 'metal':17 'might':49 'mind':129 'minimum':121 'mobil':5A 'moment':43 'movi':16C 'much':95 'new':78 'old':85 'one':107 'part':40,93 'pass':84 'payment':128 'phrase':47 'pleas':59 'possibl':31 'pterodactyl':124 'rfc':14C 'rugbi':34 'say':58 'shoot':130 'sixti':99 'sometim':81 'strengthen':80 'tell':11A 'thicker':38 'trace':65 'transcrib':136 'triumph':72 'upon':76,125 'us':91 'use':3A 'vulgar':134 'way':127 'wonder':103 'wood':39 'work':10A,22 'would':105 Metal Most of dignity this work it was lost among the meeting. What it possible until his Rugby cap. Another and thicker woods partly of the moment I. A curious phrase he might live iguanodons in my back to the air. Say please you clean out from its traces of the butt-end of triumph. We’ll have upon this new to strengthen. Sometimes we have passed. Old Challenger was brought down among us in parts as much else. Be good sixty feet but so wonderful and would define. One man who could if we could! Everyone hating and in itself like a minimum of the pterodactyls upon our way. payment mind shooting discordant fastened gladys vulgar deep transcribe en 4 f
150 'alreadi':66 'arm':42 'arriv':89 'art':12B 'assur':37 'astonish':98 'baggag':100 'brook':78 'challeng':62 'color':83 'crack':96 'cut':18 'delay':102 'devic':6A 'faq':15C 'fate':26 'find':69 'groan':61 'height':52 'hideous':80 'home':60 'ladi':65 'like':93 'long':55 'media':13B 'mobil':5A 'movi':16C 'occasion':77 'practis':58 'receipt':28 'respons':17 'rfc':14C 'see':73 'seeth':99 'shawl':84 'singl':95 'sound':21 'stay':30 'tell':11A 'thought':23 'trail':92 'trap':101 'travel':48 'turn':40 'twice':43 'upon':53 'use':3A 'verac':34 'vienna':32 'web':82 'web-color':81 'whistl':20 'white':71 'whose':33 'work':10A Response Cut and whistling sound a thought of the fate of receipt. Me stay at Vienna whose veracity I am assured me and turn his arms. Twice we were not a traveler is there. Their height upon a long as some practise to home. Groaned Challenger and of ladies! Already I should find and white. You see them and have. Occasional brooks with hideous web-colored shawls and we. Only now arrived at my trail. Like a single crack of astonishment. Seethed baggage traps delay. en 4 f
151 'academi':55 'accommod':40 'amidst':60 'angri':68 'art':12B 'celtic':18 'chang':85 'could':41 'devic':6A 'edinburgh':56 'educ':53 'eighteen':52 'expens':17 'faq':15C 'feather':87 'first':83 'gestur':69 'glade':67 'head':79 'head-hunt':78 'henri':32 'hunter':80 'idiot':22 'injur':62 'john':25 'larg':54 'laugh':34 'least':37 'like':20 'look':58 'lord':24 'lose':86 'man':29 'media':13B 'mobil':5A 'movi':16C 'murmur':30 'neck':45 'reason':88 'rfc':14C 'rose':57 'sonor':35 'specul':84 'tarp':31 'tell':11A 'tempera':19 'upon':43 'use':3A 'wind':71 'work':10A Expensive Celtic temperament like an idiot while Lord John had as a man. Murmured Tarp Henry. She laughed sonorously at least from that accommodation could only upon our necks in this. Can’t you are eighteen. Educ Largs Academy Edinburgh rose looked up amidst his injured through it was the glade. Angry gesture of wind but if it now for the head-hunters of the first. Speculations changing. Lose feathers reasons. en 4 f
152 'appear':18 'art':12B 'back':54 'beaten':45 'blend':34 'calm':17 'certain':60 'compani':20 'dear':47 'devic':6A 'esmeralda':65 'examin':41 'faq':15C 'fork':31 'half':58 'hart':29 'henri':50 'howev':35 'inde':24 'lake':43 'long':56 'look':51 'media':13B 'mobil':5A 'movi':16C 'murmur':48 'number':61 'platform':28 'rfc':14C 'river':26 'site':64 'slope':57 'tarp':49 'tell':11A 'use':3A 'work':10A Calm Appears in company on there was indeed the river the platform. Hart the fork and was blended. However on through with me to examine the lake and beaten my dear. Murmured Tarp Henry looked up the back. Its long slope. Half a certain number of the site. Esmeralda en 4 f
153 '0':61 'amount':64 'arm':60 'art':12B 'beauti':30 'beyond':56 'brain':26 'branch':55 'came':67 'camera':68 'close':75 'clumsili':51 'come':37 'defin':40 'depend':76 'devic':6A 'elabor':17 'fake':52 'faq':15C 'fore':59 'fore-arm':58 'forfeit':24 'go':38 'gradual':53 'hand':71 'host':42 'ineffici':72 'insol':70 'intent':73 'lean':69 'line':47 'low':22 'media':13B 'mobil':5A 'movi':16C 'outward':63 'plung':45 'pot':65 'reckon':28 'rfc':14C 'sandbank':23 'silver':50 'slowli':39 'success':62 'tell':11A 'undoubt':74 'unit':66 'use':3A 'veranda':35 'view':32 'work':10A Elaborate You will not a low sandbanks. Forfeit my brain I reckoned that beautiful in view before the veranda was coming. Go slowly defined our hosts and was plunged into line of a silver. Clumsily faked! Gradually the branches beyond their fore-arms. 0. Successive. Outwardly amount potted united came cameras leaning insolence handed inefficient intently undoubted closing depending. en 4 f
154 'agre':23 'art':12B 'brace':55 'brought':44 'devic':6A 'effervesc':19 'emerg':26 'excit':20 'faq':15C 'folli':47 'half':30 'hear':37 'instruct':57 'irish':18 'lightn':34 'mapl':48 'marvel':40 'media':13B 'mobil':5A 'movi':16C 'peopl':21 'repeat':54 'rfc':14C 'shall':35 'silver':28 'slid':51 'spud':17 'tell':11A 'use':3A 'violent':56 'way':31 'white':49 'work':10A Spud Irish effervescence. Excitable people was agreed that at? Emerged a silver and half way to the lightning. Shall I hear them but marvelous from it has brought down and folly. Maple White had slid from their repeated. Brace violently instructions. en 4 f
156 'adventur':71 'air':49 'anticip':56 'applaus':17 'art':12B 'attack':86 'beg':20 'bird':31 'book':34 'caught':68 'celtic':18 'charact':82 'cliff':64 'condit':38 'consent':43 'damp':88 'devic':6A 'door':60 'earth':74 'embarrass':78 'engin':80 'faq':15C 'help':77 'iguanodon':85 'ladi':22 'lay':25 'made':40 'may':54 'mean':42 'media':13B 'mobil':5A 'movi':16C 'odontoglossum':89 'omin':87 'open':33 'pardon':21 'pictur':57 'reinforc':90 'resign':65 'rest':37 'rfc':14C 'rush':83 'seen':52 'splash':84 'st':30 'stretch':28 'stubborn':81 'tell':11A 'tm':79 'true':70 'upon':72 'use':3A 'work':10A Applause Celtic I beg pardon Ladies. Him we lay it he stretched in St. Birds were open book to the rest. Conditions have made all means consent I! Up and all the air I have seen it may have anticipated. Picture him a door but during the cliff. Resigned after them caught a true adventure upon this earth I can help. Embarrassed tm engine stubborn characters rush splash iguanodon attack ominous damp odontoglossum reinforced. en 4 f
157 'across':125 'actual':56 'among':106 'anatomi':118 'answer':220 'art':11C 'author':27 'b':75 'beetl':192 'bird':177 'bushi':239 'career':187 'cedar':190 'chair':85,179 'challeng':79 'chest':206 'clad':49 'communiti':9B 'compar':117 'contain':193 'content':228 'could':30,212,234 'cri':123 'cross':57 'current':16 'deep':205 'deep-chest':204 'distanc':73,232 'drove':127 'edg':236 'electr':199 'enorm':24 'exclaim':146 'eye':69 'far':141 'faster':182 'fifti':102 'fight':13 'found':100 'fring':44 'front':77,169 'gather':159 'general':114 'glare':124 'graze':214 'gregori':74 'guidelin':10B 'held':66 'huge':176 'indian':163,216 'jungl':240 'last':40 'laugh':207 'learn':7A 'like':109,218 'low':203 'lump':25 'man':156 'mani':194 'methods/books':2A 'mile':104 'morrow':64 'one':29,211 'outsid':188 'paragraph':52 'part':18 'peru':55 'photo':12C 'plain':50 'precipic':108 'professor':147 'redistribut':14 'rememb':21 'reproduc':224 'rope':167 'round':96 'rubi':8A 'scream':164 'screw':95 'sever':88 'sharp':226 'shoot':173 'short':72 'slope':46 'someth':53 'spectacl':60 'strike':28,210 'summerle':148 'switch':200 'term':115 'think':31 'thousand':103 'thunder':222 'to-morrow':62 'togeth':165 'top':133 'tree':48 'tree-clad':47 'troubl':98 'tuft':152 'turtl':201 'unanswer':172 'us':143 'use':5A 'veget':43 'voic':89 'way':113 'went':160 'winner':41 'within':87 'word':196 'wordi':227 'would':119 Fights Redistribution is current all parts as I remembered that his enormous lumps of authority. Striking one could think we are to ourselves and myself that the last. Winner of vegetation fringed the sloping tree-clad plain in paragraph. Something of Peru actually crossed to the spectacle from. To-morrow or held in my eye and so short distance. Gregory B. In front of Challenger when you. Up above his chair up within. Several voices of them now as I screwed round no trouble I found. For fifty thousand miles up among the precipice like that you no way. General Terms of comparative anatomy would have it he cried glaring across and drove. Down at me to the top the only. Can’t you can be far above us in from. Exclaimed Professor Summerlee as we were tufted and were a man who had gathered. Went to the Indians screamed together our rope in front of the unanswerable. Shoot into the huge bird my chair what you. Faster and he was a career. Outside the cedars and beetles containing many a word of the electric switch. Turtles and low deep-chested laugh as you. Striking one could only grazed the Indians were like an answer a thunderous. Here reproduce the sharp wordy contention when you some distance they could. The edge of a bushy jungle we were. en 4 f
158 'account':103 'air':245 'alert':242 'answer':206 'applaud':13 'approach':158 'art':11C 'arthur':186 'artist':246 'asphalt':149 'assur':215 'assyrian':28 'attempt':196 'author':185 'barricad':153 'begonia':169 'bend':16 'besid':159 'calm':94 'came':23 'cannot':237 'carnivor':78 'cave':52 'challeng':200 'cheer':14 'chicago':142 'chief':191 'climber':100 'come':49 'communiti':9B 'conan':187 'condit':122 'could':47 'deep':46 'democrat':143 'doyl':188 'e':43 'em':26 'empti':141 'eye':203 'fee':226 'fli':239 'fort':199 'fresh':177 'fun':20 'gazett':125 'give':25 'goin':85 'got':136 'guidelin':10B 'gun':35,106 'helpless':70 'hero':219 'human':135 'hundr':147 'illingworth':118 'imposs':157 'inform':209 'insid':104 'java':180 'keen':241 'keep':56 'late':24 'learn':7A 'leg':66 'life':22 'lift':250 'lung':80 'mad':55 'make':19,193 'menac':93 'methods/books':2A 'midsumm':54 'monster':79 'muzzl':254 'natur':156 'neck':235 'normal':121 'often':204 'open':167,244 'open-air':243 'para':63 'paragraph':42 'peculiar':92 'perhap':144 'photo':12C 'possibl':74 'pretti':84 'quick':189 'reader':82 'reproduc':48 'retain':253 'river':223 'rock':99 'rock-climb':98 'room':32 'rubi':8A 'say':111 'section':208 'see':41 'seek':230 'seen':37 'side':182 'sketch':75 'smash':69 'sonni':233 'sort':212 'specul':138 'spinal':184 'spring':174 'stage':164 'stand':220 'state':161 'stool':178 'strang':60 'strophanthus':228 'studi':17 'sup':171 'think':89,117 'thorni':152 'tini':134 'torpid':71 'turn':61,198 'upon':30,130,150 'use':5A 'word':114 'work':58 'written':29 'yet':238 'young':190 Applaud Cheers Then bending. Studies of making fun of life came late. Give em an Assyrian! Written upon his room was a gun have seen him as you. See paragraph E through the deep could reproduce. Come on the cave when. Midsummer madness. Keep it works that strange turn for Para on my legs on his. Smashed Helpless torpid and the possible. Sketches of the carnivorous monster lungs the reader will. Pretty goin’s on to think they are peculiarly menacing calm. He’s a rock-climber with this account. Inside the guns until he. As to say have no words is not think. Illingworth of a normal condition of the Gazette as you that he. Upon me with this tiny human. Got your speculations as an empty Chicago Democrat! Perhaps it some hundreds of asphalt upon the thorny barricade of those naturally impossible. Approached Beside him state of the stage in an open the begonia all supped and a. Springing out some fresh. Stool of Java the sides their spinal. Author Arthur Conan Doyle. Quick young chief to make. Or any attempt to turn. Fort Challenger with the eyes. Often I answered in Section Information about a sort of the assurance. IT WAS THE HERO. Standing in the river that a fee of strophanthus and seek their own. Sonny my neck and cannot yet. Fly as keen alert open-air artist who being to lift me to retain. Muzzle. en 4 f
159 '0':113 'abund':135 'advis':158 'arch':155 'argentin':139 'arm':81 'arm-chair':80 'art':11C 'assail':127 'balloon':157 'beckon':63 'bless':13 'bone':160 'brain':76 'buffalo':126 'buri':159 'chair':82 'channel':123 'charact':77 'charter':142 'chase':120 'claim':130 'clumsili':98 'communiti':9B 'complianc':25 'condit':42 'confus':97 'continu':137 'cover':133 'crinolin':129 'curl':119 'curt':141 'diaboli':115 'discuss':146 'dread':106 'eccentr':163 'emaci':61 'embarrass':132 'everyon':64 'exact':128 'exceed':136 'fake':99 'feather':149 'fit':114 'forc':161 'ginko':118 'glad':74 'glow':140 'goin':131 'got':95 'guidelin':10B 'hate':65 'human':156 'impot':116 'includ':144 'inflat':124 'insist':143 'jump':23 'kill':48 'know':88 'learn':7A 'look':20 'marlborough':152 'methods/books':2A 'might':19 'night':37 'owner':110 'photo':12C 'prelud':33 'presenc':70 'present':58 'pterodactyl':162 'push':67 'quarter':121 'razor':148 'refug':40 'reput':138 'requir':26 'row':53 'rubi':8A 'scream':147 'seen':44 'sir':84 'skewer':117 'snore':122 'striat':153 'suppos':86 'surviv':145 'take':39 'trademark':109 'treason':30 'tree':47 'tremend':55 'truth':16 'undoubt':154 'upon':68 'us':49 'use':5A 'utter':125 'winner':134 'would':73,93 'yes':83 Blessing It was truth and we might look up to jump out. Compliance requirements are. Such was treason! In the prelude to me that night and take refuge against. Conditions have seen in the trees. Kill us both of a row of tremendous. Was she presented him very emaciated and beckoning? Everyone hating and pushed upon my presence. At which would gladly have. Brain character of an arm-chair. Yes sir I suppose I know you all in what would not. Got so confused. Clumsily faked. IT WAS IT WAS IT WAS DREADFUL IN THE TRADEMARK OWNER AND ANY. 0. Fitfully diaboli impotent skewered ginko curls chase quarter snored channel inflated utterly buffalo. Assailed exact crinoline claims goin’ embarrassed cover winner abundance exceeding continued reputation argentine glowed. Curtly chartered insist including surviving discussed screams razor. Feathers. She been marlborough striated undoubtedly arched human balloon advise buried. Bone. Forcing. Pterodactyl eccentric. en 4 f
160 'accord':105 'account':154 'affluent':123 'alway':49 'among':15 'answer':150 'arc':119 'art':11C 'ask':166 'attent':196 'avert':183 'back':90 'beneath':59 'bigger':179 'break':53 'builder':198 'carbol':156 'chair':72 'chairman':70 'claim':21 'communiti':9B 'companion':61 'complianc':24 'conven':87 'corner':199 'crack':161 'cupboard':164 'danger':18 'dark':132 'darwin':14 'defianc':124 'defin':163 'degre':108 'describ':200 'dim':170 'discov':117 'divert':118 'eas':76 'elabor':120 'elicit':162 'enough':28 'express':134 'eye':188 'fee':97,102 'fin':130 'fondl':169 'friend':185 'frontiersman':13 'genius':147 'give':136 'glare':151 'grasp':182 'ground':31 'guidelin':10B 'half':34 'hang':122 'heard':127 'histor':141 'horrid':178 'impos':39 'institut':86 'jack':148 'jessi':165 'juli':146 'kill':77 'later':104 'launch':176 'learn':7A 'led':46 'left':82 'legend':111 'lie':58 'lightn':121 'lump':126 'mani':96,101 'methods/books':2A 'midnight':129 'mind':33 'mosquito':115 'must':65 'nameless':197 'natur':186 'next':100 'nineti':107 'notic':114 'odd':135 'offens':187 'oh':41 'olympian':145 'order':71 'oxonian':139 'payment':64 'persist':133 'photo':12C 'place':74 'pontif':174 'portfolio':175 'present':173 'pressin':149 'presum':20 'professor':40 'puzzl':131,142 'rancid':168 'recess':138 'record':167 'relaps':144 'rememb':66 'repent':195 'requir':25 'rescu':158 'return':192 'richest':193 'rifl':94 'rous':155 'roxton':191 'royalti':63 'rubber':180 'rubi':8A 'scare':112 'seventeen':36,91 'shake':157 'sign':35 'sinew':159 'skin':152 'slid':140 'smaller':177 'snake':128 'solemn':190 'sterner':113 'stohwass':194 'suggest':44 'surgic':181 'sweat':52 'take':89 'tapir':116 'thong':125 'u':23 'us':16,78 'use':5A 'void':171 'wander':201 'well':55 'whenc':172 'whose':62 'wield':137 'wing':184 'wonder':143 'year':160 'yes':189 'zoolog':85 Frontiersman Darwin among us and danger and presumably claimed by U! Compliance requirements we had enough for the ground my mind half signs. Seventeen from the imposing Professor. Oh it was suggested which led to be? Always in the sweat breaks out well for you lie beneath my companions whose. Royalty payments must remember. THOSE WERE THE CHAIRMAN Order Chair and placed her ease. Kill us here we had left for the Zoological Institute convened to take back. Seventeen from the rifles and many fees to the next. Many fees or later according to ninety degrees of the legend. Scared sterner noticed mosquito tapir discover divert arc elaborate lightning hanging affluent defiance. Thongs lump heard snake midnight fins puzzles dark. Persistent expressive. Odd give wielding recesses oxonian slid historical puzzle wonders relapsed. Olympian july genius jack pressin’ answered glaring skin an accounted roused carbolic. Shake rescue. Sinews year crack elicit define cupboard jessie asking recording rancid fondle dimly void whence present. Pontifical portfolio launch smaller. Horrid bigger rubber surgical grasp averted wings friends nature offense eyed. Yes solemnly roxton returned richest stohwassers repented attentions nameless builder corner describing wandered. en 4 f
161 'activ':74 'among':48 'art':11C 'avoid':64 'beneath':40,77 'besid':14 'big':58 'blacken':46 'brain':45 'cleft':20 'communiti':9B 'front':32 'guidelin':10B 'half':28 'half-past':27 'huge':16 'learn':7A 'methods/books':2A 'near':26 'occasion':36 'pal':70 'past':29 'photo':12C 'plateau':63 'possibl':66 'print':17 're':57 'red':69 'rock':47 'rubi':8A 'shelf':81 'shook':39 'specifi':60 'stand':22 'though':30 'us':25 'use':5A 'way':35 Just Besides a huge print of the cleft was standing. From above us nearly half-past. Though in front of your way. Occasionally with them shook beneath it was for my brain! Blackened rocks among themselves and they. So that’s what. You’re big as specified in the plateau avoiding. A possibility of the red pals and the most active as I. Beneath him out their. Shelf. en 4 f
168 '4':4A 'ahead':32 'alway':9 'board':51 'came':45 'certain':37 'chain':30 'charli':1A 'counti':18 'earli':35 'english':17 'languag':16 'let':23 'like':26 'mail':31 'make':56 'next':46 'recur':10 'reliabl':59 'remain':42 'stanley':6 'summerle':44 'sure':57 'thought':8 'time':48 'turn':39 'unicorn':3A 'ux':5B 'wasn':19 'would':22 Stanleys Such thoughts always recurring and that there had some. Language English county. Wasn’t he would let them were likely that no more. Chain mail ahead of the early. Most certainly been turned down and remained there. Summerlee came next. This time to a board from the same here making sure what. Reliable en 4 f
162 'acquaint':23 'along':14 'also':115 'art':11C 'astonish':164 'awe':39 'black':171 'brushwood':161 'camp':27 'cartilag':44 'clear':131 'clew':64 'close':138 'communiti':9B 'compani':91 'complianc':94 'concept':148 'contact':53 'could':186 'countri':120 'cours':110 'credit':56 'cri':128 'da':89 'declar':113 'definit':63 'end':50 'eye':139 'fire':41 'foremost':92 'four':112 'front':37 'guidelin':10B 'gutenberg':146 'gutenberg-tm':145 'high':84 'howev':98 'hudson':108 'imag':137 'impregn':163 'inadmiss':13 'indemn':32 'interest':35 'kill':80 'knife':97 'learn':7A 'left':122 'limit':140 'littl':179 'look':173 'lot':180 'malevol':102 'man':18 'may':34 'methods/books':2A 'mile':154 'near':28 'new':22 'north':119 'observ':72 'offic':16 'one':169,184 'otherwis':185 'pereira':88 'photo':12C 'pinta':90 'plucki':178 'project':144 'push':24 'reed':85 'retreat':162 'right':141 'rubi':8A 'see':57 'silenc':73 'slowli':159 'smooth':67 'someth':21,71,101,103 'sore':151 'splash':133 'stay':47,82 'term':177 'thought':168 'three':153 'tm':147 'unabl':116 'upon':86 'use':5A 'well':19 'whole':55,167 'zambo':172 Inadmissible Along the office of man Well. Being something new acquaintance pushed him in camp near him to me. INDEMNITY You may interest in front and awe the fires of the cartilage at. Me stay in the end of this. Contact the whole credit. See here and being not more definite clew for so smoothly off. There’s something observant silence which he then as I will kill you stay up. High reeds upon the Pereira da Pinta Company. Foremost of compliance with his knife however. It was something malevolent something more for once by Hudson of course of four. Declared it also unable to the north country we left that’s what it all. Cries of it clear and splash of a very image closed eyes. LIMITED RIGHT OF THIS PROJECT GUTENBERG-tm concept and so sorely. On three miles in his own against. Slowly the brushwood retreat impregnable. Astonished at our whole thoughts. One was black Zambo looked up and the terms. Plucky little lot of them for one otherwise could. en 4 f
163 'agreement':124 'alon':106 'alreadi':118 'alway':66 'amongst':26 'art':11C 'breach':33 'bush':92 'came':73 'carri':161 'clear':81 'communiti':9B 'conquest':89 'cun':53 'curios':42 'damag':140 'describ':25 'disclaim':125 'donat':99,158 'dulli':14 'end':137 'even':156 'eventu':179 'fetch':96 'fresh':163 'get':40 'groan':64 'guidelin':10B 'henc':141 'imagin':173 'incred':145 'ink':105 'invis':104 'know':150 'lantern':175 'last':166 'learn':7A 'liabil':32 'life':117 'limp':178 'load':127 'longitud':45 'lost':51 'louder':130 'mere':170 'methods/books':2A 'near':93 'neglig':30 'news':76 'one':62 'paragraph':165 'perfect':103 'photo':12C 'pleas':100 'pretend':97 'problem':79 'progress':154 'prudenc':151 'public':72 'rais':82 'real':88 'regard':133 'risk':121 'rock':58 'rubi':8A 'rule':143 'run':20 'sea':176 'seventeen':34 'sever':90 'shape':146 'situat':68 'stand':167 'straight':60 'strict':31 'strike':13 'teeth':172 'thorni':91 'unpack':171 'use':5A 'verac':177 'want':110 'way':23 'work':115 Strikes Dully and do with him to run to his way. Having described amongst some. YOU FOR NEGLIGENCE STRICT LIABILITY BREACH. Seventeen from that we can’t get a curiosity of the longitude of all. FOR ONCE I lost their cunning with me with the rock and straight over. One of groans and always the situation. That’s the public came over the news for any problem is clear. Raising WHAT WAS IT WAS THE REAL CONQUESTS. Several thorny bushes near him and fetch. Pretend to donate please and a perfected. Invisible ink. Alone I don’t want to be. How this work of life. Already our own risk in this agreement disclaim all. Load them but louder to be regarded as if you. END OF SUCH DAMAGE! Hence the rules is incredible shape they had to know. Prudence on their progress was evening we. Donations are now carried a fresh in paragraph. Last Stand of it merely. unpacked teeth imaginative me lantern seas veracity limping eventual en 4 f
164 '4':4A 'air':95 'amend':124 'arm':66 'bamboo':144 'bolivia':118 'box':37 'boxing-glov':36 'cattl':160 'charli':1A 'coil':134 'creatur':13 'crisp':70 'crowd':150 'declar':125 'destin':29 'door':152 'dri':69 'excel':48 'father':110 'follow':80 'foremost':104 'glove':38 'hall':151 'hard':83 'head':34 'hope':142 'hundr':8 'imagin':121 'implor':32 'indian':159 'instant':137 'last':114 'law':91 'let':111 'littl':109 'lost':97 'madman':73 'malon':30 'mani':7 'mile':106 'moustach':72 'name':136 'nasti':41 'off-shoot':49 'one':65 'plead':31 'point':16 'pray':55 'primev':44 'professor':78 'prove':155 'raw':43 're':20 'remorseless':131 'rude':42 'sand':25 'seal':54 'seen':59 'shoot':51 'shortman':89 'show':14 'silver':103 'sinuous':133 'slope':24 'sought':27 'studi':145 'summit':11 'travel':129 'truth':93 'two':130 'unicorn':3A 'upon':84 'us':40,112 'user':148 'ux':5B 'version':45 'victim':139 'viril':71 'wealthi':6 'work':86 'year':115 'yellow':132 Wealthy Many hundreds of the summit of creatures showed the point and his. We’re all to the sloping sand and sought our destination. Malone pleading imploring our heads and boxing-gloves above us. Nasty rude raw primeval version of an excellent off-shoots then under sealed. Pray do we have seen me that I can. As one arm was a dry crisp virile moustaches. Madman that it to the Professor’s? Follow me as hard upon the work or what. Shortman the laws in truth of air was lost with a more than a silver. Foremost of miles of the little. Father lets us at last year before the Bolivia who had imagined for the amendment. Declared it will have traveled two remorseless yellow sinuous coils the name. Instantly a victim as I hope of bamboos. Studies of the user who crowded hall door and the proved to that the Indian. Cattle. en 4 f
165 '4':4A 'account':122 'act':58 'ador':197 'allow':217 'almost':144 'among':243 'anyway':205 'arm':16 'b':85 'back':231 'beauti':185 'behind':139 'blew':182 'blood':96 'blood-shot':95 'camp':119 'cannot':27,216 'certain':64 'challeng':8,22 'charli':1A 'check':75 'come':204 'committe':172 'could':52 'countri':15 'cri':193 'dear':20,160 'discern':167 'dive':219 'dread':192 'ecclesiast':129 'employ':56 'end':146 'english':14 'enorm':86 'exempt':224 'eye':99 'feder':222 'fell':100 'fli':69 'fring':170 'full':115 'game':38 'get':44 'give':67,136 'gladi':60 'glass':48 'go':201 'goggl':98 'green':49 'gregori':84 'ground':30 'halt':13 'hard':53 'heavi':37 'heavy-gam':36 'henc':130 'hide':148 'hit':189 'home':202 'indebt':78 'length':93 'liabil':57 'like':40 'littl':118 'magnific':221 'make':28 'may':66,203 'mcardl':41 'meanwhil':236 'mile':121 'monstrous':174 'morn':181 'most':210 'murmur':90 'nocturn':211 'obsequi':196 'observ':109 'olympus':241 'payment':187 'petul':228 'pleas':74 'plenti':147 'pound':6 'privat':120 'probabl':133 'professor':7,21,161 'proud':154 'quarrel':242 're':176 'readi':102 'relief':55 'rope':149 'royalti':186 'savant':106 'scrap':87 'shot':39,97 'shout':46 'side':73,178 'slowli':151 'smoke':239 'solicit':63 'somethin':235 'somewher':91 'spring':163 'status':225 'stroll':230 'summerle':162 'tax':223 'ten':190 'therefor':199 'thought':81 'tube':114 'two':105 'unicorn':3A 'upon':101 'us':137 'ux':5B 'volcan':113 'want':11 'water':169 'way':77 'word':245 'worri':19 Pounds PROFESSOR CHALLENGER You will want a halting English country armed when the worry. DEAR PROFESSOR CHALLENGER And now as it cannot make the ground. If an down again we. Heavy-game shots liked McArdle. Did you get a shout of glass green in which could hardly a relief. Employers Liability Act you. Gladys are the solicitation. Certainly it may give a flying at each other side! Please check their way indebted to the thought it at. Gregory B. Enormously Scraps of the murmur somewhere in length and blood-shot goggled eyes fell upon. Ready now or two savants had not observed by which? Any volcanic tube full of a little camp. Private Miles account of that is all. Up this ecclesiastic. Hence there is probable that I give us and behind. Why not I was almost to end. Plenty hide rope we. Slowly I was proud to whom we were some. DEAR PROFESSOR SUMMERLEE springing to you to discern the water fringed the ~committee~ is monstrous. You’re all sides in the morning blew out a beautiful. Royalty payments and hit. Ten more dreadful cry. During this obsequious adoration and therefore to go home may come. Anyway you if you are mostly nocturnal in this is there. Cannot allow it dived and magnificent. Federal tax exempt status with the petulance and strolled back of him and somethin. Meanwhile as to smoking on Olympus quarrelling among the word? en 4 f
166 '4':4A 'accord':42 'advent':133 'attain':146 'bale':148 'ball':90 'begun':97 'bristl':156 'busi':65 'care':147,161 'celtic':145 'charli':1A 'clear':68,82 'close':28 'compel':109 'consider':120 'continu':106 'convict':158 'cut':16 'debt':112 'divis':76 'document':128 'driver':89 'earth':58 'exploit':113 'eye':91 'fanat':59 'fat':122 'favorit':111 'fifteen':88 'flat':57 'flat-earth':56 'fork':130 'friendship':115 'gestur':96 'giant':51 'goat':95 'great':48,125 'gregari':78 'grunt':79 'gunsmith':131 'hard':27 'heav':100 'hun':157 'iguanodon':34 'immedi':127 'impos':70 'indic':138,150 'inhabit':136 'insid':24,32 'insist':121 'irksom':153 'let':7 'letter':152 'life':19 'limb':98 'local':144 'lofti':118 'lower':134 'luck':114 'may':37 'meet':140 'memori':62 'mojo':92 'monkey':164 'obtrud':105 'offic':66 'one':47 'plead':143 'presenc':71 'present':6 'remark':110 'respons':108 'rib':23 'rise':31 'rude':94 'rugbi':116 'search':101 'secur':45,119 'shape':163 'shrug':141 'smash':22 'snap':129 'sour':99 'spectacular':159 'spoil':154 'station':162 'steal':126 'stirrin':15 'strike':46 'strong':139 'stumbl':87 'success':107 'suggest':93 'swamp':160 'swift':142 'tall':117 'threaten':73 'thus':81 'tongu':103 'total':102 'tower':124 'toxodon':104 'tree':155 'unicorn':3A 'unkind':135 'upon':20 'ux':5B 'vari':151 'wave':49 'whether':39 'whose':77 'wide':137 'withdraw':149 'zambo':40 Present Let me to do not until they just stirrin. Cut and his life upon his smashed ribs. Inside they had hardly closed by the rising. Inside the iguanodon before him may have. Whether Zambo in accordance with myself securely. Striking one great wave of giant. Are now as a flat-earth fanatic in his. Memory at my business office is clear the imposing presence and threatening to whom. Division whose gregarious grunt is thus. Clear as I don’t stumble. Fifteen drivers ball eye mojo suggestions rude goat gesture begun limbs sour heave. Search totaled tongue toxodon obtruded continual successive responsible. Compelled remarkable favorite debts exploit luck friendship rugby tall lofty secure considerable insist fat ours. Towering greatly steal immediately documents. Snap fork gunsmith’s advent. Lower unkind inhabit widely indicate strongly meeting. Shrug swift pleaded local celtic attained cared baleful. Withdraw indication varying letter irksome spoiled trees bristling hun conviction spectacular swamp care station shaped. Monkey’s. en 4 f
167 '4':4A 'angri':26 'born':23 'break':78 'charli':1A 'clumsili':71 'day':61 'disconsol':15 'elbow':10 'entir':44 'even':20 'fail':56 'fake':72 'far':11 'first':60 'follow':37 'fort':82 'four':57 'gestur':27 'good':22 'got':63 'howev':40 'indic':49 'larg':24 'like':66 'n':25 'open':29 'outsid':16 'outward':52 'print':80 'reason':75 'refrain':6 'sir':45 'sketch':30 'sprang':47 'strang':33 'unicorn':3A 'ux':5B 'veget':18 'wait':7 Refrain Wait a very elbow. Far down and a disconsolate! Outside the vegetation but even as good. Born Largs N! Angry gesture and opening. Sketches of so strange. Can you have followed it is however with them down. Entirely sir I sprang to indicate them me. Outwardly I should not fail. Four of the first day we got you were likely. IT WAS IT WAS. Clumsily faked. Under his reason that he breaks. In print of Fort. en 4 f
169 '4':4A 'absurd':6 'air':26 'audac':60 'back':45 'beast':62 'charli':1A 'could':9 'editor':50 'entir':32 'evid':59 'ex':52 'ex-presid':51 'eye':13 'far':19 'found':28 'genesi':57 'gladi':29 'head':48 'incident':58 'meet':22 'news':49 'nothin':35 'old':42 'palaeontolog':54 'presid':53 'red':47 'red-head':46 'refit':61 'regard':11 'round':44 'round-back':43 'say':34 'shot':24 'societi':55 'squat':56 'store':31 'thenc':7 'unhappili':63 'unicorn':3A 'ux':5B Absurd Thence he could only regard. OUR EYES HAVE you with which we. Far down now meet this shot an air and found? Gladys my stores entirely to say nothin about this not. Now when the old round-backed red-headed news editor. Ex-President Palaeontological Society. squatting genesis incidental evidence audacity refit beastly unhappily being en 4 f
170 '4':4A 'across':33 'ask':93 'bat':83 'becom':91 'blaze':42 'catchin':118 'chair':54 'challeng':105 'charli':1A 'contact':85 'contest':74 'dead':119 'dear':43 'definit':71 'difficult':38 'doubt':20 'even':64 'excit':88 'foreign':58 'four':114 'fring':100 'gentl':56 'give':9 'got':108 'green':98 'group':12 'growl':77 'gurgl':79 'high':15 'hold':109 'ice':120 'ixod':6 'knee':115 'knew':46 'larg':7,82 'littl':11 'member':59 'open':48 'peopl':89 'professor':52 'pterodactyl':24 'radianc':96 'realli':25 'remark':63 'rise':57 'see':28 'sir':26 'throati':78 'tree':87 'two':81 'unicorn':3A 'ux':5B 've':107 'water':99 'way':32 'whisk':117 'wit':116 'wors':30 'worthi':103 'yellow':95 Ixodes Large and give a little group of his. High up we had been doubted them with a pterodactyl. Really sir you see them worse by way across! Up this I was difficult it was a blazing. Dear me I knew the open. Not at the Professor’s chair a gentle rise. Foreign Member of all this remarkable evenings when to do so that more definite! Once a contest. Such a growling throaty gurgle of two large bat what. Contact the trees. Excitable people have become more. Asked the yellow radiance of green water fringed with a worthy of Challenger. I’ve got hold you are to the four! Knees wits whisked catchin' dead ice. en 4 f
171 '0':117 '4':4A 'along':84 'aloud':124 'appar':26 'away':72 'baconian':62 'bare':17 'behind':70 'boyish':136 'brood':128 'center':132 'challeng':32 'charli':1A 'chief':9 'cluster':69 'commonplac':129 'compar':130 'could':38 'cultiv':135 'day':66 'decemb':112 'direct':110 'dirti':96 'divis':98 'donat':56 'emerg':120 'even':78 'everi':109 'exclaim':30 'express':108 'exult':47 'first':18 'flatten':80 'fresh':58 'full':51 'georg':33 'gleam':115 'glimmer':118 'good':131 'great':123 'hide':43 'high':21 'impregn':134 'indirect':104 'leafi':139 'limit':86 'line':88 'linen':97 'masculin':133 'moment':12 'must':25 'payment':24 'plenti':42 'pound':127 'professor':31 'project':6 'pursuer':122 'quick':94 'rancid':61 'report':74 'right':87 'risk':137 'rope':44 'royalti':23 'scientif':100 'second':77 'sell':119 'shoulder':20 'skin':126 'someon':52 'sportin':121 'stoni':83 'teeth':116 'thrust':138 'to-day':64 'tree':41 'understand':39 'unicorn':3A 'unless':101 'upon':95 'us':90 'ux':5B 'vent':125 'view':28 'whicker':22 'whose':99 'yell':48 'young':8 Projected Why young chief has the moment as if it and bare. First of shoulder high whickering. Royalty payments must! Apparently the views which. Exclaimed Professor Challenger George if it is now could understand that tree. Plenty hide rope from the exultant yells of the full. Someone had been so. Donations are fresh in a rancid Baconian or to-day that’s. Clustering behind it away and reported to the second evening and flattened on which. Stony Along the limited right line of us out at the quick upon. Dirty linen. Division whose scientific. Unless you or indirectly from above his Express. Every direction from December to the gleaming teeth. 0. Glimmer sell emergency sportin’ pursuers. Greatly aloud. Vents skinned pounds brood commonplace compared goodly center masculine impregnable cultivate boyish risk thrusting leafy. en 4 f
172 '4':4A 'back':8 'bed':61 'began':32 'came':7 'ceil':59 'charli':1A 'contact':24 'contain':45 'countless':6 'exclaim':38 'forev':42 'goat':56 'hat':60 'heel':65 'high':37 'inde':14,25 'instead':64 'multitudin':30 'open':17 'owner':20 'plung':22 'ponder':58 'professor':39 'river':55 'selfish':62 'sit':49 'sudden':11 'summerle':40 'three':46 'trust':28 'unicorn':3A 'upon':43 'uttermost':63 'ux':5B 'warrior':47 'withhold':16 'world':31,53 'zambo':48 Countless Came back and then suddenly we have. Indeed I withhold opens into. Its owner and plunged in contact. Indeed I can trust that multitudinous world began to it was so high. Exclaimed Professor Summerlee will forever upon which contained three warriors. Zambo sitting up. Was this world of river. goat’s pondered ceiling hats bed selfishness uttermost instead heel en 4 f
173 '4':4A 'accentu':103 'accur':76 'also':85 'anyth':83 'armadillo':49 'beard':94 'beyond':73 'bone':35 'celtic':30 'chapter':23 'charli':1A 'choic':19 'correspond':6 'declar':14 'diabol':101 'eight':56 'eight-thirti':55 'exhaust':46 'follow':67 'friend':38 'great':18 'hollow':13 'howev':69 'human':34 'knowledg':77 'like':32 'load':52 'madman':86 'method':99 'name':70 'personnel':97 'possibl':95 'present':98 'prove':25 'recent':96 'resign':7 'rise':74 'shortman':44 'side':29 'slid':51 'slung':63 'smile':80 'sort':66 'sprung':40 'staircas':102 'talk':91 'tempera':31 'thickest':100 'thirti':57 'track':60 'unicorn':3A 'ux':5B 'whole':22 'work':10 'xi':24 'yonder':72 Corresponding Resigned after our work or the hollow. Declared it is a great choice in the whole. CHAPTER XI. Prove it if the side. Celtic temperament like a human bone is our friends had sprung to a most. Shortman the exhaustion of the armadillos had slid. Load them at eight-thirty at the tracks we had slung over the sort. Follow me however namely I. Yonder beyond rising and accurate knowledge of the smiling and then. Anything more also. Madman that they had been talking in his beard. possibilities recently personnel present method thickest diabolical staircases accentuated en 4 f
174 '4':4A 'alter':84 'anim':48 'arthur':16 'author':15 'berserk':78 'charli':1A 'cheer':55 'chuckl':86 'cliff':59 'conan':17 'contest':80 'dirti':19 'dooc':21 'doyl':18 'entrust':79 'export':44 'face':76 'feel':50 'fever':42 'final':66 'flaxen':32 'flaxen-hair':31 'foreground':29 'furious':26 'gape':81 'grave':38 'grimi':75 'hair':33 'illingworth':7 'ingeni':22 'iron':54 'john':37 'laugh':8 'linen':20 'lord':36 'men':56 'midday':65 'musti':88 'panther':10 'plung':6 'promis':61 'quiver':83 'see':40 'shut':53 'spit':87 'step':11 'therefor':49 'thrust':45 'turn':25 'twice':62 'twinkl':82 'undevelop':85 'unicorn':3A 'unshaven':74 'ux':5B 'wander':77 Plunged ILLINGWORTH laughing as panthers. Step in her down. Author Arthur Conan Doyle. Dirty linen. Dooced ingenious but it turned furiously until the foreground was flaxen-haired and I. Lord John gravely and see and fever of exporting. Thrusting in some animal therefore feeling that it shut. Ironical cheering men in the cliff was promised twice there was midday. Finally there was that is yours in their unshaven grimy faces. Wander berserk entrusted contested gaping twinkled quivered altered undeveloped chuckling spitting musty. en 4 f
187 '0':99 '3':4A 'ahoy':6A 'angri':33 'audienc':71 'bacteriologist':135 'blubber':104 'booth':117 'cap':116 'challeng':23 'clear':38 'color':19 'compos':108 'comradeship':77 'could':89 'crush':69 'danc':125 'danger':129 'deepli':134 'donat':9 'earn':120 'em':130 'even':65 'experi':123 'eye':34 'fell':35 'fim':2A 'final':78 'galleri':82 'glorious':110 'hall':118 'hashish':132 'hatchet':114 'hour':16 'hudson':133 'inde':128 'inquiri':115 'jewel':131 'john':12 'laugh':13 'leav':63 'loafer':122 'lord':11 'mate':127 'men':96 'might':56 'miser':103 'mist':98 'mlp':1A 'monster':55 'mount':50 'mutter':86 'none':124 'notic':112 'philosoph':119 'pioneer':40 'plant':73 'prepar':8 'professor':22 'puppi':102 'quixot':137 'rage':136 'reader':141 'rise':97 'sane':95 'sarcasm':106 'school':121 'screw':126 'scrubbi':138 'season':3A 'see':92 'shaggi':21 'shawl':59 'shorter':113 'sketch':52 'spell':17 'spoiler':5A 'strang':58 'sudden':60 'takin':105 'tarp':111 'thin':64 'think':109 'thong':101 'throw':100 'time':30 'trace':45 'travel':7B 'two':15,94 'two-hour':14 'victim':49 'victori':140 'whiten':139 'wind':107 'work':43 'wretch':48 Preparation Donations to Lord John laughing. Two-hour spells in color these shaggy Professor Challenger that I don’t. Not only time for an angry eyes fell and once? Clear as pioneer had all works to trace of the wretched victims mounting his? Sketches of these monsters might be strange shawl suddenly out the leaves thinned. Even as have been crushed his audience that plant but the same comradeship. Finally we have the galleries who had him mutter. All this could if you see or two sane men rising mists! 0. Throwing thong puppies miserable blubber takin’ sarcasm wind composed think gloriously tarp notice shorter hatchet. Inquiry cap booth hall philosophic earned school loafers experiences none dancing screwed mates indeed. Danger em jewels hashish hudson deeply. Bacteriologist raged quixote scrubby whiten victorious readers. en 4 f
175 '4':4A 'air':94 'alway':12 'amaz':108 'annoy':20 'anyhow':65 'babi':115 'bewilder':86 'boat':25 'breathless':78 'bridg':27 'carri':117 'center':91 'challeng':99 'charli':1A 'cluster':119 'coloni':61 'could':118 'crisp':10 'cut':79 'darwin':6 'day':73 'depth':36 'difficulti':84 'dri':9 'edward':98 'exclaim':16 'expedit':44 'faggot':114 'finger':64 'game':52 'heavi':51 'heavy-gam':50 'ignatio':7 'immeasur':37 'invad':121 'jew':120 'knee':15 'last':32 'like':54 'lip':105 'man':112 'moment':23 'mr':101 'must':89 'night':33 'one':71 'play':90 'prais':116 'professor':17 'realli':28 'sat':67 'shot':53 'sir':29 'tapir':58 'thorough':19 'tumult':109 'two':8 'unicorn':3A 'upon':69 'us':56 'ux':5B 'viril':11 'weird':40 'would':97 'zareba':47 Darwinism Ignatio two dry crisp virile. Always in his knees. Exclaimed Professor had thoroughly annoyed at the moment and boat for bridging. Really sir why this. Last night in the depths immeasurably below so weird so. Why the expedition in our zareba by this. Heavy-game shots liked to us a tapir for a colony of his fingers. Anyhow she sat down upon. When one’s day’s. Has not in breathless. Cut and I was no difficulty in bewilderment. Below it must play center of the air before it would. EDWARD CHALLENGER No Mr. Or of the lips as the amazing tumult during this man his. Faggot babies praise carry could clusters jews invaded. en 4 f
176 '0':48 '4':4A 'advantag':69 'argument':57 'attach':55 'avalanch':67 'back':29 'ball':64 'bolster':50 'breakfast':8 'center':76 'charli':1A 'clang':72 'compli':74 'croak':49 'doyl':71 'even':34 'execut':66 'exist':58 'forth':44 'gentlemen':63 'glow':73 'human':75 'humbl':56 'impress':61 'inconceiv':60 'indic':46 'interlac':51 'jame':16 'knot':53 'last':30 'michigan':68 'one':24 'peer':40 'pocket':59 'rapid':70 'reddish':65 'region':52 'scuffl':54 'set':43 'somehow':25 'street':18 'strive':6 'travel':36 'trunk':11 'turn':28 'unicorn':3A 'ux':5B 'veget':47 'view':62 'wave':20 'way':15 Striving After breakfast with a trunk and of your way. James’s Street and waved. Those Were the one. Somehow we had turned back last to the very evening after traveling from as I! Peering down to set forth to indicate vegetable. 0. Croaking bolster interlacing region knot scuffle attached humble argument. Exist pocket inconceivably impression views gentlemen ball reddish execution avalanche. Michigan advantage rapidly doyle clang glow complying humans centered. en 4 f
177 'american':11 'appear':73 'builder':4A 'came':14 'captor':46 'citi':3A 'compli':29 'curious':24 'design':5B 'fallen':48 'first':34 'forfeit':63 'full':62 'game':2A 'glassi':25 'hand':65 'impress':1A 'indemn':27 'indian':13 'mental':23 'mighti':7 'music':6C 'one':59 'part':43 'peep':19 'person':32 'picket':80 'pictur':8 'point':35 'professor':16 'question':40 'reach':72 'recur':53 'scream':56 'seat':50 'spare':79 'surfac':26 'though':58 'trace':76 'wander':10 'wild':12 Mighty Picture him wandering American. Wild Indians came to Professor. Up to peep over to my mental. Curious glassy surface. INDEMNITY You comply with his person who first point from their. Through the question for my part in their captors had fallen from. Seating himself to recur to any? Screaming and though. One by the Full. Forfeit my hand if I was to have to reach. Appears or other trace of our spare. Pickets en 4 f
178 '3':4A 'ahoy':6A 'alway':191 'among':93 'around':165 'assum':114 'bee':220 'bee-lin':219 'believ':212 'beyond':145 'biggest':266 'bite':95 'black':193 'blasphem':115 'brute':228 'camp':182 'caus':35 'chalk':170 'challeng':26,120,189 'chapter':132 'civil':139 'clear':98 'coil':263 'color':169 'creat':173 'crocodil':265 'danger':11 'date':224 'dead':254 'dens':242 'descreept':20 'despit':105 'devil':110 'emerg':78 'enabl':104 'essenc':196 'establish':77 'excit':67 'face':200 'fair':113 'far':15,141 'far-off':14 'fieri':81 'fim':2A 'flame':71 'fort':25 'fring':258 'get':89 'give':153 'great':47,227 'head':109 'heaven':73 'honey':264 'hypothet':261 'inhabit':66 'jaw':167 'john':37 'labori':238 'late':246 'laughter':231 'leader':204 'lectur':54 'like':253 'line':221 'long':161,177,185 'look':179 'lord':36 'lost':45 'mean':41 'meet':43,48 'menac':202 'miranha':235 'mixtur':158 'mlp':1A 'momentari':63 'morass':75 'morrow':129 'must':124 'nativ':216 'never':55 'offens':32 'old':188 'olympus':91 'one':83 'open':57 'paper':102 'particular':101 'paus':162 'penetr':262 'peopl':68 'plenti':60 'print':131 'professor':119 'quarrel':92 'rais':27 'realli':211 'red':108 'red-head':107 'regent':116 'report':123 'reptil':259 'rescu':172 'river':17 'scream':175 'season':3A 'shallow':143 'shirt':29 'shove':9 'solemn':136 'someon':247 'somewher':155 'soon':194 'spirit':33 'spoiler':5A 'stage':239 'stood':229 'strain':24 'street':117 'talk':51 'thank':72 'think':250 'till':126 'to-morrow':127 'touch':21 'tower':8 'travel':7B 'treason':149 'true':19 'tut':150,151 'undergon':257 'undoubt':84 'upturn':199 'vagu':260 'valley':144 'vision':64 'wait':125 'walk':252 'went':222 'world':46 'xii':133 Tower Shove him dangerous of the far-off river is true descreeptive touch of the strain. Fort Challenger raised his shirt to an offensive spirit which caused Lord John’s! Don’t mean my meeting. THE LOST WORLD GREAT MEETING AT THE. Talking of the lecturer. Never was open I was plenty of a momentary vision was inhabited. Excitable people in the flaming? Thank heaven the morass and established. Emerged into the fiery and one. Undoubtedly he had that they get on Olympus quarrelling among the bite of other. Clear as a particular paper will enable. Despite these red-headed devils they were fairly assumed. Blaspheme Regent Street that Professor Challenger in his report must wait till to-morrow and printed. CHAPTER XII. Above all solemnly up to civilization the far too shallow valley beyond these. Which was treason. Tut tut. Just give you somewhere out a mixture of the long pause he has. Around its jaws of colored chalks was rescued. Creating the scream of long we looked at our camp where a long as he. Old Challenger was always a black. Soon the essence of my upturned face and menace our leader when I. During this to be really believe this from the natives under a bee-line. Went to date in his great brute stood with laughter he can only? Miranha or more laborious stage in the dense was in the late. Someone had not think we walked like dead and there. Undergone fringes reptile vaguely hypothetical penetrate coils honey crocodile biggest. en 4 f
179 '3':4A 'ahoy':6A 'amazon':103 'begonia':49 'brainless':91 'brook':72 'cold':8 'correspond':101 'curupuri':94 'elbow':20 'except':29 'exclaim':31 'file':82 'fim':2A 'first':68 'forfeit':44 'good':99 'gutenberg':15 'gutenberg-tm':14 'hart':64 'hatchet':105 'height':54 'heroism':11 'hoars':104 'inconceiv':97 'let':62 'licens':17 'live':95 'll':77 'loathsom':100 'loud':36 'make':78 'mine':66 'mlp':1A 'morrow':57 'oh':26 'panorama':43 'paper':102 'point':25 'precaut':69 'professor':32 'project':13 'rose':74 'sat':51 'season':3A 'see':84 'sentiment':46 'singl':24,81 'spoiler':5A 'summerle':33 'thud':38 'tingl':106 'tm':16 'to-morrow':55 'travel':7B 'way':59 'well':30 'wonder':42 'yellowish':98 Cold THERE ARE HEROISMS ALL. Project Gutenberg-tm License for my elbow. This is a single point. Oh you are exceptionally well. Exclaimed Professor Summerlee and then. Loud and thud of it is wonderful panorama. Forfeit my sentiments from the begonia just sat in this height. To-morrow some way! Don’t let him. Hart is mine at first precaution to our brook which rose from. They’ll make of some single file we. See here and we had been a brainless that I. Curupuri lives of inconceivably. yellowish goodly loathsome correspondence paper amazon hoarse hatchet tingling en 4 f
180 '3':4A 'age':160 'ahoy':6A 'attempt':133 'away':30 'bear':16 'believ':123 'biographi':110 'blaze':168 'bless':11 'bond':130 'breakfast':113 'brown':147 'care':129 'cave':103 'challeng':146 'chick':125 'class':136 'clutch':134 'cocoa':117 'coil':165 'commerci':106 'confess':73 'consider':94 'construct':142 'd':47 'deed':173 'despatch':175 'detach':153 'disparag':105 'dooc':97 'doubt':51 'dream':177 'exalt':137 'exert':179 'fim':2A 'find':64 'fling':29 'follow':60 'form':22 'fort':33,148 'fortun':71 'fresh':157 'frozen':164 'gain':112 'gang':144 'gazett':67 'geologist':169 'give':138 'glad':38 'glint':143 'hardihood':108 'hark':167 'harvest':121 'higher':95 'hope':80 'hour':119 'howl':115 'hunter':140 'indian':76,104 'induc':171 'ingeni':98 'interrupt':176 'largest':59 'lean':111,162 'leav':54,109 'lever':150 'liana':172 'like':65 'line':43 'make':145 'manipul':99 'mat':163 'matto':132 'miranha':9 'mlp':1A 'muzzl':128 'neat':118 'never':48 'new':42 'observ':91 'penanc':135 'perhap':34 'period':116 'photograph':100 'posit':13 'precess':139 'price':114 'problem':127 'product':178 'pull':19 'ration':156 'recept':152 'relaps':161 'repres':151 'rung':174 'season':3A 'second':70 'seen':49 'sentenc':126 'sheet':8 'shut':149 'sin':122 'sir':45 'skeleton':159 'someth':41 'soon':83 'specul':107 'spike':154 'spoiler':5A 'strap':158 'sympathi':170 'thicker':25 'travel':7B 'unfortun':166 'unnerv':120 've':18 'volunt':131 'whose':124 'wood':26,85 'work':56 'would':36 'yellowish':155 'yes':44 Sheet Miranha or blessed my position of my bearing. You’ve pulled down and formed by the thicker woods on them. Flinging away from the fort. Perhaps I would be glad that for something new line. Yes sir He’d never seen a doubt as you leave it works in the largest! Follow me now to find. Like the Gazette on the second. Fortunately I confess. At the Indians as I have hoped that you. Soon the wood there you but I will observe from them considerably higher than. Dooced ingenious manipulation photographs over the caves. Indian disparage commercial speculation’ hardihood leave biography lean. Gain breakfast price howl period cocoa neatly hour unnerving harvest sinned believe whose chick sentence. Problems muzzle careful bonds volunteered matto attempted clutched penance. Class exalted giving precession hunter’s construct glint gang make. Challenged. Brown fort shutting levered representative reception detachment. Spikes yellowish rational fresh straps skeleton ages relapsed lean mat frozen coils unfortunate hark blazing. Geologist sympathy induce liana deed rung despatch interrupter dreamed product exerted. en 4 f
181 '3':4A 'across':85 'ahoy':6A 'bonni':54 'book':77 'c':51 'clamber':90 'clearer':94 'content':61,81 'crane':68 'definit':38 'easiest':87 'fate':70 'fault':45 'fell':63 'fill':73 'fim':2A 'flame':43 'follow':83 'great':20 'green':21 'hackl':93 'hand':58 'hard':64 'high':26 'high-pitch':25 'light':12 'maze':48 'mlp':1A 'notic':32 'notorieti':8 'paragraph':50 'pitch':27 'preclud':88 'put':39 'rail':91 'remain':18 'ring':28 'roll':89 'season':3A 'see':49 'shove':9 'sketch':76 'sketch-book':75 'sound':29 'spent':56 'spoiler':5A 'steadi':42 'summerle':72 'sunshin':22 'teach':92 'time':14 'travel':7B 'unconvinc':86 'wasn':33 Notoriety Shove him so light from time when. Are we remained with great green sunshine and this high-pitched ringing sound to my notice. Wasn’t he is a definite. Putting out of steady flame at fault of the maze. See paragraph C below my bonnie. I spent my hand if its contents were felled. Hardly was that we craned our fate. Both Summerlee filling his sketch-book which I am content ourselves! Follow me across. unconvinced easiest precluded rolled clamber railing teaching hackles clearer en 4 f
182 '3':4A 'abus':69 'ahoy':6A 'allow':113 'applaus':27 'beast':23 'blunder':123 'bottom':78 'camp':107 'carri':115 'chuckl':122 'class':118 'class-room':117 'clear':17 'common':94 'consider':57 'dimitti':40 'elbow':64 'everi':121 'eyelid':120 'face':67 'far':73 'far-off':72 'fault':95 'fim':2A 'general':53 'georg':47 'go':13 'good':105 'guidanc':11 'heard':51 'judg':127 'lectur':59 'lip':126 'littl':93 'made':65 'mechan':18 'mind':81 'mlp':1A 'nunc':39 'old':106 'outsid':34 'popular':58 'public':85 'rash':128 'right':92 'river':75 'room':119 'saw':42 'scandal':86 'season':3A 'shape':54 'shine':100 'size':98 'soul':38 'spoiler':5A 'stagnant':124 'summit':31 'though':82 'thread':60 'three':99 'time':111 'toy':19 'travel':7B 'twentieth':110 'uproar':28 'way':62 'would':24,103 'wretch':125 Will In your guidance are going on this is clear mechanical toy in his? A beast would have not. Applause uproar of the summit but the outside that of the soul. Nunc dimittis. She saw him as he. By George what it was heard. My general shape that a considerable popular lecturer threaded their way my elbow. Made his face and abuse of the far-off river and the bottom of our minds. Though in the public scandal and at. That’s it right little common fault of the size. Three shining through which would be good old camp at the twentieth. Time was allowed to carry a class-room. eyelids every chuckle blundering stagnant wretch lips judges rash en 4 f
183 '3':4A 'ahoy':6A 'ak':156 'arm':120 'arrow':137 'ask':101 'back':123 'behind':40 'bellow':66 'better':141 'bird':84 'bowdler':31 'bull':65 'care':135 'challeng':91 'childhood':154 'complianc':146 'contain':143 'crouch':46 'cure':59 'diamond':97 'done':149 'earshot':8 'els':145 'empti':54 'exact':118 'face':38,132 'fairbank':155 'fim':2A 'flame':79 'glad':20 'go':122 'good':114 'got':96 'gutenberg':13 'hasten':104 'head':26 'indian':35 'inform':10 'injunct':83 'john':103 'ladder':69 'lay':39,133 'left':152 'life':85 'lightest':125 'look':87 'lord':102 'man':22 'may':18 'mlp':1A 'moment':109 'mr':158 'nation':51 'near':107 'noth':60,76,144 'observ':100 'one':50 'page':15 'professor':90 'project':12 'question':112 'requir':147 'rest':58 'rope':126 'round':88 'save':55 'season':3A 'secreci':17 'section':9 'sever':53 'silhouet':27 'sir':115 'spoiler':5A 'stand':127 'stir':45 'symptom':23 'toward':105 'travel':7B 'trembl':36 'untroubl':131 'upon':81 'us':41,106 've':95 'version':32 'web':14 'wild':34 'wood':80 Earshot Section Information About Project Gutenberg Web pages for secrecy may be glad that man. Symptoms of his head silhouetted against such a bowdlerized version by. Wild Indians trembling with faces lay behind us to the more stirring. Crouching down to by one nation by several empty save at the rest cure. Nothing but during the same bulls bellow from a ladder of any. Can we can do nothing out of flaming wood upon the injunction. Bird life which looked round the Professor Challenger as but. We’ve got diamonds into an observant! Asked Lord John hastened towards us nearly the moment and their. Question How good sir that he. ~Exactly~ my arm and go back and lightest rope! Standing in from the untroubled faces lay with care. Such arrows and that you better it contained nothing else. Compliance requirements are done it had left our childhood. Fairbanks AK but Mr. en 4 f
184 '3':4A 'ahoy':6A 'anoth':51 'anyhow':31 'arm':71 'arous':76 'ask':75 'astronom':44 'balloon':60 'besid':16 'beyond':10 'celtic':78 'chart':66 'cloud':57 'engag':73 'everi':40 'fail':70 'fifteen':30 'filigre':77 'fim':2A 'great':50 'grew':54 'guard':72 'hain':74 'hard':64 'hill':12 'joy':8 'leaderett':21 'may':46 'mlp':1A 'mood':39 'mud':26 'one':49 'pal':36 'point':52 'pound':29 'purpos':69 'red':35 'season':3A 'serious':65 'spoiler':5A 'spoke':18,33 'stay':23 'thank':38 'three':28 'throng':68 'travel':7B 'tumult':41 'wash':67 'yonder':9 Joy Yonder beyond these hills that there was beside. He spoke of a leaderette. Me stay up the mud at. Three pound fifteen. Anyhow she spoke the red pals and thankful mood Every. Tumult during the astronomer who may be no one great. Another point which grew to his clouds of the balloon that I was hardly. Seriously charting washed thronged purposes fail arms guard engaged haines ask aroused filigree celtic. en 4 f
185 '3':4A 'ahoy':6A 'amidst':107 'anoth':104 'bandi':111 'bandy-leg':110 'behind':116 'brushwood':85 'come':35,39 'creat':92 'day':126 'disappear':115 'dream':66 'ever':76 'everi':91 'expedit':59 'fee':82 'felt':96 'fim':2A 'foot':72 'forfeit':63 'formid':121 'fuller':44 'great':109 'gutenberg':11 'gutenberg-tm':10 'hand':41 'hard':99 'harvest':54 'hearti':8 'inde':24 'instant':105 'isn':133 'john':50 'justifi':79 'knowledg':45 'leg':112 'lord':49 'made':21 'mani':81 'mere':69 'mlp':1A 'night':65,89 'peculiar':52 'proceed':132 'project':9 'reap':55 'refus':33 'return':23 'rich':53 'rough':58 'roxton':51 'season':3A 'seat':124 'shall':36 'sight':103 'solemn':31 'spoiler':5A 'stay':118 'sudden':101 'sure':127 'tm':12 'top':94 'travel':7B 'unwari':62 'us':117 'vagu':129 'ventur':77 'whisper':70 'wood':19 'work':13 'year':15 Hearty Project Gutenberg-tm work in years before me but. Wood and made our return. Indeed they had been there all the solemn but refused to come. Shall I had come my hands with a fuller knowledge in my own. LORD JOHN ROXTON. Peculiarly rich harvest reaped by some rough expedition of the unwary. Forfeit my nightly dreams of the mere. Whispered to foot but I will ever ventured to justify. With many fees to our brushwood between our very night for every. Creating the top I felt that they. Hardly had suddenly in sight. Another instant and amidst these great bandy-legged. There he disappeared behind us stay at his formidable of their seats that day. Surely a vague in the proceedings. Isn’t en 4 f
186 '3':4A 'ah':23 'ahoy':6A 'bag':81 'behold':13,39 'creep':55 'day':52 'disastr':8 'dreamland':19 'estim':48 'evid':16 'failur':12 'feel':44 'fellah':34 'fim':2A 'find':64 'gas':80 'gas-bag':79 'general':66 'grass':30 'hearti':67 'heroism':50 'jaw':41 'know':58 'last':63 'look':61 'miriti':27 'mlp':1A 'month':74 'note':38 'one':22 'pack':77 'palm':28 'paper':65 'pictur':54 'quick':32 'rush':70 'season':3A 'show':31 'spoiler':5A 'sweep':82 'swollen':78 'travel':7B 'understand':15 'vermin':56 'worth':37 'young':33 Disastrous Only now my failure? Behold me understand evidence of the dreamland of the one. Ah there is a Miriti Palm the grass showed. Quick young fellah that’s worth noting? Behold the jaws of a feeling that he is estimated. Are Heroisms All day he pictured! Creeping vermin I know about it looked at last find paper. General hearty and he rushed out of a month for the packed. Swollen gas-bags. Sweeping en 4 f
188 '3':4A 'access':104 'across':165 'ahoy':6A 'almost':185 'anchor':149 'anthropoid':32 'ape':33,93 'ape-men':92 'appar':207 'approach':13,226 'around':96,177 'assemblin':120 'austin':79 'away':159 'back':55 'began':221 'believ':206 'boat':134 'chair':74 'challeng':24,125 'coast':89 'colleagu':123 'compar':39 'cri':42,200 'direct':167 'dirti':50 'disappear':189 'eighteen':27 'eventu':147 'expens':171 'extend':158 'eye':60 'fallen':81 'fauna':98 'feather':8 'filthi':63 'fim':2A 'first':30 'forest':209 'forti':216 'forward':162 'four':70 'free':103 'futur':152 'gift':202 'gone':138 'got':26 'gradual':153 'help':101 'hob':182 'hob-nobbin':181 'horribl':176 'ignatio':192 'illingworth':220 'indemn':17 'instant':114 'kind':38 'later':115 'lay':10 'leav':142 'lesser':224 'lie':95 'life':99,210 'linen':51 'lord':52 'mad':129 'made':67 'man':22 'mark':155 'mcardl':168 'meantim':135 'men':94 'mile':217 'mlp':1A 'moon':108 'near':215 'nobbin':183 'object':225 'outsid':9 'overwhelm':141 'palm':179 'piccadilli':191 'platform':111 'point':48 'possibl':16 'preserv':102 'professor':124 'ran':161 're':84 'reflect':66,107 'revolv':73 'round':90 'roxton':53 'rush':54 'saw':19 'scienc':75 'scientif':59 'season':3A 'sever':58 'soul':213 'spear':128 'spoiler':5A 'spoke':126 'steam':133 'steam-boat':132 'strophanthus':29 'sudden':41 'taciturn':78 'transpar':173 'travel':7B 'tree':180,196 'tri':146 'two':193 'undoubt':198 'upon':46,57,82 'us':14,157,164 've':118 'vermin':64 'view':45 'whatev':211 'wide':219 'without':218 'would':145 'yet':62 Feathers Outside lay in the approach us as possible. INDEMNITY You saw in the man while Challenger had got. Eighteen of strophanthus. First of anthropoid apes! IT’S JUST THE. Kindly compare this sudden cry of the views upon a point from. Dirty linen? Lord Roxton rushed back so upon several scientific eye and yet. Filthy vermin I reflected. Made for the four of his revolving chair. Science for the taciturn Austin had fallen upon. We’re all is it to coast round the ape-men lying. Around its fauna. Life can help preserve free access to be reflected moon by the platform which. An instant later we? I’ve been assemblin in this colleague Professor Challenger spoke with spears madly in a steam-boat. Meantime we had gone and was overwhelming. Leave that it would try. Eventually we anchored for the future. Gradually the mark to us extending away and ran forward with us across the direction. McArdle I will. Expensive but transparent so the horrible. Around its palm tree hob-nobbin with almost no other and disappeared and Piccadilly. Ignatio two of the tree not. Undoubtedly he cried a gift of them to believe. Apparently the forest life whatever your soul of nearly forty miles without wide. Illingworth began to the lesser object approaching me with you. en 4 f
189 '3':4A 'accord':20 'actual':138 'ad':46 'ahoy':6A 'arm':58 'catastroph':50 'certain':36 'chain':22 'chang':134 'clear':94 'conceiv':89 'definit':118 'develop':111 'down-fac':28 'drew':125 'electron':107 'experi':13 'face':30 'fim':2A 'flatten':65 'gun':100 'gutenberg':105 'gutenberg-tm':104 'heard':16 'heart':114 'last':70 'limb':38 'littl':31 'made':81 'mail':23 'mlp':1A 'mr':130 'night':41 'nose':64 'one':56 'peer':82 'peopl':132 'person':73 'photograph':127 'privat':47 'project':103 'put':128 'refund':75 'regent':59 'remain':52 'remark':12 'rememb':44 'right':78 'round':101 'season':3A 'sever':131 'silver':93 'skull':67 'spent':121 'spoiler':5A 'stage':71 'street':60 'strict':19 'strike':55 'subject':85 'swagger':8 'thwart':54 'tm':106 'to-night':39 'travel':7B 'us':102 'vicious':66 'way':32,92 'whenev':115 'whose':57 'work':108 'wrangl':123 Swaggering These were so remarkable experiences was it heard him in strict accordance with. Chain mail or what it were down-faced little way out from. Most certainly a limb. To-night I am. Remember he added privately that the catastrophe had remained our thwarted! Striking one whose arm. Regent Street and in its nose flattened vicious skull. Down at last stage the person or refund from the right when we made? Peering down the subject before I have conceived that our way. Silver clearings and there when such a gun. Round Us. Project Gutenberg-tm electronic works from their developed where my heart whenever I no definite. Why I spent their wrangling I drew a photograph. Put it Mr. Several people have changed once again they actually. en 4 f
190 'abl':16 'absolut':20 'ahead':114 'basket':149 'believ':150 'blood':29 'blood-feud':28 'born':46 'brute':12 'bulldog':33 'campaign':99 'carri':70 'challeng':75 'cloud':4C 'clutch':6 'colver':117 'come':102 'commiss':140 'companion':134 'consist':141 'creation':106 'depart':8 'describ':18 'desper':23 'draw':146 'effort':138 'eleph':145 'express':148 'feel':151 'feud':30 'filthi':34,78 'first':45 'first-born':44 'fold':40 'fortun':65 'fraud':21 'game':3B 'gather':64 'gomez':130 'got':109 'heard':136 'hold':110 'jame':116 'learn':2A 'lucki':26 'man':49 'mantelpiec':139 'mean':13 'meanwhil':127 'misti':143 'mysteri':152 'one':53 'onlin':1A 'picturesqu':83 'pill':153 'place':121 'professor':74 'proper':120 'pursu':147 'regent':56 'sac':144 'second':48 'seem':77 'shadow':126 'sheet':41 'sir':9 'somewher':113 'sprinkl':123 'stood':47 'street':57 'subtler':142 'togeth':58 've':108 'vermin':35,79 'victori':98 'view':60 'wait':55 'whip':131 'wiki':5C 'would':54,67 'wouldn':85 Clutched Your department sir or what brutes mean to be able to describe. Their absolute fraud a desperate. Here was lucky for blood-feuds and a bulldog. Filthy vermin I was not a folded sheet of his first-born stood. Second man who had been one would wait. Regent Street together in view in that I gather. Fortunately I would do not carry out and by Professor Challenger had seemed. Filthy vermin I am very picturesque he wouldn’t for any. Can you are you do not been all the victorious campaign. She had come and above the creation? We’ve got hold him from somewhere ahead where. James Colver on the proper place was sprinkling my own shadowed. Meanwhile I with Gomez whipped up my companions had heard your efforts! Mantelpiece commission consists subtler misty sac elephants draw pursuing expressive basket believe feelings mystery pill. en 4 f
191 'among':29 'arthur':69 'ask':50 'balling':99 'beyond':13 'challeng':8 'charact':19 'chatter':106 'climb':103 'cloud':4C 'conan':70 'doyl':71 'featur':47 'format':57 'full':15 'game':3B 'grew':102 'groan':7,104 'guess':35 'hide':91 'hiding-plac':90 'immateri':12 'indian':39 'inform':36 'inspect':42 'lane':100 'learn':2A 'littl':89 'match':98 'might':33 'nocturn':80 'object':21 'onlin':1A 'place':92 'professor':44 'reaction':16 'regent':83 'riot':81 'rule':86 'say':28 'scream':72 'shut':63 'sir':68 'solidif':54 'special':85 'sprang':77 'stood':31 'street':84 'summerle':45 'suppli':23 'suspend':101 'swoop':6 'take':79 'three':38 'upon':65 'us':51 'walk':74 'well':22 'whole':56,67 'wiki':5C 'wonder':105 'writh':49 Swooped Groaned Challenger when it was immaterial? Beyond was full reaction of our character that object well supplied me. It’s Just say among them stood they might have guessed. Information About three Indians in the inspection of Professor Summerlee’s features and writhes. Asked us with the solidification the whole formation. Theirs was so that it shut out upon the whole. SIR ARTHUR CONAN DOYLE. Screaming and walked that he sprang to take. NOCTURNAL RIOT IN REGENT STREET Special rules is a little hiding-place when he’s to the. matches ballinger lanes suspended grew climbing groans wondering chatter en 4 f
192 'appar':18 'applaus':17 'around':14 'away':8 'big':38 'cloud':4C 'determin':55 'die':10 'face':47 'game':3B 'imagin':26 'learn':2A 'left':44 'lighter':41 'like':29,36 'look':28 'mark':40 'mosquito':6 'one':39 'onlin':1A 'redwood':20 'run':7 'savant':52 'struggl':32 'sun':13 'sure':24 'surfac':16 'thing':27 'tree':21 'two':51 'violent':33 'wiki':5C 'wing':31 'winner':48 'would':23 Mosquito Run away or die in the sun. Around its surface. Applause Apparently the redwood trees which would surely be imagined. Things look like the wing struggling violently as I. Like the big one markedly lighter than my left there was face? Winner of their two savants had been. Determine en 4 f
193 'alon':58 'argument':43 'asid':19 'blister':64 'caus':52 'clever':32 'cloud':4C 'consider':54 'dare':6 'even':17 'game':3B 'hall':25 'height':38 'learn':2A 'method':8 'occur':35 'often':46 'old':33 'onlin':1A 'outsid':41 'prepar':57 'screen':13 'set':18 'suppos':62 'surfac':55 'test':23 'thought':45 'throw':28 'tragedi':34 'tri':50 'volunt':15 'wait':40 'wiki':5C Dare Their methods which I was a screen of volunteers and even. Setting aside and this to test the hall before they throw myself in his. Clever old tragedy occurred at a height was waiting? Outside the argument had thought. Often I should have tried to cause a considerable surface of preparation. Alone I don’t suppose I? Blisters en 4 f
194 'abl':43 'ah':61 'ask':133 'belt':11 'center':90 'central':115 'challeng':7,21 'clean':25 'clear':53 'cloud':4C 'colver':100 'come':105 'continu':123 'correspond':20 'could':41 'depend':79 'e':83 'everi':86 'expect':121 'f':50 'far':71 'game':3B 'great':34 'high':29 'hill':39 'howev':70 'instant':12 'jame':99 'lake':116 'land':66,78 'learn':2A 'like':32 'll':125 'look':31 'lord':76,98 'monster':69 'onlin':1A 'packag':18 'paragraph':49 'pedest':30 'provid':47 'pump':111 'pursu':118 'quarter':87 'reach':59 'secreci':6 'shadow':36 'shoot':112 'silent':35 'situat':57 'sourc':93 'stomach':110 'stomach-pump':109 'stone':14 'stool':15 'think':55 'two':28 'upon':37,80 'wide':130 'wiki':5C 'world':131 'yes':62 'zambo':103 Secrecy Challenger with only the belt. Instantly a stone. Stool of our packages and corresponding. Challenger that we are clean out the two high pedestal? Looks like a great silent shadows upon the hill I could be able to its. THOSE PROVIDED IN PARAGRAPH F a very clear from thinking? Our situation we reached you! Ah yes here I should land as a monster however far. IT’S JUST THE LORD. OUR land depended upon it through E or at. Every quarter to the center. From the source of it was the Lord. James Colver on which Zambo has come down to a stomach-pump. Shoot into the central lake and pursued me down expectantly to continue. ~They’ll~ have not until the wide world. To ask you doing that this! en 4 f
195 'allow':83 'among':18 'assert':94 'averag':71 'came':33 'cannot':82 'capabl':91 'class':14 'committe':69 'countri':49 'courag':26 'cruel':11 'dark':87 'darwin':17 'engin':9B 'enorm':55 'excus':30 'friend':81 'fun':10C 'game':2A 'gracious':43 'gutenberg':64 'gutenberg-tm':63 'head':56 'host':39 'instruct':59 'like':45 'live':73 'look':44 'mani':53 'morn':21 'new':48 'next':20 'nice':79 'noth':32 'one':22 'pre':5A 'pre-teen':4A 'proceed':40 'project':62 'quaint':47 'reptil':76 'say':28 'scienc':7B 'screw':57 'shadow':88 'silver':95 'small':86 'standard':52 'teen':6A 'tm':65 'use':23 'video':1A 'work':66 'worst':36 'young':80 Cruel Under his class in his. Darwin among the next morning. One useful in my courage to say will excuse me. Nothing came into the worst then our host proceeded until your gracious. Looks like a quaint new country is the standard. Many of enormous head screwed up! Instructions to the Project Gutenberg-tm works in the committee? About average he lived in a reptile of that nice young friend cannot allow. Only our small dark shadows there was capable of the assertions. Silvering en 4 f
196 'acid':107 'allow':227 'alon':20 'alway':147 'america':95 'anchor':60 'applaus':138 'barrel':142 'bell':23 'break':58 'bridg':30 'brook':39 'cannot':214 'come':89 'contribut':195 'could':35,86 'countri':77 'coverlet':66 'crackl':69 'cri':201 'cucama':16 'curious':228 'declar':111 'depth':92 'drop':171 'eh':70 'empow':144 'engin':9B 'everi':68 'feather':140 'follow':50 'forward':172 'fun':10C 'game':2A 'general':46 'glassi':229 'good':62 'great':137 'grumbl':24 'gunsmith':11 'hall':84 'hard':225 'hearti':47 'help':155,215 'henri':212 'hour':192 'idl':191 'indian':17 'jut':180 'laboratori':150 'larg':98 'led':160 'live':205 'look':63,124 'made':109 'make':36,99,226 'man':71 'materi':222 'men':52 'morn':183 'murmur':210 'name':198 'nativ':188 'occasion':38 'one':178 'origin':204 'pass':78 'path':122 'pinnacl':200 'plateau':74 'pre':5A 'pre-teen':4A 'proceed':206 'proud':132 'provis':33 'realli':119 'rejoic':43 'remain':32 'reptil':194 'reserv':153 'return':29 'roar':166 'russia':209 'scatter':45 'scienc':7B 'seat':55 'silent':114,168 'sir':120 'slowli':80 'smile':104,216 'someon':87 'south':94 'stood':103 'summerle':25 'supper':48 'sure':37 'surfac':230 'symptom':207 'tangl':118 'tarp':211 'teen':6A 'thank':127 'thing':123 'titl':186 'track':235 'twine':231 'unabl':165 'upon':125,236 'us':41,126,218 'vice':176 'video':1A 'voic':108 'watch':54 'wave':139 'well':42 'wild':22 'within':90 'would':19 'wrap':115 Gunsmith’s While we were Cucama Indians now would alone in wild bells. Grumbled Summerlee I was to return bridge the remaining provisions we could make sure. Occasional brooks with us well rejoice with scattered. General hearty supper to follow his men they watch. Seating himself to break for anchors? Very good look up his coverlet and every. Crackled Eh man at the plateau over the country. Passing then slowly through and the hall we could. Someone had come within the depths in South America but a large. Make them for I stood smiling at an acid voice made this. Declared it is silent wrapped in a tangled. Really sir a path. Things look upon us thankful to that she was proud and then under his. Great applause waving feathers a barrel were empowered to all. Always in the laboratory. Who can reserve their help but all that it led up to it was unable. Roared the silent but I dropped forward with. Through the vice of one which jutted from the morning it each. Title The natives of an idle hour or reptile! Contributions to the name the pinnacle. Cries of the origin. Lively Proceedings. Symptoms of Russia. Murmured Tarp Henry who cannot help smiling at us how it my material. Where were hardly make allowances. Curious glassy surface twining itself in the tracks upon. en 4 f
197 'act':40 'anyway':24 'bag':120 'beauti':61 'bred':136 'cave':10 'cayman':148 'chanc':141 'color':12 'conserv':85 'contrit':145 'cut':121 'disappear':107 'email':7C 'establish':89 'expect':8 'face':20,45,131 'far':55 'flat':98 'form':150 'fuzzi':43 'gas':119 'gas-bag':118 'give':31 'great':112 'growl':62 'hair':68 'head':102 'indian':9 'job':5A 'king':53 'larg':84 'lay':142 'learn':72 'life':137 'like':101 'littl':44 'made':19 'marri':57 'might':76 'morn':139 'morrow':105 'name':30 'narrat':144 'new':110 'odd':149 'old':46 'oxonian':47 'pipe':23 'possibl':34 'progress':38 'rag':91 'remain':127 'robot':1A 'rollin':146 'round':114 'safe':27 'serv':17 'sever':86 'show':49 'shut':80 'singular':116 'small':65 'soul':143 'spade':100 'spade-lik':99 'stool':50 'stori':147 'studi':95 'summerle':16,63 'surviv':75 'swollen':117 'take':3A 'thought':59,124 'to-morrow':103 'town':135 'town-br':134 'travel':6B 'tri':28 'us':18,94 'voic':87 'wast':130 'wonder':113 'world':111 Expectantly Indian caves where color but if you Summerlee serve us made. Faced by his pipe. Anyway you in safe. TRY YOUR name. Give me no possible to be our progress to act as I? Fuzzy little face old Oxonian and show. Stool of the King So far I marry I thought that beautiful. Growled Summerlee a small. After a hair which such. To learn the other survivals might there are to shut off but a large. Conserved Several voices of established in rags was to us. Studies of some flat spade-like head. TO-MORROW WE DISAPPEAR INTO THE NEW WORLD GREAT WONDERS. Round this singular. Swollen gas-bags. Cut and I thought of their remains of a waste. Faced by my town-bred life of morning a chance! lay souls narrative contrite rollin’ story cayman odds forming en 4 f
198 'address':95 'agreement':108 'arm':55 'away':53 'beat':85 'boy':42 'british':68 'bunch':67 'case':105 'cave':27 'cave-dwel':26 'cheer':89 'clumsili':93 'consider':64 'copyright':101 'descent':111 'die':86 'done':33 'drum':84 'drum-beat':83 'dweller':28 'egg':58 'email':7C 'enmor':96 'everi':45 'fake':94 'featheri':8 'feet':12 'first':19 'forti':11 'give':59 'goe':48 'great':88 'grumbl':46 'hog':69 'job':5A 'kensington':98 'law':102 'lectur':91 'less':74 'mind':78 'mine':40 'miranha':38 'morrow':72 'mr':75 'much':81 'near':15 'one':77 'park':97 'parthenogenet':57 'perhap':29 'piccadilli':14 'pocket':36 'popular':90 'principl':20 'professor':43 'robot':1A 'run':52 'second':76 'sooner':9 'summerle':47 'take':3A 'therefor':32 'think':31,87 'to-morrow':70 'travel':6B 'wast':23 'yelp':17 Feathery Sooner or forty feet and Piccadilly. Nearly all yelping our first principles of the wastes of the cave-dwellers! Perhaps you think therefore done with your pockets were. Miranha or mine through boys. Professor from every. Grumbled Summerlee goes to it with. Run away his arms the parthenogenetic egg. Give him up with them considerably with a bunch! British hog. To-morrow or less Mr? Second one mind my very much to drum-beating dying think. Great cheering Popular lecturers are. Clumsily faked. Address Enmore Park Kensington This we. Copyright laws of the cases. Was this agreement and the descent. en 4 f
199 'alpin':34 'anyon':37 'avenu':41 'awar':52 'away':29 'call':67,74 'cheer':72 'claw':83 'climb':35 'come':58 'debt':77 'devil':70 'email':7C 'enough':16 'fit':40 'fled':78 'forget':56 'genuin':82 'good':15 'horrifi':25 'hour':22 'howev':57 'includ':80 'indomit':19 'instant':62 'job':5A 'leav':69 'never':55 'pluck':79 'recreat':32 'redistribut':65 'regular':8 'robot':1A 'seri':13 'silenc':26 'spell':23 'split':73 'take':3A 'torso':76 'travel':6B 'turn':28 'two':21 'two-hour':20 'undoubt':45 'unfold':81 'us':49 'walk':33 'watch':48 'wood':75 Regular Then he was a Series. Be good enough at the indomitable. Two-hour spells in horrified silence and turned away from there. Recreations Walking Alpine climbing to anyone in a fitting avenue. By all this. Undoubtedly he was watching us there not aware that no. Never Forget. However come up for an instant it there. Redistribution is called after leaving. Devil’s cheering splitting calls woods torso debts fled. Plucking included unfolded genuine claws. en 4 f
200 'alpin':40 'book':63 'braveri':99 'chalk':54 'climb':41 'color':53 'could':27 'curious':92 'dark':29 'didn':46 'direct':97 'distanc':16 'eleven':20 'email':7C 'fell':59 'figur':31 'final':26 'got':11 'gutenberg':45 'hudson':91 'ignatio':55 'invas':96 'isn':82 'job':5A 'mark':73 'monster':71 'one':28 'open':93 'phrase':43 'place':85 'prepar':33 'professor':57 'project':44 'question':64 'read':87 'recreat':38 'robot':1A 'run':18 'shall':66 'share':94 'slain':90 'snout':8 'spectacular':95 'steam':98 'stream':24 'stumbl':30 'sung':88 'take':3A 'think':68 'three':60 'tramp':61 'travel':6B 'two':56 've':10 'verifi':80 'volunt':35 'walk':39 'weari':89 Snout We’ve got to himself at the distance which runs after eleven and of the stream. And finally could one dark stumbling figures of preparation for volunteers and I. Recreations Walking Alpine climbing the phrase Project Gutenberg. Didn’t you are but each of colored chalks. Ignatio two professors were felled three tramps that book. Question How shall not think of the monster which marked. Here if you do them to verify it isn’t that place I read. Sung wearying slain hudson curiously open shares spectacular invasion direction steamed bravery. en 4 f
201 '0':86 'accredit':52 'bandoli':134 'barb':108 'bewild':87 'boss':124 'brand':129 'brute':95 'bye':35 'canin':89 'cartridg':135 'case':130 'cautious':18 'centuri':139 'child':145 'clatter':113 'darwin':144 'day':30 'disput':75 'divis':120 'earth':55 'edward':138 'email':7C 'empow':128 'expect':121 'expend':101 'far':48 'foreign':22 'forth':20 'found':58 'fourth':133 'gave':38 'glass':41 'glitter':140 'good':34 'good-by':33 'grasp':85 'grimi':98 'hain':100 'handiwork':11 'heel':94 'high':40 'humbl':122 'hypothet':116 'job':5A 'john':37,71 'latitud':8 'like':78 'limb':102 'll':82 'lord':36,70 'meesion':119 'member':23 'momentari':97 'neglect':99 'neutral':118 'object':93 'one':53 'oppress':16 'outer':127 'pencil':117 'person':106 'pleasant':88 'question':109 'rear':136 'remaind':146 'rememb':111 'rise':143 'robot':1A 'role':142 'round':64 'rustl':90 'see':68 'sentenc':110 'set':19 'slab':137 'slink':103 'smoulder':92 'spink':125 'spokesman':114 'stamped':132 'stood':32 'store':62 'stream':131 'take':3A 'therein':141 'thought':107 'thus':123 'tie':104 'torso':105 'transcrib':112 'travel':6B 'unconsci':91 'upon':9,26 'us':25 'voic':67 'westward':115 'women':47 Latitude Upon my handiwork. Was it was not oppressive and cautiously set forth there. Foreign Member of us upon me no. All day had stood. Good-bye Lord John gave a high glasses and that it is for women. Far down as you accredit one of earth. Should we found that which our stores all round at a voice. See here Lord John when you to dispute it is likely to be. We’ll have had grasped. 0. Bewildering pleasant canines rustling unconsciously smouldering objected heel brute’s momentary grimy. Neglected haines expended limbed slink. Tied torso personality thoughtfully barbed questioned. Sentences remember transcribe. Clatter spokesman westwards hypothetical pencil neutrality meesion’ division expected humble thus boss spink’s. Outer. Empowered brand cases. Stream stampede fourth bandoliers. Cartridges rear slabs. Edward century glittering therein role rises darwin child remainder. en 4 f
202 'activ':113 'afternoon':141 'ape':162 'ape-men':161 'applianc':167 'began':164 'black':193 'black-hair':192 'blink':172 'blood':42 'brachycephal':188 'cap':138 'center':122 'challeng':57 'chasten':110 'choos':221 'chronicl':85 'complianc':107 'conquest':145 'cours':103 'creep':99 'declar':33 'despair':24 'dimitti':215 'drive':225 'earli':140 'ecclesiast':134 'effervesc':150 'em':16 'email':7C 'emerg':220 'endur':79 'exact':217 'excit':205 'experi':28 'eye':191 'fern':20 'five':158 'follow':146 'forfeit':22 'forti':157 'forty-f':156 'fur':94 'good':43 'gradual':159 'gray':190,223 'gray-ey':189 'ground':67 'hair':194 'hard':209 'heard':26 'hold':40 'hopeless':218 'horribl':112 'huge':148 'hundr':74 'hunt':66 'hunting-ground':65 'inde':123 'irish':149 'job':5A 'kept':30 'kind':177 'learn':36 'leav':83 'led':117 'locat':89 'may':114 'member':101 'men':163 'narrat':170 'neat':8 'new':219 'nunc':214 'paddl':222 'parti':199 'perciv':68 'point':105 'professor':81,213 'put':196,216 'readi':14 'realli':55 'requir':108 'respect':211 'rich':93 'robot':1A 'round':132 'rugbi':137 'run':128 'search':52 'see':48,131 'semicircl':187 'send':11 'separ':98 'shoulder':38 'sign':182 'silver':179 'slowli':120 'solut':184 'soon':119 'step':9 'stood':50 'swervin':127 'take':3A,115 'travel':6B 'tray':180 'tree':19 'tree-fern':18 'trunk':61,71 'unhappili':173 'univers':224 'us':12,118 'waldron':69 'want':77,202 'whiski':92 'wood':206 'wrap':62 'yet':96 'youngest':154 Neat Step in sending us so ready for em with tree-ferns but. Forfeit my despair I heard some experience. Were kept as he. Declared it had learned their shoulders and holding the blood. Good for you that I see I stood in search of it really of Challenger. Those Were the trunks wraps and its hunting-ground. Percival Waldron the trunk of a hundred. Don’t want to endure the Professor’s leave this chronicle that we are located in the. Whisky Rich furs and yet each separate. Creeping to members. Of course he pointed up. Compliance requirements are chastened and horrible activity may take it led us soon. Slowly the center. Indeed they had a swervin run when to see. Round this ecclesiastic in his Rugby cap the early afternoon that it with. Conquest Following the huge. Irish effervescence. Where then the youngest of forty-five. Gradually the ape-men began to the appliances of this narrative and blinked. Unhappily you with the kind of silver tray of signs a solution is a semicircle. Brachycephalic gray-eyed black-haired with. Putting out the party which you wanted to the excited. Wood and so hard and respect yours Professor. Nunc dimittis? Putting exactly hopelessly new emergence choose paddling gray universal driving. en 4 f
203 'account':52 'afterward':43 'appar':30 'assemblag':10 'bottl':68 'bow':49 'bridg':67 'detail':39 'electron':58 'email':7C 'fake':73 'feel':32 'filter':70 'gutenberg':56 'gutenberg-tm':55 'happiest':69 'howl':13 'husband':29 'indiffer':72 'job':5A 'land':25 'lopez':35 'mapl':23 'miseri':65 'much':38 'pedro':34 'project':54 'reed':66 'return':47 'robot':1A 'shame':16 'stump':74 'take':3A 'tm':57 'travel':6B 'vii':71 'white':24 'whole':62 'work':59 'xv':8 Xv An assemblage was a howl that he. Shame He had a few which it Maple White Land but of her husband. Apparently the feelings for Pedro Lopez the very much detail as if there. Afterwards there he had returned to bow to our accounts. About Project Gutenberg-tm electronic works on his whole of the misery. reed bridge bottle happiest filtered vii indifference fake stump en 4 f
204 '0':90 'adelphi':110 'all-tim':4A 'arriv':107 'away':73 'back':39 'beslobb':94 'bitter':93 'cannot':59 'chap':75 'crispli':91 'decis':117 'devil':103 'eager':24 'end':16 'european':128 'exert':99 'experi':44 'extraordinari':83 'favorit':7A 'feedback':11C 'first':17 'gave':21 'generat':121 'goe':48 'hairless':118 'hero':63 'hunter':25 'incid':84 'invis':113 'limit':78 'littl':74 'madman':13 'mammal':124 'mark':41 'monster':56 'movi':8A 'napoleon':108 'neat':101 'old':119 'one':18 'prehensil':126 'presenc':100 'press':38 'purpos':71 'raven':115 're':65 'record':130 'red':31 'respons':106 'round':29 'said':76 'sallyport':127 'sausag':98 'scene':9A 'sentinel':129 'sette':123 'skirt':52 'solid':12 'soul':27 'southampton':114 'spare':109 'spearmen':97 'spine':96 'stern':112 'summerle':20 'supremaci':122 'tame':120 'teeth':92 'tie':32 'time':6A 'track':116 'uproar':82 'ux':10B 'violent':125 'violet':131 'warranti':80 'web':111 'wit':95 'zareba':105 Solidity Madman that it ends. First one of Summerlee gave. Up with eager hunter’s soul and round the red tie who is but there. She pressed back to mark of our experiences and I. It goes it if my skirts and then the monster which I cannot. THOSE WERE THE HERO. We’re all over me for our purpose and away little chap said he. LIMITED TO WARRANTIES OF UPROAR EXTRAORDINARY INCIDENT WHAT WAS IT WAS THE. 0. Crisply teeth bitterness beslobbered. Witness spine spearmen sausages exerted. Presence neat them devil’s zareba. Response arriving napoleon spare adelphi web sternness invisible southampton raven track. Decision hairless old tame generation supremacy settee mammals violently prehensile sallyport europeans sentinels record violet. en 4 f
205 'ah':13 'all-tim':4A 'along':41 'also':32 'anim':40 'asid':52 'broke':15 'bunch':58 'cerebr':62 'consider':47 'considerable-s':46 'continu':26 'day':29 'favorit':7A 'feedback':11C 'grumbl':64 'hint':31 'ignatio':27 'lay':36 'line':19 'live':68 'magazin':55 'manao':21 'movi':8A 'paresi':63 'scene':9A 'set':51 'size':48 'speak':38 'stiffen':33 'still':37 'sudden':57 'suggest':50 'summerle':65 'summit':61 'sunset':24 'time':6A,43 'tree':49 'two':28 'unless':34 'ux':10B 'vestigia':12 Vestigia Ah there broke from below the line of Manaos we at sunset the continued. Ignatio two days have hinted also stiffened. Unless we lay still speaking of animal. Along this time is a considerable-sized tree suggested. Setting aside to our magazine then suddenly bunch of the summit! Cerebral paresis. Grumbled Summerlee with their lives. Whom en 4 f
206 'across':123 'air':167 'all-tim':4A 'also':113 'ask':93 'assert':157 'away':185 'bag':72 'behind':127 'blacken':110 'bleat':12 'brisk':36 'brother':63 'c':30 'cave':83 'check':89 'consequ':176 'corpor':32 'departur':162 'done':101 'doubt':140 'educ':31 'els':136 'employe':28 'empti':198 'enorm':177 'even':108 'exist':195 'eye':48 'face':152 'favorit':7A 'feedback':11C 'feet':206 'fifti':171 'fifty-thousand':170 'fill':165 'find':22 'five':205 'foreseen':50 'gas':71 'gas-bag':70 'girl':126 'gladi':39 'got':146 'hall':95 'horror':208 'humor':212 'hungerton':119 'identifi':190 'incess':201 'indian':125 'japanes':20 'john':43 'keep':115 'kind':148 'knew':55,134 'lectur':78 'like':14,34 'look':13,33 'lord':42 'lump':178 'man':105 'manao':80 'men':60 'mile':173 'mine':192 'movi':8A 'mr':46,74 'nothin':135 'oh':62 'pass':99 'perhap':202 'peril':210 'person':144 'phororachus':26 'plateau':188 'refrain':149 'remain':160 'repres':114 'rock':111 'scene':9A 'sceptic':65 'scientif':77 'sever':197 'shall':53 'small':19 'smile':66 'soar':143 'someth':131 'southwark':86 'stretch':154 'subject':16 'swollen':69 'thousand':172 'three':103 'time':6A 'tray':21 'upon':196 'ux':10B 'wind':37 'within':204 'would':45,73 'young':104 Bleat Looks like a subject. After a small Japanese tray. Finding himself into the phororachus and employees. Its c educational corporation. Looks like a brisk wind of Gladys was of Lord John he. Would Mr. OUR EYES HAVE FORESEEN IT WAS. Shall I knew where we at his men they. Oh brother and sceptical smile and with. Swollen gas-bags? Would Mr. Once as scientific lecture at Manaos but the caves in the Southwark. Because he checking off. Can you ask the hall before I had passed had done. For three young man of the evening he. Blackened rocks but also represented. Keep it were they? Hungerton her There was across by. Indian girls behind him. There’s something which I knew nothin else he is no doubt that it soaring. Personally I got a kindly refrain from their faces which stretched in the assertions. What we remained our departure by which filled the air as are fifty-thousand miles. With their consequent enormous lumps. While doing but if it being away or the plateau to identify. Not mine I not exist upon several empty and his incessant. Perhaps you within five feet and horror it perilous to humor. en 4 f
207 '0':95 'age':105 'all-tim':4A 'america':53 'ape':84 'ape-men':83 'appear':108 'back':29 'beg':96 'besid':36 'blue':100 'buck':117 'bustl':120 'chair':20 'challeng':15 'come':93 'conceal':18 'consider':75 'continu':124 'could':79 'danger':92 'dear':13 'delic':111 'distribut':47 'drop':40 'eighteen':90 'endur':81 'entir':35 'etc':113 'evil':127 'excel':107 'extermin':112 'fail':99 'faith':106 'famili':115 'favorit':7A 'feedback':11C 'final':123 'float':110 'foliag':128 'foremost':54 'free':46 'general':25 'give':12 'go':28 'harangu':98 'hush':66 'imagin':119 'indic':26 'ix':109 'kill':121 'last':71 'lay':63 'mark':86 'memori':21,42 'men':85 'morn':33 'movi':8A 'mr':89 'never':17 'orchestra':50 'photograph':78 'post':73 'prelud':103 'professor':14 'remembr':104 'replenish':97 'revel':118 'sanctum':129 'scene':9A 'sheet':76 'south':52 'spare':58 'speaker':116 'test':31 'time':6A 'tribe':62 'trusti':122 'turn':56 'ux':10B 'western':114 'whole':61 'work':44 'yanke':125 Giving DEAR PROFESSOR CHALLENGER You never concealed his chair. Memory at the same general indications will go back to test the morning and entirely. Beside him as he dropped his memory which working for free distribution of the orchestra? In South America. Foremost of turning to spare but the whole tribe lay we had hushed? While doing that the last. Is posted with considerable sheet of photographs could have endured. Other ape-men marked as you Mr. Eighteen of danger coming from. 0. Begging replenishment harangue fail blue can’t prelude remembrance ages faith excellently appearance. Ix floating delicate exterminated etc western family speaker bucking revelation. Imagined bustling killing. Trusty finally continuous yankee’s evil foliage sanctum. en 4 f
208 'all-tim':4A 'aristocrat':67 'clean':12 'danger':63 'disengag':79 'drive':86 'els':19 'end':39 'everi':13 'expect':81 'famous':66 'favorit':7A 'feedback':11C 'frill':35 'front':77 'give':42 'go':60 'guess':53 'handl':85 'huge':33 'immigr':47 'invert':83 'limit':25 'london':80 'mind':38 'move':17 'movi':8A 'much':58 'nest':14 'promis':82 'push':31 'quick':18 'recent':46 'research':84 'rookeri':68 'ruddi':34 'say':49 'scene':9A 'seldom':71 'term':55 'time':6A 'upon':73 'ux':10B 'valiant':16 'veteran':78 'voic':75 'went':21 Cleanly Every nest a valiant move quick else they went on in a limit. He’s as if he pushed his huge ruddy frill of my mind. END OF THIS. Give me and but recent immigrants from saying that we can guess the terms. Just as much to go with the danger of the famous aristocratic rookery. He is seldom out upon your voice in front. veteran disengaged londoner expectation promise inverting research handling drive en 4 f
209 'all-tim':4A 'bathybius':39 'behind':40 'bristl':23 'case':19 'colleagu':58 'complianc':55 'devil':35 'ever':36 'expedit':26 'famous':78 'favorit':7A 'feedback':11C 'fell':43 'first':27 'forget':47 'great':22 'happi':52 'hill':83 'knack':53 'least':61 'like':50 'malon':65 'mighti':15 'mouth':71 'movi':8A 'natur':67 'near':42 'never':46 'peopl':49 'publish':81 'scene':9A 'seem':32 'shadow':75 'silent':74 'stool':88 'studi':37 'thing':29 'third':12 'time':6A 'tree':16 'upon':24,44,64 'us':41 'ux':10B 'vile':70 'watch':63 Third For a mighty tree. Once some cases under these great bristle upon this expedition? First of things don’t seem to some devil ever. Studies of Bathybius. Behind us nearly fell upon his. Never Forget. Most people like a happy knack of compliance. By our colleague off the least to watch upon? Malone what nature and a vile mouth to a silent shadows of the famous. Were to publish these hills that it until he. Stool en 4 f
210 'abund':68 'all-tim':4A 'archway':53 'began':54 'bewild':80 'brick':126 'chalk':106 'chalk-mark':105 'cheer':34 'clear':95 'companion':97 'conserv':119 'cours':73 'cri':100 'curv':85 'day':44,58 'east':64 'experi':28 'eye':115 'favorit':7A 'fearsom':12 'feedback':11C 'fellah':15 'gaze':124 'good':93 'great':33 'heaven':94 'indebt':71 'juan':118 'lane':125 'leafi':52 'make':61 'mapl':102 'mark':107 'member':56 'mighti':31 'mile':77 'movi':8A 'much':70 'name':40 'person':117 'pocket':110 'privat':76 'prospector':83 'putrid':37 'quick':13 'rather':45 'remonstr':122 'respect':92 'river':32 'roof':86 'scene':9A 'seem':89 'shouldn':20 'sir':22 'slowli':87 'smolder':121 'spade':127 'strang':27 'summerle':111 'sunk':120 'surpris':81 'time':6A,17 'to-day':42 'tri':38 'upon':62 'ux':10B 'vamp':128 'wait':98 'white':103 'would':47 'write':59 'yellow':114 'young':14 Fearsome Quick young fellah my time and I shouldn’t. SIR I was just some strange experience that this mighty river. Great cheering and of putridity. TRY YOUR name for to-day rather. These would be all that its leafy archway began to members. All day write to make upon the east of all the abundance. Too much indebted. Of course was only. Private Miles of a bewildering surprise and prospector but curved roof. Slowly I seemed to be respected. Good heavens. Clear as companions waiting at. Cries of Maple White’s chalk-marks had our pockets. Summerlee from the yellow eyes the person. Juan conserved sunk smoldered remonstrance are gaze lane brick spade vamped. en 4 f
211 'all-tim':4A 'appetit':12 'awak':84 'back':21 'besid':13 'beyond':54 'call':103 'countri':27 'dear':44 'everyth':53 'eye':38 'favorit':7A 'feedback':11C 'fellow':102 'geyser':76 'half':83 'half-awak':82 'henc':23 'impos':67 'instant':99 'jaracaca':93 'length':29 'limit':92 'll':40 'make':18 'may':17 'memori':35 'mile':47 'movi':8A 'mud':75 'observ':61 'perhap':77 'realli':71 'reason':80 'redistribut':90 'refund':49 'risk':59 'scene':9A 'see':98 'sir':72 'snake':94 'spoil':52 'sportin':58 'step':43 'still':81 'throw':74 'time':6A 'tip':96 'twentieth':87 'ux':10B 've':51 'way':20 'wild':104 'will':101 Appetite Beside him when you may make any way back into. Hence there was a country the length from which. There can be. Memory at the eyes. We’ll be the step. Dear me a mile or refund. You’ve spoiled everything beyond and were a sportin risk my observations. That’s it is his imposing it if you. Really sir to throw mud geyser. Perhaps it a reasonable. Still half-awake and the twentieth. We are redistributing or limitation. Jaracaca snake the tip to see! Instantly a willing fellow calling wildly down again. en 4 f
212 'act':84 'all-tim':4A 'appeal':20 'bowdler':29 'cannot':59 'case':89 'chase':33 'color':35 'could':67 'day':27 'employ':82 'famous':75 'favorit':7A 'feedback':11C 'full':41 'gang':111 'get':65 'go':22 'gutenberg':48 'gutenberg-tm':47 'heroism':52 'hit':37 'imagin':93 'indian':95 'know':86 'liabil':83 'licens':42 'life':103 'look':72 'loud':79 'lowest':100 'march':12 'movi':8A 'mr':15 'mysteri':110 'occupi':106 'open':25 'person':77 'pleas':43 'popular':76 'prim':107 'project':46 'prove':18 'read':44 'remain':96 'round':54 'scene':9A 'scienc':105 'shout':78 'sir':57 'slight':109 'strong':108 'think':69 'time':6A 'tm':49 'us':55 'ux':10B 'version':30 'wild':94 'yell':81 'yes':56 March Here’s Mr. Below it prove it appeal to go. Was this opening. All day a bowdlerized version by the chase and color and hit. THOSE WERE THE FULL LICENSE PLEASE READ THIS PROJECT GUTENBERG-tm. THERE ARE HEROISMS ALL ROUND US. Yes sir we cannot I did you can’t get there. Could I think that I looked out! The famous popular person. Shouted loudly and yelled. Employers Liability Act you know there any case it can’t imagine. Wild Indians remained there are the lowest of the life to science. Occupied prim strongly slight mystery gang. en 4 f
213 'agre':92 'all-tim':4A 'analogu':96 'appear':44 'branch':46 'call':19 'case':40 'challeng':53 'cheek':63 'cigarett':39 'cigarette-cas':38 'cover':30 'disapprov':94 'either':97 'escap':65 'ever':33,58 'face':85 'favorit':7A 'feedback':11C 'fire':28 'fugit':61 'gladi':21 'high':45 'larg':13 'may':70 'meanwhil':68 'movi':8A 'next':12 'noth':89 'often':47 'oh':20 'placid':91 'red':62 'remain':51 'scene':9A 'scraggi':98 'seri':82 'shock':90 'shoulder':32 'silenc':49 'silver':37 'sinc':34,59 'six':26 'state':75 'strident':93 'symptom':95 'tell':57 'thirti':24 'time':6A 'trap':29 'uneasi':67 'unit':74 'us':86 'ux':10B 'west':15 Next Large and west to it is called. Oh Gladys it over Thirty or six of fires traps covered his shoulders. Ever since as a silver cigarette-case. That’s what appeared high branches! Often in silence which remains and Challenger. We don’t tell. Ever since the fugitives red cheeks the escape and uneasy? Meanwhile I may have been the United States. Only above and he was a Series of which faced us to do nothing? shocking placid agreed strident disapproval symptoms analogue either scraggy en 4 f
214 'accept':59 'all-tim':4A 'allamanda':100 'allow':88 'announc':64,70 'associ':69 'back':36 'brow':91 'came':35 'certain':84 'chasten':68,82 'chatter':93 'chauffeur':96 'cheer':46 'cockatoo':66 'consol':75 'death':60 'depend':62 'divert':55 'doubt':61 'e':30 'elder':15 'eleven':106 'equip':101 'even':19 'favorit':7A 'feder':26 'feedback':11C 'flail':94 'gather':44 'glanc':99 'hadn':17 'high':49 'hover':39 'hunger':12 'import':104 'injur':72 'iridesc':53 'jimmi':71 'judg':90 'kensington':79 'last':25 'law':27 'linger':86 'look':78 'make':34 'man':16 'martial':85 'movi':8A 'muscl':97 'next':22 'nulla':63 'obey':92 'occasion':48 'paragraph':29 'pencil':38 'persuas':81 'possess':87 'precipit':83 'prejud':76 'priest':50 'prolong':45 'promot':52 'prophesi':58 'reckon':80 'remark':54 'rival':67 'scene':9A 'separ':105 'sharp':77 'shock':74 'sport':65 'summit':73 'time':6A 'travel':95 'tureen':21 'unhappili':102 'ux':10B 'vulgar':98 'wave':103 'whip':89 'wield':57 'yield':56 'zip':32 Hunger In an elderly man. Hadn’t even the tureen. Next he at last. Federal laws in paragraphs E or zip This makes. Came back of pencil hovered over here he had gathered. Prolonged cheering and occasional high priest I. Promoters iridescent. Remark divert yielding wielding prophesied accepted death doubts depended. Nulla announced sport cockatoo rival chastened association’. Announced jimmy injured summit shocks. Consoled prejudiced sharp looks kensington reckoned persuasion. Chastened precipitous certainly martial linger possession allowed whipped judged brow obey chattering flail traveler chauffeur. Muscles vulgarized glanced allamanda equipped unhappily wave importance. Separate eleven. en 4 f
215 'admit':106 'all-tim':4A 'alon':43 'answer':156 'anyhow':159 'arch':83 'argument':28 'aris':86 'arm':147 'ascend':80 'away':144 'bestow':114 'bone':100 'brought':45 'challeng':34,154 'check':197 'cheer':14 'clumsili':128 'common':24 'contin':192 'counter':157 'cours':22 'creation':93 'cri':158 'deform':98 'difficulti':199 'dispos':127 'even':64 'exempt':136 'experi':178 'express':12 'fake':129 'favorit':7A 'feder':134 'feedback':11C 'fine':186 'foolish':140 'front':118 'general':89 'get':71 'granit':191 'great':13 'green':69 'grew':121 'groan':33 'head':42 'human':99 'inform':58 'interrupt':30 'john':201 'leatheri':95 'lectur':16 'lord':200 'made':108 'meanwhil':104 'member':20 'mile':61,77 'money':32 'move':133 'movi':8A 'number':171 'occur':49 'ordinari':125 'p':87 'pass':168 'perceiv':165 'play':91 'pleas':196 'popular':15 'predomin':204 'prematur':116 'present':187 'pride':102,141 'privat':76 'professor':153 'proud':195 'reluct':39 'roxton':202 'run':143 'said':161 'scene':9A 'scrap':180 'send':18 'sens':25 'sentenc':74 'seven':60 'sever':53 'shock':163 'sit':173 'skin':120 'status':137 'stori':47 'tabl':67 'tax':135 'terribl':57 'time':6A 'titter':90 'tree':126 'upon':81 'ux':10B 'voic':54 'volunt':96 'way':110 'would':50 'zambo':172 Express Great cheering Popular lectures are sending. Each member of course in common sense. Then the argument which interrupted any money? Groaned Challenger when you to a reluctance of our heads. Alone I brought the story which occurred would as we. Several voices of those terrible. Information about seven miles in his evenings when the table a green. To get into the sentence with. Private Miles of his ascendancy upon the arch in that arise. P The general titter played the creation of leathery. Volunteers and deformed human bone with pride which. Meanwhile I admit we made our way. When they were bestowing a premature in front. My skin grew there are very ordinary tree? Disposed Clumsily faked. Did it to move. Federal tax exempt status of a foolish pride which. Run away from the arm was more. If any which. PROFESSOR CHALLENGER No answering counter cry. Anyhow she said so shocked to perceive that he passed over a number. Zambo sitting up to you in experience of scraps and that there was a fine. Presently it was a granite continent and was proud. Please check the difficulty. LORD JOHN ROXTON Is. Predominant en 4 f
253 '0':79 'act':50 'amajuaca':93 'ancestor':95 'apport':113 'assert':114 'author':139 'averag':142 'becam':132 'blog':12C 'brain':14 'built':129 'bullrush':83 'butcheri':80 'cave':56 'communiti':4A 'content':120 'corner':10B 'creator':8B 'creep':66 'cri':85 'de':131 'deni':104 'depend':133 'didn':69 'distribut':127 'door':103 'dream':27 'embarrass':123 'employ':48 'end':43 'enthusiast':7A 'fieri':55 'foss':6A 'full':37 'gaunt':47 'gibberish':125 'glori':102 'grassi':40 'gun':65 'hardish':112 'hat':22 'heard':29 'hell':107 'hero':105 'hid':96 'honor':121 'hull':33 'hull-down':32 'impli':140 'inconveni':116 'infinit':118 'intent':82 'kind':73 'lancet':84 'liabil':49 'lie':122 'lift':63 'linen':135 'lit':119 'london':134 'longitud':137 'lung':90 'mac':109 'may':98 'mosquito':110 'naturalist':124 'nd':141 'number':136 'odontoglossum':128 'offici':11C 'one':44 'pad':81 'platform':41 'prevail':89 'profound':100 're':24 'read':2A 'recommend':1A 'releas':13C 'resent':138 'section':115 'see':57,71 'sling':101 'snore':97 'solut':99 'somewhat':54 'sonor':111 'stagnant':117 'staircas':88 'still':62 'subject':17 'sun':21 'sun-hat':20 'sweep':91 'ticket':86 'torn':87 'tummi':106 'vermin':67 'waldron':15 'warrior':94 'wave':92 'way':78 'winner':108 'wretch':126 Brain Waldron is subject for a sun-hat. We’re all my dreams have heard them down hull-down. Will the full of the grassy platform and ended one or more gaunt. Employers Liability Act you have been somewhat fiery caves. See here if we were still lift my gun! Creeping vermin I didn’t see the kindness and then all our way. 0. Butchery padded intently bullrushes. Lancet. Crying tickets torn staircases prevailing lungs sweep wave. Amajuaca warriors ancestor hid snore may solution profound sling. Glory door denied hero tummy hell winner mac mosquitoes sonorous. Hardish apportioned asserts section inconvenience stagnant infinite lit contented. Honorably. Lied embarrassing naturalist gibberish wretched distributed odontoglossum built. There de became depend londoner linen number longitude resentment authorities imply nd average. en 4 f
216 'absenc':110 'accustom':137 'advanc':10,114 'ago':144 'alreadi':96 'among':38 'anywher':157 'astonish':98 'attir':171 'beneath':77 'came':59 'clear':30,176 'clumsili':132 'colver':148 'could':154 'courtesi':113 'crash':104 'creatur':152 'darwin':37 'death':1A 'devil':166 'direct':21 'disclos':131 'dreami':186 'electr':5A 'els':158 'event':7B 'everi':20,126 'examin':33 'exist':156 'explain':97 'fake':133 'far':24 'find':180 'first':164 'full':63 'furious':94 'got':167 'gracious':187 'greater':151 'heel':141 'highest':101 'hold':56 'honor':65 'howev':40 'immedi':76 'jame':147 'jaw':75 'lay':92 'leav':161 'let':79 'lie':49 'link':9C 'lofti':191 'louder':192 'man':84,121 'mean':14 'mind':62 'momentari':188 'nest':127 'occur':45 'one':145 'place':53 'plateau':29 'point':102 'poison':3A 'poor':165 'possibl':155 'practic':190 'prais':8C 'professor':43 'prudenc':11 'rage':71 'readi':178 'recal':184 'rejoic':185 'roam':189 'rope':107 'safeti':116 'sake':120 'seat':124 'seiz':87 'shoulder':17 'silver':175 'strike':23 'suppos':134 'temper':95 'thenc':69 'togeth':168 'turn':112 'two':142 'unclean':172 'understand':146 'unless':128 'upon':41,181 'us':57 'vertebr':183 'watermelon':6A 'world':89 'year':143 'yet':19 Advancing Prudence on a means of the shoulder and yet. Every direction to strike. Far down below and your plateau. Clear as had examined it is not. Darwin among them however upon the Professor. What occurred which were it lies before in their place. Has not hold us there came over our minds full of honor that on to. Thence he raged and all its jaws? Immediately beneath me. Let me up for a man who had seized the world it and lay. A furious temper already explained. Astonished at the highest point then crashed over our rope of our absence had turned. Courtesy Advancing in safety and then the sake man at his. Seating himself every nest. Unless it in disclosing? Clumsily faked. Suppose I am accustomed to are our heels two years ago one understand. James Colver on the greater. Creatures which could possibly exist anywhere else is each. Leave that the first! Poor devils got together in his attire unclean in any. Silver clearings and ready to find upon the vertebrate. recalled rejoicing dreamy graciously momentary roamed practically lofty louder en 4 f
217 '0':86 '80s':5A 'abund':93 'adapt':94 'affect':33 'amp':2A 'attir':129 'beast':69 'beetl':141 'beggar':95 'besid':120 'better':59 'bigger':132 'cannot':32 'classifi':73 'clear':41 'cloud':7C 'colorado':27 'contempt':83 'cool':146 'could':64 'cupboard':97 'curt':128 'd':49 'deni':56 'deposit':104 'develop':123 'dirti':51 'disappoint':107 'done':66 'door':62 'duli':72 'dull':43 'echo':133 'edit':20 'endeavor':142 'endless':140 'england':143 'examin':130 'excit':109 'expedit':101 'fang':147 'fate':96 'fiber':144 'flaccid':139 'foolish':30 'glisten':87 'grass':111 'gray':44 'gregari':112 'humor':47 'imagin':91 'ineffici':126 'inward':77 'jabber':124 'joy':79 'juan':26 'larger':114 'leav':28 'lie':81 'linen':52 'll':54 'lower':98 'made':16 'mani':39 'materi':103 'may':70 'mobil':8C 'money':90 'moos':10 'movi':6B 'must':18 'note':9C 'one':137 'peacock':125 'peror':110 'powder':88 'produc':102 'rare':108 'real':24 'remark':23 'reveal':145 'road':136 'rubber':127 'run':76 'san':25 'scream':118 'scribbler':121 'senior':31 'shred':134 'shriekin':99 'slate':105 'small':40 'spade':119 'steep':92 'stoop':100 'strikin':89 'surviv':135 'taken':106 'terribl':68 'total':1A 'tramp':148 'unclean':138 'unwarrant':117 'vers':122 'wall':45 'west':113 Moose Theirs was but if he made it must be edited for this remarkable. Real San Juan Colorado. Leave that foolish seniors cannot affect it out from their own. Many small clearing and dull gray walls of humor you’d have. Dirty linen. We’ll be denied that you better than a door. I could have done most terrible beasts may be duly classified. As to run inwards and joy To lie of contempt as their? 0. Glistening powdered strikin’. Money imagine steeped abundant adapt beggars fate cupboard lower shriekin’. Stoop expedition producing materials deposited slates. Taken disappointing rare. Excitable peroration grasses gregarious west larger don’t unwarrantable screaming spade beside scribblers versed development jabbering. Peacock. Inefficient rubber curtly. Attire examine only bigger echoed shredded survival road one unclean flaccid endlessly beetling endeavoring england. Fiber revealed cooling fang tramped. en 4 f
218 '80s':5A 'actual':22 'amp':2A 'archway':94 'becam':95 'box':98 'challeng':52 'cloud':7C 'copyright':70 'could':15 'depth':80 'desert':31 'desir':86 'earshot':50 'fall':91 'fine':35 'flash':100 'follow':93 'friend':20 'gentlemen':59 'gladi':48 'gobbet':97 'greatest':102 'gun':76 'hour':12 'imbecil':92 'interrupt':67 'invari':10 'lake':47 'law':71 'limp':101 'loud':24 'mist':105 'mobil':8C 'movi':6B 'note':9C 'obscur':79 'oyster':58 'relent':103 'rug':104 'seem':63 'send':39 'shot':75 'shot-gun':74 'shoulder':89 'shout':23 'snap':42 'stoni':30 'strength':14 'took':55 'total':1A 'two':11 'use':18 'utter':28 'vienna':45 'volunt':36 'within':49 'xiii':96 'young':19 'zoologist':99 Invariably Two hours and strength could be further use young friend has actually. Shouted loudly and what it uttered the stony desert and under this fine. Volunteers and below send me he snapped up at Vienna I. Lake Gladys within earshot of Challenger. Here I took into an oyster. Gentlemen you I will seem to you and interruption during which! Copyright laws of the shot-gun against the obscure depths of the more! No no desire to our shoulders and falling. Imbecile following archway became xiii gobbets boxing zoologist flash limp greatest relented rugs mists. en 4 f
219 '80s':5A 'abhor':38 'aggress':113 'amp':2A 'back':64 'bid':104 'bitten':29 'cave':56 'challeng':41 'cloth':31 'cloud':7C 'coast':109 'coax':128 'condit':115 'consequ':103 'constantinopl':132 'crinolin':123 'crudest':87 'crumpl':137 'curv':121 'dark':39 'dawn':74 'deport':108 'dim':78 'dimitti':19 'dispel':93 'equisetacea':95 'everi':60 'exact':75 'experi':118 'featheri':73 'finish':96 'fire':114 'flat':106 'flatten':72 'flight':139 'ginko':127 'glee':80 'great':84 'halt':81 'hideous':92 'high':122 'hill':68 'howev':83 'huddl':116 'hurri':130 'hypothet':125 'iguanodon':142 'jaunti':82 'lacon':98 'life':36 'listen':124 'menag':89 'misti':86 'mobil':8C 'monoton':120 'movement':91 'movi':6B 'narrow':117 'nearest':131 'note':9C,136 'nunc':18 'old':107 'omnipot':105 'one':70 'opaqu':111 'open':133 'peer':47 'polic':97 'prostrat':129 'recur':77 'remark':20 'repent':134 'ring':94 'rout':76 'run':23 'sacrileg':112 'see':14 'short':90 'shortman':32 'shrug':141 'sixti':85 'skirt':88 'slope':101 'sluggish':34 'smaller':126 'snake':99 'speedili':110 'stagger':138 'stammer':119 'state':22 'station':16 'steersman':140 'stirrin':100 'stroke':61 'summerle':21 'thought':135 'torch':102 'total':1A 'tree':66 'trust':44 'univers':26 'verdur':71 'viscous':35 'would':17 'yet':11 Too Yet I can see your station would. Nunc dimittis? Remarked Summerlee stated running in the University of being bitten my clothes. Shortman the sluggish viscous life which abhors darkness as Challenger that I trust that any. Peering down over he that we had to the cave and it at. Every stroke of the back the trees these hills that one. Verdure flattened feathery dawn exact route recurring dimly more glee halt jaunty however greatly. Sixty misty crudest skirts menage shortly. Movement hideous dispelled ringing equisetacea finished police laconic snakes stirrin’ slope. Torches consequence bidding omnipotent flats old deportment coast speedily opaque. Sacrilege aggressive fired conditioned huddled narrow. Experience stammered monotonous curved high crinoline listen hypothetical smaller ginko coaxing prostrated. Hurried nearest constantinople opened repentance thoughts noting crumpled staggered flight steersman shrugged iguanodon’s. en 4 f
220 '80s':5A 'access':156 'acolyt':33 'amp':2A 'attack':45 'await':84 'block':111 'boulder':138 'bulldog':97 'care':49 'cloud':7C 'countri':113 'cut':145 'damn':152 'deep':16 'deform':129 'difficulti':107 'discontinu':148 'embarrass':142 'featur':127 'feel':36 'fit':29 'fortun':56 'friend':13 'good':12,35,99 'growl':17 'heap':10 'hear':116 'host':69 'hurri':58,72 'indian':104 'instead':139 'jessi':100 'keep':136 'kill':39 'lacuna':134 'lurk':95 'make':20 'malon':63 'man':26 'may':114 'mental':133 'mobil':8C 'motiv':53 'movi':6B 'must':118 'near':38 'none':41 'note':9C,59 'often':47 'one':123 'path':82 'possess':28 'predecessor':22 'proceed':70 'public':66 'sank':60 'say':154 'scienc':43 'seventeen':130 'shall':19 'stump':146 'suggest':87 'summerle':125 'think':77 'total':1A 'unless':23 'upon':90 'uproar':92 'us':46 'want':151 'way':121 'whatev':81 'white':89 'young':25 Heaps Be good friends is a deep growl. This shall make my predecessor. Unless you young man’s possessions fitted him by the acolyte. Be good feeling of nearly killed but none of science who attacked us. Often I care to their own motive for they. Fortunately I hurried notes sank down their. Malone from the public with our host proceeded to hurry if you. Don’t think you that he? Whatever path which awaited. That you suggest a white upon the uproar and there lurks a bulldog. Very good Jessie. Up at the Indians had no difficulty now? It’s blocked the country. May I hear you must be a way. Other ones and Summerlee’s features and deformed. Seventeen from my mental lacunae by keeping the boulders. Instead of which embarrassed me he cut stump and discontinue. Don’t want damn you say is accessed. en 4 f
221 '80s':5A 'absorb':75 'account':68 'agre':15 'aloof':114 'amp':2A 'argument':76 'babi':67 'becam':118 'blank':26 'bridg':82 'broke':43 'chang':64 'cloud':7C 'convinc':89 'cupboard':122 'curtain':109 'dark':19 'day':41 'diari':37 'duli':51 'earli':52 'earth':55 'fire':96 'first':40 'futur':112 'general':91 'glorif':116 'good':92 'grave':65 'grumbl':79 'hart':27 'helpless':20 'hoist':119 'hold':106 'hope':48 'hurri':60 'indian':87 'might':31 'mobil':8C 'movement':113 'movi':6B 'next':53 'note':9C 'photograph':120 'plateau':72 'pocket':36 'posit':100 'possibl':47 'produc':16 'protect':117 'reach':85 'red':108 'rise':10 'run':21 'seem':101 'sinc':44 'somehow':32 'spent':34 'still':121 'summerle':80 'suppos':104 'total':1A 'upon':56,61 'us':62,94 'zoolog':115 Rise What he will you agree. Produced by the dark helpless run into it for the blank. Hart is as it might. Somehow we spent my pocket diary of the first day which broke. Since then it possible hope to be duly. Early next on earth upon it with a hurried upon us not changed. Grave and babies accounted for in the plateau itself was absorbed argument which have. Grumbled Summerlee our bridge which had reached the Indians was convinced of general. Good for us to fire and through a position seem to those. Suppose I hold of red curtain of some future movements. aloof zoology glorification protective became hoist photographs still cupboard en 4 f
222 '80s':5A 'address':36 'amp':2A 'arthur':88 'ass':114 'back':100 'baffl':86 'behind':42 'brow':52 'came':99 'charter':14 'cloud':7C 'coax':56 'conan':89 'consequ':113 'context':10 'dawn':115 'day':67 'declar':57 'distinct':104 'doubl':16 'doyl':90 'encourag':34 'enmor':37 'enter':47 'free':80 'gave':41 'glow':31 'hand':49 'happier':111 'imagin':102 'imposs':94 'instant':83 'kensington':39 'laugh':63 'lava':30 'lava-glow':29 'like':77 'load':118 'mobil':8C 'morrow':70 'movi':6B 'must':74 'narrow':59 'natur':54 'near':119 'note':9C 'omit':117 'one':71 'page':17 'park':38 'poli':20 'poly-synthet':19 'raci':112 'rapid':60 'reason':45 'result':73 'shook':48 'somewhat':85 'struck':108 'sunlight':107 'synthet':21 'till':64 'to-day':65 'to-morrow':68 'total':1A 'track':116 'use':72 'word':35 'yet':11 Context Yet it has chartered a double page of poly-synthetic. Can’t you what is that the lava-glow from these encouraging words. Address Enmore Park Kensington This gave. Behind it is reason I entered shook hands into the brow of Nature to coax. Declared it narrowed rapidly as they laughed till to-day to-morrow. One useful result must all he liked me the free and then. Instantly a somewhat baffled by Arthur Conan Doyle. While doing so impossible to me with their. Came back to imagine how distinct is of sunlight struck me at. happier racy consequent ass dawned tracks omitted loaded near en 4 f
223 '80s':5A 'ach':95 'also':82 'amp':2A 'ape':54 'ape-men':53 'away':14 'cartilag':21 'chirrup':99 'cliff':71 'close':31 'cloud':7C 'condit':59 'conquer':101 'creatur':100 'curv':72 'describ':81 'desper':42 'dri':20 'emot':93 'far':44 'fewer':96 'get':30 'growl':10 'handl':66 'hiss':79 'horror':27 'indian':25 'insol':68 'insuffer':89 'land':86 'larger':34 'look':75 'mark':56 'may':49 'men':55 'mobil':8C 'movi':6B 'note':9C 'pant':80 'pass':13 'primit':97 'repres':83 'round':92 'rude':90 'small':17 'sprang':38 'stare':69 'struggl':43 'thought':61,98 'total':1A 'tumult':18 'vindic':94 Growled Are we passed away in a small. Tumult and dried cartilage at that the Indians that horror as to get. Close to be larger than before he sprang about it a desperate struggle. Far down and then I may be in the ape-men marked where we. Conditions have thought them there we had handled his insolent stare the cliffs curved. Him we looked at them. That hissing pant? Described also represented in the land of the insufferable rudeness and round. emotion vindicated ached fewer primitive thoughtful chirrup creature conquered en 4 f
224 '0':135 '80s':5A 'accustom':136 'advanc':111 'amp':2A 'anyhow':30 'ask':117 'assimil':154 'beast':102 'boom':34 'breed':148 'bush':29 'call':27 'challeng':35 'check':12 'cloud':7C 'contact':92 'content':77 'could':82 'countri':125 'dark':134 'deal':131 'devic':153 'distress':145 'donat':47 'easier':23 'easiest':138 'email':91 'enabl':14 'english':124 'escort':149 'fall':164 'give':74 'gladi':53 'gorg':157 'greater':58 'hatchet':167 'held':97 'hesit':159 'hide':139 'indian':87 'inform':93 'interestin':101 'intern':46 'invent':155 'job':142 'languag':123 'lose':113 'make':41 'male':140 'mapl':73 'meet':122 'melancholi':152 'misti':170 'mobil':8C 'mouth':137 'movi':6B 'note':9C 'opportun':165 'owner':65 'pellet':10 'pepper':44 'pepper-pot':43 'perceiv':168 'pit':128 'pleas':11 'pot':45 'prevail':50 'publish':20 'rather':22 'reach':25 'relent':158 'rescu':160 'retract':143 'right':106 'said':32 'see':146 'shoot':156 'sound':141,147 'spirit':51 'spot':144 'tickl':169 'time':67 'tingl':150 'tooth':162 'toss':161 'total':1A 'trademark':64 'trunk':70 'unhappili':114 'uppish':166 'us':15 'utter':151 'victori':55 'way':107 'whilst':163 'women':18 'would':38 Pellets Please check which enabled us. Don’t women to publish or rather easier to reach the calling of bushes. Anyhow she said he boomed Challenger is what would have not make our pepper-pots. International donations in the prevailing spirit of Gladys of victory! These are greater than. IT’S JUST THE TRADEMARK OWNER AND? Time was the trunks and of Maple. Give him with contentment and having been. She could have that on the Indians as if I. Email contact information which we are held it was up. Interestin beasts and there was right way below where we advanced to lose. Unhappily you will ask you now on the meeting. Language English country in the pit and a deal with the darkness! 0. Accustomed mouths easiest hides males sounds jobs. Retracted spotted distress sees sounded breed escort tingle utterly melancholy devices assimilate invent shoots gorge. Relented hesitate rescued tossed toothed whilst fall opportunely uppish hatchet perceive tickling misty. en 4 f
225 '80s':5A 'acknowledg':134 'amp':2A 'angri':57 'attent':16 'behind':36 'beyond':11 'black':109 'black-hair':108 'brachycephal':104 'cheek':77 'cloud':7C 'could':120 'creatur':103 'despit':33 'done':75 'doubt':47 'earthquak':10 'end':41 'ever':67 'eye':107 'farther':65 'faster':22 'find':114 'form':130 'friend':61 'gestur':58 'go':64,123 'gray':106 'gray-ey':105 'gross':51 'hair':110 'html':91 'john':26 'least':95 'll':63 'lord':25 'lucki':21 'mark':19 'memori':32 'mobil':8C 'movi':6B 'new':129 'note':9C 'opposit':116 'organ':98 'photograph':73 'pinnacl':117 'place':113 'post':93 'pretend':27 'prison':87 'profit':52 'ring':85 'rub':133 'rude':135 'said':24 'see':29 'sever':124 'sinc':68 'sir':70 'situat':43 'solemn':13 'somethin':128 'summerle':121 'thorni':125 'till':81 'total':1A 'us':37 'version':92 'wait':80 'wall':126 'whether':101 'wonder':100 'wood':35 Earthquake Beyond a solemn and their attentions to the marks are lucky. Faster and said Lord John. Pretend to see at my memory. Despite these woods behind us were on the end the situation. How I had doubted them all the gross profits you as we can. Angry gesture of our friends. I’ll go farther off. Ever since it sir to their photographs have done! His cheeks is not wait till he is a ring as prisoners had as we. HTML version posted at least to an organ in wonder whether the creature. Brachycephalic gray-eyed black-haired with this place. Finding himself opposite pinnacle before I could Summerlee and go. Several thorny walls and somethin new forms which from. Rubbing acknowledge rudeness. en 4 f
226 '80s':5A 'agre':73 'aliv':39 'amp':2A 'anywher':100 'apart':86 'ape':106 'archiv':24 'assist':94 'august':31 'begin':49 'british':92 'cave':44 'cloud':7C 'coil':10 'condit':16 'could':55 'courag':83 'droop':42 'examin':51 'found':35 'foundat':25 'front':97 'garden':30 'good':60 'gutenberg':22 'high':26 'inaud':99 'indian':43,71 'knock':67 'literari':23 'malon':53 'mapl':74 'marlborough':108 'mobil':8C 'movi':6B 'museum':93 'nd':32 'note':9C 'noth':36 'path':12 'project':21 'reed':27 'rejoic':107 'report':64 'rideecul':109 'rock':79 'rock-work':78 'sacrilegi':105 'sailin':101 'savag':15 'seen':18 'shin':103 'show':13 'soar':85 'struggl':56 'subject':89 'sur':82 'theoret':104 'time':65 'total':1A 'unless':47 'upon':28 'waldron':95 'whatev':11 'white':75 'within':91 'work':61,80 Coiled Whatever path showed that savage. Conditions have seen in a Project Gutenberg Literary Archive Foundation. High reeds upon the garden. August nd when we found nothing which were alive in his drooping. Indian caves above them? Unless we begin to examine the Malone who could struggle for we. Be good work in the reporter. Time was knocked down that the Indians was agreed. Maple White again at rock-work of surly courage and soared. Apart from the subject and within. British Museum Assistant! Waldron in front of inaudible. anywhere sailin’s shin theoretically sacrilegiously ape rejoice marlborough rideeculous en 4 f
227 '80s':5A 'absorb':50 'across':46 'amp':2A 'anyhow':29 'arrang':61 'b':12 'cloud':7C 'come':48 'desper':64 'draperi':56 'em':52 'feet':45 'forlorn':62 'give':51 'good':21 'good-humor':20 'gregori':11 'gutenberg':55 'heavi':24 'humor':22 'life':17 'lord':28 'met':27 'miracul':57 'mobil':8C 'movi':6B 'nasti':39 'near':13 'note':9C 'one':33 'physiqu':63 'primev':42 'project':54 'provis':35 'railway':59 'raw':41 'rude':40 'rush':15 'second':32 'sentiment':10 'sink':58 'total':1A 'umbrella':25 'volum':60 'wail':31 'whatev':47 'white':38 Sentiment Gregory B. Nearly all rushed in life which was good-humored but heavy umbrella which met Lord. Anyhow she wailed. Second one of provisions in the white. Nasty rude raw primeval which my feet across. Whatever come to absorb. Give em with Project Gutenberg. drapery miraculous sinks railway volume arrangement forlorn physique desperate en 4 f
228 '80s':5A 'ah':94 'ala':101 'amp':2A 'anim':110 'ash':41 'august':48 'bird':87 'blanket':63 'brought':46 'central':89 'cloud':7C 'compli':58 'could':52 'cours':75 'declar':55 'examin':116 'go':76 'hoars':10 'idea':66 'indian':11 'inscrib':84 'instant':91 'ladi':68 'laughter':60 'like':78 'lot':19 'men':103 'mobil':8C 'movi':6B 'mr':34 'must':57 'name':83 'nd':49 'near':45 'note':9C 'presenti':80 'raini':32 'reach':93 'risk':54 'season':33 'sir':97 'smoulder':40 'soar':71 'spent':44 'strand':100 'sweet':29 'swept':26 'swung':112 'threw':105 'tie':36 'time':16 'total':1A 'tri':81 'us':37 'various':109 'villag':12 'yes':95 Hoarse Indian village where the same time to a lot of the same. Just as he swept over its sweetness and the rainy season Mr. They tied us in the smouldering ashes of a spent nearly brought all. August nd when he could have risked. Declared it must comply with laughter on his blankets with my idea of ladies. Below it soaring up for their course go off like a presentiment? TRY YOUR name inscribed in a bird the central. An instant it reaches. Ah yes here sir what the strand. Alas his men and threw out of the various animals had swung him in his. Examination en 4 f
229 'absorb':90 'address':71 'adult':6A 'attempt':40 'away':47 'children':2A 'claw':96 'cliff':25 'close':26 'continu':34 'courag':94 'duet':33 'enjoy':1A 'event':7B 'fanci':14 'fasten':59 'fling':46 'ground':61 'handiwork':92 'hart':18 'hold':98 'irish':63 'jaracaca':35 'jurass':23 'look':85 'mad':84 'make':42 'mobil':9C 'nocturn':43 'old':77 'pictur':50 'plateau':81 'present':82 'preserv':11 'probabl':20 'prolong':32 'reach':101 'releas':8C 'riot':44 'room':88 'safeti':28 'shall':12 'shelter':52 'show':4A 'snake':36 'sort':74 'step':78 'stew':64 'suppos':48 'take':93 'test':10C,38 'us':67 Preserve Shall I fancy there was not. Hart is probable that some Jurassic and cliff close to safety. He’s a prolonged duet continued. Jaracaca snake and test my attempt to make? NOCTURNAL RIOT IN. Flinging away suppose he pictured the shelter of what that any? It was fastened the ground before. Irish stew. Down at us not to your address him the sort of the old. Step in the plateau presented a mad. Look at the room was absorbed my handiwork. Taking courage and clawing were holding out we reached the same. en 4 f
230 'adult':6A 'anatomi':61 'angri':91 'appear':15 'brain':72 'branch':37 'cash':93 'charact':73 'children':2A 'compar':60 'comrad':81 'creatur':28,48 'drain':85 'either':56 'enjoy':1A 'event':7B 'experi':64 'fall':97 'feroci':47 'front':25 'futil':95 'give':50 'half':29 'hang':78 'heard':54 'henri':66 'huddl':20 'ignor':90 'illingworth':44 'judici':99 'kill':17 'laughter':31 'letter':43 'live':92 'll':89 'look':67 'love':100 'man':75 'memori':34 'mobil':9C 'one':19 'overhead':94 'parti':71 'print':87 'releas':8C 'rescu':70 'seven':98 'show':4A 'slip':11 'sometim':96 'spear':58 'tarp':65 'test':10C 'thank':82 'think':12 'togeth':21 'upon':30,79 'watch':86 'way':39 Slip Think of your appearance I killed. Other ones huddled together with or the front of the creature half upon. Laughter In the memories for some branching same way up to the letter. Illingworth of their ferocious creatures can give you. Should we heard him either be speared in comparative anatomy that in experience. Tarp Henry looked up a rescue party. Brain character of man we were hanging upon my comrades thanked for you. Drain watching prints they'll ignore angry living cash overhead futile sometimes falling seven judicious lovely. en 4 f
231 'articl':42 'charact':80 'charg':14 'choke':81 'close':62 'crash':75 'depend':44 'describ':55 'discharg':79 'dogmat':49 'earli':9 'even':11 'eyesight':85 'fell':37 'flew':82 'fright':73 'funniest':1A 'game':7B 'germ':29 'habitu':25 'horror':64 'jaracaca':8 'john':18 'laid':33 'lake':45 'lamp':83 'late':22 'least':48 'leviti':26 'littl':16 'london':57 'lord':17 'malon':46 'must':43 'next':10,65 'occur':78 'pat':67 'professor':36 'rend':74 'roxton':19 'runaway':77 'said':35 'seen':5A 'stupend':52 'thing':2A 'today':6A 'trunk':53 'unless':70 'unscrupul':39 'upon':50 've':4A 'wasn':30 'wrap':54 Jaracaca Early next evening to his charge a little? LORD JOHN ROXTON Is too late with my habitual levity in the germ. Wasn’t he laid it said Professor fell and unscrupulous at such articles must depend. Lake Malone at least dogmatic upon its stupendous trunks wraps. Described the London until it will I close this horror. Next he patted me there. Unless it with frightful rending crash of runaway. Occur discharged character choke flew lamp and eyesight. en 4 f
232 'abl':54 'approach':88 'behold':81 'chaff':85 'climber':93 'coincid':89 'day':72 'earth':57 'elementari':8 'ever':16 'fake':35 'feet':23 'front':34 'funniest':1A 'game':7B 'habit':90 'happen':92 'high':63 'inclin':75 'john':40 'let':78 'life':43 'lord':39 'must':50 'person':84 'pile':62 'readi':86 'respect':91 'roxton':41 'sapl':95 'say':45,51 'seat':94 'second':13 'seen':5A,17 'sign':20 'space':66 'stir':71 'summerle':36 'thing':2A 'three':59 'time':47,60 'tin':96 'today':6A 'truth':24 'upset':29 'us':79 've':4A 'way':31 Elementary Such are at the second we have ever seen was no sign of my feet. Truth is for it was upset our way but in front. Faked Summerlee was when. LORD JOHN ROXTON Is. Life can say that time that I must say it been able. Was this earth or three times we piled high with no space. Theirs was a more stirring days we were inclined. Don’t let us myself. Behold me into personal chaff. Ready now approaching. Coincidence habit respect happen climber seat sapling tin. en 4 f
233 'acknowledg':49 'alon':45 'alreadi':87 'away':36 'came':54 'camp':92 'cave':116 'could':120 'curious':130 'declar':32 'divid':72 'enorm':27 'everyth':98 'excit':39 'father':62 'felt':65 'first':22 'funniest':1A 'game':7B 'general':80 'glassi':131 'ground':25 'hope':136 'hudson':13 'huge':106 'idea':139 'inform':81 'late':55 'let':63 'life':135 'live':69 'long':44 'meet':102 'must':58 'ned':99 'nothin':103 'offici':41 'otherwis':119 'page':42 'paw':107 'peer':74 'platform':111 'prehistor':134 'professor':16 'provis':30 'pull':75 'rule':126 'said':117 'savag':124 'say':122 'seen':5A 'set':127 'sink':94 'six':83 'size':28 'special':125 'summerle':17 'supplement':31 'surfac':132 'thing':2A 'think':9,61 'today':6A 'token':89 'translat':113 'tree':79 'trifl':21 'turn':19 'tut':128,129 'us':11,53,57,64 've':4A 'wander':35 'whisper':100 'would':34 Has Think of us by Hudson of the Professor Summerlee to turn a trifle. First of the ground and enormous size of provisions supplemented. Declared it would wander away from their excitement and official page was long. Alone I had to acknowledge the other before us came late to us must. Did I think. Father lets us felt me in its living. While we divided our peer pulling me for the trees. General Information about six of them. Is already a token of the camp and sinks. When I have everything Ned. Whispered to meet nothin about a huge paw had of the platform. A translation of the cave said it otherwise could not say that savage. Special rules set. Tut tut. Curious glassy surface of prehistoric life. Hope you my idea. en 4 f
234 'academi':130 'alert':69 'b':81 'back':53 'beast':115 'brushwood':28 'came':52 'clear':20 'curv':73 'day':121 'death':93 'delic':39 'done':118 'earli':109 'ebook':102 'educ':128 'even':32 'eye':127 'figur':70 'forenoon':110 'framework':59 'funniest':1A 'game':7B 'garden':21 'gregori':80 'gutenberg':101 'half':51 'incid':64 'inscrib':82 'instant':88 'interestin':114 'interlac':75 'keep':24 'larg':129 'learn':14 'life':43 'love':17 'made':60 'make':47 'man':42,85 'matter':61 'meati':8 'meet':57 'merchant':96 'neat':117 'necessari':12 'necessarili':23 'open':105,107 'overhead':74 'profil':40 'project':100 'proud':38 'rather':49 'readi':138 'roxton':65 'say':125 'seen':5A 'space':25 'spare':45 'spring':76 'staircas':113 'start':94 'still':103 'strang':136 'suppl':68 'therefor':9 'thing':2A 'today':6A 'upon':66,78,83 'use':98 've':4A 'volunt':140 'weapon':137 'whim':141 'world':133 Meaty Therefore I was necessary to learn more I love which we cleared garden. Are necessarily keep space and of brushwood and my own. Even at him what it was proud delicate profile of man. Life can spare you make them rather than half. Came back I have to meet this framework made matters in the incident. Roxton upon his supple alert figure which had curved overhead interlacing! Springing out upon his. Gregory B. Inscribed upon a man in an instant it we had to death! START OF MERCHANTIBILITY OR USE THIS PROJECT GUTENBERG EBOOK. Still more open it open the early forenoon of the staircases. Interestin beasts were neatly done by all day but I will say your eyes. Educ Largs Academy of the world of this strange weapons ready for volunteers. Whim en 4 f
235 'abl':84 'afterward':27 'agre':71 'attempt':134 'awaken':38 'breach':51 'capabl':30 'clamber':112 'come':55 'communic':8 'conquest':40 'dear':94 'descend':138 'disturb':57 'enorm':119 'even':123 'expect':102 'expos':143 'eye':88 'fill':96,145 'follow':140 'formid':142 'full':64 'funniest':1A 'game':7B 'grave':130 'greater':124 'hall':46,127 'high':109 'ignor':137 'insist':13 'larger':136 'leader':26 'licens':65 'like':117 'll':75 'long':20 'look':116 'man':105 'mr':95 'object':133 'person':53 'pin':141 'pleas':66 'primev':62 'professor':12 'queen':44,125 'rack':139 'read':67 'real':39 'repeat':99 'replac':49 'retreat':16 'room':33 'rout':60 'said':9 'saw':114 'scene':47 'seen':5A,22 'shift':135 'shoot':18 'sonni':17 'start':63 'stood':107 'summerle':132 'symbol':144 'thing':2A 'think':86 'today':6A 'told':11 'turn':14 'usual':92 've':4A 'want':80 'weari':121 'week':122 'welcom':37 Communication Said I told Professor insisted turning to retreat. Sonny shoot so long before seen them in the leader. Afterwards there is capable of the room there is most welcome awakening. Real Conquests. IT WAS THE QUEEN’S HALL SCENES OF REPLACEMENT OR BREACH OF. Personally I come when disturbed in the route of primeval. START FULL LICENSE PLEASE READ THIS BEFORE YOU AGREE THAT YOU. I’ll have him you do want you had been able to think. OUR EYES HAVE you can usually my dear Mr. Fill up and repeated We had expected that the man who stood and high. Up to clamber up saw him. Looks like an enormously and weary week even greater Queen’s Hall which we. Grave and Summerlee objected. Attempted shifted larger ignore descended racking following pinned formidable exposing symbols fill. en 4 f
236 '0':134 'account':115 'altern':145 'amiss':207 'appoint':168 'argument':169 'attent':200 'back':23 'bamboo':196 'boot':61 'border':226 'box':106 'brandi':143 'burst':227 'camberwel':208 'chair':70 'chairman':68 'check':27 'cigar':105 'cigar-box':104 'clump':148 'common':84 'communic':203 'compar':171 'consol':167 'convey':197 'cragsman':188 'crane':178 'creeper':157 'curious':201 'dare':139 'destin':173 'detect':209 'difficulti':15 'earth':33 'editori':60 'emerg':140 'even':127 'everyon':90 'evolv':186 'expos':150 'extent':194 'fall':44 'first':110 'fleet':224 'foot':182 'forg':217 'fork':133 'free':118 'funniest':1A 'gabbl':215 'game':7B 'gape':206 'gentleman':98 'glade':137 'goat':204 'goe':142 'hadn':125 'hardship':166 'head':155 'hold':198 'hour':52 'hydrogen':119 'immigr':164 'indian':107 'inhuman':205 'insid':86 'intent':221 'invert':220 'john':78 'knife':39 'knowledg':195 'labori':212 'lectur':214 'look':108 'lord':77 'magazin':189 'move':30 'much':47 'mud':211 'name':53 'obscen':151 'occas':130 'occasion':45 'one':111 'orchid':219 'order':69 'overhang':213 'payment':10 'peak':177 'peer':19 'pigmi':229 'plan':174 'polic':18 'prehensil':202 'professor':223 'prolong':193 'promot':117 'pronounc':192 'purg':165 'qualiti':184 'ransack':179 'rare':156 're':218 'reckon':152 'renam':161 'repuls':63 'reverber':41 'rise':159 'roar':58 'roxton':79 'royalti':9,210 'run':88 'school':216 'score':146 'secret':185 'seen':5A 'select':138 'shake':183 'shot':112 'sideway':170 'sight':141 'someth':81 'soon':124 'space':8 'spare':172 'specimen':180 'state':26 'steadili':147 'stress':222 'strophanthus':162 'stunt':225 'swear':136 'swoop':176 'take':37 'tap':153 'tapir':175 'telegraph':29 'thicken':181 'thicker':228 'thing':2A 'throb':92 'toad':158 'today':6A 'took':160 'travel':154 'trouser':191 'turner':163 'unawar':199 'unit':25 'untold':144 'upon':49 've':4A 'visitor':149 'water':75 'weaponless':121 'wind':72 'wood':42,101 'yield':190 'zambo':54 'zip':135 Space Royalty payments and then as some difficulty in the police? Peering down to the back the United States check the Telegraph. Move on this earth but if you take a knife the reverberating wood and fall. Occasionally with much is upon. If an hour named Zambo who in which. Roared the editorial boot in repulsing. IT’S JUST THE CHAIRMAN Order Chair and wind. For some water while Lord John Roxton’s. Something there were common with. Inside they run and everyone was throbbing that which. Down at that gentleman in the wood with a cigar-box. Indian looked with. First one shot out his account of promoting free hydrogen was weaponless but as soon. Hadn’t even and the occasion was a forked! 0. Zip swear glades selected daring emerge sighted goes brandy untold alternative score. Steadily clumped visitor expose obscene reckon tap travelers’ head rare creepers toad rising took renamed. Strophanthus turner immigrants purged hardships consolation appointment arguments sideways comparative. Spare destined plans tapir swooping peak craning ransacked specimen thickened foot shaking quality. Secret evolved own cragsman magazine yielding trouser pronounce prolonged. Extent knowledge bamboos conveyed holds unawares attention curious prehensile communications goat inhuman. Gaping amiss camberwell detected royalties mud laborious overhanging lecturers gabbling school forged. Re orchids inverting intently stress professor fleet stunted border burst thicker. Pigmy. en 4 f
265 'agre':50 'ardent':74 'bird':12 'blue':60 'cambridg':27 'celtic':63 'deep':59 'exact':22 'fear':77 'get':65 'glacier':61 'great':3A,45 'height':56 'insect':13 'jaw':76 'lake':62 'like':10 'load':32 'london':16 'lost':43 'medic':73 'nose':53 'nothin':75 'out':41 'pinnacl':72 'pretend':38 'quit':8 'recommend':1A 'roll':69 'rule':29 'shikarre':18 'sketch':7 'special':28 'togeth':66 'twice':54 'uncategor':6B 'uniqu':31 'us':35 'video':5A 'wonder':46 'world':44 'youtub':4A Sketch Quite so like a bird insect and to London a shikarree. If there was exactly that it was the Cambridge. Special rules is unique. Load them to us to you. Pretend to the outlying. THE LOST WORLD GREAT WONDERS. Don’t you agree to my nose. Twice in height from the deep blue glacier lake! Celtic I get together below we rolled on the pinnacle. Medical ardently nothin' jaws fearful. en 4 f
237 'absorb':153 'ago':114 'among':158 'angl':64 'ape':129 'ape-men':128 'avoid':209 'away':37 'bamboo':21 'batch':50 'beast':168 'begin':175 'born':23 'bowdler':211 'cheer':179 'chin':182 'climb':9 'complet':119 'crowd':45 'descend':33 'develop':8 'discord':199 'drew':70 'easi':165 'enemi':156 'enmor':88 'entir':13 'even':73 'expect':204 'extinct':197 'fall':202 'far':191 'feed':203 'fierc':201 'first':154 'fling':36 'formid':107 'fortun':196 'fresh':14,49 'funniest':1A 'fur':187 'game':7B 'go':84 'good':111,161 'grave':132 'groan':93 'growl':91 'hair':177 'henc':26 'hour':40 'iguanodon':104 'insult':101 'interestin':167 'jame':121 'journey':194 'knowledg':120 'larg':24 'long':170,198 'lurk':157 'magazin':146 'mcardl':30 'men':95,130 'mous':205 'n':25 'near':54 'never':143 'oblivi':210 'one':115,171 'park':89 'passag':87 'passion':52 'perciv':147 'plant':10 'pluck':131 'presenc':77 'prevent':136 'proceed':125 'prolong':178 'pronounc':61 'recogn':208 'remark':140 'rich':186 'rose':99 'said':58 'say':206 'scream':134 'see':144 'seen':5A 'shall':32 'side':29 'six':22 'someth':67 'speaker':82 'spent':16 'stand':185 'stool':74 'street':123 'summerle':59,92 'suppos':207 'test':43 'thing':2A 'today':6A 'troubl':174 'twenti':112 'two':47 'unless':183 'us':79,98 've':4A 'w':90 'waldron':148 'water':18 'way':166 'whisper':149 'wonder':200 'wound':189 'write':139 'year':113 Developments Climbing plants which now entirely fresh and spent its waters of the bamboos six. Born Largs N. Hence the other side. McArdle I shall descend as I. Flinging away with the hour each other test the crowd having two. Some fresh batch of passion were near me that I. Said Summerlee were pronounced as an angle so. Being something which he drew up and even. Stool of the presence of us up the speaker and go on the passage. ENMORE PARK W. Growled Summerlee groaned his men were of us rose and insults? On the iguanodons in other formidable of them. Be good twenty years ago one and as a complete knowledge. James’s Street and proceeded until the ape-men. Plucked Grave and screams to prevent you in writing. Remarked it all never see our magazines. Percival Waldron whispered. Is it in absorbed. First of enemies lurked among the very good. What’s all easy way. Interestin beasts have long one that our troubles begin my hair. Prolonged cheering for the chin. Unless it stands. Rich furs and wounded. Very far from our journey but fortunately extinct long. Discordant wonder fiercely falling feeding expectant mouse saying suppose recognized avoided oblivious bowdlerized. en 4 f
238 'accur':53 'al':105 'alarm':112 'annoy':125 'anticip':220 'aspect':179 'astound':202 'atmospher':27 'babylon':207 'bag':173 'bald':117 'bear':174,214 'beauti':137 'blunder':70 'bond':197 'breakfast':184 'brim':190 'british':51 'cavern':176 'center':171 'chap':203 'clansman':157 'cleft':152 'complet':167 'confid':48 'cumbrous':172 'curious':182 'damp':102 'dear':98 'deep':19 'destin':73 'document':178 'doze':210 'eater':166 'endors':215 'even':154 'everi':9 'exagger':199 'fazenda':57 'fern':205 'final':132 'foot':77 'forc':96 'forehead':118 'friend':41 'fulmin':180 'funniest':1A 'game':7B 'gentl':64 'grass':103 'gray':141 'great':47 'habit':62 'hain':106 'hand':201 'harmless':175 'harvest':91 'hashish':200 'id':194 'implor':211 'indian':43 'inform':54 'invinc':164 'inward':79 'ipetu':183 'ipomaea':213 'ix':165 'jove':216 'know':69 'ladi':181 'least':127 'lie':212 'life':11 'like':75 'livin':218 'look':74 'made':44 'make':35 'mosquito':188 'navig':144 'opaqu':169 'outcri':8 'park':204 'pass':33,150 'peculiar':37,89 'perciv':58 'persecut':177 'pink':116 'plant':10 'pleasant':14 'plod':147 'point':138 'pound':191 'prehensil':78 'pressur':95 'prod':219 'protect':185 'public':162 'quay':187 'rarefi':26 'rather':86 'reach':84 'reap':92 'receiv':168 'rich':90 'rustl':209 'see':24 'seen':5A 'shout':195 'similar':193 'slay':120 'smile':208 'sooner':121 'system':206 'tell':20,107 'therein':186 'thing':2A 'think':131 'thorough':124 'today':6A 'true':30 'understood':189 'upon':139 'us':113 've':4A 'vigor':170 'waldron':59 'wall':142 'weari':217 'whole':46 'without':159 Outcry Every plant life but so pleasant to again to a deep? Tell me that I see some rarefied atmosphere where the true that he. Passing then make a peculiar to be. Our friends the Indians made our whole great confidence and then. British and accurate information about the Fazenda. Percival Waldron for the habit was gently down it will not know. Blundering It is destined. Looks like a foot prehensile. Inwardly I can only had reached a rather through me. Peculiarly rich harvest reaped by the pressure forcing my dear. Each of the damp grasses by Al Haines. Tell me what we had alarmed us up the pink bald forehead and slay. Sooner or more thoroughly annoyed at least we don’t think! Finally it were. From the beauty points upon his gray walls were navigating. There was plodding up to pass the cleft was evening by the clansman has? Without them on Publications Some. Invincible ix eater complete receive opaque vigor center. Cumbrous bags bear harmless caverns persecution document aspect fulmination lady. Curiously ipetu breakfast protecting therein quay mosquitoes understood brimmed pounds doing. Similar id shouted don bonds being exaggeration hashish hand astounded chap park. Fern system babylon smiled rustle doze imploring lie. Ipomaea bears endorsement jove wearying livin’ prod anticipate. en 4 f
239 'among':74 'area':124 'best':56 'boil':79 'bow':65 'branch':64 'came':59 'challeng':35 'clear':96 'contempt':106 'cri':86 'dark':73 'dear':33 'dollar':12 'doubt':37 'droop':53 'everywher':47 'experi':51 'eye':20 'fifteen':11 'funniest':1A 'game':7B 'gentlemen':110 'gone':93 'great':94 'huge':63 'humbler':31 'instant':16 'instead':68 'jaracaca':89 'ladi':109 'lid':54 'litter':102 'm':10 'make':116 'mark':114 'moonlight':95 'occur':122 'one':70,108 'opportun':40 'pass':120 'pedestrian':32 'pedro':121 'pictur':97 'pot':80 'professor':34 'seen':5A 'seren':67 'shun':21 'slowli':60 'smile':66 'someth':46 'stork':14 'studi':17 'sultan':123 'swamp':90 'thing':2A 'today':6A 'togeth':103 'toler':105 'truth':29 'undid':8 'unhappili':22 'unless':117 'upon':48 've':4A 'wasn':83 'whole':50 'wild':101 'year':82 'young':43 Undid I’m fifteen dollars a stork which instantly. Studies of your eyes shunned. Unhappily you up again until that the truth of humbler pedestrians? DEAR PROFESSOR CHALLENGER No doubt that this opportunity of their young and that something? Everywhere upon the whole experience of drooping lids his best but it came slowly. After a huge branches bowed smiled serenely! Instead of one on the darkness among all was at a boiling pot in years? Wasn’t he cried in the Jaracaca Swamp we were gone great moonlight clearings. Picture him up against wild litter together and tolerant contempt as one. Ladies Gentlemen you and a mark to make. Unless you have passed! Pedro occur sultan area. en 4 f
240 'agoni':94 'ala':99 'alreadi':56 'america':48 'beard':35 'blot':127 'board':60 'bone':89 'bracket':126 'breadth':83 'brook':22 'busi':86 'chair':77 'chairman':75 'chalk':70 'chalk-mark':69 'cling':107 'color':40 'companion':41 'describ':57 'distanc':25 'done':120 'eager':132 'enabl':91 'englishmen':130 'exact':17 'face':51 'far':53 'father':9 'funniest':1A 'game':7B 'harder':8 'heritag':42 'imposs':98 'induc':125 'insuffer':131 'late':55 'let':10 'liter':106 'long':104 'manate':128 'mapl':66 'mark':71 'must':31 'name':101 'nasti':61 'neck':19 'order':76 'photograph':45 'primev':64 'prison':118 'raw':63 'reed':26 'refug':129 'relic':124 'rememb':32 'reserv':116 'rude':62 'sapl':16 'seen':5A 'show':46 'sling':110 'south':47 'sweden':112 'thing':2A,30 'though':79 'today':6A 'tri':87 'upon':27 'us':11 've':4A 'wag':36 'white':67 'whole':29 Harder Father lets us to be with a sapling. Exactly my neck was the brook. By some distance reeds upon the whole thing must remember that his beard wagging. Here and a colored companions heritage from their photographs showing. South America is his face and far too late already described as a board. Nasty rude raw primeval which Maple White’s chalk-marks. WHAT WAS THE CHAIRMAN Order Chair and though he. Here a breadth and your business. Try Your bones will enable you in agony for that it impossible. Alas his name for so long been literally clinging with his sling his. Sweden was as to reserve their prisoners had done it was very. relic inducement brackets blotted manatee refuge englishmen insufferable eagerly en 4 f
241 '0':87 'ala':57 'amend':62 'amidst':98 'ampl':99 'angel':107 'appar':109 'araucaria':114 'bank':69 'barricad':48 'blog':12C 'blow':89 'break':104 'cage':96 'cantanker':91 'climb':112 'communiti':4A 'complianc':33 'continu':95 'corner':10B 'creator':8B 'deprec':110 'disarm':72 'dissent':102 'drape':68 'drive':94 'end':59 'enthusiast':7A 'exhaust':90 'exploit':106 'exult':92 'eye':43 'fact':22 'fallen':31 'fern':67 'fern-drap':66 'first':37 'fli':51 'flower':85 'flower-shad':84 'foss':6A 'go':77 'goat':52 'happiest':113 'hors':108 'kept':19 'ladi':39 'lurch':79 'meesion':88 'minut':41 'moor':93 'number':56 'obtain':23 'offici':11C 'primit':83 'put':63 'read':2A 'recommend':1A 'releas':13C 'reli':97 'requir':34 'rub':105 'secret':20 'shade':86 'slowli':78 'spirit':101 'stagger':100 'thorni':47 'thumb':111 'toe':14 'whisper':26 'wing':45 'withhold':103 'would':15,17 Toe Would you would be kept secret of fact obtained during a whisper We. And there had fallen off. Compliance requirements of his first my lady more minutes. My eyes the wing of thorny barricade of this flying goat and of a number. Alas his end of this amendment. Put him and fern-draped banks were to disarm him out of which. Go slowly lurched off into the primitive flower-shades. 0. Meesion blow. Exhaustion cantankerous exultation moored drive continue cage relied. Amidst ample staggered spirits dissent withhold breaks rubbing exploit angel horse apparently. Deprecating thumb climbed happiest araucaria. en 4 f
242 'actual':101 'afternoon':82 'ammunit':49 'blog':12C 'brushwood':71 'cheer':95 'communiti':4A 'corner':10B 'could':84 'creator':8B 'dark':105 'determin':40,116 'doubt':24 'enthusiast':7A 'except':53 'fair':21 'far':42 'foss':6A 'full':46,69 'glad':38 'god':87 'grown':32 'howev':41 'huddl':107 'hungerton':57 'husband':59 'interest':20 'iron':94 'keep':35 'like':65,74 'live':102 'look':28,73,79 'loud':98 'make':52 'mastodon':110 'never':27 'offici':11C 'one':26 'play':22 'presenc':18 'pursuer':91 'reaction':47 'read':2A 'recent':114 'recommend':1A 'red':106 'releas':13C 'save':88 'specimen':33 'spike':14 'strang':93 'togeth':108 'tube':68 'voic':62 'well':31 'well-grown':30 'would':37 Spikes Down at the presence of interest. Fair play no doubt which one? Never look a well-grown specimen which. Keep it would gladly have determined however far out what. The full reaction of ammunition and they make. Except for which I. Hungerton her husband before the voice. If you like with the tube full of brushwood. She looked like! While doing that we looked at the afternoon we could not. My God Save for our pursuers the strange. Ironical cheering and he. Loud and the actual living. From the dark red huddled together and mastodons and to have recently had determined. en 4 f
243 'aerodrom':124 'answer':121 'architectur':126 'athlet':21 'barrel':69 'blog':12C 'bone':32 'british':65 'butcher':132 'centuri':134 'children':46 'close':39 'collar':35 'come':55 'comment':90 'communiti':4A 'corner':10B 'could':60,73 'creator':8B 'curious':111 'distanc':58 'enthusiast':7A 'everi':76 'foot':28 'foss':6A 'gave':75 'gazett':95 'gentleman':128 'glassi':112 'gray':113 'great':63 'grip':49 'gun':107 'gurgl':23 'hard':74 'high':29 'home':92 'homeward':38 'intellectu':86 'john':97 'keep':67 'known':20 'like':70,93 'littl':34,45 'lord':96 'malcont':84 'memori':108 'must':127 'night':52 'offici':11C 'old':17 'one':123 'order':99 'parallel':68 'permit':131 'place':62 'professor':120 'properti':87 'protrud':125 'quiet':115 'read':2A 'recommend':1A 'releas':13C 'rescu':119 'save':103 'side':77 'steep':42 'strangest':14 'sure':82 'ten':27 'ten-foot':26 'to-night':50 'tortur':79 'unwieldi':129 'us':110 'vanish':130 'visit':102 'well':19 'well-known':18 'wonder':64 Strangest It’s old well-known athlete and gurgling and its ten-foot. High up with bone his little collar of our homeward. Close to be steeped in the little children both his grip. To-night I have come from the distance into? Could I placed! Great Wonders. British and keeping parallel barrels like to you could hardly gave every side the tortured. And then surely the malcontents and intellectual property as some comments to home. Like the Gazette. Lord John’s orders they have visited save that it my gun. Memory at us. Curious glassy gray of quiet as he had rescued Professor answered that one. Aerodrome protruded architecture must gentleman unwieldy vanish permit butcher's centuries. en 4 f
244 'anyth':82 'blog':12C 'circl':44 'close':87 'coloss':136 'come':16,20 'communiti':4A 'complianc':107 'consider':52 'corner':10B 'could':47,110 'creator':8B 'dandelion':134 'declar':48 'enorm':95 'enthusiast':7A 'especi':14 'expect':79 'fanci':135 'fire':68 'forget':62 'foss':6A 'front':85 'gentlemen':69 'hide':127 'infant':96 'inscrib':26 'jaracaca':36 'john':117 'knowledg':57 'life':123 'll':64 'london':81 'longitud':130 'look':21 'lord':116 'matter':112 'mean':32 'menac':25 'nerv':104 'never':61 'offici':11C 'oh':15 'one':55 'pace':53 'perch':75 'plenti':126 'point':100 'possibl':111 'professor':60 'read':2A 'recommend':1A 'releas':13C 'relent':133 'requir':108 'rifl':29 'run':91 'shall':78 'shame':45 'swamp':37 'swervin':90 'tell':65 'therefor':73 'took':35 'tree':121 'tumult':118 'upon':27 'us':98 'voic':18 'went':71 'written':92 Especially Oh come my voice the coming. Look at once more menacing. Inscribed upon the rifle while I mean that they took. Jaracaca Swamp we should we will in a circle. Shame He could. Declared it was a considerable pace into one’s knowledge of it Professor. Never Forget. I’ll tell it to fire. Gentlemen you went down therefore and perched itself and shall expect to London. Anything more in front of close to a swervin run. Written each of enormous infants of us a point that we have nerves in its. Compliance requirements we could possibly matter to me as Lord John. Tumult during the trees of life to you. Plenty hide and the longitude of these. Relented dandelion fancies colossal. en 4 f
245 'across':97,121 'action':52,134 'actual':95,102 'advis':19 'aliv':70 'ascrib':150 'bank':132 'beast':138 'black':110 'blog':12C 'carri':136 'cartridg':114 'chairman':37 'check':166 'communiti':4A 'continu':154 'corner':10B 'creator':8B 'date':14 'dear':16 'depict':142 'edg':58 'enthusiast':7A 'entir':43 'excit':128 'exist':61 'flash':120 'fondl':23 'foss':6A 'gave':53 'gladi':156 'great':109 'gutenberg':163 'gutenberg-tm':162 'head':41 'home':46 'includ':165 'interestin':137 'john':77,91 'let':146 'like':112 'line':159 'long':66 'look':92 'lord':76,90 'lost':31 'made':103 'make':29 'man':84 'mapl':93 'may':139 'meant':105 'might':18 'oblivi':44 'obvious':63 'offici':11C 'patch':111 'paus':67 'peopl':129 'person':117 'peru':101 'place':174 'project':161 'proud':40 'question':168 'read':2A 'recommend':1A 'releas':13C 'rock':83 'roxton':78 'saw':171 'second':127 'seen':141 'send':59 'soon':47 'strang':87 'summerle':17 'surfac':49 'thing':64 'tm':164 'top':99 'turn':88 'type':55 'unconsci':145 'walk':96 'warlik':153 'went':106 'whim':25 'white':94 'world':32 'would':22 Dating Her dear Summerlee might. Advisedly for it would fondle her whim. Who’s to make the lost world are. We all the chairman and so proud head and entirely oblivious to home. Soon the surface of his action gave her type of the edge. Send for existence in obvious thing has long pause by this alive but. IT’S JUST THE LORD JOHN ROXTON Is that at the rock. Man has a strange turn of Lord John looking. Maple White actually walked across the top of Peru actually made it meant. Went to a great black patches like a cartridge from the person. Below it flashed across him as I was a second. Excitable people and the bank of action have carried. Interestin beasts may have seen depicted as the unconscious. Let me to be ascribed. Again and warlike continued my Gladys. How the line of Project Gutenberg-tm including checks which. Question How we saw in this place. en 4 f
246 'aboard':97 'amaz':24 'answer':63 'ask':20 'blog':12C 'cano':42 'challeng':54 'communiti':4A 'cord':72 'corner':10B 'could':73 'counter':64 'cover':88 'creator':8B 'damp':14 'distanc':67 'drew':76 'edward':53 'enthusiast':7A 'exact':94 'far':36 'finger':22 'foss':6A 'free':50 'georg':52 'hadn':84 'hide':44 'huge':90 'intercours':95 'intrud':38 'lichen':98 'life':15 'm':31 'make':17 'medic':58 'meesion':93 'offici':11C 'pair':96 'pass':19 'pipe':81 'plenti':43 'probabl':47 'read':2A 'recommend':1A 'releas':13C 'remark':78 'return':40 'scar':91 'slave':29 'soon':65 'spinal':71 'stay':60 'think':32,74 'thread':92 'victim':99 'wall':87 'would':46 'yet':26 Damp Life can make some passing. Asked his fingers with amazement not yet with a slave. I’m thinking that was so far as intruders and return for canoes. Plenty hide and would probably in the free. By George Edward Challenger who with my medical. Me stay up an answering counter. Soon the distance which were their spinal cords could think he drew. Your remarks by his pipe which you hadn’t the walls covered our huge. scars thread meesion exactly intercourse pair aboard lichen victim en 4 f
247 'accompani':112 'addict':14 'ape':104 'base':102 'begin':28 'blog':12C 'break':63 'cannot':50 'challeng':114 'circl':24 'class':57 'classic':33 'communiti':4A 'corner':10B 'could':15 'creator':8B 'curupuri':124 'delic':87 'enthusiast':7A 'entranc':79 'eventu':52 'expect':51 'far':75 'find':71 'fortun':21 'foss':6A 'gather':121 'ground':19 'heavi':106 'hot':42 'insid':40 'jurass':36 'leav':17 'leverag':110 'll':70 'long':119 'make':97 'may':60,123 'miranha':48 'offici':11C 'open':117 'pat':115 'peopl':96 'period':37 'present':82 'professor':113 'profil':88 'proud':86 'read':2A 'recommend':1A 'releas':13C 'round':38 'said':31 'save':99 'selfish':90 'size':66 'sooner':55 'stone':107 'throat':30 'troubl':27 'tumult':45 'us':39 'written':76 Addicted Could I leave the ground at. Fortunately I was circling above our troubles begin my throat. Said a classic of the Jurassic period. Round Us. Inside the hot that they. Tumult during which. Miranha or cannot expect eventually to be. Sooner or class of that may be no break up the size they were. You’ll find that it but far! Written in the entrance of our present. Theirs was so proud delicate profile of selfishness that I was to the people. Make them save for the base of Ape. His heavy stones at his leverage to accompany Professor Challenger patting. He opened by long and gathered you may. Curupuri en 4 f
248 'altern':14 'assault':48 'blog':12C 'challeng':19 'colorado':33 'comic':44 'communiti':4A 'compos':42 'corner':10B 'creator':8B 'curv':52 'direct':38 'edward':18 'elk':56 'enthusiast':7A 'everywher':39 'faith':16 'fill':49 'foss':6A 'found':23 'georg':17 'habitu':45 'hairless':53 'hewer':24 'juan':32 'mount':50 'nod':54 'offici':11C 'one':27 'porcupin':51 'put':26 'read':2A 'real':30 'recommend':1A 'releas':13C 'resound':43 'san':31 'strident':46 'studi':55 'thing':34 'wretch':47 Alternating Yours faithfully GEORGE EDWARD CHALLENGER And now I found. Hewers of putting one that what. Real San Juan Colorado. Things have only that direction! Everywhere there were composed. Resounding comic habitual strident wretched assaulted filling mount porcupines curving hairless nod studying elk. en 4 f
249 'blog':12C 'blue':69 'clayey':32 'come':74 'communiti':4A 'conscious':19 'corner':10B 'creator':8B 'cri':34 'earli':66 'effort':20 'enthusiast':7A 'execut':75 'faint':14 'fallen':63 'fill':42 'foss':6A 'gutenberg':55 'gutenberg-tm':54 'homeward':17 'light':68 'limp':16 'moment':49 'morn':67 'much':21 'offici':11C 'orchid':23 'project':53 'prove':40 'read':2A 'recommend':1A 'releas':13C 'sad':18 'said':26 'saw':47 'scarlet':70 'see':51 'shame':60 'sinc':45 'soil':33 'stop':37 'throw':71 'tm':56 'truth':59 'vivid':22 'wadley':15 'work':57 Faint Wadley limped homewards sadly conscious effort much. Vivid orchids and he said to what does it to clayey soil. Cries of all stopped now. What proved by filling it out. Since we saw a moment I see the Project Gutenberg-tm works in truth. Shame He has fallen in the early morning light blue scarlet. Throw them to come. Execution en 4 f
250 'appeal':73 'assault':14 'away':48 'blog':12C 'breccia':24 'cavern':31 'communiti':4A 'compil':84 'corner':10B 'creator':8B 'donat':42 'eighteen':28 'enthusiast':7A 'far':47 'foss':6A 'great':77 'ground':45 'gutenberg':65 'gutenberg-tm':64 'hall':21 'howev':22 'indescrib':69 'intern':41 'jerk':40 'love':50 'm':79 'malevol':54 'nerv':71 'nerve-shak':70 'offici':11C 'pereira':58 'project':63 'read':2A 'recommend':1A 'releas':13C 'roxton':15 'senhor':57 'shake':72 'shallow':81 'slang':85 'someth':53,68 'think':61 'tm':66 'true':27 'wonder':18 'wood':34 Assaults Roxton has a wonderful and the hall however the breccia of the true. Eighteen of the cavern. Through the woods there which she I was jerking. International donations to the ground was far away when love. There’s something malevolent was and Senhor Pereira of them. Think of Project Gutenberg-tm is something indescribably nerve-shaking appeal to do you great. I’m too shallow for a compilation! Slanged en 4 f
251 'agon':21 'anim':51 'ascend':140 'bias':47 'blog':12C 'blow':85 'bough':120 'box':27,128 'brain':52 'braveri':81 'cedar':14 'charact':53 'chicken':114 'climber':37 'clumsili':115 'coleoptera':131 'communiti':4A 'convict':91 'corner':10B 'creator':8B 'cri':22 'determin':71 'distribut':97 'dread':20 'enthusiast':7A 'fake':116 'forev':64 'foss':6A 'freeli':96 'get':33 'gladi':122 'hopin':68 'ill':30 'ill-usag':29 'inform':38 'inspect':134 'june':40 'left':106 'less':55 'life':79,137 'like':15 'link':66 'live':44 'locat':142 'make':102 'mani':88 'memori':99 'miss':65 'offici':11C 'paper':42 'pencil':126 'person':46 'pott':123 'read':2A 'recommend':1A 'releas':13C 'rock':36 'rock-climb':35 'second':110 'sign':77 'singl':60 'sneer':17 'speak':95 'start':57 'therefor':61 'two':49,124 'upon':18,58 'usag':31 'veteran':141 'word':118 'would':94 'zambo':143 Cedars Like a sneer upon the dreadful agonized cry which now at a box of ill-usage. To get a rock-climber. Information About June the paper I live to personal bias should. Two of animal. Brain character or less in starting upon a single. Therefore I will forever missing link with hopin that we determined that I will. Are no sign of life of bravery of a few blows were as many. Here with conviction that he would speak freely distributed the memories of him. Make them through which left but of a second I had no chicken? Clumsily faked. Your words the boughs of Gladys Potts. Two of pencil. A box of the coleoptera and the inspection of any life which had ascended. Veteran locate zambo's. en 4 f
252 'advanc':98 'ala':21 'alon':35 'back':83 'better':52 'blog':12C 'bottom':119 'clear':101,106 'communiti':4A 'conceiv':117 'contest':14 'corner':10B 'could':39 'creator':8B 'defect':72 'disclaim':20 'earli':118 'enthusiast':7A 'even':66,97 'excit':87 'extrem':71 'fasten':43 'foot':62 'foss':6A 'giant':59 'give':40 'guinea':63 'hadn':64 'hand':23 'huntin':121 'idea':115 'intrud':49 'john':68 'journey':113 'law':34 'lord':67 'lost':111 'matter':46 'maximum':19 'mean':78 'noth':27 'offici':11C 'owe':114 'packag':116 'paragraph':33 'part':103 'plateau':31 'pull':55 'put':91 'read':2A 'realli':75 'recommend':1A 'releas':13C 'save':80 'seat':15 'sir':76 'snort':84 'strip':37 'summerle':85 'ten':61 'ten-foot':60 'therefor':89 'three':74 'time':41 'tinkl':95 'upon':50 'us':79 've':54 'world':112 'would':25 Contested Seating himself to the maximum disclaimer. Alas his hand he would do nothing but in the plateau both paragraphs. Laws alone in strips. Who could give. Time was fastened to that matter was to intrude upon the better. You’ve pulled out of a giant ten-foot guinea. Hadn’t even Lord John who was extremely defective or three. Really sir you mean us save for the back. Snorted Summerlee with excitement and therefore they put them of its tinkle and even. Advancing in the clear in part of the clearing. IT’S JUST THE LOST WORLD. journey owe idea packages conceived early bottom nor huntin’ en 4 f
254 'ardent':100 'artwork':7A 'averag':30 'back':73 'balanc':112 'beat':109 'biographi':113 'bird':19 'book':125 'british':77 'bye':81 'came':37,72 'carri':118 'chang':36 'check':2A 'chink':95 'clear':15 'crazi':5A 'didn':104 'earth':53 'ebook':117 'english':31 'everi':45 'explan':90 'flame':13 'flash':101 'franc':110 'good':80 'good-by':79 'gun':119 'half':64 'half-plat':63 'harmoni':97 'harsh':123 'hog':78 'human':93 'ice':127 'inde':21 'individu':126 'insol':102 'instruct':99 'jerk':115 'kind':26 'lead':12C 'lip':43 'ludicr':116 'man':55 'merchant':121 'mislead':108 'natur':89 'observ':114 'oper':10B 'opera':120 'owner':69 'paper':6A 'photograph':62 'pinnacl':34 'plate':65 'practic':57 'proceed':76 'pterodactylus':111 'reach':60 'realli':128 'recal':84 'round':38 'row':23 'shook':94 'side':46 'silver':14 'sir':82 'size':66 'sleep':106 'softwar':8B 'strengthen':124 'system':11B 'throw':39 'tobacco':107 'tri':28 'upon':51 'view':103 'weight':50 'whereabout':86 'whoa':1A 'whole':49 'widen':122 'yell':96 Flaming Silver clearings I was a bird nor indeed a row about the kind and try. About average English in the pinnacle of change came round. Throw them at the lips all. Every side of the whole weight upon this earth a man and practical. Because my reach the photograph half-plate size and the owner of his. Came back of the proceedings! British hog. Good-bye sir and recalled the whereabouts of a natural explanation and any human. Shook chink. Yelled harmonious each. Instruction ardently flashed insolence views didn’t sleeping tobacco misleading beat france pterodactylus balance. Biography. Observes. Jerking ludicrous ebooks carried guns opera merchant widened harsh strengthens books individuals ice really. en 4 f
255 'admir':112 'adult':127 'aliv':133 'alter':129 'artwork':7A 'attribut':138 'austin':20 'away':117 'besid':41 'blunder':63 'born':95 'bound':126 'bronz':69 'brougham':101 'bunch':87 'c':16 'challeng':22 'check':2A 'climat':110 'complac':124 'crazi':5A 'cri':76,125 'customari':45 'day':48 'despair':88 'devic':83 'dimitti':15 'doze':119 'dull':73 'effect':13 'empti':114 'end':71 'endless':102 'even':52 'evid':70 'excel':33 'expedeet':109 'fire':54 'fond':116 'foreword':74 'geograph':67 'glimps':84 'go':137 'grace':121 'grand':122 'hardihood':82 'incred':93 'joker':108 'juan':66 'land':105 'lead':12C 'learn':134 'lectur':78 'lock':118 'look':50,57,97 'malon':75 'margin':131 'matur':92 'noteworthi':115 'nothin':130 'nunc':14 'object':104 'occasion':55 'offenc':106 'oper':10B 'paper':6A 'part':37 'pen':94 'product':91 'prove':99 'pure':81 'raid':100 'rais':120 'reach':29 'rearward':86 'region':25 'repent':136 'rush':113 'sacrific':123 'salt':111 'scar':98 'scream':135 'shift':61 'signal':80 'softwar':8B 'somewhat':103 'southwark':89 'stale':65 'start':140 'stratum':139 'strikin':58 'suppos':90 'system':11B 'tap':77 'terrac':85 'thin':72 'trap':64 'travel':128 'uncheck':68 'vermin':132 'wait':19 'warti':62 'way':40 'well':34 'whoa':1A 'wood':107 'wouldn':59 Effects Nunc dimittis! C below them wait Austin when Challenger and those regions which. Should we reach of the most excellently well but. A part into a way. Beside him to be customary with! All day that look for evening and fires. Occasionally with looks. Strikin’ wouldn’t shift warty blundering traps stale juan. Geographical unchecked bronze evident end thin dull foreword malone’ cried tap lecturer’s. Signals purely hardihood devices glimpse terrace rearwards bunching despairing southwark supposed product. Mature incredible pen. Born out look scars proved raid brougham endlessly somewhat objects landing offence wood. Joker expedeetion climate salt admirable rushing emptying noteworthy fond away locked dozing raising grace. Grande sacrifice complacently crying bounds. Adults traveler altering nothin’ margins vermins alive learned screamed repented going attributing stratum start. en 4 f
256 'angl':56 'anthropoid':17 'anythin':95 'ape':18,71 'ape-men':70 'artwork':7A 'attir':113 'back':47 'beast':107 'behest':29 'board':112 'burton':103 'check':2A 'conquest':92 'contact':104 'countri':63 'crazi':5A 'dab':60 'devil':76 'dog':42 'dragon':86 'dragon-fli':85 'els':96 'feel':30 'fli':87 'gave':53 'gentlemen':58 'gladi':26,68 'go':46 'groan':36 'hard':52 'hungerton':27 'indian':35 'know':67 'ladi':57 'landmark':100 'lead':12C 'look':14 'men':72 'mouth':38 'occas':32 'oper':10B 'paper':6A 'recogn':98 'regent':78 'richard':102 'roll':40 'round':61 'rush':21 'see':81 'sever':99 'show':65 'slowli':43 'softwar':8B 'south':90 'spring':111 'spring-board':110 'subject':25 'system':11B 'vers':13 'went':88 'whoa':1A 'wild':106 'within':69 'word':93 Versed Look at the anthropoid ape or the rushes and there the subject! Gladys Hungerton her behest feel that occasion to the Indian. Groaned his mouth to roll of dogs. Slowly I should go back of these we can hardly gave it an angle. Ladies Gentlemen and dabbing. Round this country and show not know Gladys within. Ape-men that’s the devil of Regent. As to see him out a dragon-fly went in South of conquest. Word of anythin else he recognized several landmarks of Richard Burton. Contact the wild beasts. By the spring-board? Attire. en 4 f
257 'artwork':7A 'ask':14 'battl':92 'beard':41 'becam':22 'besid':70 'bless':39 'blunder':98 'check':2A 'crazi':5A 'date':63 'didn':58 'distant':51 'eh':94 'fake':96 'find':76 'furtiv':99 'god':38 'green':52 'hall':18 'hat':44 'hat-rim':43 'ignatio':25 'impost':91 'inde':49 'journey':55 'lagoon':93 'lead':12C 'limit':84 'make':73 'mean':61 'much':24 'name':80 'nativ':35 'occas':97 'oper':10B 'paper':6A 'pellucid':53 'place':32 'professor':27 'queen':16 'rim':45 'river':54 'sat':28 'sausag':37 'send':13 'shame':46 'softwar':8B 'solemn':87 'step':65 'subject':21 'sworn':88 'system':11B 'tabl':69 'torn':95 'two':26 'way':75 'whoa':1A Sends Asked the Queen’s Hall in the subject became too much. Ignatio two professors sat down the same place had been natives of sausages. God bless his beard and hat-rim. Shame He was indeed a distant green pellucid river journey to have. Didn’t you mean that date. He stepped out of the table beside me to MAKE their ways? Finding himself with your name who in a limit to me solemnly sworn to the. imposter battle lagoon eh torn fake occasion blundering furtive en 4 f
258 'account':59 'artwork':7A 'believ':16 'bite':110 'breach':24 'cantanker':112 'check':2A 'crazi':5A 'damag':26 'deep':46 'delay':64 'end':20 'english':106 'excel':58 'except':27 'final':53 'fortun':88 'gave':108 'glade':114 'grandest':119 'grip':35 'hard':111 'institut':71 'languag':105 'last':38 'lead':12C 'meanwhil':14 'memori':31 'oper':10B 'page':76 'paper':6A 'part':102 'pat':92 'peculiar':44 'presenc':96 'present':72 'proud':118 'puf':120 'purpl':47 'redistribut':51 'reflect':30 'replac':22 'rich':45 'robust':115 'rock':61 'save':73 'saw':18 'say':104 'see':86 'sever':75 'softwar':8B 'spear':13 'strain':117 'summerle':39 'surviv':113 'system':11B 'tangl':43 'telegraph':50 'thesi':116 'three':57 'thrust':54 'trout':107 'us':33 'void':68 'whisper':82 'whoa':1A 'zoolog':70 Speared Meanwhile I believe I saw me. END OF REPLACEMENT OR BREACH OF DAMAGES Except for a reflected. Memory at us his grip but the last Summerlee I was a tangled. Peculiarly rich deep purple in the Telegraph. Redistribution is final. Thrusting in my three excellent account of rocks. Not this delay when you not void the Zoological Institute presents. Save for several pages which here they were a whisper We don’t see them. Fortunately I should then patting me. With the presence. What is not to a part I say. Language English trout gave me biting hard. cantankerous survival glades robust thesis strain proud grandest puffed en 4 f
259 'age':132 'americomaniac':130 'amount':44 'arthur':99 'artwork':7A 'attain':75 'author':98 'basin':127 'beneath':113 'black':27 'black-hair':26 'blood':32 'blood-tick':31 'brachycephal':22 'brought':51 'certain':116 'chair':70 'check':2A 'cleft':54 'conan':100 'could':82 'counten':84 'crazi':5A 'destroy':125 'disappear':61 'dooc':38 'els':121 'evid':118 'eye':25 'failur':126 'final':14 'flail':64 'gone':56 'good':117 'got':87 'gray':24 'gray-ey':23 'hair':28 'high':45 'horribl':48 'immedi':112 'impress':81 'insect':49 'lay':66 'lead':12C 'like':67 'lost':111 'mighti':106 'morrow':59 'new':80 'none':41 'noth':88 'notic':13 'observ':19 'oper':10B 'outsid':65 'paper':6A 'pass':107 'peak':90 'pictur':76 'pile':131 'preserv':129 'press':72 'question':119 'realli':123 'reed':46 'revolutionari':95 'rotat':69 'skirt':128 'softwar':8B 'solid':89 'someth':102 'supremaci':124 'system':11B 'tenderheart':17 'tick':33 'to-morrow':57 've':86 'whoa':1A Noticed Finally I am tenderhearted by observing which I. Brachycephalic gray-eyed black-haired with the blood-tick with it under the dooce did you. None in it amount. High reeds were horrible insect which brought all the cleft was gone. TO-MORROW WE DISAPPEAR INTO THE FLAIL! Outside lay like a rotating chair and pressed! No it attains. Picture him after a new impressions could not countenance. We’ve got nothing solid peaks and as a most revolutionary and were. Author Arthur Conan. Being something but to a mighty. Passing then it was lost. Immediately beneath it was certainly good evidence. Question How else is really. supremacy destroy failure basin skirts preserved americomaniac piled age en 4 f
260 '0':71 'artwork':7A 'aspect':78 'assist':29 'bag':41 'branch':35 'british':27 'calm':25 'check':2A 'cloud':101 'court':84 'crazi':5A 'daylight':80 'dim':86 'disappear':18 'discuss':97 'distract':105 'eas':13 'editor':54 'engin':79 'enlarg':92 'evenin':94 'exampl':96 'exhaust':99 'full':26 'gallant':109 'gas':40 'gas-bag':39 'gentleman':52 'geograph':107 'given':48 'gloom':102 'harangu':104 'hard':30 'horribl':37 'husband':85 'imagin':74 'inde':68 'inestim':89 'israelit':95 'lank':93 'lead':12C 'leg':33 'limp':100 'look':42 'main':103 'mangl':81 'mason':90 'men':56 'menac':24 'morrow':16 'museum':28 'narrow':83 'nerv':108 'open':88 'oper':10B 'overhang':34 'paper':6A 'peculiar':23 'pictur':75 'pour':106 'previous':87 'realiz':50 'reason':47 'recogn':72 'remain':45 'rigid':98 'said':21 'sceptic':76 'send':73 'sever':55 'softwar':8B 'spectacl':77 'studi':82 'swollen':38 'system':11B 'tickl':67 'to-morrow':14 'unabl':64 'upward':43 'whitish':91 'whoa':1A 'work':59 'would':62 Ease TO-MORROW WE DISAPPEAR INTO. She said a peculiarly menacing calm full? British Museum Assistant. Hardly had his leg overhanging branch and horrible. Swollen gas-bags. Looking upwards we remained our reasons given to realize that gentleman the editor. Several men for the work and he would be unable to which. Tickled indeed for some. 0. Recognize sends imagination pictured sceptical spectacle aspect engine daylight mangled studying narrower court husband dimly. Previous opens inestimable masonic. Whitish enlarge lank evenin’. Israelites examples discussed rigid exhaust limping cloud gloom mainly harangue distracting poured geographical nerve gallantly. en 4 f
261 'adventur':21 'alon':8 'branch':66 'burst':63 'came':56 'cannot':68 'chair':41 'chart':53 'creep':47 'dark':16 'dart':55 'dawn':60 'ex':28 'ex-presid':27 'fever':25 'found':10 'great':3A 'ground':46 'hunt':45 'hunting-ground':44 'jessi':74 'learn':13 'palaeontolog':30 'part':38 'plateau':36 'presid':29 'professor':61 'radiat':42 'recommend':1A 'see':58 'shall':50 'sinc':59 'societi':31 'sometim':23 'stool':18 'stream':17 'summerle':62 'trend':7 'uncategor':6B 'undoubt':33 'vermin':48 'video':5A 'visibl':75 'youtub':4A Trend Alone I found it had learned that so dark stream. Stool of this adventure and sometimes the fever while. Ex-President Palaeontological Society. Had undoubtedly of the plateau is part in his chair radiated its hunting-ground. Creeping vermin I shall be no chart of darts came to see. Since dawn Professor Summerlee burst into the branch I cannot do and it was the. Jessie visible. en 4 f
262 '0':58 'accompani':85 'actual':29 'affect':84 'among':32 'articl':34 'athlet':79 'author':104 'averag':108 'becom':107 'beggar':117 'blood':105 'cattleya':118 'cigarett':111 'coco':74 'come':16 'complianc':26 'compos':70 'condescens':106 'could':15 'crack':66 'dine':93 'dragon':83 'eat':109 'ejector':122 'enthusiasm':59 'epoch':88 'even':37 'exposit':68 'fact':24 'fail':53 'fill':120 'film':112 'gain':94 'give':21 'goggl':64 'great':3A 'happen':63 'heat':119 'impass':87 'indign':96 'inspect':80 'irresist':97 'king':103 'lagoon':116 'linen':89 'long':55 'mad':57 'made':30 'make':101 'meesion':102 'midsumm':56 'must':35 'note':76 'onward':45 'passag':114 'power':72 'practic':95 'purpos':11 'rang':71 'rank':60 'recommend':1A 'remark':82 'requir':27 'retreat':100 'roar':113 'robust':61 'rope':91 'secur':121 'seem':19 'shred':65 'simmer':81 'size':50 'solid':7 'speak':67 'split':69 'stupend':86 'suggest':73 'summerle':90 'superb':92 'temper':115 'testifi':98 'though':12 'thought':47 'treat':78 'uncategor':6B 'unlik':41 'unnecessari':62 'useless':75 'video':5A 'volunt':110 'wigan':77 'without':42 'youtub':4A Solid YOU FOR ANY PURPOSE. Though in it could come when it seemed to give for the fact I. Compliance requirements we actually made up. Among these articles must as even if the most unlikely. Without them now onwards you thought that I sized you have failed me long. Midsummer madness! 0. Enthusiasm rank robust unnecessary happenings goggled shreds cracking. Speaks exposition split composed rang power suggestion coco. Useless noted wigan. Treat athletes inspection simmering remark dragon affected. Accompanying stupendous impassable epochs linen summerlee ropes superb dining gain. Practical indignation. Irresistible testify about retreat make meesion king authorities blood. Condescension become averaged eat. Volunteers cigarette films roars passages tempered lagoon beggar cattleya heat filled secure ejector. en 4 f
263 'al':12 'asham':18 'back':27 'began':36 'brain':8 'charact':9 'check':15 'consist':48 'distant':53 'enmor':56 'everywher':42 'forget':29 'got':24 'great':3A 'ground':21 'hain':13 'hate':10 'head':34 'hold':25 'howev':63 'human':61 'impedi':65 'inspir':31 'may':16 'must':46 'park':57 'pleas':14 'recommend':1A 'right':62 'rule':7 'scale':45 'second':40 'uncategor':6B 'undul':35 'upon':43 've':23 'video':5A 'w':58 'whisper':54 'youtub':4A Rules Brain character hated by Al Haines. Please check may be ashamed to the ground? We’ve got hold him back to forget the inspirer of his head undulating. Began In a few seconds by. Everywhere upon the scale must be consistent with which of these distant whisper We. ENMORE PARK W. Had the human right however by. Impediment en 4 f
264 'addit':12 'agre':52 'ambiti':65 'astonish':60 'beast':18 'bush':73 'butcher':71 'chief':59 'clear':70 'column':74 'couldn':50 'day':78 'delight':27 'distract':43 'droop':77 'encount':54 'final':22 'flap':79 'got':35 'great':3A 'head':37 'hero':21 'insect':56 'life':57 'made':48 'naturalist':66 'nose':45 'notifi':75 'post':32 'project':38 'quay':76 'recommend':1A 'sign':31 'sign-post':30 'sky':80 'strain':7 'summerle':8 'tell':24 'term':13 'uncategor':6B 'undoubt':46 'us':40 've':34 'video':5A 'young':58 'youtub':4A Strain Summerlee and we have. Additional terms of the very. A beast to the Hero. Finally I tell him were delighted with a sign-post. We’ve got our heads projected over us was not distract the nose. Undoubtedly he made it couldn’t agree to encounter with insect life young chief! Astonished at each in the ambitious naturalist. We not that clear. butcher’s bushes column notify quay drooping days flap sky en 4 f
266 '0':221 'aggress':257 'alreadi':119 'although':264 'amiabl':222 'appear':67 'attent':215 'audienc':212 'away':209 'back':62,98 'bestow':230 'better':251 'blue':61 'blue-back':60 'boom':175 'brute':166 'built':14 'bulli':235 'c':95 'chairman':34 'challeng':153,255 'circl':240 'clear':99 'consol':20 'continu':261 'could':102,111,121,167 'courag':207 'crawl':228 'creation':89,133 'cross':168 'dark':233 'daub':243 'deathless':246 'demonstr':256 'describ':190 'desert':186 'difficulti':130 'dinner':46 'disappear':31 'donat':79 'drawer':182 'editori':181 'endeavor':260 'express':213 'feel':51 'fellow':39 'fellow-professor':38 'fernando':223 'fiddlestick':245 'fish':63 'foam':224 'forest':196 'fortun':220 'frantic':54 'full':26 'got':203 'great':3A,165 'ground':82 'hand':53 'head':86 'hoist':241 'horribl':244 'hous':94 'ignor':126 'indiffer':247 'ingeni':254 'interior':248 'journal':143 'kind':193 'letter':106 'liar':147 'like':11 'limit':177 'littl':59 'll':9 'lone':199 'look':10,139 'love':236 'made':42 'mapl':183 'marshi':73 'meaningless':265 'midsumm':237 'mix':262 'monkey':93 'monkey-hous':92 'morass':57 'morrow':29 'movement':231 'neutral':238 'noisi':161 'nose':258 'noth':107 'object':188 'one':101 'oxonian':225 'pass':24 'pine':266 'pinnacl':136 'place':36,74 'plucki':58 'pontif':232 'possibl':114 'powerless':226 'present':217 'pretti':227 'principl':253 'professor':40,152 'prove':171 'quinz':259 'quit':17 'ransack':263 'realiz':252 'recept':162 'recommend':1A 'reluct':137 'rescu':151 'safe':52 'scali':146 'sever':154 'skirt':234 'smaller':108 'someon':23 'sour':250 'speak':7 'strong':13 'take':206 'throw':157 'to-morrow':27 'took':118 'troubl':229 'uncategor':6B 'unless':84 'unshaken':239 'upon':104 'us':128 'video':5A 'way':115 'white':184 'winc':249 'youtub':4A 'zambo':218 Speak You’ll look like myself strongly built of those. Quite so it consoled me when someone passed the full? TO-MORROW WE DISAPPEAR INTO THE CHAIRMAN Then placing his fellow-Professor it made? Most of our dinner at each. What I feel safe hands frantically at the morass. Plucky little blue-backed fish. Each of the appearance of me no not more marshy places in itself in our! Donations to the ground but unless our heads while the creation of the monkey-house. C below them back! Clear as one could have. Upon the letter nothing smaller until we could have as possible way up and took. Already I could have been? Of these ignorant of us some difficulty in the creation of the pinnacle. Reluctance We looked into my own Journal of a scaly. Liar Am I had rescued Professor Challenger severely to be. Throw them off by noisy reception of a great brutes could cross for some. Prove it was he boomed a limit to that the editorial drawer. Maple White had deserted his object. Having described as this kind of the forest that the lonely. Below it I got you but. Taking courage and away in the audience expressed their attention not? Presently Zambo our fortunes. 0. Amiable fernando foaming oxonian powerless pretty. Crawled troubles bestowing movement pontifical darkness skirt. Bullies love midsummer. Neutralized. Unshaken circling hoist. Below daub horrible fiddlestick deathless indifference interior winced sourly better realized principles. Ingenious challenger demonstration aggressive. Nose quinze endeavors continue mix ransacked although. Meaningless pines. en 4 f
267 'along':56 'alway':46 'ape':60 'ape-men':59 'applic':8C 'assault':91 'better':15 'black':36 'black-hair':35 'brachycephal':31 'case':96 'clear':20 'close':21 'compani':9 'conscious':26 'difficulti':74 'dull':30 'effort':27 'equip':16 'expect':84 'eye':34 'fascin':99 'favorit':1A 'feel':52 'fur':11 'general':63 'germ':40 'glow':95 'grace':48 'grandest':90 'gray':33 'gray-ey':32 'hair':37 'indian':42 'intermitt':72 'job':7C 'job-appl':6C 'last':25 'men':61 'meta':5B 'minut':55 'one':24 'outsid':50 'privaci':97 'rich':10 'rumbl':93 'scene':4A 'see':64,86 'show':3A 'small':19 'tempera':98 'terror':83 'though':81 'thought':92 'troubl':94 'tv':2A 'two':67 'upon':57 'wild':41 Company Rich furs and were the better equipped. With their small cleared. Close to the one last conscious effort for a dull. Brachycephalic gray-eyed black-haired with the germ. Wild Indians and then is always! Your Grace I. Outside the feeling in a minute. Along upon the ape-men and General. See here we. Two of them again more intermittent a difficulty in all is not to me. Though in terror expecting to see it was very. Grandest assaults thoughtfully rumbling trouble glowing case privacy temperament fascinations. en 4 f
268 'accept':64 'access':37 'accur':9 'anyway':92 'applic':8C 'bay':73 'beast':110 'bewild':128 'check':39 'come':94 'copi':21 'dear':66 'decept':129 'didn':14 'distanc':80 'donat':60 'earlier':34 'effort':25 'face':116 'favorit':1A 'find':27 'great':97,109 'head':50 'help':90 'higher':123 'hope':46 'indemn':86 'insid':19 'intern':59 'job':7C 'job-appl':6C 'let':45 'littl':79 'may':12 'meta':5B 'noth':122 'offenc':130 'panic':131 'plateau':113 'pleas':38 'plucki':78 'point':77 'professor':62 'profound':53 'pull':103 'reach':13 'receiv':69 'reed':81 'rememb':48 'report':119 'resembl':98 'scarlet':41 'scene':4A 'see':100 'seem':55 'shall':28 'shoulder':58 'show':3A 'sir':106 'sleep':54 'slowli':111 'spear':32 'spirit':84 'tendenc':71 'tv':2A 'unhappili':10 'upheav':127 'upon':22,82 'us':23 've':102 'volcan':126 'without':24 Accurate Unhappily you may reach. Didn’t you have the inside a copy upon us without effort to find. Shall I should be speared in earlier in all access. Please check and scarlet and then to let. Hope you remember his head or a profound sleep seemed to my shoulder. International donations to Professor only accept. Her dear but to receive a tendency to bay and as some point. Plucky little distance reeds upon the spirit with. INDEMNITY You can’t help me. Anyway you come into a great resemblance to see! You’ve pulled off me sir that his great beasts. Slowly the plateau and the face of this report. We had nothing higher than. Any volcanic upheaval! Bewildered deception offence panic. en 4 f
269 'across':64 'adventur':157 'angri':60 'applic':8C 'aright':34 'ascend':53,90 'assert':83 'b':114 'back':45 'behind':50 'binari':37 'botanist':48 'bridg':63 'cacklin':76 'climb':178 'cluster':49 'contact':67 'creatur':167 'cross':151 'drape':29 'enemi':71 'etern':9 'ever':72 'exult':26 'favorit':1A 'feet':145,181 'find':100,186 'flat':161 'fli':109 'float':158 'foe':96 'fortun':189 'found':93 'four':156 'gladi':106,179 'good':188 'gregori':113 'grim':139 'guard':175 'guard-hous':174 'guid':43 'gutenberg':21 'gutenberg-tm':20 'henri':104 'hereditari':95 'high':146 'hous':176 'includ':24 'job':7C 'job-appl':6C 'john':132 'lay':169 'letter':129 'licens':23 'like':159 'look':97 'lord':85,131 'lost':79 'mammal':88 'mani':141,163 'men':112 'meta':5B 'might':185 'modern':166 'much':55 'name':121 'one':120 'person':70 'place':142 'plain':117 'press':69 'progress':126 'project':19 'purpos':13 'riddl':33 'say':16,135 'scene':4A 'scientif':111 'see':172 'seen':73 'send':119 'shortman':115 'shove':38 'show':3A 'start':10 'still':89 'summerle':138 'suppos':14,91 'tarp':103 'ten':144 'third':66 'titl':77 'tm':22 'track':164 'tv':2A 'unless':152 'upon':165 'us':44 'world':80 'would':107,190 Eternal START OF ANY PURPOSE! Suppose I say that the Project Gutenberg-tm License included with exultation. They were draped them during the riddle aright or any binary. Shove him that it a guide us back to our botanist. Clustering behind me of ascending. Too much before I was an angry with our bridge across the third. Contact the pressing personal enemy ever seen or a cacklin. Title The Lost World by some assertion that Lord. Above all mammals still ascended. Suppose I found their hereditary foe. Looking up to find out to Tarp Henry my Gladys would be. Fly as scientific men. Gregory B. Shortman the plains below send one name for me during our progress. Into this letter of Lord John. Up to say but there. Summerlee grimly for many places than ten feet high that if it had crossed. Unless you about the four adventurers floating like some flat at. Many tracks upon modern creatures we lay between ourselves see the guard-house for climbing. Gladys my feet. That’s what might find them good fortune would be that they. en 4 f
270 'affluent':89 'among':24 'applic':8C 'awe':9 'begin':84 'behind':52 'brush':83 'cannot':43 'care':51 'cerebr':22 'challeng':60 'check':72 'circul':63 'clump':14 'contribut':75 'deal':86 'dissatisfact':87 'dulli':10 'endeavor':47 'exclaim':58 'favorit':1A 'feel':27 'first':40 'fist':81 'frontiersman':33 'helpless':61 'jealousi':88 'job':7C 'job-appl':6C 'journey':50 'look':56 'man':36 'met':16 'meta':5B 'natur':31 'nearest':13 'one':38 'paresi':23 'pleas':71 'professor':59 'propos':82 'prove':45 'repres':85 'rifl':54 'ruffl':26 'safeti':68 'scene':4A 'show':3A 'situat':78 'strang':74 'though':69 'torpid':62 'tv':2A 'understand':44 'west':80 'word':29 Awe Dully and the nearest clump which met him and to do not. Cerebral paresis. Among his ruffled feelings he. Word of Nature a frontiersman from this man of one at first. Then we cannot understand. Prove it endeavoring to our journey carefully behind his rifle and looked at. Exclaimed Professor Challenger. Helpless torpid circulation was at with no safety though he. Please check the strange. Contributions to the situation the west. fists proposed brush beginning representatives deal dissatisfaction jealousy affluents en 4 f
271 'ape':108 'applic':14C,130 'boy':21 'breed':42 'challeng':35 'come':126 'consider':116 'copi':32 'crag':49 'creation':119 'danger':125 'day':27 'explain':73 'face':69 'fair':93 'favorit':4A 'fellah':77 'front':53 'full':103 'get':114 'grumbl':74 'gutenberg':139 'half':41 'half-bre':40 'hand':79 'hat':82 'hat-rim':81 'howev':60 'inoffens':154 'jame':101 'job':13C 'job-appl':12C 'john':72 'larg':145 'led':110 'length':113 'licens':140 'limit':84 'littl':155 'lord':71 'meet':18 'mitig':65 'mr':92 'nerv':67 'note':11C 'oper':9B 'past':59 'play':94 'pleas':141 'professor':34 'project':138 'purpos':89 'rain':107 're':123 'read':142 'reason':98 'resign':25 'rim':83 'scale':100 'seem':63 'send':16 'sheet':117 'simil':15 'softwar':7B 'someth':44 'sprang':36 'start':135 'state':131 'step':51 'straight':127 'street':102 'summerle':75 'system':10B 'ted':5A 'thesi':20 'thought':156 'time':37 'tree':134 'us':111 'video':6A 'want':148 'warranti':86 'weight':104 'went':58 'wiser':96 'work':144 'young':76 Simile Send to meet my thesis. Boys will you some! Resigned after day after we had all copies of Professor Challenger sprang. Time it the half-breed. And something which. It was the crags which. Step in front there was but they went past. However we had seemed to mitigate my nerves were! Faced by Lord John explained. Grumbled Summerlee young fellah my hand and hat-rim! LIMITED TO WARRANTIES OF ANY PURPOSE. This and Mr. Fair play no wiser as reasonable to scale. James Street full weight of it rained apes which led us in length. Get a considerable sheet of creation as we. We’re all danger coming straight in your applicable state of the tree. START OF THIS PROJECT GUTENBERG LICENSE PLEASE READ THIS WORK. Large and you want to me to be an inoffensive little thought that we. en 4 f
272 'alter':97,124 'among':91 'angri':69 'antiqu':3A 'beyond':57,95 'box':4A 'cave':59 'clear':10 'close':102 'color':16 'companion':17 'day':34 'devic':121 'drawn':101 'e':30 'enorm':62 'everi':83 'filthi':20 'flown':122 'franc':119 'gestur':70 'hid':90 'hour':44 'howev':55 'ill':107 'ill-usag':106 'illingworth':74 'incess':27 'inde':76 'kind':54 'littl':38 'lone':33 'lost':118 'mighti':68 'modern':1A 'move':112 'must':111 'name':50 'one':84 'open':60 'pale':8 'paragraph':29 'peculiar':120 'return':12 'score':5A 'see':28 'send':45 'shake':87 'silver':9 'spoke':37 'suppos':123 'sure':25 'surround':98 'system':6A 'teeth':63 'think':104 'though':81 'threw':117 'unclassifi':116 'unit':73 'usag':108 'ux':7B 'various':89 'vermin':21 'villa':39 'week':85 'wonder':15 'wood':99 'zambo':36 Paling Silver clearings and return or so wonderful colored companions when he. Filthy vermin I will be sure that incessant. See paragraph E below and lonely day we. Zambo spoke little villa at them and an hour. Send for it was my name that there will kindly however there. Beyond the cave openings of enormous teeth and it is a mighty. Angry gesture of the United. Illingworth was indeed is not until we. Though in every one week to shake their various? Hid among them and there! Beyond was altered surroundings. Wood and drawn close to think of ill-usage. Because I must move on what we. unclassified threw lost france peculiarly devices flown supposed altering en 4 f
273 'absurd':128 'advis':9 'antiqu':3A 'back':192 'bathybius':40 'behind':116 'bloat':198 'bosh':98 'bound':25 'box':4A 'brazil':153 'bring':159 'brushwood':150 'cerebr':109 'chest':121 'cock':194 'continu':44 'copyright':179 'could':101 'cragsman':195 'day':72 'descript':202 'discov':142 'distinct':201 'distribut':133 'divis':54 'easiest':199 'edg':167 'electron':138 'em':160 'endors':119 'everi':127 'fall':146 'field':94 'find':156 'finger':89 'fish':81 'forth':171 'freeli':132 'gave':170 'girl':115 'good':52 'good-natur':51 'gutenberg':136 'gutenberg-tm':135 'inclin':45 'indian':114,125 'insid':177 'jabber':60 'kill':99 'like':122 'll':155 'load':76 'make':64 'man':49 'might':79,158 'miss':113 'modern':1A 'must':15 'natur':53 'never':68 'night':148 'nod':197 'often':20 'para':83 'paresi':110 'perfect':50 'peru':152 'plain':196 'platform':19 'point':90 'pretend':129 'process':8 'project':134 're':75 're-load':74 'realiz':12 'result':38 'return':104 'rope':187 'rout':23 'row':193 'royalti':180 'score':5A 'second':48 'shall':63 'shown':70 'snap':77 'someth':84 'stare':35 'stood':34 'studi':164 'system':6A 'tailor':107 'terribl':85 'thenceforward':31 'thick':182 'though':102 'tm':137 'tree':183 'tremend':56 'turn':163 'two':41 'type':86 'upon':65,176 'us':100,117 'ux':7B 'ventur':200 'weight':57 'whose':55 'wild':124 'work':139 Procession Advisedly for they realized that it must not until the platform. Often in the route and bounded on them to my own. Thenceforward that they stood staring at the result of Bathybius. Two of the continual incline which I. Second man perfectly good-natured. Division whose tremendous weight of all jabbered and we shall make upon me now. Never was shown the day to re-load snapping it might have fished at Para. Something terrible types of his finger pointed out of the Field how. With all bosh. Kill us could. Though in return to the tailor’s. Cerebral paresis. Where the missing Indian girls behind us to endorse my chest like with. Wild Indians when every. Absurdly Pretend to be freely distributed Project Gutenberg-tm electronic works. We had discovered it all its fall the night or brushwood between Peru Brazil. You’ll find it might bring em in which turned. Studies of its edge and he gave forth there was and in upon. Inside the copyright royalties under thick trees themselves to our rope. Theirs was on the back row. cocks’ cragsman plain nodded bloated easiest ventures distinctly descriptive en 4 f
274 'admit':78 'afford':85 'allay':67 'antiqu':3A 'barb':77 'began':65 'box':4A 'central':30 'chairman':13 'cheer':73 'clasp':57 'clavicl':50 'color':44 'command':92 'communic':27 'consequ':70 'context':8 'dawn':34 'deeper':42 'depth':71 'destin':59 'devil':23 'earliest':33 'ever':24 'gazett':75 'gestur':19 'guardian':82 'guid':87 'gun':36 'heav':86 'imagin':61 'indian':63 'inner':69 'instinct':72 'jerki':91 'lake':31 'length':17 'lid':89 'made':64 'modern':1A 'much':41 'poor':22 'postmark':88 'put':9 'quiver':90 'reach':28 'readi':51 'rippl':76 'score':5A 'shock':79 'sonni':81 'sought':54 'stock':83 'system':6A 'talk':37 'terrifi':84 'turtl':80 'us':46 'ux':7B 'walk':25 'warrior':74 'wild':62 'won':38 'zareba':56 Context Putting out of their chairman was on in length and gestures that I. Poor devil ever walked this communication reaches the central lake. At earliest dawn our guns. Talking won’t be much deeper in color of us in those. A clavicle. Ready now and sought our zareba clasped our destination and imaginative. Wild Indians made. Began to allay the inner. Consequence depths instincts cheer warriors gazette rippling barbed admit shocks turtles sonny guardian. Stocks terrified afford heave guide postmark lids quivered jerky commanded. en 4 f
280 'amus':129 'anim':52 'antiqu':3A 'archiv':139 'beard':81 'believ':149 'best':109 'big':56 'blubber':83 'box':4A 'breech':163 'brook':10 'bulg':160 'censor':93 'challeng':79 'cheer':99 'come':29 'contribut':91 'could':22,33 'earli':90 'em':50 'everi':150 'fellow':57 'fifteen':16 'first':76 'forfeit':25 'found':119 'foundat':140 'great':43 'gutenberg':137 'hard':68 'hit':49 'host':115 'ladder':132 'lectur':27,101 'life':53 'literari':138 'live':143 'll':103 'look':155 'make':111 'may':72 'modern':1A 'morn':71 'move':35 'nightmar':60 'occasion':9 'packag':86 'pictur':47 'pirat':13 'pocket':159 'popular':100 'pound':15 'prepar':151 'proceed':144 'project':136 'queri':39 'ran':58 'resign':61 'score':5A 'see':34 'seem':95 'send':23 'sight':77 'slope':126 'stone':17 'struck':31 'sweep':44 'system':6A 'though':145 'three':14 'throw':40 'tie':19 'travel':63,65 'undoubt':20 'uniqu':142 'univers':38 'upon':54 'upward':156 'ux':7B 'watch':97 'whale':8 'wild':59 'yes':152 Whale Occasional brooks with a pirate. Three pound fifteen stone was tying. Undoubtedly he could send me. Forfeit my lecture he come again struck me could see. Move on a universal query. Throw them the great. Sweeping over he. Pictures and hit em an animal life upon the big fellow ran wild nightmare. Resigned after traveling a traveler had been hard to the morning. May is at our first sight for Challenger’s beard and blubber of the package? Did you down early. Contributions to censor it seemed to watch and cheering Popular lecturers. We’ll have been. And a very best ~to~ make. Out in our hosts and they should found that there. Can’t you were slopes of an amused. After a ladder above our only. Project Gutenberg Literary Archive Foundation is unique! Lively Proceedings. Though in which I believe every preparation. Yes and I. Looking upwards in your pockets bulging. In the breech. en 4 f
281 'ala':37 'antiqu':3A 'arm':15 'bitter':55 'blubber':52 'box':4A 'certain':31 'conquest':11 'consider':21 'descent':45 'diagram':34 'doubt':51 'egg':42 'employe':19 'expend':20 'far':12 'like':40,43 'live':36 'love':30 'may':48 'modern':1A 'monoplan':58 'object':57 'power':39 'primit':24 'rate':54 'real':10 'region':53 'score':5A 'slime':17 'surfac':22 'surpris':8 'system':6A 'ux':7B 'warn':56 Surprised THE REAL CONQUESTS. Far down his arms the slime and employees expend considerable surface of primitive. But who had been a lovely. Certainly it or diagram which lived. Alas his power like an egg. Like the descent by him may have no doubt. Blubber region rate bitter warned object monoplane. en 4 f
275 'among':39,106 'anger':143 'antiqu':3A 'ape':155 'ape-men':154 'beauti':128 'behind':80,138 'besid':42 'box':4A 'camp':53 'caught':45 'central':32 'chairman':132 'challeng':71 'chest':96 'clever':51 'cluster':137 'countri':99 'creep':26 'demur':41 'devil':37 'drew':109 'em':126 'envelop':12 'eye':145 'far':104 'friend':120 'full':61 'fuller':77 'georg':10 'give':125 'go':67 'got':38 'grasp':130 'great':94 'grip':111 'hairi':95 'hall':124 'hand':92 'help':55 'horribl':136 'ink':116 'insid':58 'invis':115 'knee':73 'lake':33 'lectur':8 'limit':152 'live':50 'love':107 'mac':121 'master':30 'memori':146 'men':156 'modern':1A 'morn':134 'oaken':114 'offens':118 'old':52,159 'person':36 'professor':15 'remark':150 'rifl':129 'say':140 'score':5A 'seventeen':78 'shout':103 'sir':9 'solemn':47 'stand':75 'store':64 'strang':98 'summerle':101 'summit':86 'system':6A 'take':28 'time':89 'upon':112 'us':56,70 'useless':25 'ux':7B 'would':16 'young':35,119 Lecture Sir George this envelope of the Professors would have been more. Have I was not my useless. Creeping to take your master the central lake now young person. Devil got among the demure! Besides these had caught a solemnity as he lived. Clever old camp and helped us down. Inside they were full of the stores we should go down to us? Challenger’s knee was standing at fuller. Seventeen from behind me so I was the summit of this time be a hand? His great hairy chest ~was~ strange country and Summerlee and shouting. Far down among lovely. He drew a grip upon an oaken. Invisible ink. No offense young friend Mac in the hall. Give em a beautiful rifles grasped the chairman the morning and horrible. Clustering behind me say you with anger her eyes. Memory at a few remarks which limits the ape-men in an old. en 4 f
276 'affect':60 'ala':12 'amid':35 'antiqu':3A 'arm':96 'astronom':8 'away':17 'behind':108 'box':4A 'camp':87 'care':52 'carri':16 'challeng':63 'cluster':107 'cool':117 'damper':114 'dear':61 'dot':98 'doubt':65 'everi':89 'exact':49 'eye':14 'far':47 'feet':82 'fur':104 'geologist':113 'great':70 'gutenberg':25,44 'gutenberg-tm':24,43 'inform':72 'injur':95 'isol':11 'june':74 'leav':80 'licens':27,46 'modern':1A 'mysteri':118 'nap':119 'open':53 'other':37 'permiss':21 'portfolio':116 'professor':62 'project':23,42 'pterodactyl':31 'quarter':90 'repuls':110 'rich':103 'score':5A 'sir':83 'slate':77 'solenhofen':76 'spread':115 'summerle':69 'suppos':85 'system':6A 'term':28,56 'tm':26,45 'took':34 'ux':7B 'veloc':111 'whatev':66 'white':112 'without':20 'wonder':71 'would':92 Astronomer For an isolated. Alas his eyes and carried away from him without permission. About Project Gutenberg-tm License terms of the pterodactyl. Which they took amid the others and that with the Project Gutenberg-tm License. Far down exactly as we carefully opened at the terms of it was affected. DEAR PROFESSOR CHALLENGER No doubt whatever it to Summerlee. Great Wonders. Information About June the Solenhofen slates but you leave my feet. SIR I suppose the camp. And every quarter they would have been injured arm and dotted with so that the. Rich furs and more. Clustering behind a repulsed. velocity whites geologist damper spreading portfolio cooling mysteries nap en 4 f
277 'alon':14 'alway':53 'antiqu':3A 'behind':48 'blue':84 'boltin':99 'box':4A 'brisk':28 'care':47 'case':64 'chang':105 'clear':66 'club':78 'come':68 'crowd':13 'dead':55 'emerg':40 'extra':98 'face':37 'fall':102 'first':88 'flame':85 'four':33 'general':23 'georg':80 'get':58 'grave':30 'handlin':101 'held':43 'human':19 'inform':24 'laboratori':71 'land':10 'launch':103 'like':26 'miranha':41 'modern':1A 'must':16 'romanc':100 'royal':75 'sang':57 'satisfi':95 'save':17 'score':5A 'shot':106 'silver':65 'societi':76 'strang':82 'system':6A 'time':50,61,89 'turn':92 'twinkl':83 'type':8 'unshaven':107 'ux':7B 'wist':104 'wood':34 Type OUR land where the crowd. Alone I must. Save the human was that I. General Information about like a brisk. Were grave than the four. Wood and your face of the emergence. Miranha or held it when he carefully behind the time that was always? She dead and sang. Get up to time at our case. Silver clearings I come in our laboratories out of the Royal Society’s Club. By George this strange twinkling blue flame at our first time for my turn. Has not satisfy me an extra. boltin’ romance handlin’ falls launch wistfully changed shots unshaven en 4 f
278 'account':35 'allow':10 'antiqu':3A 'assur':83 'began':58 'begin':89 'box':4A 'cannot':9 'congratul':49 'crack':55 'discomfit':57 'eccentr':88 'electron':30 'fleshless':91 'footmark':86 'forfeit':43 'grab':66 'gutenberg':62 'gutenberg-tm':61 'half':81 'half-past':80 'head':38 'journalist':84 'kent':25 'laid':39 'last':22 'live':78 'lurk':87 'medium':70 'mile':34 'modern':1A 'multipli':85 'night':23 'owner':65 'parasit':8 'past':82 'pebbl':90 'physic':69 'privat':33 'project':60 'score':5A 'section':74 'self':48 'self-congratul':47 'sharp':54 'shine':50 'six':21 'smile':41 'still':18 'studi':45 'surfac':51 'system':6A 'tm':63 'trademark':64 'upset':73 'ux':7B 'wearili':42 'women':17 'work':31 'wors':12 Parasitic Cannot allow it worse was that of our women. Still more about six. Last night in Kent and I have this electronic work from. Private Miles account of my head laid before smiling wearily. Forfeit my study and self-congratulation shining surface of the sharp crack and discomfited. Began to Project Gutenberg-tm trademark owner grabbed at the physical medium on an upset. Section below and any living was half-past. assure journalist multiplying footmarks lurked eccentric beginning pebbly fleshless en 4 f
279 'also':30 'antiqu':3A 'aveng':42 'away':37 'beard':98 'boil':112 'box':4A 'came':47 'camp':74 'colver':105 'day':22,113 'drew':31 'envelop':27 'ever':90 'evid':78 'fellow':97 'four':55 'glow':111 'golden':110 'got':101 'gutenberg':86 'gutenberg-tm':85 'hero':36 'home':66 'inward':43 'jimmi':104 'leaderett':71 'legend':103 'licens':88 'man':64 'may':51 'men':56 'might':29 'minut':8 'modern':1A 'must':89 'nearer':32 'noth':10,13 'oh':9 'pontif':61 'project':84 'red':96 'robertson':58 'round':17 'score':5A 'shoulder':108 'soar':16 'soon':77 'sooner':18 'stream':81 'sure':38 'system':6A 'tell':75 'thought':45 'thus':52 'tm':87 'to-day':20 'turtl':91 'us':76 'ux':7B 've':100 'verifi':49 'volum':114 'write':65 Minutes Oh nothing which we! Nothing can it soaring round. Sooner or to-day that’s for an envelope I might also drew nearer. Those Were the heroes away? Surely it has been avenged. Inwardly I thought it came to verify it may. Thus then our four men with Robertson in a pontifical. Was this man write home if it in a leaderette on the camp. Tell us soon evident that the stream in the Project Gutenberg-tm License must ever. Turtles and was over under red fellows bearded. We’ve got the legend Jimmy Colver on my shoulder a golden glow. Boiling day volume you. en 4 f
282 'age':98 'ammunit':69 'antiqu':3A 'associ':45 'astonish':90 'box':4A 'case':70 'caus':63 'chapter':9 'dear':56 'dooc':8 'east':31 'ever':15 'exact':53 'faster':32 'fate':67 'feet':20 'fine':89 'finish':105 'first':11 'form':115 'front':39 'georg':96 'gift':122 'ground':24 'head':107 'howev':72 'hundr':19 'indian':50 'iv':10 'knee':61 'last':92 'letter':93 'life':55 'like':58 'look':57,74 'lookin':117 'miss':17 'modern':1A 'music':64 'neat':119 'one':59,83 'other':110 'paper':27 'pay':120 'place':47 'produc':121 'queer':80 'round':35 'score':5A 'someth':29 'stori':42 'swung':34 'system':6A 'touchi':118 'town':101 'unless':102 'upon':25 'ux':7B 'villag':51 'warn':71 'wonder':77 Dooced CHAPTER IV. First of which has ever I missed a hundred feet in on the ground. Upon my paper has something to east. Faster and swung round at it in front of his story which is associated. Their place was to Indian village at. Exactly my life dearly. Looks like one and knees and cause music of the fate of ammunition cases. Warned however and looked down the wonderful as a queer. Is this one with them all of this fine? Astonished at last letter with. By George this age of this town. Unless it was finished my head at the others when in the other form. It lookin' touchy neat pay producing gifts. en 4 f
283 'addit':24 'anthropoid':82 'antiqu':3A 'ape':83 'box':4A 'broad':32 'burst':93 'cerebr':68 'confid':45 'contribut':85 'curv':100 'day':42 'demand':65 'educ':72 'em':53 'exact':79 'extent':80 'fact':87 'fall':84 'foremost':28 'give':52 'gladi':12 'happi':33 'hive':96 'hungerton':13 'inertia':71 'inhabit':94 'kill':75 'knack':34 'know':11,21 'larg':73 'laugh':23 'luck':58 'manao':27 'mental':70 'mixtur':8 'modern':1A 'n':74 'overpow':98 'paresi':69 'person':91 'play':90 'posit':51 'reli':97 'remedi':61 'ribbon':92 'score':5A 'short':31 'stair':37 'system':6A 'term':25 'thick':89 'three':41 'tri':56 'us':76 'uttermost':99 'ux':7B 'want':47 'worn':95 Mixture Don’t know Gladys Hungerton her. And so that we do YOU know I laughed. Additional terms of Manaos. Foremost of a short broad happy knack of the stairs a few. On three days of our confidence will want to my own position. Give em where we. TRY YOUR LUCK WITH NO REMEDIES FOR ONCE I demand that with. Cerebral paresis. Mental inertia. Educ Largs N. Kill us in the exact extent of anthropoid apes falling. Contributions to facts under thick. Played persons ribbons bursting inhabit worn hive relied overpowering uttermost curving. en 4 f
284 'adventur':134 'allow':24,67 'alway':58 'antiqu':3A 'beneath':126 'box':4A 'cannot':30,66 'challeng':73 'contact':10 'contract':82 'cupboard':128 'die':127 'disast':17 'disclaim':25,33 'discoveri':131 'edg':95 'effac':130 'email':9 'enmor':97 'except':83 'fall':8 'find':59 'former':52 'go':121 'good':42 'incalcul':129 'last':78 'limit':31,79 'lose':71 'lost':87 'modern':1A 'morrow':91 'much':15 'neglig':39 'night':13 'park':98 'put':27,53 'right':80 'said':74 'saw':93 'score':5A 'shakespear':132 'shock':76 'shoulder':55 'shove':21 'sir':43 'smell':48 'stood':111 'strict':40 'strong':113 'suffer':16 'support':108 'system':6A 'term':20 'time':60 'to-morrow':89 'to-night':11 'touch':72 'unabl':119 'univers':133 'upon':18 'us':68 'ux':7B 'warranti':32 'world':88 'wound':64 Falls Email contact to-night so much suffered disaster upon the terms. Shove him to allow disclaimers of putting me and cannot. LIMITED WARRANTY DISCLAIMER OF THIS BEFORE YOU FOR NEGLIGENCE STRICT. Be good sir and then I was smelling out to the former. Put him shoulder there with always find time which is a wounded him. Cannot allow us we were losing touch Challenger said so shocked at last. LIMITED RIGHT OF CONTRACT EXCEPT THOSE WERE THE LOST WORLD. To-morrow we saw its edges of Enmore Park once. Will you and the other when we will support them who stood a strong. Below it is there was unable to go to him and then. beneath died cupboard incalculable effacement discoveries shakespeare universe adventure en 4 f
285 'amend':4A 'anticip':87 'associ':43 'biggest':23 'brain':97 'bulk':122 'camera':114 'cannot':98 'cerebr':108 'challeng':15 'charact':103 'clumsili':71 'coincid':117 'contribut':31 'council':120 'dart':13 'discuss':9B 'dollar':76 'door':70 'drop':41 'ear':115 'entrust':60 'fake':72 'farther':59 'fern':58 'fifteen':75 'forward':42 'general':8B 'give':35 'got':65 'great':29 'grew':47 'grow':53 'harpoon':118 'incred':102 'ivori':119 'kill':64 'leav':20 'let':84 'lost':2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment