unclekryon 0.4.10 → 0.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +6 -19
- data/Gemfile.lock +19 -23
- data/README.md +3 -2
- data/Rakefile +11 -30
- data/bin/unclekryon +4 -15
- data/hax/kryon.yaml +28 -0
- data/hax/kryon_aums_2002-2005.yaml +460 -0
- data/hax/kryon_aums_2006.yaml +601 -0
- data/hax/kryon_aums_2007.yaml +1024 -0
- data/hax/kryon_aums_2008.yaml +950 -0
- data/hax/kryon_aums_2009.yaml +496 -0
- data/hax/kryon_aums_2010.yaml +1443 -0
- data/hax/kryon_aums_2011.yaml +1458 -0
- data/hax/kryon_aums_2012.yaml +2123 -0
- data/hax/kryon_aums_2013.yaml +1647 -0
- data/hax/kryon_aums_2014.yaml +2478 -0
- data/hax/kryon_aums_2015.yaml +3386 -0
- data/hax/kryon_aums_2016.yaml +3476 -0
- data/hax/kryon_aums_2017.yaml +3712 -0
- data/hax/kryon_aums_2018.yaml +3654 -0
- data/lib/unclekryon.rb +165 -165
- data/lib/unclekryon/data/album_data.rb +74 -82
- data/lib/unclekryon/data/artist_data.rb +24 -36
- data/lib/unclekryon/data/artist_data_data.rb +29 -41
- data/lib/unclekryon/data/aum_data.rb +20 -32
- data/lib/unclekryon/data/base_data.rb +27 -39
- data/lib/unclekryon/data/pic_data.rb +25 -37
- data/lib/unclekryon/data/release_data.rb +14 -26
- data/lib/unclekryon/data/social_data.rb +6 -18
- data/lib/unclekryon/data/timespan_data.rb +16 -28
- data/lib/unclekryon/dev_opts.rb +7 -19
- data/lib/unclekryon/hacker.rb +119 -133
- data/lib/unclekryon/iso.rb +128 -138
- data/lib/unclekryon/iso/base_iso.rb +69 -81
- data/lib/unclekryon/iso/can_prov_terr.rb +34 -47
- data/lib/unclekryon/iso/country.rb +36 -49
- data/lib/unclekryon/iso/language.rb +86 -96
- data/lib/unclekryon/iso/region.rb +11 -25
- data/lib/unclekryon/iso/subregion.rb +11 -25
- data/lib/unclekryon/iso/usa_state.rb +28 -41
- data/lib/unclekryon/jsoner.rb +31 -50
- data/lib/unclekryon/log.rb +34 -46
- data/lib/unclekryon/parsers/kryon_aum_year_album_parser.rb +163 -167
- data/lib/unclekryon/parsers/kryon_aum_year_parser.rb +122 -127
- data/lib/unclekryon/server.rb +8 -17
- data/lib/unclekryon/trainer.rb +69 -83
- data/lib/unclekryon/uploader.rb +8 -17
- data/lib/unclekryon/util.rb +80 -92
- data/lib/unclekryon/version.rb +4 -16
- data/train/kryon.yaml +6077 -0
- data/unclekryon.gemspec +44 -42
- metadata +59 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e78b6857ef3285c99371d4a7449a99e911853741bb8c67555d7fccda8b61e0a3
|
4
|
+
data.tar.gz: 5634b2d20876ce0eff3046847f23cf2ac930ba23cac2a6f5a950283f1c32b5e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b77115fd6a69c8920b1d52e35a109825e285ba288d939718eab9ac7a688fd76e2fd4feadb190b850a22e9d5a7cc636b70e819de1f959f965089944a841d15b14
|
7
|
+
data.tar.gz: 6ab4a094bf26f0bd1e6c367d5a941e8e7c90bdcbba8d578f49f616932037579d3a7ee2b65482968309616c6cba5a2ac10d54307120ec9fb48ce3c08d514cacc0
|
data/Gemfile
CHANGED
@@ -1,31 +1,18 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
#--
|
5
|
-
# This file is part of UncleKryon-server.
|
6
|
-
# Copyright (c) 2017-2019 Jonathan Bradley Whited (@esotericpig)
|
7
|
-
#
|
8
|
-
# UncleKryon-server is free software: you can redistribute it and/or modify
|
9
|
-
# it under the terms of the GNU General Public License as published by
|
10
|
-
# the Free Software Foundation, either version 3 of the License, or
|
11
|
-
# (at your option) any later version.
|
12
|
-
#
|
13
|
-
# UncleKryon-server is distributed in the hope that it will be useful,
|
14
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
-
# GNU General Public License for more details.
|
17
|
-
#
|
18
|
-
# You should have received a copy of the GNU General Public License
|
19
|
-
# along with UncleKryon-server. If not, see <https://www.gnu.org/licenses/>.
|
20
|
-
#++
|
21
|
-
|
22
4
|
|
23
5
|
source 'https://rubygems.org'
|
24
6
|
|
7
|
+
# NOTE: The author finally updated the version on RubyGems,
|
8
|
+
# so this has been moved to the Gemspec.
|
9
|
+
# However, in case the author doesn't update it again,
|
10
|
+
# leaving this code here for possible use in the future.
|
11
|
+
#
|
25
12
|
# For training type of text (machine learning).
|
26
13
|
# - nbayes Gem is out-of-date, so must use GitHub.
|
27
14
|
# - ":git" with "https" is used instead of ":github" for security.
|
28
15
|
# - Use "bundle list" (not "gem list") to see it.
|
29
|
-
gem 'nbayes'
|
16
|
+
#gem 'nbayes',git: 'https://github.com/oasic/nbayes.git',ref: '3dd46bd'
|
30
17
|
|
31
18
|
gemspec
|
data/Gemfile.lock
CHANGED
@@ -1,43 +1,39 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/oasic/nbayes.git
|
3
|
-
revision: 3dd46bd2c8a2258ccdb69ee9ceff7d2fb5d62ed5
|
4
|
-
ref: 3dd46bd
|
5
|
-
specs:
|
6
|
-
nbayes (0.1.2)
|
7
|
-
|
8
1
|
PATH
|
9
2
|
remote: .
|
10
3
|
specs:
|
11
|
-
unclekryon (0.4.
|
12
|
-
|
4
|
+
unclekryon (0.4.11)
|
5
|
+
nbayes (= 0.1.3)
|
6
|
+
nokogiri (~> 1.11)
|
13
7
|
|
14
8
|
GEM
|
15
9
|
remote: https://rubygems.org/
|
16
10
|
specs:
|
17
|
-
io-console (0.5.
|
18
|
-
irb (1.
|
19
|
-
reline (>= 0.
|
20
|
-
mini_portile2 (2.
|
21
|
-
minitest (5.14.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
11
|
+
io-console (0.5.9)
|
12
|
+
irb (1.3.6)
|
13
|
+
reline (>= 0.2.5)
|
14
|
+
mini_portile2 (2.5.3)
|
15
|
+
minitest (5.14.4)
|
16
|
+
nbayes (0.1.3)
|
17
|
+
nokogiri (1.11.7)
|
18
|
+
mini_portile2 (~> 2.5.0)
|
19
|
+
racc (~> 1.4)
|
20
|
+
racc (1.5.2)
|
21
|
+
rake (13.0.3)
|
22
|
+
raketeer (0.2.13)
|
26
23
|
rake
|
27
|
-
reline (0.
|
24
|
+
reline (0.2.6)
|
28
25
|
io-console (~> 0.5)
|
29
26
|
|
30
27
|
PLATFORMS
|
31
28
|
ruby
|
32
29
|
|
33
30
|
DEPENDENCIES
|
34
|
-
bundler (~> 2.
|
35
|
-
irb (~> 1.
|
31
|
+
bundler (~> 2.2)
|
32
|
+
irb (~> 1.3)
|
36
33
|
minitest (~> 5.14)
|
37
|
-
nbayes!
|
38
34
|
rake (~> 13.0)
|
39
35
|
raketeer (~> 0.2)
|
40
36
|
unclekryon!
|
41
37
|
|
42
38
|
BUNDLED WITH
|
43
|
-
2.
|
39
|
+
2.2.21
|
data/README.md
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
# UncleKryon-server
|
2
|
+
|
2
3
|
Server (and Hacker) for the Uncle Kryon mobile apps.
|
3
4
|
|
4
|
-
Tasks include sending push notifications, building the database, and
|
5
|
+
Tasks include sending push notifications, building the database, and scraping the websites for the data.
|
5
6
|
|
6
7
|
## Contents
|
7
8
|
- [Setup](#setup)
|
@@ -39,7 +40,7 @@ $ bundle exec rake -T
|
|
39
40
|
[GNU GPL v3+](LICENSE)
|
40
41
|
|
41
42
|
> UncleKryon-server (https://github.com/esotericpig/UncleKryon-server)
|
42
|
-
> Copyright (c) 2017-
|
43
|
+
> Copyright (c) 2017-2021 Jonathan Bradley Whited
|
43
44
|
>
|
44
45
|
> UncleKryon-server is free software: you can redistribute it and/or modify
|
45
46
|
> it under the terms of the GNU General Public License as published by
|
data/Rakefile
CHANGED
@@ -1,30 +1,11 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
#--
|
5
|
-
# This file is part of UncleKryon-server.
|
6
|
-
# Copyright (c) 2017-2019 Jonathan Bradley Whited (@esotericpig)
|
7
|
-
#
|
8
|
-
# UncleKryon-server is free software: you can redistribute it and/or modify
|
9
|
-
# it under the terms of the GNU General Public License as published by
|
10
|
-
# the Free Software Foundation, either version 3 of the License, or
|
11
|
-
# (at your option) any later version.
|
12
|
-
#
|
13
|
-
# UncleKryon-server is distributed in the hope that it will be useful,
|
14
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
-
# GNU General Public License for more details.
|
17
|
-
#
|
18
|
-
# You should have received a copy of the GNU General Public License
|
19
|
-
# along with UncleKryon-server. If not, see <https://www.gnu.org/licenses/>.
|
20
|
-
#++
|
21
|
-
|
22
4
|
|
23
5
|
require 'bundler/gem_tasks'
|
24
6
|
|
25
7
|
require 'rake/clean'
|
26
8
|
require 'rake/testtask'
|
27
|
-
|
28
9
|
require 'raketeer/irb'
|
29
10
|
require 'raketeer/nokogiri_installs'
|
30
11
|
require 'raketeer/run'
|
@@ -33,24 +14,24 @@ require 'unclekryon/version'
|
|
33
14
|
|
34
15
|
PKG_DIR = 'pkg'
|
35
16
|
|
36
|
-
CLEAN.exclude('.git
|
17
|
+
CLEAN.exclude('{.git,stock}/**/*')
|
37
18
|
CLOBBER.include('doc/',File.join(PKG_DIR,''))
|
38
19
|
|
39
|
-
task :
|
20
|
+
task default: [:irb]
|
21
|
+
|
22
|
+
desc "Package data as a Zip file into '#{File.join(PKG_DIR,'')}'"
|
23
|
+
task :pkg_data do
|
24
|
+
pattern = File.join('{hax,train}','**','*.{yaml,yml}')
|
25
|
+
zip_name = "unclekryon-data-#{UncleKryon::VERSION}.zip"
|
40
26
|
|
41
|
-
desc "Package YAML data as a Zip file into '#{File.join(PKG_DIR,'')}'"
|
42
|
-
task :pkg_yaml do
|
43
|
-
pattern = File.join('{hax,train}','**','*.yaml')
|
44
|
-
zip_name = "unclekryon-yaml-#{UncleKryon::VERSION}.zip"
|
45
|
-
|
46
27
|
zip_file = File.join(PKG_DIR,zip_name)
|
47
|
-
|
28
|
+
|
48
29
|
mkdir_p PKG_DIR
|
49
|
-
|
50
|
-
sh 'zip','-9rv',zip_file,*Dir.glob(pattern).sort
|
30
|
+
|
31
|
+
sh 'zip','-9rv',zip_file,*Dir.glob(pattern).sort
|
51
32
|
end
|
52
33
|
|
53
|
-
Rake::TestTask.new
|
34
|
+
Rake::TestTask.new do |task|
|
54
35
|
task.libs = ['lib','test']
|
55
36
|
task.pattern = File.join('test','**','*_test.rb')
|
56
37
|
task.description += " ('#{task.pattern}')"
|
data/bin/unclekryon
CHANGED
@@ -4,20 +4,9 @@
|
|
4
4
|
|
5
5
|
#--
|
6
6
|
# This file is part of UncleKryon-server.
|
7
|
-
# Copyright (c) 2017-
|
8
|
-
#
|
9
|
-
#
|
10
|
-
# it under the terms of the GNU General Public License as published by
|
11
|
-
# the Free Software Foundation, either version 3 of the License, or
|
12
|
-
# (at your option) any later version.
|
13
|
-
#
|
14
|
-
# UncleKryon-server is distributed in the hope that it will be useful,
|
15
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
17
|
-
# GNU General Public License for more details.
|
18
|
-
#
|
19
|
-
# You should have received a copy of the GNU General Public License
|
20
|
-
# along with UncleKryon-server. If not, see <https://www.gnu.org/licenses/>.
|
7
|
+
# Copyright (c) 2017-2021 Jonathan Bradley Whited
|
8
|
+
#
|
9
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
21
10
|
#++
|
22
11
|
|
23
12
|
|
@@ -27,4 +16,4 @@ require 'bundler/setup'
|
|
27
16
|
require 'unclekryon'
|
28
17
|
|
29
18
|
main = UncleKryon::Main.new(ARGV)
|
30
|
-
main.run
|
19
|
+
main.run
|
data/hax/kryon.yaml
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
Artist: !ruby/object:UncleKryon::ArtistData
|
3
|
+
updated_on: '2018-06-12 02:33:24'
|
4
|
+
updated_releases_on: '2018-06-12 02:33:24'
|
5
|
+
updated_albums_on: '2018-06-12 02:33:24'
|
6
|
+
updated_aums_on: '2018-06-12 02:33:24'
|
7
|
+
updated_scrolls_on: '2018-06-12 02:33:24'
|
8
|
+
updated_visions_on: '2018-06-12 02:33:24'
|
9
|
+
updated_pics_on: '2018-06-12 02:33:24'
|
10
|
+
|
11
|
+
id: 'Kryon'
|
12
|
+
name: 'Kryon'
|
13
|
+
long_name: 'Kryon - Lee Carroll'
|
14
|
+
desc: |-
|
15
|
+
This website is an esoteric spiritual site featuring channeled information from Kryon, a loving angelic entity.
|
16
|
+
|
17
|
+
url: 'https://www.kryon.com'
|
18
|
+
mirrors: {}
|
19
|
+
|
20
|
+
facebook: !ruby/object:UncleKryon::SocialData
|
21
|
+
username: 'KryonLeeCarroll'
|
22
|
+
url: 'https://www.facebook.com/KryonLeeCarroll'
|
23
|
+
twitter: !ruby/object:UncleKryon::SocialData
|
24
|
+
username: 'KryonLeeCarroll'
|
25
|
+
url: 'https://twitter.com/kryonleecarroll'
|
26
|
+
youtube: !ruby/object:UncleKryon::SocialData
|
27
|
+
username: 'Kryon-Official Posting Lee Carroll'
|
28
|
+
url: 'https://www.youtube.com/channel/UCMiuw8FLujKn06dnlxpbWGQ'
|
@@ -0,0 +1,460 @@
|
|
1
|
+
---
|
2
|
+
ArtistData:
|
3
|
+
Releases:
|
4
|
+
'2002-2005': !ruby/object:UncleKryon::ReleaseData
|
5
|
+
updated_on: '2019-07-29 01:41:26'
|
6
|
+
title: '2002-2005'
|
7
|
+
url: https://www.kryon.com/freeAudio_folder/mobile_pages/2002_05_freeAudio_m.html
|
8
|
+
mirrors:
|
9
|
+
original: https://www.kryon.com/freeAudio_folder/2002_05_freeAudio.html
|
10
|
+
albums:
|
11
|
+
- https://kryon.com/cartprodimages/downloadNewHampshire.html
|
12
|
+
- https://kryon.com/cartprodimages/downloadNewJersey.html
|
13
|
+
- https://kryon.com/cartprodimages/downloadmanhattan.html
|
14
|
+
- https://kryon.com/cartprodimages/downloadMiami05.html
|
15
|
+
- https://kryon.com/cartprodimages/downloadCruise1.html
|
16
|
+
- https://kryon.com/cartprodimages/downloadCruise2.html
|
17
|
+
- https://kryon.com/cartprodimages/downloadIsrael01.html
|
18
|
+
- https://kryon.com/cartprodimages/downloadIsrael02.html
|
19
|
+
- https://kryon.com/cartprodimages/downloadIsrael03.html
|
20
|
+
- https://kryon.com/cartprodimages/downloadNewport05.html
|
21
|
+
Albums:
|
22
|
+
https://kryon.com/cartprodimages/downloadNewHampshire.html: !ruby/object:UncleKryon::AlbumData
|
23
|
+
updated_on: '2019-07-29 01:49:27'
|
24
|
+
date_begin: '2002-11-23'
|
25
|
+
date_end: ''
|
26
|
+
title: 'Kryon in New Hampshire'
|
27
|
+
locations:
|
28
|
+
- Bedford,NH,USA,,North America
|
29
|
+
languages:
|
30
|
+
- eng
|
31
|
+
url: https://kryon.com/cartprodimages/downloadNewHampshire.html
|
32
|
+
mirrors: {}
|
33
|
+
desc: |-
|
34
|
+
# Kryon in New Hampshire
|
35
|
+
|
36
|
+
Bedford, New Hampshire
|
37
|
+
November 23, 2002
|
38
|
+
56 minute channelling
|
39
|
+
Music by Robert Coxon
|
40
|
+
|
41
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-newhampshire-02.html) for more photos!
|
42
|
+
pics:
|
43
|
+
https://kryon.com/cartprodimages/jan%26crowd.jpg: !ruby/object:UncleKryon::PicData
|
44
|
+
updated_on: '2019-07-29 01:49:27'
|
45
|
+
name: jan&crowd
|
46
|
+
filename: jan&crowd.jpg
|
47
|
+
alt: ''
|
48
|
+
caption: ''
|
49
|
+
url: https://kryon.com/cartprodimages/jan%26crowd.jpg
|
50
|
+
mirrors: {}
|
51
|
+
aums:
|
52
|
+
http://audio.kryon.com/en/Bedford-New%20Hampshire.mp3: !ruby/object:UncleKryon::AumData
|
53
|
+
updated_on: '2019-07-29 01:49:27'
|
54
|
+
title: 'Kryon in New Hampshire'
|
55
|
+
subtitle: 'November 23, 2002'
|
56
|
+
languages: [eng]
|
57
|
+
timespan: '0:55:55'
|
58
|
+
filesize: '41775410'
|
59
|
+
filename: Bedford-New Hampshire.mp3
|
60
|
+
url: http://audio.kryon.com/en/Bedford-New%20Hampshire.mp3
|
61
|
+
mirrors: {}
|
62
|
+
scrolls: {}
|
63
|
+
visions: {}
|
64
|
+
dump:
|
65
|
+
https://kryon.com/cartprodimages/downloadNewJersey.html: !ruby/object:UncleKryon::AlbumData
|
66
|
+
updated_on: '2019-07-29 01:49:27'
|
67
|
+
date_begin: '2004-11-13'
|
68
|
+
date_end: ''
|
69
|
+
title: '"The Truth About DNA"'
|
70
|
+
locations:
|
71
|
+
- Hasbrouck Heights,NJ,USA,,North America
|
72
|
+
languages:
|
73
|
+
- eng
|
74
|
+
url: https://kryon.com/cartprodimages/downloadNewJersey.html
|
75
|
+
mirrors: {}
|
76
|
+
desc: |-
|
77
|
+
# Kryon in New Jersey - 2004
|
78
|
+
## "The Truth About DNA"
|
79
|
+
|
80
|
+
Hasbrouck Heights, New Jersey
|
81
|
+
November 13, 2004
|
82
|
+
45 minute channelling
|
83
|
+
Music by Robert Coxon
|
84
|
+
|
85
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-NewJersey-04.html) for more photos!
|
86
|
+
pics:
|
87
|
+
https://kryon.com/cartprodimages/NJmeeting.jpg: !ruby/object:UncleKryon::PicData
|
88
|
+
updated_on: '2019-07-29 01:49:27'
|
89
|
+
name: NJmeeting
|
90
|
+
filename: NJmeeting.jpg
|
91
|
+
alt: ''
|
92
|
+
caption: ''
|
93
|
+
url: https://kryon.com/cartprodimages/NJmeeting.jpg
|
94
|
+
mirrors: {}
|
95
|
+
aums:
|
96
|
+
http://audio.kryon.com/en/New%20Jersey-P.mp3: !ruby/object:UncleKryon::AumData
|
97
|
+
updated_on: '2019-07-29 01:49:27'
|
98
|
+
title: '"The Truth About DNA"'
|
99
|
+
subtitle: 'Kryon in New Jersey - 2004'
|
100
|
+
languages: [eng]
|
101
|
+
timespan: '0:45:27'
|
102
|
+
filesize: '33685817'
|
103
|
+
filename: New Jersey-P.mp3
|
104
|
+
url: http://audio.kryon.com/en/New%20Jersey-P.mp3
|
105
|
+
mirrors: {}
|
106
|
+
scrolls: {}
|
107
|
+
visions: {}
|
108
|
+
dump:
|
109
|
+
https://kryon.com/cartprodimages/downloadmanhattan.html: !ruby/object:UncleKryon::AlbumData
|
110
|
+
updated_on: '2019-07-29 01:49:27'
|
111
|
+
date_begin: '2005-02-01'
|
112
|
+
date_end: ''
|
113
|
+
title: '"How It All Works"'
|
114
|
+
locations:
|
115
|
+
- Manhattan,NY,USA,,North America
|
116
|
+
languages:
|
117
|
+
- eng
|
118
|
+
url: https://kryon.com/cartprodimages/downloadmanhattan.html
|
119
|
+
mirrors: {}
|
120
|
+
desc: |-
|
121
|
+
# Kryon in Manhattan - 2005
|
122
|
+
## "How it all Works"
|
123
|
+
|
124
|
+
Mid-town Manhattan, New York City, NY
|
125
|
+
February 2005
|
126
|
+
41 minute channelling
|
127
|
+
Music by Robert Coxon
|
128
|
+
pics: {}
|
129
|
+
aums:
|
130
|
+
http://audio.kryon.com/en/manhattanfilal.mp3: !ruby/object:UncleKryon::AumData
|
131
|
+
updated_on: '2019-07-29 01:49:27'
|
132
|
+
title: '"How It All Works"'
|
133
|
+
subtitle: 'Kryon in Manhattan - 2005'
|
134
|
+
languages: [eng]
|
135
|
+
timespan: '0:40:57'
|
136
|
+
filesize: '30164524'
|
137
|
+
filename: manhattanfilal.mp3
|
138
|
+
url: http://audio.kryon.com/en/manhattanfilal.mp3
|
139
|
+
mirrors: {}
|
140
|
+
scrolls: {}
|
141
|
+
visions: {}
|
142
|
+
dump:
|
143
|
+
https://kryon.com/cartprodimages/downloadMiami05.html: !ruby/object:UncleKryon::AlbumData
|
144
|
+
updated_on: '2019-07-29 01:49:27'
|
145
|
+
date_begin: '2005-04-03'
|
146
|
+
date_end: ''
|
147
|
+
title: 'Kryon in Miami Beach'
|
148
|
+
locations:
|
149
|
+
- Miami Beach,FL,USA,,North America
|
150
|
+
languages:
|
151
|
+
- spa
|
152
|
+
- eng
|
153
|
+
url: https://kryon.com/cartprodimages/downloadMiami05.html
|
154
|
+
mirrors: {}
|
155
|
+
desc: |-
|
156
|
+
# Kryon in Miami Beach
|
157
|
+
## - with SPANISH translation
|
158
|
+
|
159
|
+
Miami Beach, Florida
|
160
|
+
April 3, 2005
|
161
|
+
50 minute channelling
|
162
|
+
Music by Robert Coxon
|
163
|
+
|
164
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-miami-05.html) for more photos!
|
165
|
+
pics:
|
166
|
+
https://kryon.com/cartprodimages/miamimeeting.jpg: !ruby/object:UncleKryon::PicData
|
167
|
+
updated_on: '2019-07-29 01:49:27'
|
168
|
+
name: miamimeeting
|
169
|
+
filename: miamimeeting.jpg
|
170
|
+
alt: ''
|
171
|
+
caption: ''
|
172
|
+
url: https://kryon.com/cartprodimages/miamimeeting.jpg
|
173
|
+
mirrors: {}
|
174
|
+
aums:
|
175
|
+
http://audio.kryon.com/en/Miami-P.mp3: !ruby/object:UncleKryon::AumData
|
176
|
+
updated_on: '2019-07-29 01:49:27'
|
177
|
+
title: 'Kryon in Miami Beach'
|
178
|
+
subtitle: 'April 3, 2005'
|
179
|
+
languages: [eng,spa]
|
180
|
+
timespan: '0:50:11'
|
181
|
+
filesize: '36891436'
|
182
|
+
filename: Miami-P.mp3
|
183
|
+
url: http://audio.kryon.com/en/Miami-P.mp3
|
184
|
+
mirrors: {}
|
185
|
+
scrolls: {}
|
186
|
+
visions: {}
|
187
|
+
dump:
|
188
|
+
https://kryon.com/cartprodimages/downloadCruise1.html: !ruby/object:UncleKryon::AlbumData
|
189
|
+
updated_on: '2019-07-29 01:49:27'
|
190
|
+
date_begin: '2005-09-05'
|
191
|
+
date_end: ''
|
192
|
+
title: 'Alaska Cruise 2005 #1'
|
193
|
+
locations:
|
194
|
+
- ",AK,USA,,North America"
|
195
|
+
languages:
|
196
|
+
- eng
|
197
|
+
url: https://kryon.com/cartprodimages/downloadCruise1.html
|
198
|
+
mirrors: {}
|
199
|
+
desc: |-
|
200
|
+
# Kryon in Alaska
|
201
|
+
## The Kryon Cruise #6
|
202
|
+
|
203
|
+
September 5, 2005 - Seminar Day #1
|
204
|
+
36 minute channelling
|
205
|
+
Music by Robert Coxon
|
206
|
+
|
207
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-cruise6-05.html) for more photos!
|
208
|
+
pics:
|
209
|
+
https://kryon.com/cartprodimages/Meeting03.jpg: !ruby/object:UncleKryon::PicData
|
210
|
+
updated_on: '2019-07-29 01:49:27'
|
211
|
+
name: Meeting03
|
212
|
+
filename: Meeting03.jpg
|
213
|
+
alt: ''
|
214
|
+
caption: ''
|
215
|
+
url: https://kryon.com/cartprodimages/Meeting03.jpg
|
216
|
+
mirrors: {}
|
217
|
+
aums:
|
218
|
+
http://audio.kryon.com/en/Cruise-05-1P.mp3: !ruby/object:UncleKryon::AumData
|
219
|
+
updated_on: '2019-07-29 01:49:27'
|
220
|
+
title: 'Alaska Cruise 2005 #1'
|
221
|
+
subtitle: 'The Kryon Cruise #6'
|
222
|
+
languages: [eng]
|
223
|
+
timespan: '0:35:43'
|
224
|
+
filesize: '26277789'
|
225
|
+
filename: Cruise-05-1P.mp3
|
226
|
+
url: http://audio.kryon.com/en/Cruise-05-1P.mp3
|
227
|
+
mirrors: {}
|
228
|
+
scrolls: {}
|
229
|
+
visions: {}
|
230
|
+
dump:
|
231
|
+
https://kryon.com/cartprodimages/downloadCruise2.html: !ruby/object:UncleKryon::AlbumData
|
232
|
+
updated_on: '2019-07-29 01:49:27'
|
233
|
+
date_begin: '2005-09-10'
|
234
|
+
date_end: ''
|
235
|
+
title: 'Alaska Cruise 2005 #2'
|
236
|
+
locations:
|
237
|
+
- ",AK,USA,,North America"
|
238
|
+
languages:
|
239
|
+
- eng
|
240
|
+
url: https://kryon.com/cartprodimages/downloadCruise2.html
|
241
|
+
mirrors: {}
|
242
|
+
desc: |-
|
243
|
+
# Kryon in Alaska
|
244
|
+
## The Kryon Cruise #6
|
245
|
+
|
246
|
+
September 10, 2005 - Seminar Day #2
|
247
|
+
34 minute channelling
|
248
|
+
Music by Robert Coxon
|
249
|
+
|
250
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-cruise6-05.html) for more photos!
|
251
|
+
pics:
|
252
|
+
https://kryon.com/cartprodimages/cruise2.jpg: !ruby/object:UncleKryon::PicData
|
253
|
+
updated_on: '2019-07-29 01:49:27'
|
254
|
+
name: cruise2
|
255
|
+
filename: cruise2.jpg
|
256
|
+
alt: ''
|
257
|
+
caption: ''
|
258
|
+
url: https://kryon.com/cartprodimages/cruise2.jpg
|
259
|
+
mirrors: {}
|
260
|
+
aums:
|
261
|
+
http://audio.kryon.com/en/Cruise-05-2P.mp3: !ruby/object:UncleKryon::AumData
|
262
|
+
updated_on: '2019-07-29 01:49:27'
|
263
|
+
title: 'Alaska Cruise 2005 #2'
|
264
|
+
subtitle: 'The Kryon Cruise #6'
|
265
|
+
languages: [eng]
|
266
|
+
timespan: '0:34:04'
|
267
|
+
filesize: '25309353'
|
268
|
+
filename: Cruise-05-2P.mp3
|
269
|
+
url: http://audio.kryon.com/en/Cruise-05-2P.mp3
|
270
|
+
mirrors: {}
|
271
|
+
scrolls: {}
|
272
|
+
visions: {}
|
273
|
+
dump: []
|
274
|
+
https://kryon.com/cartprodimages/downloadIsrael01.html: !ruby/object:UncleKryon::AlbumData
|
275
|
+
updated_on: '2019-07-29 01:49:27'
|
276
|
+
date_begin: '2005-10-27'
|
277
|
+
date_end: ''
|
278
|
+
title: 'Kryon in Israel Part I'
|
279
|
+
locations:
|
280
|
+
- Tel Aviv,,ISR,,Asia
|
281
|
+
languages:
|
282
|
+
- heb
|
283
|
+
- eng
|
284
|
+
url: https://kryon.com/cartprodimages/downloadIsrael01.html
|
285
|
+
mirrors: {}
|
286
|
+
desc: |-
|
287
|
+
# Kryon in Israel Part I
|
288
|
+
|
289
|
+
Tel Aviv, Israel - October 27, 2005
|
290
|
+
57 minute channelling w/ consecutive translation to
|
291
|
+
Hebrew by: Levia Valero
|
292
|
+
Music by Robert Coxon
|
293
|
+
|
294
|
+
**LOOK:** Two channellings are here, combined into this one file.
|
295
|
+
The first one is a surprise 12-minute channelling at the
|
296
|
+
beginning of the event in Tel Aviv.
|
297
|
+
|
298
|
+
[Click here](http://kryon.com/inspiritmag/scrapbooks/sb-Israel-05.html) for more photos!
|
299
|
+
pics:
|
300
|
+
https://kryon.com/cartprodimages/TAM01.jpg: !ruby/object:UncleKryon::PicData
|
301
|
+
updated_on: '2019-07-29 01:49:27'
|
302
|
+
name: TAM01
|
303
|
+
filename: TAM01.jpg
|
304
|
+
alt: ''
|
305
|
+
caption: ''
|
306
|
+
url: https://kryon.com/cartprodimages/TAM01.jpg
|
307
|
+
mirrors: {}
|
308
|
+
aums:
|
309
|
+
http://audio.kryon.com/en/Israelcombined-P01.mp3: !ruby/object:UncleKryon::AumData
|
310
|
+
updated_on: '2019-07-29 01:49:27'
|
311
|
+
title: 'Kryon in Israel Part I'
|
312
|
+
subtitle: 'Tel Aviv, Israel - October 27, 2005'
|
313
|
+
languages: [heb,eng]
|
314
|
+
timespan: '0:57:25'
|
315
|
+
filesize: '41867144'
|
316
|
+
filename: Israelcombined-P01.mp3
|
317
|
+
url: http://audio.kryon.com/en/Israelcombined-P01.mp3
|
318
|
+
mirrors: {}
|
319
|
+
scrolls: {}
|
320
|
+
visions: {}
|
321
|
+
dump: []
|
322
|
+
https://kryon.com/cartprodimages/downloadIsrael02.html: !ruby/object:UncleKryon::AlbumData
|
323
|
+
updated_on: '2019-07-29 01:49:27'
|
324
|
+
date_begin: '2005-10-28'
|
325
|
+
date_end: ''
|
326
|
+
title: 'Kryon in Israel Part II'
|
327
|
+
locations:
|
328
|
+
- Tel Aviv,,ISR,,Asia
|
329
|
+
languages:
|
330
|
+
- heb
|
331
|
+
- eng
|
332
|
+
url: https://kryon.com/cartprodimages/downloadIsrael02.html
|
333
|
+
mirrors: {}
|
334
|
+
desc: |-
|
335
|
+
# Kryon in Israel Part II
|
336
|
+
|
337
|
+
Tel Aviv, Israel - October 28, 2005
|
338
|
+
55 minute channelling w/ consecutive translation to
|
339
|
+
Hebrew by: Levia Valero
|
340
|
+
Music by Robert Coxon
|
341
|
+
|
342
|
+
**LOOK:** Two channellings are here, combined into this one file.
|
343
|
+
The first one is an early 10-minute channelling at the
|
344
|
+
start of this last day in Tel Aviv, Oct 28.
|
345
|
+
|
346
|
+
[Click here](http://kryon.com/inspiritmag/scrapbooks/sb-Israel-05.html) for more photos!
|
347
|
+
pics:
|
348
|
+
https://kryon.com/cartprodimages/TAM01.jpg: !ruby/object:UncleKryon::PicData
|
349
|
+
updated_on: '2019-07-29 01:49:27'
|
350
|
+
name: TAM01
|
351
|
+
filename: TAM01.jpg
|
352
|
+
alt: ''
|
353
|
+
caption: ''
|
354
|
+
url: https://kryon.com/cartprodimages/TAM01.jpg
|
355
|
+
mirrors: {}
|
356
|
+
aums:
|
357
|
+
http://audio.kryon.com/en/Israelcombined-P02.mp3: !ruby/object:UncleKryon::AumData
|
358
|
+
updated_on: '2019-07-29 01:49:27'
|
359
|
+
title: 'Kryon in Israel Part II'
|
360
|
+
subtitle: 'Tel Aviv, Israel - October 28, 2005'
|
361
|
+
languages: [heb,eng]
|
362
|
+
timespan: '0:54:30'
|
363
|
+
filesize: '40199836'
|
364
|
+
filename: Israelcombined-P02.mp3
|
365
|
+
url: http://audio.kryon.com/en/Israelcombined-P02.mp3
|
366
|
+
mirrors: {}
|
367
|
+
scrolls: {}
|
368
|
+
visions: {}
|
369
|
+
dump: []
|
370
|
+
https://kryon.com/cartprodimages/downloadIsrael03.html: !ruby/object:UncleKryon::AlbumData
|
371
|
+
updated_on: '2019-07-29 01:49:27'
|
372
|
+
date_begin: '2005-10-29'
|
373
|
+
date_end: ''
|
374
|
+
title: 'Kryon in Israel Part III'
|
375
|
+
locations:
|
376
|
+
- Jerusalem,,ISR,,Asia
|
377
|
+
languages:
|
378
|
+
- heb
|
379
|
+
- eng
|
380
|
+
url: https://kryon.com/cartprodimages/downloadIsrael03.html
|
381
|
+
mirrors: {}
|
382
|
+
desc: |-
|
383
|
+
# Kryon in Israel Part III
|
384
|
+
|
385
|
+
Jerusalem - October 29, 2005
|
386
|
+
1 hour file: World peace meditation and channelling
|
387
|
+
Hebrew Translation by: Levia Valero
|
388
|
+
Meditation Arabic translation is by Dian Or.
|
389
|
+
Music by Robert Coxon
|
390
|
+
|
391
|
+
**LOOK:** This is a combined audio file representing both the World Peace Meditation and the Kryon channelling given in Jerusalem. The Meditation is given by Robert Coxon, with translation into both Hebrew and Arabic. The Kryon channelling begins afterwards.
|
392
|
+
|
393
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-Jerusalem-05.html) for more photos!
|
394
|
+
pics:
|
395
|
+
https://kryon.com/cartprodimages/Jerusalem.jpg: !ruby/object:UncleKryon::PicData
|
396
|
+
updated_on: '2019-07-29 01:49:27'
|
397
|
+
name: Jerusalem
|
398
|
+
filename: Jerusalem.jpg
|
399
|
+
alt: ''
|
400
|
+
caption: ''
|
401
|
+
url: https://kryon.com/cartprodimages/Jerusalem.jpg
|
402
|
+
mirrors: {}
|
403
|
+
aums:
|
404
|
+
http://audio.kryon.com/en/Israel-Jerusalem-P.mp3: !ruby/object:UncleKryon::AumData
|
405
|
+
updated_on: '2019-07-29 01:49:27'
|
406
|
+
title: 'Kryon in Israel Part III'
|
407
|
+
subtitle: 'Jerusalem - October 29, 2005'
|
408
|
+
languages: [heb,eng]
|
409
|
+
timespan: '1:1:37'
|
410
|
+
filesize: '45155807'
|
411
|
+
filename: Israel-Jerusalem-P.mp3
|
412
|
+
url: http://audio.kryon.com/en/Israel-Jerusalem-P.mp3
|
413
|
+
mirrors: {}
|
414
|
+
scrolls: {}
|
415
|
+
visions: {}
|
416
|
+
dump: []
|
417
|
+
https://kryon.com/cartprodimages/downloadNewport05.html: !ruby/object:UncleKryon::AlbumData
|
418
|
+
updated_on: '2019-07-29 01:49:27'
|
419
|
+
date_begin: '2005-12-04'
|
420
|
+
date_end: ''
|
421
|
+
title: '"How Are You Doing?"'
|
422
|
+
locations:
|
423
|
+
- Newport Beach,CA,USA,,North America
|
424
|
+
languages:
|
425
|
+
- eng
|
426
|
+
url: https://kryon.com/cartprodimages/downloadNewport05.html
|
427
|
+
mirrors: {}
|
428
|
+
desc: |-
|
429
|
+
# Kryon in Newport Beach - 2005
|
430
|
+
## "How Are You Doing?"
|
431
|
+
|
432
|
+
Newport Beach, California
|
433
|
+
December 4, 2005
|
434
|
+
44 minute channelling
|
435
|
+
Music by Robert Coxon
|
436
|
+
|
437
|
+
[Click here](https://kryon.com/inspiritmag/scrapbooks/sb-Newportbeach-05.html) for more photos!
|
438
|
+
pics:
|
439
|
+
https://kryon.com/cartprodimages/Newport.jpg: !ruby/object:UncleKryon::PicData
|
440
|
+
updated_on: '2019-07-29 01:49:27'
|
441
|
+
name: Newport
|
442
|
+
filename: Newport.jpg
|
443
|
+
alt: ''
|
444
|
+
caption: ''
|
445
|
+
url: https://kryon.com/cartprodimages/Newport.jpg
|
446
|
+
mirrors: {}
|
447
|
+
aums:
|
448
|
+
http://audio.kryon.com/en/Newportbeach05.mp3: !ruby/object:UncleKryon::AumData
|
449
|
+
updated_on: '2019-07-29 01:49:27'
|
450
|
+
title: '"How Are You Doing?"'
|
451
|
+
subtitle: 'Kryon in Newport Beach - 2005'
|
452
|
+
languages: [eng]
|
453
|
+
timespan: '0:44:23'
|
454
|
+
filesize: '32831288'
|
455
|
+
filename: Newportbeach05.mp3
|
456
|
+
url: http://audio.kryon.com/en/Newportbeach05.mp3
|
457
|
+
mirrors: {}
|
458
|
+
scrolls: {}
|
459
|
+
visions: {}
|
460
|
+
dump:
|