Browse Source

added Alex's fix. The transform is working

master
nglk 2 years ago
parent
commit
6ad47b70a2
  1. BIN
      __pycache__/app.cpython-37.pyc
  2. 73
      app.py
  3. 39
      app.py.copy
  4. 779
      static/hocr/gynaikoktonia.hocr
  5. 26
      templates/results.html

BIN
__pycache__/app.cpython-37.pyc

Binary file not shown.

73
app.py

@ -10,6 +10,7 @@ from hocrtransformpdf import *
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
from flask_basicauth import BasicAuth from flask_basicauth import BasicAuth
import pdftotree import pdftotree
import urllib.request
UPLOAD_FOLDER = 'static/uploads' UPLOAD_FOLDER = 'static/uploads'
ALLOWED_EXTENSIONS = {'pdf'} ALLOWED_EXTENSIONS = {'pdf'}
@ -26,65 +27,25 @@ app.config['UPLOAD_FOLDER'] = "static/pdf"
@app.route('/', methods=['GET', 'POST']) @app.route('/', methods=['GET', 'POST'])
@basic_auth.required @basic_auth.required
def run_script(): def index():
return render_template('results.html', **locals())
@app.route('/transform', methods=['POST'])
@basic_auth.required
def transform():
# the code below was made in case I was using a button upload but now I use the field input so this has to be uploaded and then transformed # the code below was made in case I was using a button upload but now I use the field input so this has to be uploaded and then transformed
if request.method == 'POST': if request.method == 'POST':
# download PDF from url content = request.get_json(silent=True)
file = request.form['file'] print(content["hocr"])
if file: urllib.request.urlretrieve(content["pdf"], "static/pdf/input.pdf")
response = urllib.request.urlopen(file)
file = open("static/pdf/downloaded.pdf", 'wb') hocr = subprocess.call("pdftotree static/pdf/input.pdf -o static/hocr/gynaikoktonia.hocr", shell=True)
file.write(response.read())
file.close() result = subprocess.call("python3 hocrtransformpdf.py -i static/images/blank.png static/hocr/gynaikoktonia.hocr static/pdf/result.pdf", shell=True)
#uploadfilepath=os.path.join(app.config['UPLOAD_FOLDER'], file)
#file.save(uploadfilepath)
#return redirect(url_for('uploaded_file',file=file))
# url = request.form['url']
#if not url:
# flash('Url is required!')
# else:
# messages.append({'url': url})
# return redirect(url_for('index'))
# check if the post request has the file part
#if 'file' not in request.files:
# flash('No file part')
# return redirect(request.url)
#file = request.files['file']
# if user does not select file, browser also
# submit an empty part without filename
#if file.filename == '':
# flash('No selected file')
# return redirect(request.url)
#if file and allowed_file(file.filename):
# filename = secure_filename(file.filename)
# uploadfilepath=os.path.join(app.config['UPLOAD_FOLDER'], filename)
# file.save(uploadfilepath)
# return redirect(url_for('uploaded_file',
# filename=filename))
hocr_result = pdftotree.parse("static/pdf/downloaded.pdf")
hocr = HocrTransform(hocr_filename=hocr_result, dpi=300)
hocr.to_pdf(
out_filename='static/pdf/output-2.pdf',
image_filename='static/images/blank.png',
show_bounding_boxes=False,
interword_spaces=False
)
#hocrfile='static/hocr/gynaikoktonia.hocr'
#hocr = HocrTransform(hocr_filename=hocrfile, dpi=300)
#hocr = HocrTransform(hocr_filename=hocr_result, dpi=300)
#hocr.to_pdf(
# out_filename='static/pdf/output.pdf',
# image_filename='static/images/blank.png',
# show_bounding_boxes=False,
# interword_spaces=False,
#)
# result = subprocess.check_output("python3 hocrtransformpdf.py -i images/blank.png hocr/gynaikoktonia.hocr pdf/gynaikoktonia.pdf", shell=True)
return render_template('results.html', **locals())
d = {"url":"pdf/result.pdf"}
return d
def allowed_file(filename): def allowed_file(filename):

39
app.py.copy

@ -10,7 +10,6 @@ from hocrtransformpdf import *
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
from flask_basicauth import BasicAuth from flask_basicauth import BasicAuth
import pdftotree import pdftotree
from parsepdf import hocr_result
UPLOAD_FOLDER = 'static/uploads' UPLOAD_FOLDER = 'static/uploads'
ALLOWED_EXTENSIONS = {'pdf'} ALLOWED_EXTENSIONS = {'pdf'}
@ -28,6 +27,7 @@ app.config['UPLOAD_FOLDER'] = "static/pdf"
@app.route('/', methods=['GET', 'POST']) @app.route('/', methods=['GET', 'POST'])
@basic_auth.required @basic_auth.required
def run_script(): def run_script():
# the code below was made in case I was using a button upload but now I use the field input so this has to be uploaded and then transformed
if request.method == 'POST': if request.method == 'POST':
# download PDF from url # download PDF from url
file = request.form['file'] file = request.form['file']
@ -36,22 +36,6 @@ def run_script():
file = open("static/pdf/downloaded.pdf", 'wb') file = open("static/pdf/downloaded.pdf", 'wb')
file.write(response.read()) file.write(response.read())
file.close() file.close()
#hocr = pdftotree.parse("static/pdf/downloaded.pdf")
#hocrfile=open("static/hocr/downloaded.hocr", 'wb')
#hocrfile.write(hocr.read())
#hocrfile.close
#output = execute('python parsepdf.py')
#hocr_result = pdftotree.parse("static/pdf/downloaded.pdf")
#hocr_result=hocr_result()
#hocr = HocrTransform(hocr_result, 300)
#hocr.to_pdf(
# out_filename='static/pdf/output-2.pdf',
#image_filename='static/images/blank.png',
#show_bounding_boxes=False,
#interword_spaces=False,
#)
#uploadfilepath=os.path.join(app.config['UPLOAD_FOLDER'], file) #uploadfilepath=os.path.join(app.config['UPLOAD_FOLDER'], file)
#file.save(uploadfilepath) #file.save(uploadfilepath)
#return redirect(url_for('uploaded_file',file=file)) #return redirect(url_for('uploaded_file',file=file))
@ -80,14 +64,14 @@ def run_script():
# filename=filename)) # filename=filename))
# hocr_result = pdftotree.parse("static/pdf/downloaded.pdf") hocr_result = pdftotree.parse("static/pdf/downloaded.pdf")
#hocr = HocrTransform(hocr_filename=hocr_result, dpi=300) hocr = HocrTransform(hocr_filename=hocr_result, dpi=300)
#hocr.to_pdf( hocr.to_pdf(
# out_filename='static/pdf/output-2.pdf', out_filename='static/pdf/output-2.pdf',
# image_filename='static/images/blank.png', image_filename='static/images/blank.png',
# show_bounding_boxes=False, show_bounding_boxes=False,
# interword_spaces=False interword_spaces=False
#) )
#hocrfile='static/hocr/gynaikoktonia.hocr' #hocrfile='static/hocr/gynaikoktonia.hocr'
#hocr = HocrTransform(hocr_filename=hocrfile, dpi=300) #hocr = HocrTransform(hocr_filename=hocrfile, dpi=300)
@ -98,8 +82,9 @@ def run_script():
# show_bounding_boxes=False, # show_bounding_boxes=False,
# interword_spaces=False, # interword_spaces=False,
#) #)
#subprocess.check_output("python hocrtransformpdf.py -i static/images/blank.png static/hocr/downloaded.hocr static/pdf/output-2.pdf", shell=True) # result = subprocess.check_output("python3 hocrtransformpdf.py -i images/blank.png hocr/gynaikoktonia.hocr pdf/gynaikoktonia.pdf", shell=True)
return render_template('results.html',**locals()) return render_template('results.html', **locals())
def allowed_file(filename): def allowed_file(filename):

779
static/hocr/gynaikoktonia.hocr

