ETH Price: $3,316.37 (-0.54%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...215912712025-01-10 3:03:2316 days ago1736478203IN
0xACd3CF81...4C844D3b3
0 ETH0.000152016.14683967
Set Approval For...204362852024-08-01 21:08:35177 days ago1722546515IN
0xACd3CF81...4C844D3b3
0 ETH0.0006361213.64527108
Set Approval For...194535772024-03-17 9:07:59315 days ago1710666479IN
0xACd3CF81...4C844D3b3
0 ETH0.001135524.35706683
Set Approval For...185489912023-11-11 13:28:59442 days ago1699709339IN
0xACd3CF81...4C844D3b3
0 ETH0.001179325.29671843
Set Approval For...177151672023-07-17 19:49:59558 days ago1689623399IN
0xACd3CF81...4C844D3b3
0 ETH0.0008139517.45070191
Set Approval For...176817362023-07-13 2:49:59563 days ago1689216599IN
0xACd3CF81...4C844D3b3
0 ETH0.0008675218.60876885
Set Approval For...173882402023-06-01 20:11:11604 days ago1685650271IN
0xACd3CF81...4C844D3b3
0 ETH0.0020475943.9218349
Set Approval For...173137852023-05-22 8:55:59615 days ago1684745759IN
0xACd3CF81...4C844D3b3
0 ETH0.0014461131.01989027
Set Approval For...166661782023-02-20 0:24:35706 days ago1676852675IN
0xACd3CF81...4C844D3b3
0 ETH0.0009688220.78178336
Set Approval For...165775002023-02-07 14:29:11719 days ago1675780151IN
0xACd3CF81...4C844D3b3
0 ETH0.0013889529.79367661
Set Approval For...165067562023-01-28 17:17:47728 days ago1674926267IN
0xACd3CF81...4C844D3b3
0 ETH0.0006821714.6329441
Set Approval For...161939662022-12-16 1:26:35772 days ago1671153995IN
0xACd3CF81...4C844D3b3
0 ETH0.0006946214.90008226
Set Approval For...155640282022-09-19 0:35:23860 days ago1663547723IN
0xACd3CF81...4C844D3b3
0 ETH0.000324496.96050799
Set Approval For...146149802022-04-19 10:25:421013 days ago1650363942IN
0xACd3CF81...4C844D3b3
0 ETH0.0008479634.20448168
Set Approval For...145397122022-04-07 16:12:061024 days ago1649347926IN
0xACd3CF81...4C844D3b3
0 ETH0.00569171121.87052063
Set Approval For...144280052022-03-21 6:04:191042 days ago1647842659IN
0xACd3CF81...4C844D3b3
0 ETH0.0008224717.61083436
Set Approval For...142732112022-02-25 4:43:471066 days ago1645764227IN
0xACd3CF81...4C844D3b3
0 ETH0.001225949.44958079
Set Approval For...141478652022-02-05 19:26:161085 days ago1644089176IN
0xACd3CF81...4C844D3b3
0 ETH0.00526419112.71643911
Set Approval For...137750302021-12-10 3:40:321143 days ago1639107632IN
0xACd3CF81...4C844D3b3
0 ETH0.0026417756.56533424
Set Approval For...137067362021-11-29 5:17:521154 days ago1638163072IN
0xACd3CF81...4C844D3b3
0 ETH0.004602898.55481031
Set Approval For...136019632021-11-12 15:04:061171 days ago1636729446IN
0xACd3CF81...4C844D3b3
0 ETH0.00697109149.26446378
Set Approval For...135271392021-10-31 21:18:071182 days ago1635715087IN
0xACd3CF81...4C844D3b3
0 ETH0.00574716123.05774809
Set Approval For...133668922021-10-06 17:58:511207 days ago1633543131IN
0xACd3CF81...4C844D3b3
0 ETH0.00674618144.44871824
Set Approval For...133318342021-10-01 6:31:201213 days ago1633069880IN
0xACd3CF81...4C844D3b3
0 ETH0.0023710850.7695048
Set Art132651282021-09-20 21:40:301223 days ago1632174030IN
0xACd3CF81...4C844D3b3
0 ETH0.0095745592.89009923
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
129179192021-07-29 1:50:241277 days ago1627523424
0xACd3CF81...4C844D3b3
1 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Edworm

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Edworm.sol
// SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/utils/Strings.sol';

import 'base64-sol/base64.sol';

// In memory of my sweet cat Edwin. I told him he could live forever and now he can.

contract Edworm is Ownable, ERC721Enumerable {
	using Counters for Counters.Counter;
	using Strings for uint256;
	Counters.Counter private _tokenIdTracker;

	// Truth:
	string public constant R = 'Healing the world with comedy. Making a literal difference metaphorically.';

	// can the worm be released
	bool public hasItBegun = false;

	// the true cost is priceless
	uint public priceToRelease = 6.0 ether;

	// art & meta stuff
	mapping(bytes8 => string) meta;
	mapping(bytes8 => string) svg;
	bytes8[] svg0rig;
	bytes8[] svgHolo;

	//
	constructor() ERC721('Edworm', 'WORM') {
		//
		svg[
			'head'
		] = "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 346 346' stroke-linecap='round' stroke-linejoin='round'>";
		svg[
			'font'
		] = "<style type='text/css'>@font-face { font-family: 'COMPUTER Robot'; font-weight: normal; src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAf8AA4AAAAAEdgAAAejAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACDOggEEQgKjjiLcQtMAAE2AiQDgRQEIAWKAAeBcxtRD1EUs4XsiwObyHQPrAgvZo5DInGO46cXnE08PEfz9YrG9jV4nvL6/tyq6KXy6AxgrLoHwIpaCVzNfPLH/dobYjrM93dihuyOeLovp5IKmSoeGqUQYfq8ty+mf9c38EPsy0xSZ6apszNZuAIWRpY6gUUWt/WpJBSvS7qqDXAi/CIf/3/udTZpG+aWMwzFPk81hzEYE5LL73jMtYVEViERvt2KNeSYjkMhNArHeYzvIbRjs7ZQ6WKeDZk29az8gHvehwIE4PG3yGmAu5e0cwF4reYUBQEBkAZQCEJhCAtQgFY/SjfYWPamwUqAZB9t6PsMbRKgUFl3oA5d0/15wOYPh2A3WeQf+81/N6nk1pWjKdD2/3FAf7UvASEE6C3k3AXDcZBx8AAbHrIgbABFLKE9Bh5+ETG3mHuPoR+Ww8ki//z/P+DaiQe/0f9//fj+8Y1rly6eP3dmKp3+9uf/S5/lIFSzOLzlLUqbQnJQg0W3yXbc/1wFQkw8JPh3JZoDyRZAKpX7aRY33kQA+T9xdRHcMmsuUC0B9WXYA8rKM6xQSMGvxfpJgTes3lYsq6YVWAmFTzeONwaSs0asDK94iCesHC+jwICZFT9j4GRMMMtch1h5asxjlLkMO3wf8/iYUs1nfgRJXySxoJsZeO02x17AGZdZ8Zdx5rO4J+LuTjvGnRUbvQ8a8yM1/g3BGVYTjateaaCojM5gRD7Nlt49HqsDHvn+E7ztUefCzAzuMtlNa7Qf2ZUFPlM+v/NAvDI+fl331BinXLtUB1vjUwbOhiIQ4C2xl1H30hSnM4r6is9lsj0xO5/FRZD7dIQyelY03HvuXXQEyVMjzEBKFzO9fk6d9qRrmt4dZ5xtg3R3JfMgrflHBYFj4D2EtBoVBYwJ5jf287KXGyHr8i6KyArocp/OSn5GLo/WO6GbooKF4XjJI6qDp1YyxgvjnhRXm6k0XaxwOuuVBOzLrPlsPfZTI8G89Omssn7HuAtCIbSxhP5PNMpNdFximetsO96Ka8xgl3D7ObZ8CW1/vV0bRW6X/bfOZE/IEN3hkNTIcU9pZOPy8Hk9wjVKNln8DBciqcfxf7SnQ2T1OPkjrBWGtCGp/bzbJgj9tNh/EKsenqfPM9zl20+P2++Z4gTtcQLTvapFTfJhOeCqHibXZ8e3x2eHD59XyfST93zZyk2+HO9/htHFMEGSZDeO9QORY7jL9gzLL5YCJwdInY/0DOfH9us6CQgvXx1cUcRxRurC8PRxn8R0DyUJEs2nsdOacxz99GGWX20AECJxUVbTx5PBmz+6k/j+eLpfAkzHZ8BuFK9H5m2/ByDHKwhw3q1WGjrPS4o0Y9jmbAoGUmf8qzuaYSHw7gciz2mcXJ/Gd5fT2LMJ2ytBHNnabSsFAUc/Ivbnd3qeTVqHHZPU/RjWz0tanIZNZBiXb5/WX8+Y2fTsfDHiR8lmbppRGqsTtnhXk9vEsUaqiCwdnQhX2UyBeYY1vviqtiYKDgmS/cPYlzdsJ96vndI8I3FhnN2DCTJmU/0w9qpK/mNfy7IGJewDRcrZ7STaDyBDdT5Ug/v365iaq7xxOLsVlD435cQP31m3BwKG44ad/vh8XDGO9tPbQ25DD8uQNb4Hp8ER6+l2EfAg8yVIczYFWxdlU7rT23lJjhXjA6vK5LRcgMfaDWdzVljT3FGoA4iacbyZ3h1I5uWnk9XcNGNWEwUDyIDTWE0cTxyyCyinFCFQvD7CS0qHgIOSQWzcxlh1eHvDvFE2vd76/ziVgssmIJnbxwZQTDUvy7HQAIEJQ6PVNC5KpsaPIgyHHBHK3W/X4lvFI4796uKtFXul0iqbldQ48s8VBPrOCBAo/g3olZyu/au3yOOjAkEae6TdBcADyAtx6/7Xlmu3IPuAUMmK9CuNVaga2yTWEqg4K7w6PiezhqyQ9967RcsawYX28lCUo5dcxVLJx+38vSCJAK26AvZW57HEFGHVv5twcdnzACT5QyNWDDAVXKmQo00VcayimqoeqUVpv9SmaxR1yEp36rJYJtIY2uc36jO3TWlA+15Csf6TguPIYHqNtDlOr1N+btAbePqv+Js4lvrB55qs4zENV1BW0YE9ETp+vstLOVybIq2sKa2u6VJWRcmJSxhFCGi31qFYmMduKSSypsbydlwDV9fG5bjERFyLYzxu0dqKzBaatH5JS9HNhkn1Rgm+r9+gqCjDBJcIorEHZt+Yfi0WxNkT8HGz1nmSoL7WKspb3IR0smnruCIuvSd3vnK02yxtWqt3QkydiwylJUMwBrEmuHyjm6qMrgrUkTVyeJqootznCCictRcaWyjw1SvqVKCBg6G+3Krfz8iUWlZ0+7GO9BNkRWFXaNZ6PdaSObhMKvQSi114cEW9X+OShgnqAbBuob8t2boQViFRZMNzq0T+Nq7he1xGT7ZWARTnWmw/pkJg6wZGGjpGlLb9mqMEBRxXba/NFV6mvjs1LXeyNZf3ofL8l3vAXBEgSjQa5w8OG5xtybIVq9as23DsDEHd328sscURVzyJEV+MBBIrcRIvCZIoSc6w0b2qLLhTxiqkPHEffRzlI2h5QgRCiYqoiYZoiY7oiUHj8KNejaauircRAA==) format('woff2'); }</style>";
		svg[
			'defs'
		] = "<defs><linearGradient id='_overlay' x1='0' x2='0' y1='0' y2='1'><stop offset='57%' stop-color='#080702'/><stop offset='71%' stop-color='#080702' stop-opacity='.75'/><stop offset='93%' stop-color='#080702' stop-opacity='0'/></linearGradient><linearGradient id='_text' x1='0' x2='0' y1='0' y2='1'><stop offset='30%' stop-color='#adff2f'/><stop offset='45%' stop-color='#adff2f'/><stop offset='77%' stop-color='#fff'/></linearGradient><clipPath id='_box'><path d='M0 0h346v346H0z'/></clipPath></defs>";
		svg[
			'back'
		] = "<g id='back' clip-path='url(#_box)'><path id='bg' fill='#080702' d='M0 0h346v346H0z'/><path id='lines' fill='none' stroke='#adff2f' stroke-width='6' d='M138 346V64M54.75 346L138 64M-22 335L138 64M-102 335L138 64M221.25 346L138 64M304.5 346L138 64M378 335L138 64M458 335L138 64M538 335L138 64M0 318h346M0 278h346M0 248.75l346 .13M346 226.74l-346-.16M346 209.3H0'/><path id='overlay' fill='url(#_overlay)' d='M0 0h346v346H0z'/></g>";
		svg[
			'text_a'
		] = "<g id='text' font-family='COMPUTER Robot' fill='url(#_text)'><text x='21.27' y='88.31' font-size='112'>T</text><text x='62.22' y='86.88' font-size='80'>HE</text><text x='22.05' y='138.22' font-size='80'>WOR</text><text x='149.27' y='139.68' font-size='112'>M</text><text x='24.22' y='162.16' fill='#ec008c' font-size='32'>#";
		svg[
			'text_b'
		] = "</text></g>";
		svg[
			'worm'
		] = "<g id='worm'><path fill='none' stroke='#ec008c' stroke-width='48' d='M65 247c6.25 30.96 49.37 33.85 59.7 4l10.06-29.09c11.46-33.11 58.26-33.2 69.83-.12l10.58 30.24c11.94 34.1 61.15 27.41 64.83-8.53.51-5 2.5-4.5-.86-151.5'/><path fill='none' stroke='#231f20' stroke-width='3.25' d='M276.92 104.27s-.32 3.57 2.92 3.57c3.25 0 2.92-3.9 2.92-3.9'/><path fill='#231f20' d='M271.59 97.16c1.33 0 2.42-1.1 2.43-2.43 0-1.34-1.1-2.43-2.43-2.44a2.46 2.46 0 00-2.44 2.43 2.48 2.48 0 002.44 2.44zm15.87-.25h.01a2.43 2.43 0 10-2.44-2.44 2.48 2.48 0 002.44 2.44z'/></g>";
		svg[
			'holo'
		] = "<g id='holo'><path fill='#080702' stroke='#adff2f' stroke-linecap='butt' stroke-width='3.3' d='M41.47 251.75c11.09 54.92 87.59 60.05 105.9 7.1l10.07-29.09c4.02-11.62 20.44-11.65 24.5-.04l10.58 30.23c20.48 58.54 105.04 47.69 111.35-14 .53-5.1 2.69-4.6-.73-154.5a24.01 24.01 0 00-48 1.1c3.3 144.1 1.49 143.6.99 148.5 0 0 0 0 0 0-1.05 10.2-14.92 12.72-18.3 3.05l-10.58-30.24c-19.09-54.54-96.28-54.4-115.17.2L102 243.17c-2.33 6.74-12.07 6.09-13.48-.9a24.01 24.01 0 00-47.06 9.49z'/><path fill='none' stroke='#adff2f' stroke-width='3.25' d='M276.92 104.27s-.32 3.57 2.92 3.57c3.25 0 2.92-3.9 2.92-3.9'/><path fill='#adff2f' d='M271.59 97.16c1.33 0 2.42-1.1 2.43-2.43 0-1.34-1.1-2.43-2.43-2.44a2.46 2.46 0 00-2.44 2.43 2.48 2.48 0 002.44 2.44zm15.87-.25h.01a2.43 2.43 0 10-2.44-2.44 2.48 2.48 0 002.44 2.44z'/></g>";
		svg[
			'tail'
		] = "</svg>";

		svg0rig = [
			//
			bytes8('head'),
			bytes8('font'),
			bytes8('defs'),
			bytes8('back'),
			bytes8('text_a'),
			bytes8('token_id'),
			bytes8('text_b'),
			bytes8('worm'),
			bytes8('tail')
		];

		svgHolo = [
			//
			bytes8('head'),
			bytes8('font'),
			bytes8('defs'),
			bytes8('back'),
			bytes8('text_a'),
			bytes8('token_id'),
			bytes8('text_b'),
			bytes8('holo'),
			bytes8('tail')
		];

		meta[
			'desc0rig'
		] = "The Worm is building a cult as he travels through the Ethereum blockchain. Help him on his journey by passing him along.";
		meta[
			'descHolo'
		] = "I've left this beautiful Hologram of myself as a memento of our special time together. Joining my cult was the best decision you ever made. You can never leave. Best Wishes. - The Worm.";
		meta['ext_url'] = "https://theworm.wtf/#";
	}

	//
	// managing
	//

	// withdraw balance
	function getPaid() public payable onlyOwner {
		require(payable(_msgSender()).send(address(this).balance));
	}

	function setPrice(uint256 price) external onlyOwner {
		priceToRelease = price;
	}

	function setBegun(bool yes) external onlyOwner {
		hasItBegun = yes;
	}

	function setArt(bytes8 key, string memory value) external onlyOwner {
		svg[key] = value;
	}

	function setLayers(bool isWorm, bytes8[] memory values) external onlyOwner {
		if (isWorm) {
			svg0rig = values;
		} else {
			svgHolo = values;
		}
	}

	function setMeta(bytes8 key, string memory value) external onlyOwner {
		meta[key] = value;
	}
	
	//
	// main
	//

	// don't release the worm
	function release() public payable {
		uint newTokenId = _tokenIdTracker.current();

		require(
			// ensure minting is only possible once it has begun
			hasItBegun == true,
			'TOO EARLY: it has not begun yet.'
		);

		require(
			// ensure only the 0riginal is ever minted
			newTokenId == 0,
			'TOO LATE: the 0riginal can only be minted once.'
		);

		require(
			// ensure the price was paid in full
			msg.value >= priceToRelease,
			'TOO POOR: send moar ether.'
		);

		mint(msg.sender);
	}

	//
	// transferring
	//

	function transferFrom(
		address from,
		address to,
		uint256 tokenId
	) public override {
		transferOverride(from, to, tokenId);
	}

	function safeTransferFrom(
		address from,
		address to,
		uint256 tokenId
	) public override {
		transferOverride(from, to, tokenId);
	}

	function safeTransferFrom(
		address from,
		address to,
		uint256 tokenId,
		bytes memory _data
	) public override {
		transferOverride(from, to, tokenId, _data);
	}

	function transferOverride(
		address from,
		address to,
		uint256 tokenId
	) internal {
		transferOverride(from, to, tokenId, '');
	}

	function transferOverride(
		address from,
		address to,
		uint256 tokenId,
		bytes memory _data
	) internal {
		//
		transfer(from, to, tokenId, _data);
		//
		mint(from);
	}

	// THIS is the main transfer function
	function propagate(address to) public {
		// enforce requirements
		transferOverride(msg.sender, to, 0);
	}

	// internal transfer
	function transfer(
		address from,
		address to,
		uint256 tokenId,
		bytes memory _data
	) internal {
		require(
			// require that the address isnt zero (not necessary) but
			// it's not about the gas, it's about sending a message
			to != address(0),
			'TOO BAD: cant burn me.'
		);

		require(
			// require that the token is the 0riginal
			tokenId == 0,
			'TOO BAD: only the 0riginal can be transferred.'
		);

		require(
			// require that the owner wasnt previously an owner
			balanceOf(to) == 0,
			'TOO BAD: you already had the 0riginal.'
		);

		require(
			// require because we overrode safeTransferFrom
			_isApprovedOrOwner(_msgSender(), tokenId),
			'ERC721: transfer caller is not owner nor approved'
		);

		_safeTransfer(from, to, tokenId, _data);
	}

	// internal mint a copy
	function mint(address to) internal {
		// do the mint
		uint newTokenId = _tokenIdTracker.current();
		_safeMint(to, newTokenId);

		// increment AFTER because starts at 0
		_tokenIdTracker.increment();
	}

	//
	// displaying
	//

	function getArt(uint256 _tokenId) public view returns (string memory) {
		string memory acc;
		bytes8[] memory layers;

		if (_tokenId == 0) {
			layers = svg0rig;
		} else {
			layers = svgHolo;
		}

		for (uint i = 0; i < layers.length; i++) {
			if (layers[i] == bytes8('token_id')) {
				acc = join(acc, _tokenId.toString());
			} else {
				acc = join(acc, svg[layers[i]]);
			}
		}

		return acc;
	}

	function join(string memory _a, string memory _b)
		internal
		pure
		returns (string memory result)
	{
		result = string(abi.encodePacked(bytes(_a), bytes(_b)));
	}

	function getMeta(uint256 _tokenId) public view returns (string memory) {
		string memory name;
		string memory desc;

		string memory image = Base64.encode(bytes(getArt(_tokenId)));

		if (_tokenId == 0) {
			name = 'The Worm';
			desc = meta['desc0rig'];
		} else {
			name = join('The Worm Hologram #', _tokenId.toString());
			desc = meta['descHolo'];
		}

		return string(abi.encodePacked(
			'data:application/json;base64,',
			Base64.encode(
				bytes(abi.encodePacked(
					'{',
						'"name": "', name, '",',
						'"description": "', desc, '",',
						'"image": "data:image/svg+xml;base64,', image, '",',
						'"external_url": "', meta['ext_url'], _tokenId.toString(), '"',
					'}'
				))
			)
		));
	}

	function tokenURI(uint256 _tokenId)
		public
		view
		override
		returns (string memory)
	{
		return getMeta(_tokenId);
	}

	// accept ether sent
	receive() external payable {}
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 5 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

File 6 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 7 of 15 : base64.sol
// SPDX-License-Identifier: MIT

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';
        
        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)
               
               // read 3 bytes
               let input := mload(dataPtr)
               
               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }
        
        return result;
    }
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 14 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 15 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"R","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getArt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getMeta","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"hasItBegun","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceToRelease","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"propagate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes8","name":"key","type":"bytes8"},{"internalType":"string","name":"value","type":"string"}],"name":"setArt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"yes","type":"bool"}],"name":"setBegun","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isWorm","type":"bool"},{"internalType":"bytes8[]","name":"values","type":"bytes8[]"}],"name":"setLayers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes8","name":"key","type":"bytes8"},{"internalType":"string","name":"value","type":"string"}],"name":"setMeta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506753444835ec580000600d553480156200003857600080fd5b506040518060400160405280600681526020017f4564776f726d00000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f574f524d000000000000000000000000000000000000000000000000000000008152506000620000b762000e8f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600190805190602001906200016d92919062000e97565b5080600290805190602001906200018692919062000e97565b5050506040518060a00160405280606d81526020016200644f606d9139600f60007f686561640000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200020692919062000e97565b5060405180610b800160405280610b568152602001620064bc610b569139600f60007f666f6e740000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200028792919062000e97565b506040518061022001604052806101f18152602001620074e76101f19139600f60007f646566730000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200030892919062000e97565b50604051806101e001604052806101ad81526020016200733a6101ad9139600f60007f6261636b0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200038992919062000e97565b506040518061018001604052806101438152602001620060e36101439139600f60007f746578745f61000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200040a92919062000e97565b506040518060400160405280600b81526020017f3c2f746578743e3c2f673e000000000000000000000000000000000000000000815250600f60007f746578745f62000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000209080519060200190620004a492919062000e97565b506040518061026001604052806102298152602001620062266102299139600f60007f776f726d0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200052592919062000e97565b506040518061036001604052806103288152602001620070126103289139600f60007f686f6c6f0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000209080519060200190620005a692919062000e97565b506040518060400160405280600681526020017f3c2f7376673e0000000000000000000000000000000000000000000000000000815250600f60007f7461696c0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002090805190602001906200064092919062000e97565b506040518061012001604052807f686561640000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f666f6e740000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f646566730000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f6261636b0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f746578745f61000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f746f6b656e5f696400000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f746578745f62000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f776f726d0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f7461696c0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681525060109060096200099992919062000f28565b506040518061012001604052807f686561640000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f666f6e740000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f646566730000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f6261636b0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f746578745f61000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f746f6b656e5f696400000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f746578745f62000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f686f6c6f0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020017f7461696c0000000000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff1916815250601190600962000cf292919062000f28565b506040518060a0016040528060788152602001620076d860789139600e60007f646573633072696700000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020908051906020019062000d7092919062000e97565b506040518060e0016040528060b981526020016200775060b99139600e60007f64657363486f6c6f00000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020908051906020019062000dee92919062000e97565b506040518060400160405280601581526020017f68747470733a2f2f746865776f726d2e7774662f230000000000000000000000815250600e60007f6578745f75726c0000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020908051906020019062000e8892919062000e97565b5062001068565b600033905090565b82805462000ea59062001003565b90600052602060002090601f01602090048101928262000ec9576000855562000f15565b82601f1062000ee457805160ff191683800117855562000f15565b8280016001018555821562000f15579182015b8281111562000f1457825182559160200191906001019062000ef7565b5b50905062000f24919062000fe4565b5090565b8280548282559060005260206000209060030160049004810192821562000fd15791602002820160005b8382111562000f9957835183826101000a81548167ffffffffffffffff021916908360c01c0217905550926020019260080160208160070104928301926001030262000f52565b801562000fcf5782816101000a81549067ffffffffffffffff021916905560080160208160070104928301926001030262000f99565b505b50905062000fe0919062000fe4565b5090565b5b8082111562000fff57600081600090555060010162000fe5565b5090565b600060028204905060018216806200101c57607f821691505b6020821081141562001033576200103262001039565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61506b80620010786000396000f3fe6080604052600436106101e75760003560e01c806370a0823111610102578063a22cb46511610095578063cf41d6f811610064578063cf41d6f814610700578063e985e9c51461070a578063ee407e6c14610747578063f2fde38b14610770576101ee565b8063a22cb46514610646578063b88d4fde1461066f578063c87b56dd14610698578063cc4721d2146106d5576101ee565b80638da5cb5b116100d15780638da5cb5b1461059e57806391b7f5ed146105c957806395d89b41146105f25780639a34f0741461061d576101ee565b806370a0823114610503578063715018a61461054057806386d1a69f146105575780638c4796c714610561576101ee565b80632d8126c31161017a57806342842e0e1161014957806342842e0e146104355780634980e1be1461045e5780634f6ccce7146104895780636352211e146104c6576101ee565b80632d8126c3146103695780632f745c591461039257806332fcfd7b146103cf57806336dac2cc146103f8576101ee565b8063150cac24116101b6578063150cac24146102c157806318160ddd146102ec5780632099748a1461031757806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613703565b610799565b6040516102279190613f2c565b60405180910390f35b34801561023c57600080fd5b50610245610813565b6040516102529190613f47565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906137b9565b6108a5565b60405161028f9190613ec5565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061363a565b61092a565b005b3480156102cd57600080fd5b506102d6610a42565b6040516102e39190613f2c565b60405180910390f35b3480156102f857600080fd5b50610301610a55565b60405161030e9190614249565b60405180910390f35b34801561032357600080fd5b5061033e600480360381019061033991906136a7565b610a62565b005b34801561034c57600080fd5b5061036760048036038101906103629190613524565b610b1c565b005b34801561037557600080fd5b50610390600480360381019061038b919061375d565b610b2c565b005b34801561039e57600080fd5b506103b960048036038101906103b4919061363a565b610c0a565b6040516103c69190614249565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061375d565b610caf565b005b34801561040457600080fd5b5061041f600480360381019061041a91906137b9565b610d8d565b60405161042c9190613f47565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613524565b611097565b005b34801561046a57600080fd5b506104736110a7565b6040516104809190613f47565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906137b9565b6110c3565b6040516104bd9190614249565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906137b9565b611134565b6040516104fa9190613ec5565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906134b7565b6111e6565b6040516105379190614249565b60405180910390f35b34801561054c57600080fd5b5061055561129e565b005b61055f6113d8565b005b34801561056d57600080fd5b50610588600480360381019061058391906137b9565b6114d0565b6040516105959190613f47565b60405180910390f35b3480156105aa57600080fd5b506105b36117b9565b6040516105c09190613ec5565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906137b9565b6117e2565b005b3480156105fe57600080fd5b50610607611868565b6040516106149190613f47565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061367a565b6118fa565b005b34801561065257600080fd5b5061066d600480360381019061066891906135fa565b611993565b005b34801561067b57600080fd5b5061069660048036038101906106919190613577565b611b14565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906137b9565b611b26565b6040516106cc9190613f47565b60405180910390f35b3480156106e157600080fd5b506106ea611b38565b6040516106f79190614249565b60405180910390f35b610708611b3e565b005b34801561071657600080fd5b50610731600480360381019061072c91906134e4565b611c01565b60405161073e9190613f2c565b60405180910390f35b34801561075357600080fd5b5061076e600480360381019061076991906134b7565b611c95565b005b34801561077c57600080fd5b50610797600480360381019061079291906134b7565b611ca4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080c575061080b82611e4d565b5b9050919050565b60606001805461082290614571565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90614571565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b082611f2f565b6108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690614169565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093582611134565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906141e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109c5611f9b565b73ffffffffffffffffffffffffffffffffffffffff1614806109f457506109f3816109ee611f9b565b611c01565b5b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a906140a9565b60405180910390fd5b610a3d8383611fa3565b505050565b600c60009054906101000a900460ff1681565b6000600980549050905090565b610a6a611f9b565b73ffffffffffffffffffffffffffffffffffffffff16610a886117b9565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590614189565b60405180910390fd5b8115610b00578060109080519060200190610afa929190613163565b50610b18565b8060119080519060200190610b16929190613163565b505b5050565b610b2783838361205c565b505050565b610b34611f9b565b73ffffffffffffffffffffffffffffffffffffffff16610b526117b9565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614189565b60405180910390fd5b80600e60008477ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000209080519060200190610c05929190613218565b505050565b6000610c15836111e6565b8210610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613f69565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cb7611f9b565b73ffffffffffffffffffffffffffffffffffffffff16610cd56117b9565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290614189565b60405180910390fd5b80600f60008477ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000209080519060200190610d88929190613218565b505050565b60608060606000610da5610da0866114d0565b61207c565b90506000851415610ec6576040518060400160405280600881526020017f54686520576f726d0000000000000000000000000000000000000000000000008152509250600e60007f646573633072696700000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000208054610e4190614571565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6d90614571565b8015610eba5780601f10610e8f57610100808354040283529160200191610eba565b820191906000526020600020905b815481529060010190602001808311610e9d57829003601f168201915b50505050509150610fe9565b610f0d6040518060400160405280601381526020017f54686520576f726d20486f6c6f6772616d202300000000000000000000000000815250610f0887612201565b612362565b9250600e60007f64657363486f6c6f00000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000208054610f6890614571565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9490614571565b8015610fe15780601f10610fb657610100808354040283529160200191610fe1565b820191906000526020600020905b815481529060010190602001808311610fc457829003601f168201915b505050505091505b61106e838383600e60007f6578745f75726c0000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000206110468a612201565b60405160200161105a959493929190613dea565b60405160208183030381529060405261207c565b60405160200161107e9190613ea3565b6040516020818303038152906040529350505050919050565b6110a283838361205c565b505050565b6040518060800160405280604a8152602001614fec604a913981565b60006110cd610a55565b821061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614229565b60405180910390fd5b600982815481106111225761112161470a565b5b90600052602060002001549050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906140e9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906140c9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a6611f9b565b73ffffffffffffffffffffffffffffffffffffffff166112c46117b9565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190614189565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113e4600b61238e565b905060011515600c60009054906101000a900460ff1615151461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614129565b60405180910390fd5b6000811461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613fe9565b60405180910390fd5b600d543410156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90614089565b60405180910390fd5b6114cd3361239c565b50565b6060806060600084141561157457601080548060200260200160405190810160405280929190818152602001828054801561156857602002820191906000526020600020906000905b82829054906101000a900460c01b77ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190600801906020826007010492830192600103820291508084116115195790505b50505050509050611606565b60118054806020026020016040519081016040528092919081815260200182805480156115fe57602002820191906000526020600020906000905b82829054906101000a900460c01b77ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190600801906020826007010492830192600103820291508084116115af5790505b505050505090505b60005b81518110156117ae577f746f6b656e5f696400000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff19168282815181106116615761166061470a565b5b602002602001015177ffffffffffffffffffffffffffffffffffffffffffffffff191614156116a35761169c8361169787612201565b612362565b925061179b565b61179883600f60008585815181106116be576116bd61470a565b5b602002602001015177ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020805461171590614571565b80601f016020809104026020016040519081016040528092919081815260200182805461174190614571565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b5050505050612362565b92505b80806117a6906145d4565b915050611609565b508192505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117ea611f9b565b73ffffffffffffffffffffffffffffffffffffffff166118086117b9565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614189565b60405180910390fd5b80600d8190555050565b60606002805461187790614571565b80601f01602080910402602001604051908101604052809291908181526020018280546118a390614571565b80156118f05780601f106118c5576101008083540402835291602001916118f0565b820191906000526020600020905b8154815290600101906020018083116118d357829003601f168201915b5050505050905090565b611902611f9b565b73ffffffffffffffffffffffffffffffffffffffff166119206117b9565b73ffffffffffffffffffffffffffffffffffffffff1614611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90614189565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b61199b611f9b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614029565b60405180910390fd5b8060066000611a16611f9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac3611f9b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b089190613f2c565b60405180910390a35050565b611b20848484846123c2565b50505050565b6060611b3182610d8d565b9050919050565b600d5481565b611b46611f9b565b73ffffffffffffffffffffffffffffffffffffffff16611b646117b9565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614189565b60405180910390fd5b611bc2611f9b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611bff57600080fd5b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca13382600061205c565b50565b611cac611f9b565b73ffffffffffffffffffffffffffffffffffffffff16611cca6117b9565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790614189565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613fa9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f285750611f27826123dd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661201683611134565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612077838383604051806020016040528060008152506123c2565b505050565b606060008251141561209f576040518060200160405280600081525090506121fc565b6000604051806060016040528060408152602001614fac60409139905060006003600285516120ce919061437a565b6120d891906143d0565b60046120e49190614401565b905060006020826120f5919061437a565b67ffffffffffffffff81111561210e5761210d614739565b5b6040519080825280601f01601f1916602001820160405280156121405781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156121bb576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050612154565b6003895106600181146121d557600281146121e5576121f0565b613d3d60f01b60028303526121f0565b603d60f81b60018303525b50505050508093505050505b919050565b60606000821415612249576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235d565b600082905060005b6000821461227b578080612264906145d4565b915050600a8261227491906143d0565b9150612251565b60008167ffffffffffffffff81111561229757612296614739565b5b6040519080825280601f01601f1916602001820160405280156122c95781602001600182028036833780820191505090505b5090505b60008514612356576001826122e2919061445b565b9150600a856122f1919061461d565b60306122fd919061437a565b60f81b8183815181106123135761231261470a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561234f91906143d0565b94506122cd565b8093505050505b919050565b60608282604051602001612377929190613dc6565b604051602081830303815290604052905092915050565b600081600001549050919050565b60006123a8600b61238e565b90506123b48282612447565b6123be600b612465565b5050565b6123ce8484848461247b565b6123d78461239c565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124618282604051806020016040528060008152506125db565b5050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e2906141a9565b60405180910390fd5b6000821461252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590614049565b60405180910390fd5b6000612539846111e6565b14612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090614109565b60405180910390fd5b61258a612584611f9b565b83612636565b6125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090614209565b60405180910390fd5b6125d584848484612714565b50505050565b6125e58383612770565b6125f2600084848461293e565b612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890613f89565b60405180910390fd5b505050565b600061264182611f2f565b612680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267790614069565b60405180910390fd5b600061268b83611134565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126fa57508373ffffffffffffffffffffffffffffffffffffffff166126e2846108a5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061270b575061270a8185611c01565b5b91505092915050565b61271f848484612ad5565b61272b8484848461293e565b61276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190613f89565b60405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d790614149565b60405180910390fd5b6127e981611f2f565b15612829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282090613fc9565b60405180910390fd5b61283560008383612d31565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612885919061437a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061295f8473ffffffffffffffffffffffffffffffffffffffff16612e45565b15612ac8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612988611f9b565b8786866040518563ffffffff1660e01b81526004016129aa9493929190613ee0565b602060405180830381600087803b1580156129c457600080fd5b505af19250505080156129f557506040513d601f19601f820116820180604052508101906129f29190613730565b60015b612a78573d8060008114612a25576040519150601f19603f3d011682016040523d82523d6000602084013e612a2a565b606091505b50600081511415612a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6790613f89565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612acd565b600190505b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612af582611134565b73ffffffffffffffffffffffffffffffffffffffff1614612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b42906141c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb290614009565b60405180910390fd5b612bc6838383612d31565b612bd1600082611fa3565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c21919061445b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c78919061437a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612d3c838383612e58565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d7f57612d7a81612e5d565b612dbe565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612dbd57612dbc8382612ea6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e0157612dfc81613013565b612e40565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e3f57612e3e82826130e4565b5b5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612eb3846111e6565b612ebd919061445b565b9050600060086000848152602001908152602001600020549050818114612fa2576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613027919061445b565b90506000600a60008481526020019081526020016000205490506000600983815481106130575761305661470a565b5b9060005260206000200154905080600983815481106130795761307861470a565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806130c8576130c76146db565b5b6001900381819060005260206000200160009055905550505050565b60006130ef836111e6565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054828255906000526020600020906003016004900481019282156132075791602002820160005b838211156131d157835183826101000a81548167ffffffffffffffff021916908360c01c0217905550926020019260080160208160070104928301926001030261318c565b80156132055782816101000a81549067ffffffffffffffff02191690556008016020816007010492830192600103026131d1565b505b509050613214919061329e565b5090565b82805461322490614571565b90600052602060002090601f016020900481019282613246576000855561328d565b82601f1061325f57805160ff191683800117855561328d565b8280016001018555821561328d579182015b8281111561328c578251825591602001919060010190613271565b5b50905061329a919061329e565b5090565b5b808211156132b757600081600090555060010161329f565b5090565b60006132ce6132c984614289565b614264565b905080838252602082019050828560208602820111156132f1576132f061476d565b5b60005b8581101561332157816133078882613431565b8452602084019350602083019250506001810190506132f4565b5050509392505050565b600061333e613339846142b5565b614264565b90508281526020810184848401111561335a57613359614772565b5b61336584828561452f565b509392505050565b600061338061337b846142e6565b614264565b90508281526020810184848401111561339c5761339b614772565b5b6133a784828561452f565b509392505050565b6000813590506133be81614f38565b92915050565b600082601f8301126133d9576133d8614768565b5b81356133e98482602086016132bb565b91505092915050565b60008135905061340181614f4f565b92915050565b60008135905061341681614f66565b92915050565b60008151905061342b81614f66565b92915050565b60008135905061344081614f7d565b92915050565b600082601f83011261345b5761345a614768565b5b813561346b84826020860161332b565b91505092915050565b600082601f83011261348957613488614768565b5b813561349984826020860161336d565b91505092915050565b6000813590506134b181614f94565b92915050565b6000602082840312156134cd576134cc61477c565b5b60006134db848285016133af565b91505092915050565b600080604083850312156134fb576134fa61477c565b5b6000613509858286016133af565b925050602061351a858286016133af565b9150509250929050565b60008060006060848603121561353d5761353c61477c565b5b600061354b868287016133af565b935050602061355c868287016133af565b925050604061356d868287016134a2565b9150509250925092565b600080600080608085870312156135915761359061477c565b5b600061359f878288016133af565b94505060206135b0878288016133af565b93505060406135c1878288016134a2565b925050606085013567ffffffffffffffff8111156135e2576135e1614777565b5b6135ee87828801613446565b91505092959194509250565b600080604083850312156136115761361061477c565b5b600061361f858286016133af565b9250506020613630858286016133f2565b9150509250929050565b600080604083850312156136515761365061477c565b5b600061365f858286016133af565b9250506020613670858286016134a2565b9150509250929050565b6000602082840312156136905761368f61477c565b5b600061369e848285016133f2565b91505092915050565b600080604083850312156136be576136bd61477c565b5b60006136cc858286016133f2565b925050602083013567ffffffffffffffff8111156136ed576136ec614777565b5b6136f9858286016133c4565b9150509250929050565b6000602082840312156137195761371861477c565b5b600061372784828501613407565b91505092915050565b6000602082840312156137465761374561477c565b5b60006137548482850161341c565b91505092915050565b600080604083850312156137745761377361477c565b5b600061378285828601613431565b925050602083013567ffffffffffffffff8111156137a3576137a2614777565b5b6137af85828601613474565b9150509250929050565b6000602082840312156137cf576137ce61477c565b5b60006137dd848285016134a2565b91505092915050565b6137ef8161448f565b82525050565b6137fe816144a1565b82525050565b600061380f8261432c565b6138198185614342565b935061382981856020860161453e565b61383281614781565b840191505092915050565b60006138488261432c565b6138528185614353565b935061386281856020860161453e565b80840191505092915050565b600061387982614337565b613883818561435e565b935061389381856020860161453e565b61389c81614781565b840191505092915050565b60006138b282614337565b6138bc818561436f565b93506138cc81856020860161453e565b80840191505092915050565b600081546138e581614571565b6138ef818661436f565b9450600182166000811461390a576001811461391b5761394e565b60ff1983168652818601935061394e565b61392485614317565b60005b8381101561394657815481890152600182019150602081019050613927565b838801955050505b50505092915050565b6000613964602b8361435e565b915061396f82614792565b604082019050919050565b600061398760328361435e565b9150613992826147e1565b604082019050919050565b60006139aa60268361435e565b91506139b582614830565b604082019050919050565b60006139cd60028361436f565b91506139d88261487f565b600282019050919050565b60006139f0601c8361435e565b91506139fb826148a8565b602082019050919050565b6000613a13602f8361435e565b9150613a1e826148d1565b604082019050919050565b6000613a3660248361435e565b9150613a4182614920565b604082019050919050565b6000613a5960198361435e565b9150613a648261496f565b602082019050919050565b6000613a7c602e8361435e565b9150613a8782614998565b604082019050919050565b6000613a9f602c8361435e565b9150613aaa826149e7565b604082019050919050565b6000613ac260118361436f565b9150613acd82614a36565b601182019050919050565b6000613ae560108361436f565b9150613af082614a5f565b601082019050919050565b6000613b08601a8361435e565b9150613b1382614a88565b602082019050919050565b6000613b2b60388361435e565b9150613b3682614ab1565b604082019050919050565b6000613b4e60018361436f565b9150613b5982614b00565b600182019050919050565b6000613b71602a8361435e565b9150613b7c82614b29565b604082019050919050565b6000613b9460298361435e565b9150613b9f82614b78565b604082019050919050565b6000613bb760268361435e565b9150613bc282614bc7565b604082019050919050565b6000613bda60208361435e565b9150613be582614c16565b602082019050919050565b6000613bfd60248361436f565b9150613c0882614c3f565b602482019050919050565b6000613c2060208361435e565b9150613c2b82614c8e565b602082019050919050565b6000613c4360018361436f565b9150613c4e82614cb7565b600182019050919050565b6000613c66602c8361435e565b9150613c7182614ce0565b604082019050919050565b6000613c8960098361436f565b9150613c9482614d2f565b600982019050919050565b6000613cac60208361435e565b9150613cb782614d58565b602082019050919050565b6000613ccf60168361435e565b9150613cda82614d81565b602082019050919050565b6000613cf260298361435e565b9150613cfd82614daa565b604082019050919050565b6000613d1560018361436f565b9150613d2082614df9565b600182019050919050565b6000613d3860218361435e565b9150613d4382614e22565b604082019050919050565b6000613d5b601d8361436f565b9150613d6682614e71565b601d82019050919050565b6000613d7e60318361435e565b9150613d8982614e9a565b604082019050919050565b6000613da1602c8361435e565b9150613dac82614ee9565b604082019050919050565b613dc081614525565b82525050565b6000613dd2828561383d565b9150613dde828461383d565b91508190509392505050565b6000613df582613d08565b9150613e0082613c7c565b9150613e0c82886138a7565b9150613e17826139c0565b9150613e2282613ad8565b9150613e2e82876138a7565b9150613e39826139c0565b9150613e4482613bf0565b9150613e5082866138a7565b9150613e5b826139c0565b9150613e6682613ab5565b9150613e7282856138d8565b9150613e7e82846138a7565b9150613e8982613b41565b9150613e9482613c36565b91508190509695505050505050565b6000613eae82613d4e565b9150613eba82846138a7565b915081905092915050565b6000602082019050613eda60008301846137e6565b92915050565b6000608082019050613ef560008301876137e6565b613f0260208301866137e6565b613f0f6040830185613db7565b8181036060830152613f218184613804565b905095945050505050565b6000602082019050613f4160008301846137f5565b92915050565b60006020820190508181036000830152613f61818461386e565b905092915050565b60006020820190508181036000830152613f8281613957565b9050919050565b60006020820190508181036000830152613fa28161397a565b9050919050565b60006020820190508181036000830152613fc28161399d565b9050919050565b60006020820190508181036000830152613fe2816139e3565b9050919050565b6000602082019050818103600083015261400281613a06565b9050919050565b6000602082019050818103600083015261402281613a29565b9050919050565b6000602082019050818103600083015261404281613a4c565b9050919050565b6000602082019050818103600083015261406281613a6f565b9050919050565b6000602082019050818103600083015261408281613a92565b9050919050565b600060208201905081810360008301526140a281613afb565b9050919050565b600060208201905081810360008301526140c281613b1e565b9050919050565b600060208201905081810360008301526140e281613b64565b9050919050565b6000602082019050818103600083015261410281613b87565b9050919050565b6000602082019050818103600083015261412281613baa565b9050919050565b6000602082019050818103600083015261414281613bcd565b9050919050565b6000602082019050818103600083015261416281613c13565b9050919050565b6000602082019050818103600083015261418281613c59565b9050919050565b600060208201905081810360008301526141a281613c9f565b9050919050565b600060208201905081810360008301526141c281613cc2565b9050919050565b600060208201905081810360008301526141e281613ce5565b9050919050565b6000602082019050818103600083015261420281613d2b565b9050919050565b6000602082019050818103600083015261422281613d71565b9050919050565b6000602082019050818103600083015261424281613d94565b9050919050565b600060208201905061425e6000830184613db7565b92915050565b600061426e61427f565b905061427a82826145a3565b919050565b6000604051905090565b600067ffffffffffffffff8211156142a4576142a3614739565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156142d0576142cf614739565b5b6142d982614781565b9050602081019050919050565b600067ffffffffffffffff82111561430157614300614739565b5b61430a82614781565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061438582614525565b915061439083614525565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143c5576143c461464e565b5b828201905092915050565b60006143db82614525565b91506143e683614525565b9250826143f6576143f561467d565b5b828204905092915050565b600061440c82614525565b915061441783614525565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144505761444f61464e565b5b828202905092915050565b600061446682614525565b915061447183614525565b9250828210156144845761448361464e565b5b828203905092915050565b600061449a82614505565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561455c578082015181840152602081019050614541565b8381111561456b576000848401525b50505050565b6000600282049050600182168061458957607f821691505b6020821081141561459d5761459c6146ac565b5b50919050565b6145ac82614781565b810181811067ffffffffffffffff821117156145cb576145ca614739565b5b80604052505050565b60006145df82614525565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146125761461161464e565b5b600182019050919050565b600061462882614525565b915061463383614525565b9250826146435761464261467d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f544f4f204c4154453a207468652030726967696e616c2063616e206f6e6c792060008201527f6265206d696e746564206f6e63652e0000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f544f4f204241443a206f6e6c79207468652030726967696e616c2063616e206260008201527f65207472616e736665727265642e000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2265787465726e616c5f75726c223a2022000000000000000000000000000000600082015250565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b7f544f4f20504f4f523a2073656e64206d6f61722065746865722e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204241443a20796f7520616c726561647920686164207468652030726960008201527f67696e616c2e0000000000000000000000000000000000000000000000000000602082015250565b7f544f4f204541524c593a20697420686173206e6f7420626567756e207965742e600082015250565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62617360008201527f6536342c00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f226e616d65223a20220000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544f4f204241443a2063616e74206275726e206d652e00000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614f418161448f565b8114614f4c57600080fd5b50565b614f58816144a1565b8114614f6357600080fd5b50565b614f6f816144ad565b8114614f7a57600080fd5b50565b614f86816144d9565b8114614f9157600080fd5b50565b614f9d81614525565b8114614fa857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4865616c696e672074686520776f726c64207769746820636f6d6564792e204d616b696e672061206c69746572616c20646966666572656e6365206d65746170686f726963616c6c792ea26469706673582212206630b6cac802420c3b0e412376ab3d4f441414ce64422bdeef429e4b9750213164736f6c634300080600333c672069643d27746578742720666f6e742d66616d696c793d27434f4d505554455220526f626f74272066696c6c3d2775726c28235f7465787429273e3c7465787420783d2732312e32372720793d2738382e33312720666f6e742d73697a653d27313132273e543c2f746578743e3c7465787420783d2736322e32322720793d2738362e38382720666f6e742d73697a653d273830273e48453c2f746578743e3c7465787420783d2732322e30352720793d273133382e32322720666f6e742d73697a653d273830273e574f523c2f746578743e3c7465787420783d273134392e32372720793d273133392e36382720666f6e742d73697a653d27313132273e4d3c2f746578743e3c7465787420783d2732342e32322720793d273136322e3136272066696c6c3d27236563303038632720666f6e742d73697a653d273332273e233c672069643d27776f726d273e3c706174682066696c6c3d276e6f6e6527207374726f6b653d272365633030386327207374726f6b652d77696474683d2734382720643d274d36352032343763362e32352033302e39362034392e33372033332e38352035392e3720346c31302e30362d32392e30396331312e34362d33332e31312035382e32362d33332e322036392e38332d2e31326c31302e35382033302e32346331312e39342033342e312036312e31352032372e34312036342e38332d382e35332e35312d3520322e352d342e352d2e38362d3135312e35272f3e3c706174682066696c6c3d276e6f6e6527207374726f6b653d272332333166323027207374726f6b652d77696474683d27332e32352720643d274d3237362e3932203130342e3237732d2e333220332e353720322e393220332e353763332e3235203020322e39322d332e3920322e39322d332e39272f3e3c706174682066696c6c3d27233233316632302720643d274d3237312e35392039372e313663312e3333203020322e34322d312e3120322e34332d322e343320302d312e33342d312e312d322e34332d322e34332d322e343461322e343620322e343620302030302d322e343420322e343320322e343820322e34382030203030322e343420322e34347a6d31352e38372d2e3235682e303161322e343320322e343320302031302d322e34342d322e343420322e343820322e34382030203030322e343420322e34347a272f3e3c2f673e3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f737667272076696577426f783d27302030203334362033343627207374726f6b652d6c696e656361703d27726f756e6427207374726f6b652d6c696e656a6f696e3d27726f756e64273e3c7374796c6520747970653d27746578742f637373273e40666f6e742d66616365207b20666f6e742d66616d696c793a2027434f4d505554455220526f626f74273b20666f6e742d7765696768743a206e6f726d616c3b207372633a2075726c28646174613a6170706c69636174696f6e2f666f6e742d776f6666323b636861727365743d7574662d383b6261736536342c643039474d67414241414141414166384141344141414141456467414141656a414145414141414141414141414141414141414141414141414141414141414150305a475645306347683447594143444f6767454551674b6a6a694c6351744d4141453241695144675251454941574b4141654263787452443145557334587369774f6279485150724167765a6f3544496e474f343663586e4530385045667a39597247396a56346e764c362f747971364b587936417867724c6f487749706143567a4e66504c482f646f62596a724d393364696875794f654c6f767035494b6d536f65477155515966713874792b6d6639633338455073793078535a366170737a4e5a754149575270593667555557742f57704a42537653377171445841692f4349662f332f7564545a70472b61574d777a46506b3831687a455945354c4c37336a4d74595645566945527674324b4e6553596a6b4d684e41724865597a764962526a73375a5136574b65445a6b3239617a3867487665687749453450473379476d41753565306377463472655955425145426b415a5143454a68434174516746592f536a66595750616d775571415a4239743650734d62524b6755466c336f413564302f3135774f595068324133576551662b38312f4e366e6b3170576a4b6444322f33464166375576415345453643336b33415844635a42783841416248724967624142464c4b45394268352b455447336d4875506f522b5777386b692f2f7a2f502b44616951652f3066392f2f666a2b385931726c7936655033646d4b70332b3975662f53352f6c4946537a4f4c7a6c4c557162516e4a5167305733795862632f317746516b77384a5068334a5a6f4479525a414b70583761525933336b51412b543978645248634d6d737555433042395758594138724b4d367851534d47767866704a67546573336c59737136595657416d46547a654f4e77615373306173444b39346943657348432b6a7749435a4654396a3447524d4d4d7463683168356173786a6c4c6b4d4f337766382f69595573316e6667524a587953786f4a735a654f303278313741475a645a385a647835724f344a2b4c75546a76476e5255627651386138794d312f673342475659546a6174656161436f6a4d35675244374e6c7434394871734448766e2b45377a74556566437a417a754d746c4e61375166325a5546506c4d2b762f4e417644492b666c33333142696e584c74554231766a5577624f68694951344332786c3148333068536e4d3472366973396c736a30784f352f46525a443764495179656c5930334876755858514579564d6a7a45424b467a4f39666b3664397152726d7434645a357874673352334a664d6772666c484259466a3444324574426f564259774a356a663238374b58477948723869364b7941726f63702f4f536e35474c6f2f574f3647626f6f4b4634586a4a49367144703159797867766a6e6852586d366b30586178774f757556424f7a4c72506c7350665a5449384738394f6d73736e37487541744349625378685035504e4d704e644678696d6574734f39364b613878676c3344374f625a384357312f76563062525736582f62664f5a452f49454e33686b4e5449635539705a4f507938486b39776a564b4e6c6e3844426369716366786637536e513254314f506b6a72425747744347702f627a624a676a39744e682f454b73656e7166504d397a6c32302b50322b2b5a3467547463514c547661704654664a684f654371486962585a38653378326548443539587966535439337a5a796b322b484f392f687448464d4547535a44654f39514f5259376a4c39677a4c4c3559434a7764496e592f30444f66483975733643516776587831635563527852757243385052786e3852304479554a4573326e73644f6163787a39394747575832304145434a7855566254783550426d7a2b366b2f6a2b654c7066416b7a485a384275464b3948356d322f427944484b77687733713157476a725053346f3059396a6d62416f47556d6638717a756159534877376763697a326d63584a2f4764356654324c4d4a32797442484e6e61625373464155632f4976626e6433716554567148485a50552f526a577a3074616e495a4e5a42695862352f5758382b59326654736644486952386c6d6270705247717354746e68586b39764573556171694377646e5168583255794265595931767669717469594b44676d532f6350596c7a64734a3936766e644938493346686e4e324443544a6d552f30773971704b2f6d4e66793749474a6577445263725a375354614479424464543555672f763336356961713778784f4c73566c4434333563515033316d3342774b47343461642f7668385844474f3974506251323544443875514e62344870384552362b6c324566416738795649637a59465778646c5537725432336c4a6a68586a4136764b354c5263674d66614457647a566c6a543346476f413469616362795a336831493575576e6b3958634e474e57457755447949445457453063547879794379696e46434651764437435330714867494f5351577a63786c68316548764476464532766437362f7a69566773736d494a6e6278775a5154445576793748514149454a513650564e43354b70736150496779484842484b33572f58346c76464934373936754b744658756c306971626c645134387338564250724f4342416f2f67336f6c5a79752f617533794f4f6a416b4561653654644263414479417478362f37586c6d753349507541554d6d4b3943754e5661676132795457457167344b3777365069657a68717951393936375263736177595832386c43556f35646378564c4a782b33387653434a414b323641765a5735374845464748567635747763646e7a4143543551794e5744444156584b6d516f303056636179696d716f65715556707639536d617852317945703336724a594a74495932756333366a4f3354576c412b31354373663654677550495948714e74446c4f72314e2b62744162655071762b4a73346c76724235357173347a454e56314257305945394554702b7673744c4f567962497132734b61327536564a5752636d4a5378684643476933317146596d4d64754b53537970736279646c77445639664735626a455246794c597a78753064714b7a4261617448354a5339484e686b6e3152676d2b72392b6771436a44424a63496f7245485a742b5966693057784e6b543848477a316e6d536f4c37574b73706233495230736d6e727543497576536433766e4b303279787457717433516b79646977796c4a554d774272456d7548796a6d36714d726772556b545679654a716f6f747a6e434369637452636157796a7731537671564b43426736472b334b72667a386955576c5a302b37474f39424e6b52574658614e5a36506461534f62684d4b7651536931313463455739582b4f5368676e71416242756f62387432626f51566946525a4d4e7a7130542b4e7137686531784754375a574152546e576d772f706b4a6736775a47476a70476c4c62396d714d454252785862612f4e4656366d766a73314c5865794e5a66336f664c386c33764158424567536a51613577384f47357874796249567139617332334473444548643332387373635552567a794a45562b4d4242497263524976435a496f53633677306232714c4c68547869716b5048456666527a6c49326835516752436959716f69595a6f6959376f6955486a384b4e656a6161756972635241413d3d2920666f726d61742827776f66663227293b207d3c2f7374796c653e3c672069643d27686f6c6f273e3c706174682066696c6c3d272330383037303227207374726f6b653d272361646666326627207374726f6b652d6c696e656361703d276275747427207374726f6b652d77696474683d27332e332720643d274d34312e3437203235312e37356331312e30392035342e39322038372e35392036302e3035203130352e3920372e316c31302e30372d32392e303963342e30322d31312e36322032302e34342d31312e36352032342e352d2e30346c31302e35382033302e32336332302e34382035382e3534203130352e30342034372e3639203131312e33352d3134202e35332d352e3120322e36392d342e362d2e37332d3135342e356132342e30312032342e303120302030302d343820312e3163332e33203134342e3120312e3439203134332e362e3939203134382e352030203020302030203020302d312e30352031302e322d31342e39322031322e37322d31382e3320332e30356c2d31302e35382d33302e3234632d31392e30392d35342e35342d39362e32382d35342e342d3131352e31372e324c313032203234332e3137632d322e333320362e37342d31322e303720362e30392d31332e34382d2e396132342e30312032342e303120302030302d34372e303620392e34397a272f3e3c706174682066696c6c3d276e6f6e6527207374726f6b653d272361646666326627207374726f6b652d77696474683d27332e32352720643d274d3237362e3932203130342e3237732d2e333220332e353720322e393220332e353763332e3235203020322e39322d332e3920322e39322d332e39272f3e3c706174682066696c6c3d27236164666632662720643d274d3237312e35392039372e313663312e3333203020322e34322d312e3120322e34332d322e343320302d312e33342d312e312d322e34332d322e34332d322e343461322e343620322e343620302030302d322e343420322e343320322e343820322e34382030203030322e343420322e34347a6d31352e38372d2e3235682e303161322e343320322e343320302031302d322e34342d322e343420322e343820322e34382030203030322e343420322e34347a272f3e3c2f673e3c672069643d276261636b2720636c69702d706174683d2775726c28235f626f7829273e3c706174682069643d276267272066696c6c3d27233038303730322720643d274d302030683334367633343648307a272f3e3c706174682069643d276c696e6573272066696c6c3d276e6f6e6527207374726f6b653d272361646666326627207374726f6b652d77696474683d27362720643d274d313338203334365636344d35342e3735203334364c3133382036344d2d3232203333354c3133382036344d2d313032203333354c3133382036344d3232312e3235203334364c3133382036344d3330342e35203334364c3133382036344d333738203333354c3133382036344d343538203333354c3133382036344d353338203333354c3133382036344d3020333138683334364d3020323738683334364d30203234382e37356c333436202e31334d333436203232362e37346c2d3334362d2e31364d333436203230392e334830272f3e3c706174682069643d276f7665726c6179272066696c6c3d2775726c28235f6f7665726c6179292720643d274d302030683334367633343648307a272f3e3c2f673e3c646566733e3c6c696e6561724772616469656e742069643d275f6f7665726c6179272078313d2730272078323d2730272079313d2730272079323d2731273e3c73746f70206f66667365743d27353725272073746f702d636f6c6f723d2723303830373032272f3e3c73746f70206f66667365743d27373125272073746f702d636f6c6f723d2723303830373032272073746f702d6f7061636974793d272e3735272f3e3c73746f70206f66667365743d27393325272073746f702d636f6c6f723d2723303830373032272073746f702d6f7061636974793d2730272f3e3c2f6c696e6561724772616469656e743e3c6c696e6561724772616469656e742069643d275f74657874272078313d2730272078323d2730272079313d2730272079323d2731273e3c73746f70206f66667365743d27333025272073746f702d636f6c6f723d2723616466663266272f3e3c73746f70206f66667365743d27343525272073746f702d636f6c6f723d2723616466663266272f3e3c73746f70206f66667365743d27373725272073746f702d636f6c6f723d2723666666272f3e3c2f6c696e6561724772616469656e743e3c636c6970506174682069643d275f626f78273e3c7061746820643d274d302030683334367633343648307a272f3e3c2f636c6970506174683e3c2f646566733e54686520576f726d206973206275696c64696e6720612063756c742061732068652074726176656c73207468726f7567682074686520457468657265756d20626c6f636b636861696e2e2048656c702068696d206f6e20686973206a6f75726e65792062792070617373696e672068696d20616c6f6e672e49277665206c65667420746869732062656175746966756c20486f6c6f6772616d206f66206d7973656c662061732061206d656d656e746f206f66206f7572207370656369616c2074696d6520746f6765746865722e204a6f696e696e67206d792063756c7420776173207468652062657374206465636973696f6e20796f752065766572206d6164652e20596f752063616e206e65766572206c656176652e2042657374205769736865732e202d2054686520576f726d2e

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806370a0823111610102578063a22cb46511610095578063cf41d6f811610064578063cf41d6f814610700578063e985e9c51461070a578063ee407e6c14610747578063f2fde38b14610770576101ee565b8063a22cb46514610646578063b88d4fde1461066f578063c87b56dd14610698578063cc4721d2146106d5576101ee565b80638da5cb5b116100d15780638da5cb5b1461059e57806391b7f5ed146105c957806395d89b41146105f25780639a34f0741461061d576101ee565b806370a0823114610503578063715018a61461054057806386d1a69f146105575780638c4796c714610561576101ee565b80632d8126c31161017a57806342842e0e1161014957806342842e0e146104355780634980e1be1461045e5780634f6ccce7146104895780636352211e146104c6576101ee565b80632d8126c3146103695780632f745c591461039257806332fcfd7b146103cf57806336dac2cc146103f8576101ee565b8063150cac24116101b6578063150cac24146102c157806318160ddd146102ec5780632099748a1461031757806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613703565b610799565b6040516102279190613f2c565b60405180910390f35b34801561023c57600080fd5b50610245610813565b6040516102529190613f47565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906137b9565b6108a5565b60405161028f9190613ec5565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061363a565b61092a565b005b3480156102cd57600080fd5b506102d6610a42565b6040516102e39190613f2c565b60405180910390f35b3480156102f857600080fd5b50610301610a55565b60405161030e9190614249565b60405180910390f35b34801561032357600080fd5b5061033e600480360381019061033991906136a7565b610a62565b005b34801561034c57600080fd5b5061036760048036038101906103629190613524565b610b1c565b005b34801561037557600080fd5b50610390600480360381019061038b919061375d565b610b2c565b005b34801561039e57600080fd5b506103b960048036038101906103b4919061363a565b610c0a565b6040516103c69190614249565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061375d565b610caf565b005b34801561040457600080fd5b5061041f600480360381019061041a91906137b9565b610d8d565b60405161042c9190613f47565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613524565b611097565b005b34801561046a57600080fd5b506104736110a7565b6040516104809190613f47565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906137b9565b6110c3565b6040516104bd9190614249565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906137b9565b611134565b6040516104fa9190613ec5565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906134b7565b6111e6565b6040516105379190614249565b60405180910390f35b34801561054c57600080fd5b5061055561129e565b005b61055f6113d8565b005b34801561056d57600080fd5b50610588600480360381019061058391906137b9565b6114d0565b6040516105959190613f47565b60405180910390f35b3480156105aa57600080fd5b506105b36117b9565b6040516105c09190613ec5565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906137b9565b6117e2565b005b3480156105fe57600080fd5b50610607611868565b6040516106149190613f47565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061367a565b6118fa565b005b34801561065257600080fd5b5061066d600480360381019061066891906135fa565b611993565b005b34801561067b57600080fd5b5061069660048036038101906106919190613577565b611b14565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906137b9565b611b26565b6040516106cc9190613f47565b60405180910390f35b3480156106e157600080fd5b506106ea611b38565b6040516106f79190614249565b60405180910390f35b610708611b3e565b005b34801561071657600080fd5b50610731600480360381019061072c91906134e4565b611c01565b60405161073e9190613f2c565b60405180910390f35b34801561075357600080fd5b5061076e600480360381019061076991906134b7565b611c95565b005b34801561077c57600080fd5b50610797600480360381019061079291906134b7565b611ca4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080c575061080b82611e4d565b5b9050919050565b60606001805461082290614571565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90614571565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b082611f2f565b6108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690614169565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093582611134565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906141e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109c5611f9b565b73ffffffffffffffffffffffffffffffffffffffff1614806109f457506109f3816109ee611f9b565b611c01565b5b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a906140a9565b60405180910390fd5b610a3d8383611fa3565b505050565b600c60009054906101000a900460ff1681565b6000600980549050905090565b610a6a611f9b565b73ffffffffffffffffffffffffffffffffffffffff16610a886117b9565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590614189565b60405180910390fd5b8115610b00578060109080519060200190610afa929190613163565b50610b18565b8060119080519060200190610b16929190613163565b505b5050565b610b2783838361205c565b505050565b610b34611f9b565b73ffffffffffffffffffffffffffffffffffffffff16610b526117b9565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614189565b60405180910390fd5b80600e60008477ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000209080519060200190610c05929190613218565b505050565b6000610c15836111e6565b8210610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613f69565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cb7611f9b565b73ffffffffffffffffffffffffffffffffffffffff16610cd56117b9565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290614189565b60405180910390fd5b80600f60008477ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000209080519060200190610d88929190613218565b505050565b60608060606000610da5610da0866114d0565b61207c565b90506000851415610ec6576040518060400160405280600881526020017f54686520576f726d0000000000000000000000000000000000000000000000008152509250600e60007f646573633072696700000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000208054610e4190614571565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6d90614571565b8015610eba5780601f10610e8f57610100808354040283529160200191610eba565b820191906000526020600020905b815481529060010190602001808311610e9d57829003601f168201915b50505050509150610fe9565b610f0d6040518060400160405280601381526020017f54686520576f726d20486f6c6f6772616d202300000000000000000000000000815250610f0887612201565b612362565b9250600e60007f64657363486f6c6f00000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000208054610f6890614571565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9490614571565b8015610fe15780601f10610fb657610100808354040283529160200191610fe1565b820191906000526020600020905b815481529060010190602001808311610fc457829003601f168201915b505050505091505b61106e838383600e60007f6578745f75726c0000000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000206110468a612201565b60405160200161105a959493929190613dea565b60405160208183030381529060405261207c565b60405160200161107e9190613ea3565b6040516020818303038152906040529350505050919050565b6110a283838361205c565b505050565b6040518060800160405280604a8152602001614fec604a913981565b60006110cd610a55565b821061110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614229565b60405180910390fd5b600982815481106111225761112161470a565b5b90600052602060002001549050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906140e9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906140c9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a6611f9b565b73ffffffffffffffffffffffffffffffffffffffff166112c46117b9565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190614189565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113e4600b61238e565b905060011515600c60009054906101000a900460ff1615151461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614129565b60405180910390fd5b6000811461147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613fe9565b60405180910390fd5b600d543410156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90614089565b60405180910390fd5b6114cd3361239c565b50565b6060806060600084141561157457601080548060200260200160405190810160405280929190818152602001828054801561156857602002820191906000526020600020906000905b82829054906101000a900460c01b77ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190600801906020826007010492830192600103820291508084116115195790505b50505050509050611606565b60118054806020026020016040519081016040528092919081815260200182805480156115fe57602002820191906000526020600020906000905b82829054906101000a900460c01b77ffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190600801906020826007010492830192600103820291508084116115af5790505b505050505090505b60005b81518110156117ae577f746f6b656e5f696400000000000000000000000000000000000000000000000077ffffffffffffffffffffffffffffffffffffffffffffffff19168282815181106116615761166061470a565b5b602002602001015177ffffffffffffffffffffffffffffffffffffffffffffffff191614156116a35761169c8361169787612201565b612362565b925061179b565b61179883600f60008585815181106116be576116bd61470a565b5b602002602001015177ffffffffffffffffffffffffffffffffffffffffffffffff191677ffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020805461171590614571565b80601f016020809104026020016040519081016040528092919081815260200182805461174190614571565b801561178e5780601f106117635761010080835404028352916020019161178e565b820191906000526020600020905b81548152906001019060200180831161177157829003601f168201915b5050505050612362565b92505b80806117a6906145d4565b915050611609565b508192505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117ea611f9b565b73ffffffffffffffffffffffffffffffffffffffff166118086117b9565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614189565b60405180910390fd5b80600d8190555050565b60606002805461187790614571565b80601f01602080910402602001604051908101604052809291908181526020018280546118a390614571565b80156118f05780601f106118c5576101008083540402835291602001916118f0565b820191906000526020600020905b8154815290600101906020018083116118d357829003601f168201915b5050505050905090565b611902611f9b565b73ffffffffffffffffffffffffffffffffffffffff166119206117b9565b73ffffffffffffffffffffffffffffffffffffffff1614611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90614189565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b61199b611f9b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614029565b60405180910390fd5b8060066000611a16611f9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac3611f9b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b089190613f2c565b60405180910390a35050565b611b20848484846123c2565b50505050565b6060611b3182610d8d565b9050919050565b600d5481565b611b46611f9b565b73ffffffffffffffffffffffffffffffffffffffff16611b646117b9565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614189565b60405180910390fd5b611bc2611f9b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611bff57600080fd5b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca13382600061205c565b50565b611cac611f9b565b73ffffffffffffffffffffffffffffffffffffffff16611cca6117b9565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790614189565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613fa9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f285750611f27826123dd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661201683611134565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612077838383604051806020016040528060008152506123c2565b505050565b606060008251141561209f576040518060200160405280600081525090506121fc565b6000604051806060016040528060408152602001614fac60409139905060006003600285516120ce919061437a565b6120d891906143d0565b60046120e49190614401565b905060006020826120f5919061437a565b67ffffffffffffffff81111561210e5761210d614739565b5b6040519080825280601f01601f1916602001820160405280156121405781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156121bb576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050612154565b6003895106600181146121d557600281146121e5576121f0565b613d3d60f01b60028303526121f0565b603d60f81b60018303525b50505050508093505050505b919050565b60606000821415612249576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235d565b600082905060005b6000821461227b578080612264906145d4565b915050600a8261227491906143d0565b9150612251565b60008167ffffffffffffffff81111561229757612296614739565b5b6040519080825280601f01601f1916602001820160405280156122c95781602001600182028036833780820191505090505b5090505b60008514612356576001826122e2919061445b565b9150600a856122f1919061461d565b60306122fd919061437a565b60f81b8183815181106123135761231261470a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561234f91906143d0565b94506122cd565b8093505050505b919050565b60608282604051602001612377929190613dc6565b604051602081830303815290604052905092915050565b600081600001549050919050565b60006123a8600b61238e565b90506123b48282612447565b6123be600b612465565b5050565b6123ce8484848461247b565b6123d78461239c565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124618282604051806020016040528060008152506125db565b5050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e2906141a9565b60405180910390fd5b6000821461252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590614049565b60405180910390fd5b6000612539846111e6565b14612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090614109565b60405180910390fd5b61258a612584611f9b565b83612636565b6125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090614209565b60405180910390fd5b6125d584848484612714565b50505050565b6125e58383612770565b6125f2600084848461293e565b612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890613f89565b60405180910390fd5b505050565b600061264182611f2f565b612680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267790614069565b60405180910390fd5b600061268b83611134565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126fa57508373ffffffffffffffffffffffffffffffffffffffff166126e2846108a5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061270b575061270a8185611c01565b5b91505092915050565b61271f848484612ad5565b61272b8484848461293e565b61276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190613f89565b60405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d790614149565b60405180910390fd5b6127e981611f2f565b15612829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282090613fc9565b60405180910390fd5b61283560008383612d31565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612885919061437a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061295f8473ffffffffffffffffffffffffffffffffffffffff16612e45565b15612ac8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612988611f9b565b8786866040518563ffffffff1660e01b81526004016129aa9493929190613ee0565b602060405180830381600087803b1580156129c457600080fd5b505af19250505080156129f557506040513d601f19601f820116820180604052508101906129f29190613730565b60015b612a78573d8060008114612a25576040519150601f19603f3d011682016040523d82523d6000602084013e612a2a565b606091505b50600081511415612a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6790613f89565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612acd565b600190505b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612af582611134565b73ffffffffffffffffffffffffffffffffffffffff1614612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b42906141c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb290614009565b60405180910390fd5b612bc6838383612d31565b612bd1600082611fa3565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c21919061445b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c78919061437a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612d3c838383612e58565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d7f57612d7a81612e5d565b612dbe565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612dbd57612dbc8382612ea6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e0157612dfc81613013565b612e40565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e3f57612e3e82826130e4565b5b5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612eb3846111e6565b612ebd919061445b565b9050600060086000848152602001908152602001600020549050818114612fa2576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613027919061445b565b90506000600a60008481526020019081526020016000205490506000600983815481106130575761305661470a565b5b9060005260206000200154905080600983815481106130795761307861470a565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806130c8576130c76146db565b5b6001900381819060005260206000200160009055905550505050565b60006130ef836111e6565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b828054828255906000526020600020906003016004900481019282156132075791602002820160005b838211156131d157835183826101000a81548167ffffffffffffffff021916908360c01c0217905550926020019260080160208160070104928301926001030261318c565b80156132055782816101000a81549067ffffffffffffffff02191690556008016020816007010492830192600103026131d1565b505b509050613214919061329e565b5090565b82805461322490614571565b90600052602060002090601f016020900481019282613246576000855561328d565b82601f1061325f57805160ff191683800117855561328d565b8280016001018555821561328d579182015b8281111561328c578251825591602001919060010190613271565b5b50905061329a919061329e565b5090565b5b808211156132b757600081600090555060010161329f565b5090565b60006132ce6132c984614289565b614264565b905080838252602082019050828560208602820111156132f1576132f061476d565b5b60005b8581101561332157816133078882613431565b8452602084019350602083019250506001810190506132f4565b5050509392505050565b600061333e613339846142b5565b614264565b90508281526020810184848401111561335a57613359614772565b5b61336584828561452f565b509392505050565b600061338061337b846142e6565b614264565b90508281526020810184848401111561339c5761339b614772565b5b6133a784828561452f565b509392505050565b6000813590506133be81614f38565b92915050565b600082601f8301126133d9576133d8614768565b5b81356133e98482602086016132bb565b91505092915050565b60008135905061340181614f4f565b92915050565b60008135905061341681614f66565b92915050565b60008151905061342b81614f66565b92915050565b60008135905061344081614f7d565b92915050565b600082601f83011261345b5761345a614768565b5b813561346b84826020860161332b565b91505092915050565b600082601f83011261348957613488614768565b5b813561349984826020860161336d565b91505092915050565b6000813590506134b181614f94565b92915050565b6000602082840312156134cd576134cc61477c565b5b60006134db848285016133af565b91505092915050565b600080604083850312156134fb576134fa61477c565b5b6000613509858286016133af565b925050602061351a858286016133af565b9150509250929050565b60008060006060848603121561353d5761353c61477c565b5b600061354b868287016133af565b935050602061355c868287016133af565b925050604061356d868287016134a2565b9150509250925092565b600080600080608085870312156135915761359061477c565b5b600061359f878288016133af565b94505060206135b0878288016133af565b93505060406135c1878288016134a2565b925050606085013567ffffffffffffffff8111156135e2576135e1614777565b5b6135ee87828801613446565b91505092959194509250565b600080604083850312156136115761361061477c565b5b600061361f858286016133af565b9250506020613630858286016133f2565b9150509250929050565b600080604083850312156136515761365061477c565b5b600061365f858286016133af565b9250506020613670858286016134a2565b9150509250929050565b6000602082840312156136905761368f61477c565b5b600061369e848285016133f2565b91505092915050565b600080604083850312156136be576136bd61477c565b5b60006136cc858286016133f2565b925050602083013567ffffffffffffffff8111156136ed576136ec614777565b5b6136f9858286016133c4565b9150509250929050565b6000602082840312156137195761371861477c565b5b600061372784828501613407565b91505092915050565b6000602082840312156137465761374561477c565b5b60006137548482850161341c565b91505092915050565b600080604083850312156137745761377361477c565b5b600061378285828601613431565b925050602083013567ffffffffffffffff8111156137a3576137a2614777565b5b6137af85828601613474565b9150509250929050565b6000602082840312156137cf576137ce61477c565b5b60006137dd848285016134a2565b91505092915050565b6137ef8161448f565b82525050565b6137fe816144a1565b82525050565b600061380f8261432c565b6138198185614342565b935061382981856020860161453e565b61383281614781565b840191505092915050565b60006138488261432c565b6138528185614353565b935061386281856020860161453e565b80840191505092915050565b600061387982614337565b613883818561435e565b935061389381856020860161453e565b61389c81614781565b840191505092915050565b60006138b282614337565b6138bc818561436f565b93506138cc81856020860161453e565b80840191505092915050565b600081546138e581614571565b6138ef818661436f565b9450600182166000811461390a576001811461391b5761394e565b60ff1983168652818601935061394e565b61392485614317565b60005b8381101561394657815481890152600182019150602081019050613927565b838801955050505b50505092915050565b6000613964602b8361435e565b915061396f82614792565b604082019050919050565b600061398760328361435e565b9150613992826147e1565b604082019050919050565b60006139aa60268361435e565b91506139b582614830565b604082019050919050565b60006139cd60028361436f565b91506139d88261487f565b600282019050919050565b60006139f0601c8361435e565b91506139fb826148a8565b602082019050919050565b6000613a13602f8361435e565b9150613a1e826148d1565b604082019050919050565b6000613a3660248361435e565b9150613a4182614920565b604082019050919050565b6000613a5960198361435e565b9150613a648261496f565b602082019050919050565b6000613a7c602e8361435e565b9150613a8782614998565b604082019050919050565b6000613a9f602c8361435e565b9150613aaa826149e7565b604082019050919050565b6000613ac260118361436f565b9150613acd82614a36565b601182019050919050565b6000613ae560108361436f565b9150613af082614a5f565b601082019050919050565b6000613b08601a8361435e565b9150613b1382614a88565b602082019050919050565b6000613b2b60388361435e565b9150613b3682614ab1565b604082019050919050565b6000613b4e60018361436f565b9150613b5982614b00565b600182019050919050565b6000613b71602a8361435e565b9150613b7c82614b29565b604082019050919050565b6000613b9460298361435e565b9150613b9f82614b78565b604082019050919050565b6000613bb760268361435e565b9150613bc282614bc7565b604082019050919050565b6000613bda60208361435e565b9150613be582614c16565b602082019050919050565b6000613bfd60248361436f565b9150613c0882614c3f565b602482019050919050565b6000613c2060208361435e565b9150613c2b82614c8e565b602082019050919050565b6000613c4360018361436f565b9150613c4e82614cb7565b600182019050919050565b6000613c66602c8361435e565b9150613c7182614ce0565b604082019050919050565b6000613c8960098361436f565b9150613c9482614d2f565b600982019050919050565b6000613cac60208361435e565b9150613cb782614d58565b602082019050919050565b6000613ccf60168361435e565b9150613cda82614d81565b602082019050919050565b6000613cf260298361435e565b9150613cfd82614daa565b604082019050919050565b6000613d1560018361436f565b9150613d2082614df9565b600182019050919050565b6000613d3860218361435e565b9150613d4382614e22565b604082019050919050565b6000613d5b601d8361436f565b9150613d6682614e71565b601d82019050919050565b6000613d7e60318361435e565b9150613d8982614e9a565b604082019050919050565b6000613da1602c8361435e565b9150613dac82614ee9565b604082019050919050565b613dc081614525565b82525050565b6000613dd2828561383d565b9150613dde828461383d565b91508190509392505050565b6000613df582613d08565b9150613e0082613c7c565b9150613e0c82886138a7565b9150613e17826139c0565b9150613e2282613ad8565b9150613e2e82876138a7565b9150613e39826139c0565b9150613e4482613bf0565b9150613e5082866138a7565b9150613e5b826139c0565b9150613e6682613ab5565b9150613e7282856138d8565b9150613e7e82846138a7565b9150613e8982613b41565b9150613e9482613c36565b91508190509695505050505050565b6000613eae82613d4e565b9150613eba82846138a7565b915081905092915050565b6000602082019050613eda60008301846137e6565b92915050565b6000608082019050613ef560008301876137e6565b613f0260208301866137e6565b613f0f6040830185613db7565b8181036060830152613f218184613804565b905095945050505050565b6000602082019050613f4160008301846137f5565b92915050565b60006020820190508181036000830152613f61818461386e565b905092915050565b60006020820190508181036000830152613f8281613957565b9050919050565b60006020820190508181036000830152613fa28161397a565b9050919050565b60006020820190508181036000830152613fc28161399d565b9050919050565b60006020820190508181036000830152613fe2816139e3565b9050919050565b6000602082019050818103600083015261400281613a06565b9050919050565b6000602082019050818103600083015261402281613a29565b9050919050565b6000602082019050818103600083015261404281613a4c565b9050919050565b6000602082019050818103600083015261406281613a6f565b9050919050565b6000602082019050818103600083015261408281613a92565b9050919050565b600060208201905081810360008301526140a281613afb565b9050919050565b600060208201905081810360008301526140c281613b1e565b9050919050565b600060208201905081810360008301526140e281613b64565b9050919050565b6000602082019050818103600083015261410281613b87565b9050919050565b6000602082019050818103600083015261412281613baa565b9050919050565b6000602082019050818103600083015261414281613bcd565b9050919050565b6000602082019050818103600083015261416281613c13565b9050919050565b6000602082019050818103600083015261418281613c59565b9050919050565b600060208201905081810360008301526141a281613c9f565b9050919050565b600060208201905081810360008301526141c281613cc2565b9050919050565b600060208201905081810360008301526141e281613ce5565b9050919050565b6000602082019050818103600083015261420281613d2b565b9050919050565b6000602082019050818103600083015261422281613d71565b9050919050565b6000602082019050818103600083015261424281613d94565b9050919050565b600060208201905061425e6000830184613db7565b92915050565b600061426e61427f565b905061427a82826145a3565b919050565b6000604051905090565b600067ffffffffffffffff8211156142a4576142a3614739565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156142d0576142cf614739565b5b6142d982614781565b9050602081019050919050565b600067ffffffffffffffff82111561430157614300614739565b5b61430a82614781565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061438582614525565b915061439083614525565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143c5576143c461464e565b5b828201905092915050565b60006143db82614525565b91506143e683614525565b9250826143f6576143f561467d565b5b828204905092915050565b600061440c82614525565b915061441783614525565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144505761444f61464e565b5b828202905092915050565b600061446682614525565b915061447183614525565b9250828210156144845761448361464e565b5b828203905092915050565b600061449a82614505565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561455c578082015181840152602081019050614541565b8381111561456b576000848401525b50505050565b6000600282049050600182168061458957607f821691505b6020821081141561459d5761459c6146ac565b5b50919050565b6145ac82614781565b810181811067ffffffffffffffff821117156145cb576145ca614739565b5b80604052505050565b60006145df82614525565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146125761461161464e565b5b600182019050919050565b600061462882614525565b915061463383614525565b9250826146435761464261467d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f544f4f204c4154453a207468652030726967696e616c2063616e206f6e6c792060008201527f6265206d696e746564206f6e63652e0000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f544f4f204241443a206f6e6c79207468652030726967696e616c2063616e206260008201527f65207472616e736665727265642e000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2265787465726e616c5f75726c223a2022000000000000000000000000000000600082015250565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b7f544f4f20504f4f523a2073656e64206d6f61722065746865722e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204241443a20796f7520616c726561647920686164207468652030726960008201527f67696e616c2e0000000000000000000000000000000000000000000000000000602082015250565b7f544f4f204541524c593a20697420686173206e6f7420626567756e207965742e600082015250565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62617360008201527f6536342c00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f226e616d65223a20220000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544f4f204241443a2063616e74206275726e206d652e00000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614f418161448f565b8114614f4c57600080fd5b50565b614f58816144a1565b8114614f6357600080fd5b50565b614f6f816144ad565b8114614f7a57600080fd5b50565b614f86816144d9565b8114614f9157600080fd5b50565b614f9d81614525565b8114614fa857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4865616c696e672074686520776f726c64207769746820636f6d6564792e204d616b696e672061206c69746572616c20646966666572656e6365206d65746170686f726963616c6c792ea26469706673582212206630b6cac802420c3b0e412376ab3d4f441414ce64422bdeef429e4b9750213164736f6c63430008060033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.