<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Implementing a New Interface for Directed Graph Analysis by Existing and New Algorithms</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Miklós</forename><surname>Becsei</surname></persName>
						</author>
						<author>
							<persName><forename type="first">Máté</forename><forename type="middle">Csongor</forename><surname>Széll</surname></persName>
						</author>
						<author role="corresp">
							<persName><forename type="first">Gergely</forename><surname>Kocsis</surname></persName>
							<email>kocsis.gergely@inf.unideb.hu</email>
						</author>
						<author>
							<affiliation key="aff0">
								<orgName type="department">Faculty of Informatics</orgName>
								<orgName type="institution">University of Debrecen</orgName>
								<address>
									<country key="HU">Hungary</country>
								</address>
							</affiliation>
						</author>
						<author>
							<affiliation key="aff1">
								<orgName type="department">Department of IT Systems and Networks</orgName>
							</affiliation>
						</author>
						<title level="a" type="main">Implementing a New Interface for Directed Graph Analysis by Existing and New Algorithms</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">C5D274B448BA5B7AF55CE8B42FDDF992</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-25T08:01+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>directed graph</term>
					<term>network topology</term>
					<term>web interface MSC: 68W40</term>
					<term>68N99</term>
					<term>68U01</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>We have developed a multiplatform application that provides an easy-touse alternative for structural analysis of directed graphs. The work consisted of two major parts. On the one hand, a Java package has been created which, in addition to the implementation of some basic and some moderately complex algorithms, allows for the modular addition of new algorithms. On the other hand, we have created a web interface that can analyze the uploaded graphs online and display the results as a web application. The source of the Java package can be used without a web interface, so it can be easily adapted to a third-party application, or even create a new interface (e.g. in JavaFX). In addition to statistics on simple nodes and edges related to the graph, the package is able to find the giant component of the graph using the Tarján algorithm and use the result to map the so-called "tendrils" in the graph <ref type="bibr" target="#b0">[1]</ref>. It can also specify the number of triangles of different directions in the graph <ref type="bibr" target="#b1">[2]</ref>. The web interface gives the ability to register the user so that it can retain previously uploaded graphs and results in a consistent manner. After logging in, one can upload a new graph, delete an older one, and run the Java package algorithms on the uploaded graphs. Because this interface is independent of the underlying Java package, it can run all algorithms implemented in it and display the result, even after adding new algorithms. In the current stage of the work we are adding new algorithms by integrating well-known graph analysis software into the package under our common interface. This paper focuses on the web-interface while the details of the core package are to be published later since it may need some structural reorganization. The results</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Proceedings of the 11 th International Conference on Applied Informatics Eger, Hungary, January 29-31, 2020, published at http://ceur-ws.org</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.">Motivation</head><p>One of the most popular interdisciplinary topics of recent years is network research, which seeks to provide solutions for analyzing and evaluating complex processes across statistical disciplines from statistical physics through biology to sociology. The basis of these researches is that, taking into account a real-world process, we try to describe it as a network using a graph. Finally, we model the phenomenon based on network properties. The networks used for modeling can be directional and non-directional, edges can have weight, and vertices can be parameterized in many different ways.</p><p>There are several methods for analyzing networks. From many points of view the simplest is the development of a dedicated program. This may need some already existing programming knowledge, but does not require to learn new languages. Because of this latter property still many scientists refuse to use modern network analysis tools. Instead they implement their own algorithms in their well known languages (C, Fortran, Java) from the basis <ref type="bibr" target="#b2">[3,</ref><ref type="bibr" target="#b3">4]</ref>. Another solution is to use some freely available graph analysis software. There are many such software or programming packages available such as Gephi <ref type="bibr" target="#b4">[5]</ref>, Wolfram Alpha [6], Graphviz <ref type="bibr" target="#b5">[7]</ref>, JGraphT [8], GraphStream <ref type="bibr" target="#b6">[9]</ref> or NetworkX <ref type="bibr" target="#b7">[10]</ref>. Unfortunately, in many cases they do not have implementations for specific algorithms out of the box. One needs to learn how to implement or at least parameterize algorithms in these. The aim of our work is to develop a software that, beside providing some basic algorithm implementations by itself, makes it easy to run our own implementations of algorithms written in common languages or implemented by well-known packages or tools. We also would like to provide the possibility for users to add their own graph analysis algorithms under this common interface.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">The application's structure</head><p>As a first step a small core Java package has been developed by implementing a bunch of algorithms which can be used to analyze various, unique properties of a directed graphs, which are not in the main focus of the research of directed networks in order to have an application on the top of which we implement our interface. The main goal was to make this software more easy to be used by creating a web application which through the features of it can be reached. After examining the existing application and the implementation of the graph analyzer algorithms we started to investigate the tools and technologies which are appropriate to create the application efficiently.</p><p>The application is based on client-server architecture. The server is a Spring Boot <ref type="bibr" target="#b9">[12]</ref> application leveraging the advantages of Spring Framework <ref type="bibr" target="#b8">[11]</ref>. It provides REST endpoints for the client application <ref type="bibr" target="#b10">[13]</ref>. The client-server connection is secured via OAuth 2.0 protocol <ref type="bibr" target="#b11">[14]</ref> with JSON Web Tokens managed by Spring Security <ref type="bibr" target="#b12">[15]</ref>. For data persistence it uses MySQL relational database management system through interfaces exposed by Spring Data JPA <ref type="bibr" target="#b13">[16]</ref>. We implemented the actual user interface on Angular platform <ref type="bibr" target="#b14">[17]</ref> using the components of PrimeNG UI kit <ref type="bibr">[18]</ref>. The custom components are written in TypeScript [21] and HTML, the look and feel defined by SCSS stylesheets. For state management we used NgRx <ref type="bibr" target="#b15">[19]</ref>, which is designed specifically for Angular based on the widely used Redux pattern <ref type="bibr" target="#b16">[20]</ref>. The full technology stack is illustrated on Figure <ref type="figure" target="#fig_0">1</ref>. In order to use our web-service users need to have an account. The registration process is quite simple, consists of providing a username and password secured by a CAPTCHA test. After completing the procedure, the user can log in to the application. As the server's REST endpoints are secured -except the registration and the login -the server will decline all the unauthorized requests.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">The application's features</head><p>After the login the user can upload CSV files containing graphs to the server. At the moment only two specific formats are accepted. i.) The first line of a CSV file contains the number of nodes and the upcoming lines describe the links as pairs of node IDs separated by a whitespace characters, commas or semicolons. Numbering of IDs start from 0, so if we have for example 7 nodes the ID of the first one is 0 while the ID of the last one is 6. ii.) The file contains only pairs of nodes in each line. In this case those nodes that have no links cannot be represented. The upload procedure is an HTTP POST request, the file is transferred in the request body. The uploaded graphs are bound to the user by a database table. During the upload process a new row is inserted into this table saving the date of the upload, the name of the file and the identifier of the uploading user. The file itself is stored in the file system. The user's uploaded graphs can be listed on the UI allowing the user to do different actions on them.</p><p>One of the main goals while implementing the interface was to implement it without the need of changing the already existing Java core. Keeping this aim in mind helped to build the interface in a modular way making it absolutely independent from the algorithms while on the other hand keeping it easy to add new features. To accomplish this, we created adapter classes to convert the input data to the proper format for the algorithms. POJOs are also made for each of them to transfer the results of the analysis.</p><p>After these preparations we started to invoke the analyzer methods with different sized graphs to measure the run times. It turned out that the processes can be really time consuming in case of big graphs with many nodes and edges. The solution for this became to run the methods in asynchronous manner and persist the results to the file system in JSON format. The advantage of this strategy is that the stored result can be pushed directly to the client without any conversions or calculations when it asks for it. Figure <ref type="figure" target="#fig_1">2</ref> shows the UI in a state where 3 methods have finished while the fourth one it still in progress. It is important to note that more than one method can run at the same time and also that one method can be run only once. We put information circles nest to the names of the algorithms. Pressing these show detailed description of them. The user can start the analysis of a graph by selecting it from the list on the UI. At first the server will check if the result is existing for the specified graph and algorithm, if it does, it returns the result immediately, if does not, the process starts on another thread and the client will get an empty response. In that way the caller thread is not blocked so there is no infinite loading screen presented to the user. One analysis can be started one time on a graph to avoid the overloading of the server with unnecessary tasks. The results will be stored when the analysis completes, and the client is notified about this fact. When it happens, the client will send a request to the server to obtain the result and presents it to the user. If a graph contains a huge number of nodes and edges the result of the analysis cannot presented well visually for the user, so it can be downloaded from the application in text format allowing additional processing and investigation. This file is created by a conversion of the stored JSON. The uploaded graphs and the results can be deleted from the application, after confirmation all data will be physically deleted from the server if the user makes that decision. At the current state of the webapplication four plus two different algorithms can be run on directed graphs: i.) basic properties are expressed such as number of nodes, links, bidirectional links (links that have directions for both directions), unidirectional links (links having only one direction), loops (links that for which the start and the end are the same), multilinks (more than one links having similar starting and end nodes), in-degree (number of incoming links) and out-degree (number of outgoing links) (see Figure <ref type="figure" target="#fig_2">3</ref> (top-left)), ii.) strongly connected components including the giant component using the Tarján algorithm <ref type="bibr" target="#b17">[22,</ref><ref type="bibr" target="#b18">23]</ref> (see Figure <ref type="figure" target="#fig_2">3</ref> (top-right)), iii.) tendrils and tubes for all layers <ref type="bibr" target="#b0">[1]</ref> (see Figure <ref type="figure" target="#fig_2">3</ref> (bottom-left)), iv.) number of different triangles in the graph <ref type="bibr" target="#b1">[2]</ref> (see Figure <ref type="figure" target="#fig_2">3</ref> (top-right)). The detailed description of these algorithms is out of the scope of this paper since currently we focus on the interface itself. However in the software we added a description next to each algorithm that describes all the needed details. The two extra algorithms mentioned above are two algorithms from third-party software packages that have been successfully merged to the system to test how easy it is to add already existing solutions to the package. By successfully integrating the core Java package we have developed this interface in a way that lets us adding more (even pre-written) other algorithms from other well-known graph analysis software. We have successfully added algorithms from JGrapht and GraphhStream. Although using the built in Java interfaces of the core package adding Java implementations of algorithms is possible, we are also working on a part of the application that lets users to add their own implementations in several different languages. A powerful property of our interface is that if the user precisely implement the provided Java interfaces of the core package, that visualization types are automatically generated. Right now these may be Map, Table <ref type="table">,</ref> Graph and File. See examples of these on Figure <ref type="figure" target="#fig_2">3</ref>. Since this paper is about the web-interface the detailed description of this process is out of the scope. However for users who would like to try it, after requesting the code from the authors the JavaDoc of the classes provide enough help. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.">Discussion</head><p>In this work, we have developed a multiplatform application that provides an easyto-use alternative for structural analysis of directed graphs. Based on an already existing Java core package for graph analysis we have created a web interface that can analyze the uploaded graphs online and display the results as a web application.</p><p>In addition to statistics on simple nodes and edges related to the graph, the package is able to find the giant component of the graph using the Tarján algorithm and use the result to map the so-called "tendrils" in the graph <ref type="bibr" target="#b0">[1]</ref>. It can also specify the number of triangles of different directions in the graph <ref type="bibr" target="#b1">[2]</ref>. The web interface gives the ability to register the user so that it can retain previously uploaded graphs and results in a consistent manner. After logging in, one can upload new graph to the interface, delete an older one, and run the Java package algorithms on the uploaded graphs. Because this interface is independent of the underlying Java package, it can run all algorithms implemented in it and display the result, even after adding new algorithms. In the current stage of the work we are adding new algorithm implementations by integrating well-known graph analysis software into the package under our common interface. We also provide the possibility for users to add their own graph analysis algorithms under this common interface. Right now there are two ways to do this. the user can either send the implementation of the algorithm to the authors to add it to the list. Or what is more comfortable, by ask the full code of the software is sent so the new algorithm can be added on the locally deployed version. In the future we would like to make this more easy by providing scripts for the re-deployment.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: The technology stack used while implementing the web service interface for the core Java application.</figDesc><graphic coords="3,99.03,223.18,283.82,198.32" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 2 :</head><label>2</label><figDesc>Figure 2: Three analysis methods have finished on the selected graph while one is still in progress. The information circles next to the names of the algorithms provide detailed description about them to the user.</figDesc><graphic coords="4,99.03,414.15,283.82,125.31" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Figure 3 :</head><label>3</label><figDesc>Figure 3: Snapshots of the results of the algorithms run on a sample graph. The visualization is automatically generated based on the output of the implementation of the algorithm in the core package. (upper left) Example of map and linechart results through simple graph statistics. (upper right, lower left) Examples of table result through Tarjan and Tendril algorithms. (lower right) Example of map results through triangle counter algorithm. In each case the results can be downloaded also in file format specified by the algorithm itself. For more detailed investigation please visit http://dina.inf.unideb.hu.</figDesc><graphic coords="6,64.05,216.80,175.24,138.91" type="bitmap" /></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Acknowledgements. Miklós Becsei and Máté Csongor Széll were supported by the construction EFOP-3.6.3-VEKOP-16-2017-00002. The project was supported by the European Union, co-financed by the European Social Fund.</p><p>Gergely Kocsis is supported by the EFOP-3.6.1-16-2016-00022 project. The project is co-financed by the European Union and the European Social Fund.</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Mapping the Structure of Directed Networks: Beyond the Bow-Tie Diagram</title>
		<author>
			<persName><forename type="first">G</forename><surname>Timár</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">V</forename><surname>Goltsev</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">N</forename><surname>Dorogovtsev</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">F F</forename><surname>Mendes</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Physical Review Letters</title>
		<imprint>
			<biblScope unit="volume">118</biblScope>
			<biblScope unit="page">78301</biblScope>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<monogr>
		<title level="m" type="main">Reading in Algorithms Counting Triangles</title>
		<author>
			<persName><forename type="first">T</forename><surname>Roughgarden</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2014">2014</date>
		</imprint>
		<respStmt>
			<orgName>Stanford University</orgName>
		</respStmt>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<monogr>
		<title level="m" type="main">Scalable Algorithms for Data and Network Analysis</title>
		<author>
			<persName><forename type="first">S.-H</forename><surname>Teng</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2016">2016</date>
			<publisher>now Publishers Inc</publisher>
			<pubPlace>Boston-Delft</pubPlace>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Comparison of network topologies by simulation of advertising</title>
		<author>
			<persName><forename type="first">I</forename><surname>Varga</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2nd International Conference on Complexity, Future Information Systems and Risk (COMPLEXIS</title>
				<editor>
			<persName><forename type="first">O</forename><surname>Gusikhin</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">V</forename><surname>Méndez Muñoz</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">F</forename><surname>Firouzi</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Mønster</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Chang</surname></persName>
		</editor>
		<meeting>the 2nd International Conference on Complexity, Future Information Systems and Risk (COMPLEXIS</meeting>
		<imprint>
			<publisher>SciTePress</publisher>
			<date type="published" when="2017">2017. 2017</date>
			<biblScope unit="page" from="17" to="22" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Gephi: an open source software for exploring and manipulating networks</title>
		<author>
			<persName><forename type="first">M</forename><surname>Bastian</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Heymann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Jacomy</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">International AAAI Conference on Weblogs and Social Media</title>
				<imprint>
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<monogr>
		<ptr target="https://www.graphviz.org/(lastvisited:01.15" />
		<title level="m">Official site of graphviz</title>
				<imprint>
			<date type="published" when="2020">.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<monogr>
		<ptr target="http://graphstream-project.org/(lastvisited:01." />
		<title level="m">Official site of GraphStream</title>
				<imprint>
			<date type="published" when="2020">15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<monogr>
		<ptr target="https://networkx.github.io/" />
		<title level="m">Official site of NetworkX</title>
				<imprint>
			<date type="published" when="2020">01.15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<monogr>
		<ptr target="https://spring.io/projects/spring-framework(last01." />
		<title level="m">Official site of Spring Framework</title>
				<imprint>
			<date type="published" when="2020">15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<monogr>
		<ptr target="https://en.wikipedia.org/wiki/Spring_Framework#Spring_Boot" />
		<title level="m">Wikipedia page of Spring Framework</title>
				<imprint>
			<date type="published" when="2020">01.15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<monogr>
		<ptr target="https://restfulapi.net/" />
		<title level="m">The official REST tutorial</title>
				<imprint>
			<date type="published" when="2020">01.15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<monogr>
		<author>
			<persName><forename type="first">Sathya</forename><surname>Bandara</surname></persName>
		</author>
		<ptr target="https://medium.com/@technospace/an-introduction-to-oauth-2-0-4c71b5fb19ff" />
		<title level="m">An Introduction to OAuth 2</title>
				<imprint>
			<date type="published" when="2017-01">2017. 01.15.2020</date>
			<biblScope unit="volume">0</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<monogr>
		<author>
			<persName><forename type="first">Jorge</forename><surname>Veliz</surname></persName>
		</author>
		<ptr target="https://thejlmedia.com/5-easy-steps-to-understanding-json-web-tokens-jwt/" />
		<title level="m">5 Easy Steps to Understanding JSON Web Tokens</title>
				<imprint>
			<publisher>JWT</publisher>
			<date type="published" when="2018-01">2018. 01.15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<monogr>
		<ptr target="https://spring.io/projects/spring-data-jpa" />
		<title level="m">Spring Data JPA</title>
				<imprint>
			<date type="published" when="2020">01.15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<monogr>
		<ptr target="https://angular.io/docs(lastvisited:01." />
		<title level="m">Official Angular documentation</title>
				<imprint>
			<date type="published" when="2020">15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<monogr>
		<ptr target="https://ngrx.io/docs(lastvisited:01." />
		<title level="m">Official NgRx documentation</title>
				<imprint>
			<date type="published" when="2020">15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<monogr>
		<ptr target="https://angular.io/guide/rx-library" />
		<title level="m">Official Angular documentation / RxJS library</title>
				<imprint>
			<date type="published" when="2020">01.15.2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<analytic>
		<title level="a" type="main">On Finding the Strongly Connected Components in a Directed Graph</title>
		<author>
			<persName><forename type="first">Esko</forename><surname>Nuutila</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Information Processing Letters</title>
		<imprint>
			<biblScope unit="volume">49</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="9" to="14" />
			<date type="published" when="1994">1994</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b18">
	<analytic>
		<title level="a" type="main">A strong-connectivity algorithm and its applications to data flow analysis</title>
		<author>
			<persName><forename type="first">Micha</forename><surname>Sharir</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Computers and Mathematics with Applications</title>
		<imprint>
			<biblScope unit="volume">7</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="67" to="72" />
			<date type="published" when="1981">1981</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