@ -1,142 +1,639 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <html>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <meta content="Converted from PDF by pdftotree 0.5.0" name="ocr-system"/>
<head> <meta content="ocr_page ocr_table ocrx_block ocrx_word" name="ocr-capabilities"/>
<title></title> <meta content="1" name="ocr-number-of-pages"/>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> </head>
<meta name='ocr-system' content='tesseract 3.04.01' /> <body>
<meta name='ocr-capabilities' content='ocr_page ocr_carea ocr_par ocr_line ocrx_word'/> <div class="ocr_page" id="page_1" title="bbox 0 0 595 841; ppageno 0">
</head> <figure title="bbox 0 0 595 841"/>
<body> <div class="ocrx_block" pdftotree="section_header" title="bbox 146 76 452 86">
<div class='ocr_page' id='page_1' title='image "images/anthropoktonia.png"; bbox 0 0 2480 3508; ppageno 0'> <span class="ocrx_line" title="bbox 146 76 452 86">
<div class='ocr_carea' id='block_1_1' title="bbox 610 316 1872 479"> <span class="ocrx_word" title="bbox 146 76 239 86">ΕΓΚΛΗΜΑΤΑΚΑΤΑ</span>
<p class='ocr_par' dir='ltr' id='par_1_1' title="bbox 610 316 1872 479"> <span class="ocrx_word" title="bbox 241 76 261 86">ΤΗΣ</span>
<span class='ocr_line' id='line_1_1' title="bbox 610 316 1872 349; baseline 0 -1; x_size 39.351353; x_descenders 7.3513517; x_ascenders 9.9459457"><span class='ocrx_word' id='word_1_1' title='bbox 610 316 869 348; x_wconf 93' lang='ell' dir='ltr'>ΕΓΚΛΗΜΑΤΑ</span> <span class='ocrx_word' id='word_1_2' title='bbox 884 316 993 348; x_wconf 96' lang='ell' dir='ltr'>ΚΑΤΑ</span> <span class='ocrx_word' id='word_1_3' title='bbox 1005 316 1083 348; x_wconf 95' lang='ell' dir='ltr'>ΤΗΣ</span> <span class='ocrx_word' id='word_1_4' title='bbox 1097 316 1207 348; x_wconf 95' lang='ell' dir='ltr'>ΖΩΗΣ</span> <span class='ocrx_word' id='word_1_5' title='bbox 1223 316 1288 348; x_wconf 96' lang='ell' dir='ltr'>ΚΑΙ</span> <span class='ocrx_word' id='word_1_6' title='bbox 1305 316 1556 349; x_wconf 93' lang='ell' dir='ltr'>ΠΡΟΣΒΟΛΕΣ</span> <span class='ocrx_word' id='word_1_7' title='bbox 1568 316 1652 349; x_wconf 92' lang='ell' dir='ltr'>ΤΩΝ</span> <span class='ocrx_word' id='word_1_8' title='bbox 1667 316 1872 349; x_wconf 92' lang='ell' dir='ltr'>ΘΥΛΗΚΟΤΗΤ*</span> <span class="ocrx_word" title="bbox 263 76 309 86">ΖΩΗΣΚΑΙ</span>
</span> <span class="ocrx_word" title="bbox 313 76 398 86">ΠΡΟΣΒΟΛΕΣΤΩΝ</span>
<span class='ocr_line' id='line_1_2' title="bbox 769 435 1711 479; baseline 0.001 -9; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_9' title='bbox 769 438 789 470; x_wconf 94' lang='ell' dir='ltr'>Ι.</span> <span class='ocrx_word' id='word_1_10' title='bbox 807 435 1033 479; x_wconf 89' lang='ell' dir='ltr'>Εγκλήματα</span> <span class='ocrx_word' id='word_1_11' title='bbox 1048 435 1200 479; x_wconf 90' lang='ell' dir='ltr'>βλάβης</span> <span class='ocrx_word' id='word_1_12' title='bbox 1212 446 1278 479; x_wconf 91' lang='ell' dir='ltr'>της</span> <span class='ocrx_word' id='word_1_13' title='bbox 1293 435 1391 479; x_wconf 90' lang='ell' dir='ltr'>ζωής</span> <span class='ocrx_word' id='word_1_14' title='bbox 1404 446 1474 471; x_wconf 91' lang='ell' dir='ltr'>της</span> <span class='ocrx_word' id='word_1_15' title='bbox 1491 435 1711 479; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_word" title="bbox 400 76 452 86">ΘΥΛΗΚΟΤΗΤ*</span>
</span> </span>
</p> </div>
</div> <div class="ocrx_block" pdftotree="section_header" title="bbox 184 105 398 115">
<div class='ocr_carea' id='block_1_2' title="bbox 983 557 1496 662"> <span class="ocrx_line" title="bbox 184 105 398 115">
<p class='ocr_par' dir='ltr' id='par_1_2' title="bbox 983 557 1496 662"> <span class="ocrx_word" title="bbox 184 105 189 115">Ι.</span>
<span class='ocr_line' id='line_1_3' title="bbox 1129 557 1351 601; baseline 0.005 -9; x_size 43; x_descenders 8; x_ascenders 10"><span class='ocrx_word' id='word_1_16' title='bbox 1129 557 1264 601; x_wconf 92' lang='ell' dir='ltr'>Άρθρο</span> <span class='ocrx_word' id='word_1_17' title='bbox 1279 560 1351 593; x_wconf 89' lang='ell'>299</span> <span class="ocrx_word" title="bbox 193 105 250 115">Εγκλήματα</span>
</span> <span class="ocrx_word" title="bbox 251 105 288 115">βλάβης</span>
<span class='ocr_line' id='line_1_4' title="bbox 983 618 1496 662; baseline 0.002 -9; x_size 45; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_18' title='bbox 983 618 1319 662; x_wconf 91' lang='ell' dir='ltr'>Γυναικοκτονία</span> <span class='ocrx_word' id='word_1_19' title='bbox 1334 629 1380 662; x_wconf 93' lang='ell' dir='ltr'>με</span> <span class='ocrx_word' id='word_1_20' title='bbox 1395 618 1496 654; x_wconf 92' lang='ell' dir='ltr'>δόλο</span> <span class="ocrx_word" title="bbox 290 105 307 115">της</span>
</span> <span class="ocrx_word" title="bbox 310 105 333 115">ζωής</span>
</p> <span class="ocrx_word" title="bbox 336 105 354 115">της</span>
</div> <span class="ocrx_word" title="bbox 357 105 398 115">●●●●●●●●</span>
<div class='ocr_carea' id='block_1_3' title="bbox 243 740 2197 845"> </span>
<p class='ocr_par' dir='ltr' id='par_1_3' title="bbox 243 740 2197 845"> </div>
<span class='ocr_line' id='line_1_5' title="bbox 244 740 2166 784; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_21' title='bbox 244 743 274 775; x_wconf 93' lang='ell'>1.</span> <span class='ocrx_word' id='word_1_22' title='bbox 288 740 435 784; x_wconf 89' lang='ell' dir='ltr'>Όποιος</span> <span class='ocrx_word' id='word_1_23' title='bbox 450 740 625 775; x_wconf 88' lang='ell' dir='ltr'>σκότωσε</span> <span class='ocrx_word' id='word_1_24' title='bbox 641 740 761 775; x_wconf 91' lang='ell' dir='ltr'>άλλη</span> <span class='ocrx_word' id='word_1_25' title='bbox 774 740 994 784; x_wconf 90' lang='ell' dir='ltr'>τιμωρείται</span> <span class='ocrx_word' id='word_1_26' title='bbox 1009 751 1052 784; x_wconf 91' lang='ell' dir='ltr'>με</span> <span class='ocrx_word' id='word_1_27' title='bbox 1070 740 1247 784; x_wconf 88' lang='ell' dir='ltr'>κάθειρξη</span> <span class='ocrx_word' id='word_1_28' title='bbox 1266 740 1395 784; x_wconf 89' lang='ell' dir='ltr'>ισόβια</span> <span class='ocrx_word' id='word_1_29' title='bbox 1412 740 1431 784; x_wconf 90' lang='ell' dir='ltr'>ή</span> <span class='ocrx_word' id='word_1_30' title='bbox 1448 740 1666 784; x_wconf 90' lang='ell' dir='ltr'>πρόσκαιρη</span> <span class='ocrx_word' id='word_1_31' title='bbox 1681 740 1933 784; x_wconf 84' lang='ell' dir='ltr'>τουλάχιστον</span> <span class='ocrx_word' id='word_1_32' title='bbox 1948 740 2045 775; x_wconf 90' lang='ell' dir='ltr'>δέκα</span> <span class='ocrx_word' id='word_1_33' title='bbox 2060 740 2166 775; x_wconf 93' lang='ell' dir='ltr'>ετών.</span> <div class="ocrx_block" pdftotree="paragraph" title="bbox 235 134 357 159">
</span> <span class="ocrx_line" title="bbox 270 134 322 144">
<span class='ocr_line' id='line_1_6' title="bbox 243 801 2197 845; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_34' title='bbox 243 804 274 836; x_wconf 93' lang='ell'>2.</span> <span class='ocrx_word' id='word_1_35' title='bbox 291 804 340 836; x_wconf 93' lang='ell' dir='ltr'>Αν</span> <span class='ocrx_word' id='word_1_36' title='bbox 357 812 376 845; x_wconf 94' lang='ell' dir='ltr'>η</span> <span class='ocrx_word' id='word_1_37' title='bbox 392 801 514 845; x_wconf 88' lang='ell' dir='ltr'>πράξη</span> <span class='ocrx_word' id='word_1_38' title='bbox 531 801 827 845; x_wconf 90' lang='ell' dir='ltr'>αποφασίστηκε</span> <span class='ocrx_word' id='word_1_39' title='bbox 846 812 907 836; x_wconf 90' lang='ell' dir='ltr'>και</span> <span class='ocrx_word' id='word_1_40' title='bbox 920 801 1166 845; x_wconf 92' lang='ell' dir='ltr'>εκτελέστηκε</span> <span class='ocrx_word' id='word_1_41' title='bbox 1183 812 1227 836; x_wconf 94' lang='ell' dir='ltr'>σε</span> <span class='ocrx_word' id='word_1_42' title='bbox 1245 801 1399 845; x_wconf 90' lang='ell' dir='ltr'>βρασμό</span> <span class='ocrx_word' id='word_1_43' title='bbox 1417 801 1579 845; x_wconf 88' lang='ell' dir='ltr'>ψυχικής</span> <span class='ocrx_word' id='word_1_44' title='bbox 1594 801 1728 845; x_wconf 91' lang='ell' dir='ltr'>ορμής,</span> <span class='ocrx_word' id='word_1_45' title='bbox 1744 801 1992 845; x_wconf 90' lang='ell' dir='ltr'>επιβάλλεται</span> <span class='ocrx_word' id='word_1_46' title='bbox 2007 801 2197 845; x_wconf 88' lang='ell' dir='ltr'>κάθειρξη.</span> <span class="ocrx_word" title="bbox 270 134 304 145">Άρθρο</span>
</span> <span class="ocrx_word" title="bbox 306 135 322 145">299</span>
</p> </span>
</div> <span class="ocrx_line" title="bbox 235 149 312 159">
<div class='ocr_carea' id='block_1_4' title="bbox 917 923 1561 1028"> <span class="ocrx_word" title="bbox 235 149 312 159">Γυναικοκτονία</span>
<p class='ocr_par' dir='ltr' id='par_1_4' title="bbox 917 923 1561 1028"> </span>
<span class='ocr_line' id='line_1_7' title="bbox 1129 923 1352 967; baseline 0.004 -9; x_size 43; x_descenders 8; x_ascenders 10"><span class='ocrx_word' id='word_1_47' title='bbox 1129 923 1264 967; x_wconf 94' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_48' title='bbox 1279 926 1352 959; x_wconf 91' lang='ell'>&#9679;&#9679;&#9679;</span> <span class="ocrx_line" title="bbox 320 149 357 159">
</span> <span class="ocrx_word" title="bbox 320 149 332 159">με</span>
<span class='ocr_line' id='line_1_8' title="bbox 917 984 1561 1028; baseline 0.002 -9; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_49' title='bbox 917 984 1253 1028; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_50' title='bbox 1267 985 1348 1020; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_51' title='bbox 1364 984 1561 1028; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_word" title="bbox 334 149 357 159">δόλο</span>
</span> </span>
</p> </div>
</div> <div class="ocrx_block" pdftotree="paragraph" title="bbox 58 178 527 203">
<div class='ocr_carea' id='block_1_5' title="bbox 238 1106 2235 1211"> <span class="ocrx_line" title="bbox 58 178 332 188">
<p class='ocr_par' dir='ltr' id='par_1_5' title="bbox 238 1106 2235 1211"> <span class="ocrx_word" title="bbox 58 178 65 188">1.</span>
<span class='ocr_line' id='line_1_9' title="bbox 238 1106 2235 1150; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_52' title='bbox 238 1106 386 1150; x_wconf 88' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_53' title='bbox 407 1106 636 1150; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_54' title='bbox 660 1117 722 1141; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_55' title='bbox 742 1106 920 1141; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_56' title='bbox 943 1106 1264 1150; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_57' title='bbox 1286 1106 1432 1150; x_wconf 86' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_58' title='bbox 1453 1106 1531 1141; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_59' title='bbox 1554 1106 1754 1141; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_60' title='bbox 1777 1117 1838 1141; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_61' title='bbox 1858 1106 2019 1150; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_62' title='bbox 2043 1106 2235 1150; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_word" title="bbox 69 178 106 188">Όποιος</span>
</span> <span class="ocrx_word" title="bbox 108 178 149 188">σκότωσε</span>
<span class='ocr_line' id='line_1_10' title="bbox 240 1167 2195 1211; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_63' title='bbox 240 1178 309 1202; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_64' title='bbox 326 1167 499 1211; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_65' title='bbox 515 1178 576 1202; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_66' title='bbox 589 1167 667 1202; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_67' title='bbox 683 1167 787 1202; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_68' title='bbox 802 1168 845 1211; x_wconf 89' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_69' title='bbox 861 1167 981 1202; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_70' title='bbox 995 1178 1071 1202; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_71' title='bbox 1088 1167 1234 1211; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_72' title='bbox 1250 1167 1328 1202; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_73' title='bbox 1344 1167 1477 1211; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_74' title='bbox 1494 1167 1682 1202; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_75' title='bbox 1695 1167 1914 1211; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_76' title='bbox 1929 1178 1972 1211; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_77' title='bbox 1988 1167 2195 1211; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_word" title="bbox 153 178 182 188">άλλη</span>
</span> <span class="ocrx_word" title="bbox 185 178 235 188">τιμωρείται</span>
</p> <span class="ocrx_word" title="bbox 242 178 253 188">με</span>
</div> <span class="ocrx_word" title="bbox 256 178 299 188">κάθειρξη</span>
<div class='ocr_carea' id='block_1_6' title="bbox 972 1289 1510 1394"> <span class="ocrx_word" title="bbox 303 178 332 188">ισόβια</span>
<p class='ocr_par' dir='ltr' id='par_1_6' title="bbox 972 1289 1510 1394"> </span>
<span class='ocr_line' id='line_1_11' title="bbox 1129 1289 1351 1333; baseline 0 -8; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_78' title='bbox 1129 1289 1264 1333; x_wconf 94' lang='ell' dir='ltr'>Άρθρο</span> <span class='ocrx_word' id='word_1_79' title='bbox 1279 1292 1351 1325; x_wconf 91' lang='ell'>301</span> <span class="ocrx_line" title="bbox 338 178 520 188">
</span> <span class="ocrx_word" title="bbox 338 178 342 188">ή</span>
<span class='ocr_line' id='line_1_12' title="bbox 972 1350 1510 1394; baseline 0 -8; x_size 45; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_80' title='bbox 972 1350 1193 1394; x_wconf 91' lang='ell' dir='ltr'>Συμμετοχή</span> <span class='ocrx_word' id='word_1_81' title='bbox 1210 1361 1256 1386; x_wconf 93' lang='ell' dir='ltr'>σε</span> <span class='ocrx_word' id='word_1_82' title='bbox 1271 1350 1510 1386; x_wconf 91' lang='ell' dir='ltr'>αυτοκτονία</span> <span class="ocrx_word" title="bbox 347 178 398 188">πρόσκαιρη</span>
</span> <span class="ocrx_word" title="bbox 403 178 464 188">τουλάχιστον</span>
</p> <span class="ocrx_word" title="bbox 467 178 488 188">δέκα</span>
</div> <span class="ocrx_word" title="bbox 494 178 520 188">ετών.</span>
<div class='ocr_carea' id='block_1_7' title="bbox 238 1472 2238 1638"> </span>
<p class='ocr_par' dir='ltr' id='par_1_7' title="bbox 238 1472 2238 1638"> <span class="ocrx_line" title="bbox 58 193 527 203">
<span class='ocr_line' id='line_1_13' title="bbox 238 1472 2236 1516; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_83' title='bbox 238 1472 386 1516; x_wconf 92' lang='ell' dir='ltr'>Όποιος</span> <span class='ocrx_word' id='word_1_84' title='bbox 412 1472 612 1507; x_wconf 90' lang='ell' dir='ltr'>κατέπεισε</span> <span class='ocrx_word' id='word_1_85' title='bbox 637 1472 758 1507; x_wconf 92' lang='ell' dir='ltr'>άλλην</span> <span class='ocrx_word' id='word_1_86' title='bbox 781 1483 829 1507; x_wconf 90' lang='ell' dir='ltr'>να</span> <span class='ocrx_word' id='word_1_87' title='bbox 853 1472 1142 1516; x_wconf 90' lang='ell' dir='ltr'>αυτοκτονήσει,</span> <span class='ocrx_word' id='word_1_88' title='bbox 1168 1483 1216 1507; x_wconf 90' lang='ell' dir='ltr'>αν</span> <span class='ocrx_word' id='word_1_89' title='bbox 1238 1472 1442 1516; x_wconf 92' lang='ell' dir='ltr'>τελέστηκε</span> <span class='ocrx_word' id='word_1_90' title='bbox 1469 1483 1488 1516; x_wconf 98' lang='ell' dir='ltr'>η</span> <span class='ocrx_word' id='word_1_91' title='bbox 1514 1472 1745 1507; x_wconf 90' lang='ell' dir='ltr'>αυτοκτονία</span> <span class='ocrx_word' id='word_1_92' title='bbox 1771 1472 1790 1516; x_wconf 98' lang='ell' dir='ltr'>ή</span> <span class='ocrx_word' id='word_1_93' title='bbox 1816 1472 1915 1516; x_wconf 88' lang='ell' dir='ltr'>έγινε</span> <span class='ocrx_word' id='word_1_94' title='bbox 1941 1472 2138 1516; x_wconf 90' lang='ell' dir='ltr'>απόπειρά</span> <span class='ocrx_word' id='word_1_95' title='bbox 2160 1483 2236 1516; x_wconf 98' lang='ell' dir='ltr'>της,</span> <span class="ocrx_word" title="bbox 58 193 65 203">2.</span>
</span> <span class="ocrx_word" title="bbox 69 193 82 203">Αν</span>
<span class='ocr_line' id='line_1_14' title="bbox 244 1533 2238 1577; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_96' title='bbox 244 1533 371 1577; x_wconf 90' lang='ell' dir='ltr'>καθώς</span> <span class='ocrx_word' id='word_1_97' title='bbox 390 1544 450 1568; x_wconf 90' lang='ell' dir='ltr'>και</span> <span class='ocrx_word' id='word_1_98' title='bbox 464 1533 602 1577; x_wconf 95' lang='ell' dir='ltr'>όποιος</span> <span class='ocrx_word' id='word_1_99' title='bbox 618 1533 746 1568; x_wconf 91' lang='ell' dir='ltr'>έδωσε</span> <span class='ocrx_word' id='word_1_100' title='bbox 766 1533 932 1577; x_wconf 90' lang='ell' dir='ltr'>βοήθεια</span> <span class='ocrx_word' id='word_1_101' title='bbox 950 1533 1043 1568; x_wconf 90' lang='ell' dir='ltr'>κατά</span> <span class='ocrx_word' id='word_1_102' title='bbox 1056 1544 1124 1577; x_wconf 96' lang='ell' dir='ltr'>την</span> <span class='ocrx_word' id='word_1_103' title='bbox 1138 1533 1275 1577; x_wconf 92' lang='ell' dir='ltr'>τέλεσή</span> <span class='ocrx_word' id='word_1_104' title='bbox 1291 1544 1367 1577; x_wconf 98' lang='ell' dir='ltr'>της,</span> <span class='ocrx_word' id='word_1_105' title='bbox 1387 1544 1406 1577; x_wconf 98' lang='ell' dir='ltr'>η</span> <span class='ocrx_word' id='word_1_106' title='bbox 1424 1533 1543 1568; x_wconf 90' lang='ell' dir='ltr'>οποία</span> <span class='ocrx_word' id='word_1_107' title='bbox 1559 1533 1814 1577; x_wconf 90' lang='ell' dir='ltr'>διαφορετικά</span> <span class='ocrx_word' id='word_1_108' title='bbox 1830 1534 1900 1568; x_wconf 91' lang='ell' dir='ltr'>δεν</span> <span class='ocrx_word' id='word_1_109' title='bbox 1916 1534 1968 1568; x_wconf 90' lang='ell' dir='ltr'>θα</span> <span class='ocrx_word' id='word_1_110' title='bbox 1985 1533 2077 1577; x_wconf 90' lang='ell' dir='ltr'>ήταν</span> <span class='ocrx_word' id='word_1_111' title='bbox 2093 1533 2238 1577; x_wconf 97' lang='ell' dir='ltr'>εφικτή,</span> <span class="ocrx_word" title="bbox 85 193 90 203">η</span>
</span> <span class="ocrx_word" title="bbox 94 193 123 203">πράξη</span>
<span class='ocr_line' id='line_1_15' title="bbox 240 1594 741 1638; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_112' title='bbox 240 1594 459 1638; x_wconf 90' lang='ell' dir='ltr'>τιμωρείται</span> <span class='ocrx_word' id='word_1_113' title='bbox 474 1605 518 1638; x_wconf 91' lang='ell' dir='ltr'>με</span> <span class='ocrx_word' id='word_1_114' title='bbox 534 1594 741 1638; x_wconf 92' lang='ell' dir='ltr'>φυλάκιση.</span> <span class="ocrx_word" title="bbox 127 193 198 203">αποφασίστηκε</span>
</span> <span class="ocrx_word" title="bbox 203 193 217 203">και</span>
</p> <span class="ocrx_word" title="bbox 220 193 279 203">εκτελέστηκε</span>
</div> <span class="ocrx_word" title="bbox 283 193 294 203">σε</span>
<div class='ocr_carea' id='block_1_8' title="bbox 933 1717 1548 1822"> <span class="ocrx_word" title="bbox 298 193 334 203">βρασμό</span>
<p class='ocr_par' dir='ltr' id='par_1_8' title="bbox 933 1717 1548 1822"> <span class="ocrx_word" title="bbox 340 193 377 203">ψυχικής</span>
<span class='ocr_line' id='line_1_16' title="bbox 1129 1717 1351 1761; baseline 0 -8; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_115' title='bbox 1129 1717 1264 1761; x_wconf 99' lang='ell' dir='ltr'>Άρθρο</span> <span class='ocrx_word' id='word_1_116' title='bbox 1279 1720 1351 1753; x_wconf 91' lang='ell'>302</span> <span class="ocrx_word" title="bbox 382 193 413 203">ορμής,</span>
</span> <span class="ocrx_word" title="bbox 418 193 480 203">επιβάλλεται</span>
<span class='ocr_line' id='line_1_17' title="bbox 933 1778 1548 1822; baseline 0.002 -9; x_size 45; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_117' title='bbox 933 1778 1269 1822; x_wconf 91' lang='ell' dir='ltr'>Γυναικοκτονία</span> <span class='ocrx_word' id='word_1_118' title='bbox 1282 1778 1364 1814; x_wconf 99' lang='ell' dir='ltr'>από</span> <span class='ocrx_word' id='word_1_119' title='bbox 1379 1778 1548 1822; x_wconf 91' lang='ell' dir='ltr'>θεσμική αμέλεια</span> <span class="ocrx_word" title="bbox 481 193 527 203">κάθειρξη.</span>
</span> </span>
</p> </div>
</div> <div class="ocrx_block" pdftotree="section_header" title="bbox 270 222 295 232">
<div class='ocr_carea' id='block_1_9' title="bbox 238 1900 2047 1944"> <span class="ocrx_line" title="bbox 270 222 295 232">
<p class='ocr_par' dir='ltr' id='par_1_9' title="bbox 238 1900 2047 1944"> <span class="ocrx_word" title="bbox 270 222 295 232">●●●●●</span>
<span class='ocr_line' id='line_1_18' title="bbox 238 1900 2047 1944; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_120' title='bbox 238 1900 386 1944; x_wconf 95' lang='ell' dir='ltr'>Όποιος</span> <span class='ocrx_word' id='word_1_121' title='bbox 401 1900 479 1935; x_wconf 90' lang='ell' dir='ltr'>από</span> <span class='ocrx_word' id='word_1_122' title='bbox 495 1900 658 1944; x_wconf 90' lang='ell' dir='ltr'>αμέλεια</span> <span class='ocrx_word' id='word_1_123' title='bbox 673 1900 847 1935; x_wconf 94' lang='ell' dir='ltr'>σκότωσε</span> <span class='ocrx_word' id='word_1_124' title='bbox 863 1900 994 1942; x_wconf 92' lang='ell' dir='ltr'>άλλην,</span> <span class='ocrx_word' id='word_1_125' title='bbox 1009 1900 1227 1944; x_wconf 90' lang='ell' dir='ltr'>τιμωρείται</span> <span class='ocrx_word' id='word_1_126' title='bbox 1242 1911 1285 1944; x_wconf 91' lang='ell' dir='ltr'>με</span> <span class='ocrx_word' id='word_1_127' title='bbox 1302 1900 1496 1944; x_wconf 92' lang='ell' dir='ltr'>φυλάκιση</span> <span class='ocrx_word' id='word_1_128' title='bbox 1512 1900 1764 1944; x_wconf 92' lang='ell' dir='ltr'>τουλάχιστον</span> <span class='ocrx_word' id='word_1_129' title='bbox 1777 1900 1891 1944; x_wconf 93' lang='ell' dir='ltr'>τριών</span> <span class='ocrx_word' id='word_1_130' title='bbox 1908 1900 2047 1944; x_wconf 91' lang='ell' dir='ltr'>μηνών.</span> </span>
</span> </div>
</p> <div class="ocrx_block" pdftotree="section_header" title="bbox 220 237 281 247">
</div> <span class="ocrx_line" title="bbox 220 237 281 247">
<div class='ocr_carea' id='block_1_10' title="bbox 1110 2022 1373 2119"> <span class="ocrx_word" title="bbox 220 237 281 247">●●●●●●●●●●●●●</span>
<p class='ocr_par' dir='ltr' id='par_1_10' title="bbox 1110 2022 1373 2119"> </span>
<span class='ocr_line' id='line_1_19' title="bbox 1129 2022 1351 2066; baseline 0.005 -9; x_size 43; x_descenders 8; x_ascenders 10"><span class='ocrx_word' id='word_1_131' title='bbox 1129 2022 1264 2066; x_wconf 99' lang='ell' dir='ltr'>Άρθρο</span> <span class='ocrx_word' id='word_1_132' title='bbox 1279 2025 1351 2058; x_wconf 91' lang='ell'>303</span> </div>
</span> <div class="ocrx_block" pdftotree="paragraph" title="bbox 304 222 363 247">
<span class='ocr_line' id='line_1_20' title="bbox 1110 2083 1373 2119; baseline 0 0; x_size 41.532211; x_descenders 5.5322127; x_ascenders 11"><span class='ocrx_word' id='word_1_133' title='bbox 1110 2083 1373 2119; x_wconf 91' lang='ell' dir='ltr'>Παιδοκτονία</span> <span class="ocrx_line" title="bbox 306 222 320 232">
</span> <span class="ocrx_word" title="bbox 306 222 320 232">●●●</span>
</p> </span>
</div> <span class="ocrx_line" title="bbox 304 237 318 247">
<div class='ocr_carea' id='block_1_11' title="bbox 242 2205 2238 2310"> <span class="ocrx_word" title="bbox 304 237 318 247">●●●●</span>
<p class='ocr_par' dir='ltr' id='par_1_11' title="bbox 242 2205 2238 2310"> </span>
<span class='ocr_line' id='line_1_21' title="bbox 244 2205 2238 2249; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_134' title='bbox 244 2205 404 2249; x_wconf 89' lang='ell' dir='ltr'>Πατέρας</span> <span class='ocrx_word' id='word_1_135' title='bbox 418 2216 494 2240; x_wconf 95' lang='ell' dir='ltr'>που</span> <span class='ocrx_word' id='word_1_136' title='bbox 514 2216 557 2249; x_wconf 91' lang='ell' dir='ltr'>με</span> <span class='ocrx_word' id='word_1_137' title='bbox 572 2205 749 2249; x_wconf 94' lang='ell' dir='ltr'>πρόθεση</span> <span class='ocrx_word' id='word_1_138' title='bbox 767 2205 941 2240; x_wconf 96' lang='ell' dir='ltr'>σκότωσε</span> <span class='ocrx_word' id='word_1_139' title='bbox 955 2216 998 2240; x_wconf 96' lang='ell' dir='ltr'>την</span> <span class='ocrx_word' id='word_1_140' title='bbox 1014 2205 1122 2240; x_wconf 90' lang='ell' dir='ltr'>κόρη</span> <span class='ocrx_word' id='word_1_141' title='bbox 1133 2216 1198 2249; x_wconf 98' lang='ell' dir='ltr'>του</span> <span class='ocrx_word' id='word_1_142' title='bbox 1215 2205 1309 2240; x_wconf 90' lang='ell' dir='ltr'>κατά</span> <span class='ocrx_word' id='word_1_143' title='bbox 1326 2205 1345 2249; x_wconf 98' lang='ell' dir='ltr'>ή</span> <span class='ocrx_word' id='word_1_144' title='bbox 1364 2205 1456 2249; x_wconf 91' lang='ell' dir='ltr'>μετά</span> <span class='ocrx_word' id='word_1_145' title='bbox 1469 2216 1536 2240; x_wconf 96' lang='ell' dir='ltr'>τον</span> <span class='ocrx_word' id='word_1_146' title='bbox 1548 2205 1694 2247; x_wconf 95' lang='ell' dir='ltr'>τοκετό,</span> <span class='ocrx_word' id='word_1_147' title='bbox 1711 2205 1810 2240; x_wconf 90' lang='ell' dir='ltr'>αλλά</span> <span class='ocrx_word' id='word_1_148' title='bbox 1825 2205 1901 2240; x_wconf 93' lang='ell' dir='ltr'>ενώ</span> <span class='ocrx_word' id='word_1_149' title='bbox 1917 2205 2238 2249; x_wconf 90' lang='ell' dir='ltr'>εξακολουθούσε</span> <span class="ocrx_line" title="bbox 327 237 363 247">
</span> <span class="ocrx_word" title="bbox 327 237 363 247">●●●●●●●●</span>
<span class='ocr_line' id='line_1_22' title="bbox 242 2266 2077 2310; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_150' title='bbox 242 2266 368 2310; x_wconf 90' lang='ell' dir='ltr'>ακόμη</span> <span class='ocrx_word' id='word_1_151' title='bbox 387 2277 406 2310; x_wconf 98' lang='ell' dir='ltr'>η</span> <span class='ocrx_word' id='word_1_152' title='bbox 424 2266 633 2310; x_wconf 90' lang='ell' dir='ltr'>διατάραξη</span> <span class='ocrx_word' id='word_1_153' title='bbox 648 2277 717 2301; x_wconf 95' lang='ell' dir='ltr'>του</span> <span class='ocrx_word' id='word_1_154' title='bbox 734 2266 974 2310; x_wconf 90' lang='ell' dir='ltr'>οργανισμού</span> <span class='ocrx_word' id='word_1_155' title='bbox 989 2277 1054 2310; x_wconf 98' lang='ell' dir='ltr'>της</span> <span class='ocrx_word' id='word_1_156' title='bbox 1069 2266 1147 2301; x_wconf 90' lang='ell' dir='ltr'>από</span> <span class='ocrx_word' id='word_1_157' title='bbox 1163 2266 1293 2308; x_wconf 90' lang='ell' dir='ltr'>αυτόν,</span> <span class='ocrx_word' id='word_1_158' title='bbox 1308 2266 1527 2310; x_wconf 90' lang='ell' dir='ltr'>τιμωρείται</span> <span class='ocrx_word' id='word_1_159' title='bbox 1542 2277 1585 2310; x_wconf 91' lang='ell' dir='ltr'>με</span> <span class='ocrx_word' id='word_1_160' title='bbox 1604 2266 1781 2310; x_wconf 93' lang='ell' dir='ltr'>κάθειρξη</span> <span class='ocrx_word' id='word_1_161' title='bbox 1799 2266 1874 2310; x_wconf 98' lang='ell' dir='ltr'>έως</span> <span class='ocrx_word' id='word_1_162' title='bbox 1889 2266 1986 2301; x_wconf 90' lang='ell' dir='ltr'>δέκα</span> <span class='ocrx_word' id='word_1_163' title='bbox 2000 2266 2077 2310; x_wconf 98' lang='ell' dir='ltr'>έτη.</span> </span>
</span> </div>
</p> <div class="ocrx_block" pdftotree="paragraph" title="bbox 57 266 287 291">
</div> <span class="ocrx_line" title="bbox 57 266 84 276">
<div class='ocr_carea' id='block_1_12' title="bbox 959 2449 1521 2493"> <span class="ocrx_word" title="bbox 57 266 84 276">●●●●●●</span>
<p class='ocr_par' dir='ltr' id='par_1_12' title="bbox 959 2449 1521 2493"> </span>
<span class='ocr_line' id='line_1_23' title="bbox 959 2449 1521 2493; baseline 0.002 -9; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_164' title='bbox 959 2452 993 2484; x_wconf 94' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_165' title='bbox 1011 2449 1240 2493; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_166' title='bbox 1253 2460 1323 2485; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_167' title='bbox 1340 2449 1521 2493; x_wconf 93' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_line" title="bbox 97 266 139 276">
</span> <span class="ocrx_word" title="bbox 97 266 139 276">●●●●●●●●●</span>
</p> </span>
</div> <span class="ocrx_line" title="bbox 158 266 169 276">
<div class='ocr_carea' id='block_1_13' title="bbox 1030 2571 1450 2676"> <span class="ocrx_word" title="bbox 158 266 169 276">●●●</span>
<p class='ocr_par' dir='ltr' id='par_1_13' title="bbox 1030 2571 1450 2676"> </span>
<span class='ocr_line' id='line_1_24' title="bbox 1129 2571 1352 2615; baseline 0 -8; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_168' title='bbox 1129 2571 1264 2615; x_wconf 99' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_169' title='bbox 1279 2574 1352 2607; x_wconf 91' lang='ell'>&#9679;&#9679;&#9679;</span> <span class="ocrx_line" title="bbox 178 266 210 276">
</span> <span class="ocrx_word" title="bbox 178 266 210 276">●●●●●●●●</span>
<span class='ocr_line' id='line_1_25' title="bbox 1030 2632 1450 2676; baseline 0.002 -9; x_size 44; x_descenders 8; x_ascenders 11"><span class='ocrx_word' id='word_1_170' title='bbox 1030 2632 1206 2676; x_wconf 94' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_171' title='bbox 1220 2643 1286 2676; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_172' title='bbox 1302 2632 1450 2676; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> </span>
</span> <span class="ocrx_line" title="bbox 226 266 285 276">
</p> <span class="ocrx_word" title="bbox 226 266 285 276">●●●●●●●●●●●●●</span>
</div> </span>
<div class='ocr_carea' id='block_1_14' title="bbox 240 2754 2240 3104"> <span class="ocrx_line" title="bbox 57 281 70 291">
<p class='ocr_par' dir='ltr' id='par_1_14' title="bbox 242 2754 2240 2859"> <span class="ocrx_word" title="bbox 57 281 70 291">●●●</span>
<span class='ocr_line' id='line_1_26' title="bbox 244 2754 2240 2798; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_173' title='bbox 244 2757 274 2789; x_wconf 93' lang='ell'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_174' title='bbox 292 2754 440 2798; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_175' title='bbox 457 2754 572 2798; x_wconf 96' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_176' title='bbox 589 2765 632 2798; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_177' title='bbox 653 2754 864 2798; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_178' title='bbox 884 2765 949 2798; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_179' title='bbox 968 2754 1111 2798; x_wconf 87' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_180' title='bbox 1133 2754 1332 2789; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_181' title='bbox 1347 2765 1415 2798; x_wconf 96' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_182' title='bbox 1435 2754 1558 2798; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_183' title='bbox 1577 2765 1643 2798; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_184' title='bbox 1660 2754 1879 2798; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_185' title='bbox 1899 2765 1942 2798; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_186' title='bbox 1965 2754 2142 2798; x_wconf 93' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_187' title='bbox 2166 2754 2240 2798; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> </span>
</span> <span class="ocrx_line" title="bbox 78 281 109 291">
<span class='ocr_line' id='line_1_27' title="bbox 242 2815 430 2859; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_188' title='bbox 242 2815 339 2850; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_189' title='bbox 353 2815 430 2859; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_word" title="bbox 78 281 109 291">●●●●●●●</span>
</span> </span>
</p> <span class="ocrx_line" title="bbox 123 281 134 291">
<span class="ocrx_word" title="bbox 123 281 134 291">●●●</span>
<p class='ocr_par' dir='ltr' id='par_1_15' title="bbox 240 2876 2237 3104"> </span>
<span class='ocr_line' id='line_1_28' title="bbox 243 2876 2235 2920; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_190' title='bbox 243 2879 274 2911; x_wconf 93' lang='ell'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_191' title='bbox 302 2876 449 2920; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_192' title='bbox 480 2887 524 2920; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_193' title='bbox 552 2887 595 2920; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_194' title='bbox 626 2876 837 2920; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_195' title='bbox 866 2887 931 2920; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_196' title='bbox 960 2876 1102 2920; x_wconf 88' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_197' title='bbox 1136 2876 1155 2920; x_wconf 98' lang='ell' dir='ltr'>&#9679;</span> <span class='ocrx_word' id='word_1_198' title='bbox 1184 2888 1259 2911; x_wconf 96' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_199' title='bbox 1287 2876 1510 2920; x_wconf 93' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_200' title='bbox 1538 2887 1614 2911; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_201' title='bbox 1645 2876 1761 2920; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_202' title='bbox 1788 2887 1831 2920; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_203' title='bbox 1861 2876 1990 2920; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_204' title='bbox 2024 2876 2186 2920; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_205' title='bbox 2216 2876 2235 2920; x_wconf 98' lang='ell' dir='ltr'>&#9679;</span> <span class="ocrx_line" title="bbox 141 281 155 291">
</span> <span class="ocrx_word" title="bbox 141 281 155 291">●●●</span>
<span class='ocr_line' id='line_1_29' title="bbox 242 2937 2236 2981; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_206' title='bbox 242 2937 441 2981; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_207' title='bbox 454 2948 520 2981; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_208' title='bbox 535 2948 582 2972; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_209' title='bbox 598 2937 693 2981; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_210' title='bbox 711 2937 810 2972; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_211' title='bbox 823 2937 982 2981; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_212' title='bbox 999 2948 1048 2972; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_213' title='bbox 1063 2937 1296 2979; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_214' title='bbox 1313 2937 1512 2972; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_215' title='bbox 1523 2948 1591 2981; x_wconf 96' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_216' title='bbox 1606 2948 1695 2981; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_217' title='bbox 1703 2937 1851 2981; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_218' title='bbox 1867 2948 1943 2981; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_219' title='bbox 1958 2937 2177 2981; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_220' title='bbox 2193 2948 2236 2981; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;</span> </span>
</span> <span class="ocrx_line" title="bbox 163 281 182 291">
<span class='ocr_line' id='line_1_30' title="bbox 242 2998 2237 3042; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_221' title='bbox 242 2998 437 3042; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_222' title='bbox 471 2998 546 3042; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_223' title='bbox 576 2998 661 3042; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_224' title='bbox 693 2998 756 3042; x_wconf 98' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_225' title='bbox 793 2998 812 3042; x_wconf 98' lang='ell' dir='ltr'>&#9679;</span> <span class='ocrx_word' id='word_1_226' title='bbox 844 2998 1052 3042; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_227' title='bbox 1085 2998 1197 3042; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_228' title='bbox 1233 3009 1294 3033; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_229' title='bbox 1324 3009 1372 3033; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_230' title='bbox 1404 2998 1554 3042; x_wconf 96' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_231' title='bbox 1586 2999 1662 3033; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_232' title='bbox 1696 2998 1930 3042; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_233' title='bbox 1966 3009 2009 3042; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_234' title='bbox 2042 2998 2237 3042; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class="ocrx_word" title="bbox 163 281 182 291">●●●●●</span>
</span> </span>
<span class='ocr_line' id='line_1_31' title="bbox 240 3060 2235 3104; baseline 0 -9; x_size 44; x_descenders 9; x_ascenders 11"><span class='ocrx_word' id='word_1_235' title='bbox 240 3060 493 3104; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_236' title='bbox 516 3060 591 3095; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_237' title='bbox 615 3060 712 3095; x_wconf 93' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_238' title='bbox 736 3071 797 3095; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_239' title='bbox 817 3060 1025 3104; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_240' title='bbox 1050 3060 1175 3104; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_241' title='bbox 1202 3063 1261 3095; x_wconf 89' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_242' title='bbox 1284 3071 1351 3104; x_wconf 96' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_243' title='bbox 1376 3060 1452 3095; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_244' title='bbox 1474 3060 1599 3104; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_245' title='bbox 1627 3060 1817 3104; x_wconf 92' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_246' title='bbox 1845 3060 1938 3095; x_wconf 90' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_247' title='bbox 1959 3071 2003 3095; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_248' title='bbox 2029 3060 2144 3104; x_wconf 91' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;&#9679;&#9679;</span> <span class='ocrx_word' id='word_1_249' title='bbox 2166 3071 2235 3095; x_wconf 95' lang='ell' dir='ltr'>&#9679;&#9679;&#9679;</span> <span class="ocrx_line" title="bbox 192 281 200 291">
</span> <span class="ocrx_word" title="bbox 192 281 200 291">●●●</span>
</p> </span>
</div> <span class="ocrx_line" title="bbox 206 281 228 291">
<div class='ocr_carea' id='block_1_15' title="bbox 2193 3257 2238 3292"> <span class="ocrx_word" title="bbox 206 281 228 291">●●●●●</span>
<p class='ocr_par' dir='ltr' id='par_1_16' title="bbox 2193 3257 2238 3292"> </span>
<span class='ocr_line' id='line_1_32' title="bbox 2193 3257 2238 3292; baseline 0 0; x_size 46.666668; x_descenders 11.666667; x_ascenders 11.666667"><span class='ocrx_word' id='word_1_250' title='bbox 2193 3257 2238 3292; x_wconf 88' lang='ell'>78</span> <span class="ocrx_line" title="bbox 238 281 252 291">
</span> <span class="ocrx_word" title="bbox 238 281 252 291">●●●</span>
</p> </span>
</div> <span class="ocrx_line" title="bbox 261 281 287 291">
</div> <span class="ocrx_word" title="bbox 261 281 287 291">●●●●●●</span>
</body> </span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 300 266 346 291">
<span class="ocrx_line" title="bbox 308 266 335 276">
<span class="ocrx_word" title="bbox 308 266 335 276">●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 300 281 314 291">
<span class="ocrx_word" title="bbox 300 281 314 291">●●●</span>
</span>
<span class="ocrx_line" title="bbox 322 281 346 291">
<span class="ocrx_word" title="bbox 322 281 346 291">●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 348 266 363 276">
<span class="ocrx_line" title="bbox 348 266 363 276">
<span class="ocrx_word" title="bbox 348 266 363 276">●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 358 266 525 291">
<span class="ocrx_line" title="bbox 372 266 409 276">
<span class="ocrx_word" title="bbox 372 266 409 276">●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 426 266 437 276">
<span class="ocrx_word" title="bbox 426 266 437 276">●●●</span>
</span>
<span class="ocrx_line" title="bbox 445 266 475 276">
<span class="ocrx_word" title="bbox 445 266 475 276">●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 490 266 525 276">
<span class="ocrx_word" title="bbox 490 266 525 276">●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 358 281 393 291">
<span class="ocrx_word" title="bbox 358 281 393 291">●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 406 281 446 291">
<span class="ocrx_word" title="bbox 406 281 446 291">●●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 462 281 470 291">
<span class="ocrx_word" title="bbox 462 281 470 291">●●</span>
</span>
<span class="ocrx_line" title="bbox 477 281 515 291">
<span class="ocrx_word" title="bbox 477 281 515 291">●●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 270 310 322 320">
<span class="ocrx_line" title="bbox 270 310 322 320">
<span class="ocrx_word" title="bbox 270 310 304 320">Άρθρο</span>
<span class="ocrx_word" title="bbox 306 310 322 320">301</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 233 325 359 335">
<span class="ocrx_line" title="bbox 233 325 359 335">
<span class="ocrx_word" title="bbox 233 325 288 335">Συμμετοχή</span>
<span class="ocrx_word" title="bbox 290 325 301 335">σε</span>
<span class="ocrx_word" title="bbox 305 325 359 335">αυτοκτονία</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 57 354 537 393">
<span class="ocrx_line" title="bbox 57 354 273 364">
<span class="ocrx_word" title="bbox 57 354 95 364">Όποιος</span>
<span class="ocrx_word" title="bbox 98 354 146 364">κατέπεισε</span>
<span class="ocrx_word" title="bbox 152 354 181 364">άλλην</span>
<span class="ocrx_word" title="bbox 187 354 199 364">να</span>
<span class="ocrx_word" title="bbox 204 354 273 364">αυτοκτονήσει,</span>
</span>
<span class="ocrx_line" title="bbox 280 354 345 364">
<span class="ocrx_word" title="bbox 280 354 292 364">αν</span>
<span class="ocrx_word" title="bbox 297 354 345 364">τελέστηκε</span>
</span>
<span class="ocrx_line" title="bbox 352 354 357 364">
<span class="ocrx_word" title="bbox 352 354 357 364">η</span>
</span>
<span class="ocrx_line" title="bbox 363 354 415 364">
<span class="ocrx_word" title="bbox 363 354 415 364">αυτοκτονία</span>
</span>
<span class="ocrx_line" title="bbox 425 354 428 364">
<span class="ocrx_word" title="bbox 425 354 428 364">ή</span>
</span>
<span class="ocrx_line" title="bbox 435 354 459 364">
<span class="ocrx_word" title="bbox 435 354 459 364">έγινε</span>
</span>
<span class="ocrx_line" title="bbox 465 354 537 364">
<span class="ocrx_word" title="bbox 465 354 512 364">απόπειρά</span>
<span class="ocrx_word" title="bbox 518 354 537 364">της,</span>
</span>
<span class="ocrx_line" title="bbox 58 369 177 379">
<span class="ocrx_word" title="bbox 58 369 90 379">καθώς</span>
<span class="ocrx_word" title="bbox 93 369 108 379">και</span>
<span class="ocrx_word" title="bbox 111 369 143 379">όποιος</span>
<span class="ocrx_word" title="bbox 148 369 177 379">έδωσε</span>
</span>
<span class="ocrx_line" title="bbox 183 369 303 379">
<span class="ocrx_word" title="bbox 183 369 223 379">βοήθεια</span>
<span class="ocrx_word" title="bbox 228 369 249 379">κατά</span>
<span class="ocrx_word" title="bbox 253 369 270 379">την</span>
<span class="ocrx_word" title="bbox 273 369 303 379">τέλεσή</span>
</span>
<span class="ocrx_line" title="bbox 309 369 367 379">
<span class="ocrx_word" title="bbox 309 369 328 379">της,</span>
<span class="ocrx_word" title="bbox 332 369 337 379">η</span>
<span class="ocrx_word" title="bbox 341 369 367 379">οποία</span>
</span>
<span class="ocrx_line" title="bbox 374 369 537 379">
<span class="ocrx_word" title="bbox 374 369 436 379">διαφορετικά</span>
<span class="ocrx_word" title="bbox 439 369 457 379">δεν</span>
<span class="ocrx_word" title="bbox 459 369 473 379">θα</span>
<span class="ocrx_word" title="bbox 476 369 497 379">ήταν</span>
<span class="ocrx_word" title="bbox 502 369 537 379">εφικτή,</span>
</span>
<span class="ocrx_line" title="bbox 57 383 178 393">
<span class="ocrx_word" title="bbox 57 383 107 393">τιμωρείται</span>
<span class="ocrx_word" title="bbox 113 383 125 393">με</span>
<span class="ocrx_word" title="bbox 128 383 178 393">φυλάκιση.</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 270 413 322 423">
<span class="ocrx_line" title="bbox 270 413 322 423">
<span class="ocrx_word" title="bbox 270 413 304 423">Άρθρο</span>
<span class="ocrx_word" title="bbox 306 413 322 423">302</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 223 427 370 437">
<span class="ocrx_line" title="bbox 223 427 370 437">
<span class="ocrx_word" title="bbox 223 427 300 437">Γυναικοκτονία</span>
<span class="ocrx_word" title="bbox 307 427 326 437">από</span>
<span class="ocrx_word" title="bbox 330 427 350 437">θεσμική</span>
<span class="ocrx_word" title="bbox 351 427 370 437">αμέλεια</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 57 457 492 467">
<span class="ocrx_line" title="bbox 57 457 492 467">
<span class="ocrx_word" title="bbox 57 457 95 467">Όποιος</span>
<span class="ocrx_word" title="bbox 96 457 114 467">από</span>
<span class="ocrx_word" title="bbox 118 457 156 467">αμέλεια</span>
<span class="ocrx_word" title="bbox 161 457 202 467">σκότωσε</span>
<span class="ocrx_word" title="bbox 207 457 238 467">άλλην,</span>
<span class="ocrx_word" title="bbox 242 457 291 467">τιμωρείται</span>
<span class="ocrx_word" title="bbox 298 457 309 467">με</span>
<span class="ocrx_word" title="bbox 312 457 359 467">φυλάκιση</span>
<span class="ocrx_word" title="bbox 362 457 423 467">τουλάχιστον</span>
<span class="ocrx_word" title="bbox 426 457 454 467">τριών</span>
<span class="ocrx_word" title="bbox 457 457 492 467">μηνών.</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 266 486 326 511">
<span class="ocrx_line" title="bbox 270 486 322 496">
<span class="ocrx_word" title="bbox 270 486 304 496">Άρθρο</span>
<span class="ocrx_word" title="bbox 306 486 322 496">303</span>
</span>
<span class="ocrx_line" title="bbox 266 501 326 511">
<span class="ocrx_word" title="bbox 266 501 326 511">Παιδοκτονία</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 58 530 538 555">
<span class="ocrx_line" title="bbox 58 530 538 540">
<span class="ocrx_word" title="bbox 58 530 95 540">Πατέρας</span>
<span class="ocrx_word" title="bbox 100 530 119 540">που</span>
<span class="ocrx_word" title="bbox 123 530 134 540">με</span>
<span class="ocrx_word" title="bbox 137 530 180 540">πρόθεση</span>
<span class="ocrx_word" title="bbox 184 530 225 540">σκότωσε</span>
<span class="ocrx_word" title="bbox 229 530 239 540">την</span>
<span class="ocrx_word" title="bbox 243 530 267 540">κόρη</span>
<span class="ocrx_word" title="bbox 271 530 287 540">του</span>
<span class="ocrx_word" title="bbox 291 530 313 540">κατά</span>
<span class="ocrx_word" title="bbox 318 530 321 540">ή</span>
<span class="ocrx_word" title="bbox 327 530 349 540">μετά</span>
<span class="ocrx_word" title="bbox 352 530 369 540">τον</span>
<span class="ocrx_word" title="bbox 371 530 405 540">τοκετό,</span>
<span class="ocrx_word" title="bbox 410 530 434 540">αλλά</span>
<span class="ocrx_word" title="bbox 437 530 456 540">ενώ</span>
<span class="ocrx_word" title="bbox 460 530 538 540">εξακολουθούσε</span>
</span>
<span class="ocrx_line" title="bbox 58 545 87 555">
<span class="ocrx_word" title="bbox 58 545 87 555">ακόμη</span>
</span>
<span class="ocrx_line" title="bbox 92 545 308 555">
<span class="ocrx_word" title="bbox 92 545 97 555">η</span>
<span class="ocrx_word" title="bbox 101 545 151 555">διατάραξη</span>
<span class="ocrx_word" title="bbox 155 545 172 555">του</span>
<span class="ocrx_word" title="bbox 176 545 234 555">οργανισμού</span>
<span class="ocrx_word" title="bbox 237 545 253 555">της</span>
<span class="ocrx_word" title="bbox 256 545 274 555">από</span>
<span class="ocrx_word" title="bbox 279 545 308 555">αυτόν,</span>
</span>
<span class="ocrx_line" title="bbox 313 545 448 555">
<span class="ocrx_word" title="bbox 313 545 363 555">τιμωρείται</span>
<span class="ocrx_word" title="bbox 370 545 381 555">με</span>
<span class="ocrx_word" title="bbox 384 545 427 555">κάθειρξη</span>
<span class="ocrx_word" title="bbox 431 545 448 555">έως</span>
</span>
<span class="ocrx_line" title="bbox 453 545 496 555">
<span class="ocrx_word" title="bbox 453 545 474 555">δέκα</span>
<span class="ocrx_word" title="bbox 479 545 496 555">έτη.</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 230 588 284 599">
<span class="ocrx_line" title="bbox 230 588 236 599">
<span class="ocrx_word" title="bbox 230 588 236 599">●●●</span>
</span>
<span class="ocrx_line" title="bbox 242 588 284 599">
<span class="ocrx_word" title="bbox 242 588 284 599">●●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 300 588 354 599">
<span class="ocrx_line" title="bbox 300 588 313 599">
<span class="ocrx_word" title="bbox 300 588 313 599">●●●</span>
</span>
<span class="ocrx_line" title="bbox 321 588 354 599">
<span class="ocrx_word" title="bbox 321 588 354 599">●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 270 618 320 628">
<span class="ocrx_line" title="bbox 270 618 295 628">
<span class="ocrx_word" title="bbox 270 618 295 628">●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 306 618 320 628">
<span class="ocrx_word" title="bbox 306 618 320 628">●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 247 632 279 642">
<span class="ocrx_line" title="bbox 247 632 279 642">
<span class="ocrx_word" title="bbox 247 632 279 642">●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 292 632 339 642">
<span class="ocrx_line" title="bbox 292 632 304 642">
<span class="ocrx_word" title="bbox 292 632 304 642">●●●</span>
</span>
<span class="ocrx_line" title="bbox 312 632 339 642">
<span class="ocrx_word" title="bbox 312 632 339 642">●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 57 662 103 745">
<span class="ocrx_line" title="bbox 58 662 64 672">
<span class="ocrx_word" title="bbox 58 662 64 672">●●</span>
</span>
<span class="ocrx_line" title="bbox 70 662 97 672">
<span class="ocrx_word" title="bbox 70 662 97 672">●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 58 676 75 686">
<span class="ocrx_word" title="bbox 58 676 75 686">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 84 676 98 686">
<span class="ocrx_word" title="bbox 84 676 98 686">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 58 691 64 701">
<span class="ocrx_word" title="bbox 58 691 64 701">●●</span>
</span>
<span class="ocrx_line" title="bbox 72 691 99 701">
<span class="ocrx_word" title="bbox 72 691 99 701">●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 58 706 94 716">
<span class="ocrx_word" title="bbox 58 706 94 716">●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 58 720 93 730">
<span class="ocrx_word" title="bbox 58 720 93 730">●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 57 735 103 745">
<span class="ocrx_word" title="bbox 57 735 103 745">●●●●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 109 662 130 672">
<span class="ocrx_line" title="bbox 109 662 130 672">
<span class="ocrx_word" title="bbox 109 662 130 672">●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 141 662 195 672">
<span class="ocrx_line" title="bbox 141 662 149 672">
<span class="ocrx_word" title="bbox 141 662 149 672">●●</span>
</span>
<span class="ocrx_line" title="bbox 156 662 195 672">
<span class="ocrx_word" title="bbox 156 662 195 672">●●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 212 662 258 672">
<span class="ocrx_line" title="bbox 212 662 224 672">
<span class="ocrx_word" title="bbox 212 662 224 672">●●●</span>
</span>
<span class="ocrx_line" title="bbox 232 662 258 672">
<span class="ocrx_word" title="bbox 232 662 258 672">●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 271 662 308 672">
<span class="ocrx_line" title="bbox 271 662 308 672">
<span class="ocrx_word" title="bbox 271 662 308 672">●●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 323 662 366 672">
<span class="ocrx_line" title="bbox 323 662 335 672">
<span class="ocrx_word" title="bbox 323 662 335 672">●●●</span>
</span>
<span class="ocrx_line" title="bbox 344 662 366 672">
<span class="ocrx_word" title="bbox 344 662 366 672">●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 378 662 438 672">
<span class="ocrx_line" title="bbox 378 662 390 672">
<span class="ocrx_word" title="bbox 378 662 390 672">●●●</span>
</span>
<span class="ocrx_line" title="bbox 398 662 438 672">
<span class="ocrx_word" title="bbox 398 662 438 672">●●●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 455 662 504 672">
<span class="ocrx_line" title="bbox 455 662 463 672">
<span class="ocrx_word" title="bbox 455 662 463 672">●●</span>
</span>
<span class="ocrx_line" title="bbox 471 662 504 672">
<span class="ocrx_word" title="bbox 471 662 504 672">●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 519 662 533 672">
<span class="ocrx_line" title="bbox 519 662 533 672">
<span class="ocrx_word" title="bbox 519 662 533 672">●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 108 691 364 730">
<span class="ocrx_line" title="bbox 115 691 123 701">
<span class="ocrx_word" title="bbox 115 691 123 701">●●</span>
</span>
<span class="ocrx_line" title="bbox 132 691 140 701">
<span class="ocrx_word" title="bbox 132 691 140 701">●●</span>
</span>
<span class="ocrx_line" title="bbox 150 691 188 701">
<span class="ocrx_word" title="bbox 150 691 188 701">●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 207 691 219 701">
<span class="ocrx_word" title="bbox 207 691 219 701">●●●</span>
</span>
<span class="ocrx_line" title="bbox 230 691 256 701">
<span class="ocrx_word" title="bbox 230 691 256 701">●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 272 691 276 701">
<span class="ocrx_word" title="bbox 272 691 276 701">●</span>
</span>
<span class="ocrx_line" title="bbox 284 691 297 701">
<span class="ocrx_word" title="bbox 284 691 297 701">●●●</span>
</span>
<span class="ocrx_line" title="bbox 308 691 349 701">
<span class="ocrx_word" title="bbox 308 691 349 701">●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 108 706 121 716">
<span class="ocrx_word" title="bbox 108 706 121 716">●●●</span>
</span>
<span class="ocrx_line" title="bbox 128 706 137 716">
<span class="ocrx_word" title="bbox 128 706 137 716">●●</span>
</span>
<span class="ocrx_line" title="bbox 143 706 160 716">
<span class="ocrx_word" title="bbox 143 706 160 716">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 170 706 188 716">
<span class="ocrx_word" title="bbox 170 706 188 716">●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 197 706 226 716">
<span class="ocrx_word" title="bbox 197 706 226 716">●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 239 706 248 716">
<span class="ocrx_word" title="bbox 239 706 248 716">●●</span>
</span>
<span class="ocrx_line" title="bbox 255 706 297 716">
<span class="ocrx_word" title="bbox 255 706 297 716">●●●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 315 706 351 716">
<span class="ocrx_word" title="bbox 315 706 351 716">●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 113 720 126 730">
<span class="ocrx_word" title="bbox 113 720 126 730">●●●</span>
</span>
<span class="ocrx_line" title="bbox 138 720 153 730">
<span class="ocrx_word" title="bbox 138 720 153 730">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 166 720 177 730">
<span class="ocrx_word" title="bbox 166 720 177 730">●●●</span>
</span>
<span class="ocrx_line" title="bbox 190 720 193 730">
<span class="ocrx_word" title="bbox 190 720 193 730">●</span>
</span>
<span class="ocrx_line" title="bbox 202 720 240 730">
<span class="ocrx_word" title="bbox 202 720 240 730">●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 260 720 280 730">
<span class="ocrx_word" title="bbox 260 720 280 730">●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 295 720 307 730">
<span class="ocrx_word" title="bbox 295 720 307 730">●●●</span>
</span>
<span class="ocrx_line" title="bbox 317 720 326 730">
<span class="ocrx_word" title="bbox 317 720 326 730">●●</span>
</span>
<span class="ocrx_line" title="bbox 336 720 364 730">
<span class="ocrx_word" title="bbox 336 720 364 730">●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="paragraph" title="bbox 365 691 535 716">
<span class="ocrx_line" title="bbox 369 691 383 701">
<span class="ocrx_word" title="bbox 369 691 383 701">●●●</span>
</span>
<span class="ocrx_line" title="bbox 394 691 416 701">
<span class="ocrx_word" title="bbox 394 691 416 701">●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 429 691 437 701">
<span class="ocrx_word" title="bbox 429 691 437 701">●●</span>
</span>
<span class="ocrx_line" title="bbox 446 691 470 701">
<span class="ocrx_word" title="bbox 446 691 470 701">●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 485 691 515 701">
<span class="ocrx_word" title="bbox 485 691 515 701">●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 531 691 535 701">
<span class="ocrx_word" title="bbox 531 691 535 701">●</span>
</span>
<span class="ocrx_line" title="bbox 365 706 377 716">
<span class="ocrx_word" title="bbox 365 706 377 716">●●●</span>
</span>
<span class="ocrx_line" title="bbox 385 706 401 716">
<span class="ocrx_word" title="bbox 385 706 401 716">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 408 706 435 716">
<span class="ocrx_word" title="bbox 408 706 435 716">●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 448 706 462 716">
<span class="ocrx_word" title="bbox 448 706 462 716">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 469 706 510 716">
<span class="ocrx_word" title="bbox 469 706 510 716">●●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 526 706 534 716">
<span class="ocrx_word" title="bbox 526 706 534 716">●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 380 720 525 730">
<span class="ocrx_line" title="bbox 380 720 394 730">
<span class="ocrx_word" title="bbox 380 720 394 730">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 407 720 449 730">
<span class="ocrx_word" title="bbox 407 720 449 730">●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 471 720 479 730">
<span class="ocrx_word" title="bbox 471 720 479 730">●●</span>
</span>
<span class="ocrx_line" title="bbox 490 720 525 730">
<span class="ocrx_word" title="bbox 490 720 525 730">●●●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 123 735 376 745">
<span class="ocrx_line" title="bbox 123 735 137 745">
<span class="ocrx_word" title="bbox 123 735 137 745">●●●</span>
</span>
<span class="ocrx_line" title="bbox 147 735 165 745">
<span class="ocrx_word" title="bbox 147 735 165 745">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 176 735 187 745">
<span class="ocrx_word" title="bbox 176 735 187 745">●●●</span>
</span>
<span class="ocrx_line" title="bbox 196 735 234 745">
<span class="ocrx_word" title="bbox 196 735 234 745">●●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 252 735 274 745">
<span class="ocrx_word" title="bbox 252 735 274 745">●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 288 735 299 745">
<span class="ocrx_word" title="bbox 288 735 299 745">●●</span>
</span>
<span class="ocrx_line" title="bbox 308 735 320 745">
<span class="ocrx_word" title="bbox 308 735 320 745">●●●</span>
</span>
<span class="ocrx_line" title="bbox 330 735 344 745">
<span class="ocrx_word" title="bbox 330 735 344 745">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 353 735 376 745">
<span class="ocrx_word" title="bbox 353 735 376 745">●●●●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 390 735 532 745">
<span class="ocrx_line" title="bbox 390 735 425 745">
<span class="ocrx_word" title="bbox 390 735 425 745">●●●●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 442 735 459 745">
<span class="ocrx_word" title="bbox 442 735 459 745">●●●●</span>
</span>
<span class="ocrx_line" title="bbox 470 735 478 745">
<span class="ocrx_word" title="bbox 470 735 478 745">●●</span>
</span>
<span class="ocrx_line" title="bbox 486 735 508 745">
<span class="ocrx_word" title="bbox 486 735 508 745">●●●●●</span>
</span>
<span class="ocrx_line" title="bbox 519 735 532 745">
<span class="ocrx_word" title="bbox 519 735 532 745">●●●</span>
</span>
</div>
<div class="ocrx_block" pdftotree="section_header" title="bbox 526 782 536 792">
<span class="ocrx_line" title="bbox 526 782 536 792">
<span class="ocrx_word" title="bbox 526 782 536 792">78</span>
</span>
</div>
</div>
</body>
</html> </html>

26
templates/results.html

@ -40,8 +40,8 @@
</td> </td>
<td class="prevent"> <td class="prevent">
<!--<iframe id="showmonster" src="{{url_for('static', filename='pdf/ΣΧΕΔΙΟ_ΜΕΤΑΛΛΑΓΜΕΝΟΥ_ΠΟΙΝΙΚΟΥ_ΚΩΔΙΚΑ_01.pdf')}}" height="750rem" width="800rem"></iframe>--> <iframe id="showmonster" src="{{url_for('static', filename='pdf/ΣΧΕΔΙΟ_ΜΕΤΑΛΛΑΓΜΕΝΟΥ_ΠΟΙΝΙΚΟΥ_ΚΩΔΙΚΑ_01.pdf')}}" height="750rem" width="800rem"></iframe>
<iframe id="showmonster" src="{{url_for('static', filename='pdf/ΣΧΕΔΙΟ_ΜΕΤΑΛΛΑΓΜΕΝΟΥ_ΠΟΙΝΙΚΟΥ_ΚΩΔΙΚΑ_01.pdf')}}" height="800rem" width="750rem"></iframe> <!--<iframe id="showmonster" src="{{url_for('static', filename='pdf/result.pdf')}}" height="800rem" width="750rem"></iframe>-->
</td> </td>
@ -51,6 +51,10 @@
</table> </table>
<script> <script>
var decoded_url
let edited_hocr = document.getElementById("empty_frame").value;
window.addEventListener('DOMContentLoaded', (e) => { window.addEventListener('DOMContentLoaded', (e) => {
let input = document.getElementById("empty_frame"); let input = document.getElementById("empty_frame");
@ -69,10 +73,12 @@ window.addEventListener('DOMContentLoaded', (e) => {
function decode() { function decode() {
var url = document.getElementById("my_field").value; var url = document.getElementById("my_field").value;
var urlDecode = decodeURIComponent(url); var urlDecode = decodeURIComponent(url);
decoded_url = url;
// console.log(urlDecode); // console.log(urlDecode);
document.getElementById("my_field").value = urlDecode; document.getElementById("my_field").value = urlDecode;
const showpdf = document.getElementById("inputpdf"); const showpdf = document.getElementById("inputpdf");
var textarea = document.getElementById('my_field'); var textarea = document.getElementById('my_field');
@ -101,7 +107,21 @@ function readme(){
} }
function transform() { function transform() {
alert("anything"); $.ajax(
{
type : 'POST',
url : "/transform",
contentType: "application/json;charset=UTF-8",
dataType:'json',
data : JSON.stringify( { "pdf" : decoded_url },{"hocr": edited_hocr } ),
success : function(data)
{
console.log(data);
// window.open('{{url_for('static',filename='pdf/result.pdf')}}')
}
}/*success : function() {}*/
);/*$.ajax*/
const show = document.getElementById("showmonster"); const show = document.getElementById("showmonster");
show.style.visibility = "visible"; show.style.visibility = "visible";
const button4 = document.getElementById("button4"); const button4 = document.getElementById("button4");

Loading…
Cancel
Save